-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
UART_peripheral_card_A.net
1178 lines (1178 loc) · 46.5 KB
/
UART_peripheral_card_A.net
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(export (version D)
(design
(source C:\Users\guill\Desktop\Creation\Github\UART_peripheral_card_A\UART_peripheral_card_A.sch)
(date "11.05.2021 22:15:13")
(tool "Eeschema (5.1.8)-1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "UART peripheral card")
(company "Guillaume Guillet")
(rev "A V1.1")
(date 2021-05-11)
(source UART_peripheral_card_A.sch)
(comment (number 1) (value "Copyright Guillaume Guillet 2021"))
(comment (number 2) (value "Licensed under CERN-OHL-W v2 or later"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /Reception/) (tstamps /5FD66C52/)
(title_block
(title "UART peripheral card")
(company "Guillaume Guillet")
(rev "A V1.1")
(date 2021-05-11)
(source fileReception.sch)
(comment (number 1) (value "Copyright Guillaume Guillet 2021"))
(comment (number 2) (value "Licensed under CERN-OHL-W v2 or later"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name /Transmission/) (tstamps /5FE44E7A/)
(title_block
(title "UART peripheral card")
(company "Guillaume Guillet")
(rev "A V1.1")
(date 2021-05-11)
(source fileTransmission.sch)
(comment (number 1) (value "Copyright Guillaume Guillet 2021"))
(comment (number 2) (value "Licensed under CERN-OHL-W v2 or later"))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref J1)
(value PP1_edgeConnnector_TE_5-5530843-4)
(footprint TE_5-5530843-4_edge:TE_5-5530843-4_edge)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x20_Odd_Even) (description "Generic connector, double row, 02x20, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D0F5D39))
(comp (ref H1)
(value MountingHole_3mm)
(footprint MountingHole:MountingHole_3mm)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5F6E1B2A))
(comp (ref C4)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5FE0F2FF))
(comp (ref C2)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5FE143AB))
(comp (ref C1)
(value 1uF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5FE14FB2))
(comp (ref C3)
(value 1uF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5FE16519))
(comp (ref J2)
(value power_connector)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Horizontal)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x04_Male) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5FF3E9BC))
(comp (ref U27)
(value 74AHC1G125)
(footprint Package_TO_SOT_SMD:SOT-23-5)
(datasheet https://www.ti.com/lit/ds/symlink/sn74ahc1g126.pdf)
(libsource (lib Custom) (part 74AHC1G125) (description "Single Buffer Gate Tri-State, AHCMOS"))
(sheetpath (names /) (tstamps /))
(tstamp 5FFAFCB2))
(comp (ref U28)
(value 74AHC1G125)
(footprint Package_TO_SOT_SMD:SOT-23-5)
(datasheet https://www.ti.com/lit/ds/symlink/sn74ahc1g126.pdf)
(libsource (lib Custom) (part 74AHC1G125) (description "Single Buffer Gate Tri-State, AHCMOS"))
(sheetpath (names /) (tstamps /))
(tstamp 5FFB4059))
(comp (ref J4)
(value OUTPUT_MODE)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x03_Male) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 60374D57))
(comp (ref J3)
(value UART_connector)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Horizontal)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x03_Male) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 603A8D77))
(comp (ref U1)
(value 74AHC1G00)
(footprint Package_TO_SOT_SMD:SOT-23-5)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT1G00.pdf)
(libsource (lib Custom) (part 74AHC1G00) (description "Single NAND Gate, AHCMOS"))
(sheetpath (names /) (tstamps /))
(tstamp 609B1DDC))
(comp (ref U4)
(value 74AHC1G00)
(footprint Package_TO_SOT_SMD:SOT-23-5)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT1G00.pdf)
(libsource (lib Custom) (part 74AHC1G00) (description "Single NAND Gate, AHCMOS"))
(sheetpath (names /) (tstamps /))
(tstamp 609B49A3))
(comp (ref U5)
(value 74AHC1G00)
(footprint Package_TO_SOT_SMD:SOT-23-5)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT1G00.pdf)
(libsource (lib Custom) (part 74AHC1G00) (description "Single NAND Gate, AHCMOS"))
(sheetpath (names /) (tstamps /))
(tstamp 609B4F12))
(comp (ref U2)
(value 74AHC1G00)
(footprint Package_TO_SOT_SMD:SOT-23-5)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT1G00.pdf)
(libsource (lib Custom) (part 74AHC1G00) (description "Single NAND Gate, AHCMOS"))
(sheetpath (names /) (tstamps /))
(tstamp 609B5381))
(comp (ref R15)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 609C4D0A))
(comp (ref U9)
(value 74HCT107)
(footprint Package_SO:SO-14_3.9x8.65mm_P1.27mm)
(datasheet https://assets.nexperia.com/documents/data-sheet/74HC_HCT107.pdf)
(libsource (lib Custom) (part 74HCT107) (description "Dual JK Flip-Flop, reset"))
(sheetpath (names /Reception/) (tstamps /5FD66C52/))
(tstamp 5FD6B1A7))
(comp (ref U6)
(value LTC6994xS6-1)
(footprint Package_TO_SOT_SMD:SOT-23-6)
(datasheet https://www.analog.com/media/en/technical-documentation/data-sheets/699412fb.pdf)
(libsource (lib Timer) (part LTC6994xS6-1) (description "TimerBlox Delay Block, Programmable, Noise Discriminator, Rising or Falling Edge, TSOT-23-6"))
(sheetpath (names /Reception/) (tstamps /5FD66C52/))
(tstamp 5FD7618E))
(comp (ref U7)
(value LTC6990CS6)
(footprint Package_TO_SOT_SMD:SOT-23-6)
(datasheet https://www.mouser.ch/datasheet/2/609/LTC6990-1776026.pdf)
(libsource (lib Custom) (part LTC6990CS6) (description "Voltage Controlled Silicon Oscillator"))
(sheetpath (names /Reception/) (tstamps /5FD66C52/))
(tstamp 5FD79B25))
(comp (ref R3)
(value 1M)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Reception/) (tstamps /5FD66C52/))
(tstamp 5FD8A9EA))
(comp (ref R4)
(value 280k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Reception/) (tstamps /5FD66C52/))
(tstamp 5FD8B39A))
(comp (ref R6)
(value 649k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Reception/) (tstamps /5FD66C52/))
(tstamp 5FD8C0C5))
(comp (ref R1)
(value 102k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Reception/) (tstamps /5FD66C52/))
(tstamp 5FD90772))
(comp (ref R2)
(value 976k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Reception/) (tstamps /5FD66C52/))
(tstamp 5FD90778))
(comp (ref R5)
(value 243k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Reception/) (tstamps /5FD66C52/))
(tstamp 5FD9240E))
(comp (ref U8)
(value CD74AC161M)
(footprint Package_SO:SOP-16_3.9x9.9mm_P1.27mm)
(datasheet https://www.ti.com/lit/ds/symlink/cd74ac161.pdf)
(libsource (lib Custom) (part CD74AC161M) (description "Counter ICs Sync Preset Binary w/ASync Reset"))
(sheetpath (names /Reception/) (tstamps /5FD66C52/))
(tstamp 5FD73E51))
(comp (ref U11)
(value 74AHC1G32)
(footprint Package_TO_SOT_SMD:SOT-23-5)
(datasheet http://www.ti.com/lit/sg/scyt129e/scyt129e.pdf)
(libsource (lib Custom) (part 74AHC1G32) (description "Single OR Gate, AHCMOS"))
(sheetpath (names /Reception/) (tstamps /5FD66C52/))
(tstamp 5FD80511))
(comp (ref C5)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Reception/) (tstamps /5FD66C52/))
(tstamp 5FD7A27E))
(comp (ref C6)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Reception/) (tstamps /5FD66C52/))
(tstamp 5FD87372))
(comp (ref C7)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Reception/) (tstamps /5FD66C52/))
(tstamp 5FD8B415))
(comp (ref C8)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Reception/) (tstamps /5FD66C52/))
(tstamp 5FD92EFB))
(comp (ref C9)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Reception/) (tstamps /5FD66C52/))
(tstamp 5FD9D2CD))
(comp (ref U13)
(value 74AHC595)
(footprint Package_SO:SOIC-16_3.9x9.9mm_P1.27mm)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT595.pdf)
(libsource (lib 74xx) (part 74AHC595) (description "8-bit serial in/out Shift Register 3-State Outputs"))
(sheetpath (names /Reception/) (tstamps /5FD66C52/))
(tstamp 5FF88537))
(comp (ref R13)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Reception/) (tstamps /5FD66C52/))
(tstamp 60350486))
(comp (ref U10)
(value 74AHC1G00)
(footprint Package_TO_SOT_SMD:SOT-23-5)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT1G00.pdf)
(libsource (lib Custom) (part 74AHC1G00) (description "Single NAND Gate, AHCMOS"))
(sheetpath (names /Reception/) (tstamps /5FD66C52/))
(tstamp 609D75AB))
(comp (ref U14)
(value 74HCT107)
(footprint Package_SO:SO-14_3.9x8.65mm_P1.27mm)
(datasheet https://assets.nexperia.com/documents/data-sheet/74HC_HCT107.pdf)
(libsource (lib Custom) (part 74HCT107) (description "Dual JK Flip-Flop, reset"))
(sheetpath (names /Transmission/) (tstamps /5FE44E7A/))
(tstamp 5FE5A7A3))
(comp (ref U16)
(value LTC6990CS6)
(footprint Package_TO_SOT_SMD:SOT-23-6)
(datasheet https://www.mouser.ch/datasheet/2/609/LTC6990-1776026.pdf)
(libsource (lib Custom) (part LTC6990CS6) (description "Voltage Controlled Silicon Oscillator"))
(sheetpath (names /Transmission/) (tstamps /5FE44E7A/))
(tstamp 5FE5A7CE))
(comp (ref R7)
(value 1M)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Transmission/) (tstamps /5FE44E7A/))
(tstamp 5FE5A801))
(comp (ref R8)
(value 280k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Transmission/) (tstamps /5FE44E7A/))
(tstamp 5FE5A807))
(comp (ref R9)
(value 649k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Transmission/) (tstamps /5FE44E7A/))
(tstamp 5FE5A80D))
(comp (ref U15)
(value CD74AC161M)
(footprint Package_SO:SOP-16_3.9x9.9mm_P1.27mm)
(datasheet https://www.ti.com/lit/ds/symlink/cd74ac161.pdf)
(libsource (lib Custom) (part CD74AC161M) (description "Counter ICs Sync Preset Binary w/ASync Reset"))
(sheetpath (names /Transmission/) (tstamps /5FE44E7A/))
(tstamp 5FE5A850))
(comp (ref U26)
(value 74HC165)
(footprint Package_SO:SOIC-16_3.9x9.9mm_P1.27mm)
(datasheet https://assets.nexperia.com/documents/data-sheet/74HC_HCT165.pdf)
(libsource (lib 74xx) (part 74HC165) (description "Shift Register, 8-bit, Parallel Load"))
(sheetpath (names /Transmission/) (tstamps /5FE44E7A/))
(tstamp 5FD78486))
(comp (ref U18)
(value 74AHC1G32)
(footprint Package_TO_SOT_SMD:SOT-23-5)
(datasheet http://www.ti.com/lit/sg/scyt129e/scyt129e.pdf)
(libsource (lib Custom) (part 74AHC1G32) (description "Single OR Gate, AHCMOS"))
(sheetpath (names /Transmission/) (tstamps /5FE44E7A/))
(tstamp 5FDE1B1D))
(comp (ref U19)
(value 74AHC1G32)
(footprint Package_TO_SOT_SMD:SOT-23-5)
(datasheet http://www.ti.com/lit/sg/scyt129e/scyt129e.pdf)
(libsource (lib Custom) (part 74AHC1G32) (description "Single OR Gate, AHCMOS"))
(sheetpath (names /Transmission/) (tstamps /5FE44E7A/))
(tstamp 5FDF5FA3))
(comp (ref U21)
(value 74AHC1G32)
(footprint Package_TO_SOT_SMD:SOT-23-5)
(datasheet http://www.ti.com/lit/sg/scyt129e/scyt129e.pdf)
(libsource (lib Custom) (part 74AHC1G32) (description "Single OR Gate, AHCMOS"))
(sheetpath (names /Transmission/) (tstamps /5FE44E7A/))
(tstamp 5FDF9EC9))
(comp (ref U24)
(value 74AHC1G08)
(footprint Package_TO_SOT_SMD:SOT-23-5)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT1G08.pdf)
(libsource (lib Custom) (part 74AHC1G08) (description "Single AND Gate, AHCMOS"))
(sheetpath (names /Transmission/) (tstamps /5FE44E7A/))
(tstamp 5FE1BFAB))
(comp (ref U17)
(value LTC6994xS6-1)
(footprint Package_TO_SOT_SMD:SOT-23-6)
(datasheet https://www.analog.com/media/en/technical-documentation/data-sheets/699412fb.pdf)
(libsource (lib Timer) (part LTC6994xS6-1) (description "TimerBlox Delay Block, Programmable, Noise Discriminator, Rising or Falling Edge, TSOT-23-6"))
(sheetpath (names /Transmission/) (tstamps /5FE44E7A/))
(tstamp 5FE6660E))
(comp (ref R10)
(value 976k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Transmission/) (tstamps /5FE44E7A/))
(tstamp 5FE66616))
(comp (ref R11)
(value 102k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Transmission/) (tstamps /5FE44E7A/))
(tstamp 5FE6661C))
(comp (ref R12)
(value 562k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Transmission/) (tstamps /5FE44E7A/))
(tstamp 5FE66623))
(comp (ref U23)
(value 74AHC1G04)
(footprint Package_TO_SOT_SMD:SOT-23-5)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT1G04.pdf)
(libsource (lib Custom) (part 74AHC1G04) (description "Single NOT Gate, AHCMOS"))
(sheetpath (names /Transmission/) (tstamps /5FE44E7A/))
(tstamp 5FE89BEE))
(comp (ref U25)
(value 74AHC1G32)
(footprint Package_TO_SOT_SMD:SOT-23-5)
(datasheet http://www.ti.com/lit/sg/scyt129e/scyt129e.pdf)
(libsource (lib Custom) (part 74AHC1G32) (description "Single OR Gate, AHCMOS"))
(sheetpath (names /Transmission/) (tstamps /5FE44E7A/))
(tstamp 5FE9A364))
(comp (ref C12)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Transmission/) (tstamps /5FE44E7A/))
(tstamp 5FDAC554))
(comp (ref C10)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Transmission/) (tstamps /5FE44E7A/))
(tstamp 5FDBA8F7))
(comp (ref C11)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Transmission/) (tstamps /5FE44E7A/))
(tstamp 5FDC38D3))
(comp (ref C14)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Transmission/) (tstamps /5FE44E7A/))
(tstamp 5FDC772F))
(comp (ref C13)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Transmission/) (tstamps /5FE44E7A/))
(tstamp 5FDE3139))
(comp (ref R14)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Transmission/) (tstamps /5FE44E7A/))
(tstamp 6035E327))
(comp (ref U20)
(value 74AHC1G00)
(footprint Package_TO_SOT_SMD:SOT-23-5)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT1G00.pdf)
(libsource (lib Custom) (part 74AHC1G00) (description "Single NAND Gate, AHCMOS"))
(sheetpath (names /Transmission/) (tstamps /5FE44E7A/))
(tstamp 609F560E)))
(libparts
(libpart (lib 74xx) (part 74HC595)
(aliases
(alias 74LS595)
(alias 74HCT595)
(alias 74AHC595)
(alias 74AHCT595))
(description "8-bit serial in/out Shift Register 3-State Outputs")
(docs http://www.ti.com/lit/ds/symlink/sn74hc595.pdf)
(footprints
(fp DIP*W7.62mm*)
(fp SOIC*3.9x9.9mm*P1.27mm*)
(fp TSSOP*4.4x5mm*P0.65mm*)
(fp SOIC*5.3x10.2mm*P1.27mm*)
(fp SOIC*7.5x10.3mm*P1.27mm*))
(fields
(field (name Reference) U)
(field (name Value) 74HC595))
(pins
(pin (num 1) (name QB) (type 3state))
(pin (num 2) (name QC) (type 3state))
(pin (num 3) (name QD) (type 3state))
(pin (num 4) (name QE) (type 3state))
(pin (num 5) (name QF) (type 3state))
(pin (num 6) (name QG) (type 3state))
(pin (num 7) (name QH) (type 3state))
(pin (num 8) (name GND) (type power_in))
(pin (num 9) (name QH') (type output))
(pin (num 10) (name ~SRCLR) (type input))
(pin (num 11) (name SRCLK) (type input))
(pin (num 12) (name RCLK) (type input))
(pin (num 13) (name ~OE) (type input))
(pin (num 14) (name SER) (type input))
(pin (num 15) (name QA) (type 3state))
(pin (num 16) (name VCC) (type power_in))))
(libpart (lib 74xx) (part 74LS165)
(aliases
(alias 74HC165))
(description "Shift Register 8-bit, parallel load")
(docs https://www.ti.com/lit/ds/symlink/sn74ls165a.pdf)
(footprints
(fp DIP?16*)
(fp SO*16*3.9x9.9mm*P1.27mm*)
(fp SSOP*16*5.3x6.2mm*P0.65mm*)
(fp TSSOP*16*4.4x5mm*P0.65*))
(fields
(field (name Reference) U)
(field (name Value) 74LS165))
(pins
(pin (num 1) (name ~PL) (type input))
(pin (num 2) (name CP) (type input))
(pin (num 3) (name D4) (type input))
(pin (num 4) (name D5) (type input))
(pin (num 5) (name D6) (type input))
(pin (num 6) (name D7) (type input))
(pin (num 7) (name ~Q7) (type output))
(pin (num 8) (name GND) (type power_in))
(pin (num 9) (name Q7) (type output))
(pin (num 10) (name DS) (type input))
(pin (num 11) (name D0) (type input))
(pin (num 12) (name D1) (type input))
(pin (num 13) (name D2) (type input))
(pin (num 14) (name D3) (type input))
(pin (num 15) (name ~CE) (type input))
(pin (num 16) (name VCC) (type power_in))))
(libpart (lib Connector) (part Conn_01x03_Male)
(description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x03_Male))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))))
(libpart (lib Connector) (part Conn_01x04_Male)
(description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x04_Male))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))))
(libpart (lib Connector_Generic) (part Conn_02x20_Odd_Even)
(description "Generic connector, double row, 02x20, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_2x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_02x20_Odd_Even))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))
(pin (num 8) (name Pin_8) (type passive))
(pin (num 9) (name Pin_9) (type passive))
(pin (num 10) (name Pin_10) (type passive))
(pin (num 11) (name Pin_11) (type passive))
(pin (num 12) (name Pin_12) (type passive))
(pin (num 13) (name Pin_13) (type passive))
(pin (num 14) (name Pin_14) (type passive))
(pin (num 15) (name Pin_15) (type passive))
(pin (num 16) (name Pin_16) (type passive))
(pin (num 17) (name Pin_17) (type passive))
(pin (num 18) (name Pin_18) (type passive))
(pin (num 19) (name Pin_19) (type passive))
(pin (num 20) (name Pin_20) (type passive))
(pin (num 21) (name Pin_21) (type passive))
(pin (num 22) (name Pin_22) (type passive))
(pin (num 23) (name Pin_23) (type passive))
(pin (num 24) (name Pin_24) (type passive))
(pin (num 25) (name Pin_25) (type passive))
(pin (num 26) (name Pin_26) (type passive))
(pin (num 27) (name Pin_27) (type passive))
(pin (num 28) (name Pin_28) (type passive))
(pin (num 29) (name Pin_29) (type passive))
(pin (num 30) (name Pin_30) (type passive))
(pin (num 31) (name Pin_31) (type passive))
(pin (num 32) (name Pin_32) (type passive))
(pin (num 33) (name Pin_33) (type passive))
(pin (num 34) (name Pin_34) (type passive))
(pin (num 35) (name Pin_35) (type passive))
(pin (num 36) (name Pin_36) (type passive))
(pin (num 37) (name Pin_37) (type passive))
(pin (num 38) (name Pin_38) (type passive))
(pin (num 39) (name Pin_39) (type passive))
(pin (num 40) (name Pin_40) (type passive))))
(libpart (lib Custom) (part 74AHC1G00)
(description "Single NAND Gate, AHCMOS")
(docs https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT1G00.pdf)
(footprints
(fp SOT*)
(fp SG-*))
(fields
(field (name Reference) U)
(field (name Value) 74AHC1G00))
(pins
(pin (num 1) (name ~) (type input))
(pin (num 2) (name ~) (type input))
(pin (num 3) (name GND) (type power_in))
(pin (num 4) (name ~) (type output))
(pin (num 5) (name VCC) (type power_in))))
(libpart (lib Custom) (part 74AHC1G04)
(aliases
(alias 74AHCT1G04))
(description "Single NOT Gate, AHCMOS")
(docs https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT1G04.pdf)
(footprints
(fp SOT*)
(fp SG-*))
(fields
(field (name Reference) U)
(field (name Value) 74AHC1G04))
(pins
(pin (num 2) (name ~) (type input))
(pin (num 3) (name GND) (type power_in))
(pin (num 4) (name ~) (type output))
(pin (num 5) (name VCC) (type power_in))))
(libpart (lib Custom) (part 74AHC1G08)
(aliases
(alias 74AHCT1G08))
(description "Single AND Gate, AHCMOS")
(docs https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT1G08.pdf)
(footprints
(fp SOT*)
(fp SG-*))
(fields
(field (name Reference) U)
(field (name Value) 74AHC1G08))
(pins
(pin (num 1) (name ~) (type input))
(pin (num 2) (name ~) (type input))
(pin (num 3) (name GND) (type power_in))
(pin (num 4) (name ~) (type output))
(pin (num 5) (name VCC) (type power_in))))
(libpart (lib Custom) (part 74AHC1G125)
(description "Single Buffer Gate Tri-State, AHCMOS")
(docs https://www.ti.com/lit/ds/symlink/sn74ahc1g126.pdf)
(fields
(field (name Reference) U)
(field (name Value) 74AHC1G125))
(pins
(pin (num 1) (name ~OE) (type input))
(pin (num 2) (name ~) (type input))
(pin (num 3) (name GND) (type power_in))
(pin (num 4) (name ~) (type 3state))
(pin (num 5) (name VCC) (type power_in))))
(libpart (lib Custom) (part 74AHC1G32)
(aliases
(alias 74AHCT1G32))
(description "Single OR Gate, AHCMOS")
(docs http://www.ti.com/lit/sg/scyt129e/scyt129e.pdf)
(footprints
(fp SOT*)
(fp SG-*))
(fields
(field (name Reference) U)
(field (name Value) 74AHC1G32))
(pins
(pin (num 1) (name ~) (type input))
(pin (num 2) (name ~) (type input))
(pin (num 3) (name GND) (type power_in))
(pin (num 4) (name ~) (type output))
(pin (num 5) (name VCC) (type power_in))))
(libpart (lib Custom) (part 74HCT107)
(aliases
(alias 74HC107))
(description "Dual JK Flip-Flop, reset")
(docs https://assets.nexperia.com/documents/data-sheet/74HC_HCT107.pdf)
(fields
(field (name Reference) U)
(field (name Value) 74HCT107))
(pins
(pin (num 1) (name J) (type input))
(pin (num 2) (name ~Q) (type output))
(pin (num 3) (name Q) (type output))
(pin (num 4) (name K) (type input))
(pin (num 5) (name Q) (type output))
(pin (num 6) (name ~Q) (type output))
(pin (num 7) (name GND) (type power_in))
(pin (num 8) (name J) (type input))
(pin (num 9) (name C) (type input))
(pin (num 10) (name ~R) (type input))
(pin (num 11) (name K) (type input))
(pin (num 12) (name C) (type input))
(pin (num 13) (name ~R) (type input))
(pin (num 14) (name VCC) (type power_in))))
(libpart (lib Custom) (part CD74AC161M)
(description "Counter ICs Sync Preset Binary w/ASync Reset")
(docs https://www.ti.com/lit/ds/symlink/cd74ac161.pdf)
(fields
(field (name Reference) U)
(field (name Value) CD74AC161M))
(pins
(pin (num 1) (name ~CLR) (type input))
(pin (num 2) (name CLK) (type input))
(pin (num 3) (name A) (type input))
(pin (num 4) (name B) (type input))
(pin (num 5) (name C) (type input))
(pin (num 6) (name D) (type input))
(pin (num 7) (name ENP) (type input))
(pin (num 8) (name GND) (type power_in))
(pin (num 9) (name ~LOAD) (type input))
(pin (num 10) (name ENT) (type input))
(pin (num 11) (name Qd) (type output))
(pin (num 12) (name Qc) (type output))
(pin (num 13) (name Qb) (type output))
(pin (num 14) (name Qa) (type output))
(pin (num 15) (name RCO) (type output))
(pin (num 16) (name VCC) (type power_in))))
(libpart (lib Custom) (part LTC6990CS6)
(description "Voltage Controlled Silicon Oscillator")
(docs https://www.mouser.ch/datasheet/2/609/LTC6990-1776026.pdf)
(fields
(field (name Reference) U)
(field (name Value) LTC6990CS6)
(field (name Footprint) Package_TO_SOT_SMD:SOT-23-6))
(pins
(pin (num 1) (name OE) (type input))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name SET) (type input))
(pin (num 4) (name DIV) (type input))
(pin (num 5) (name VCC) (type power_in))
(pin (num 6) (name OUT) (type output))))
(libpart (lib Device) (part C)
(description "Unpolarized capacitor")
(docs ~)
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part R)
(description Resistor)
(docs ~)
(footprints
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Mechanical) (part MountingHole)
(description "Mounting Hole without connection")
(docs ~)
(footprints
(fp MountingHole*))
(fields
(field (name Reference) H)
(field (name Value) MountingHole)))
(libpart (lib Timer) (part LTC6994xS6-1)
(aliases
(alias LTC6994xS6-2))
(description "TimerBlox Delay Block, Programmable, Noise Discriminator, Rising or Falling Edge, TSOT-23-6")
(docs https://www.analog.com/media/en/technical-documentation/data-sheets/699412fb.pdf)
(footprints
(fp TSOT*23*))
(fields
(field (name Reference) U)
(field (name Value) LTC6994xS6-1)
(field (name Footprint) Package_TO_SOT_SMD:TSOT-23-6))
(pins
(pin (num 1) (name IN) (type input))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name SET) (type passive))
(pin (num 4) (name DIV) (type input))
(pin (num 5) (name V+) (type power_in))
(pin (num 6) (name OUT) (type output)))))
(libraries
(library (logical 74xx)
(uri C:/kicad/kicad-symbols/74xx.lib))
(library (logical Connector)
(uri C:/kicad/kicad-symbols/Connector.lib))
(library (logical Connector_Generic)
(uri C:/kicad/kicad-symbols/Connector_Generic.lib))
(library (logical Custom)
(uri C:\Users\guill\Desktop\Creation\Github\UART_peripheral_card_A/libraries/Custom.lib))
(library (logical Device)
(uri C:/kicad/kicad-symbols/Device.lib))
(library (logical Mechanical)
(uri C:/kicad/kicad-symbols/Mechanical.lib))
(library (logical Timer)
(uri C:/kicad/kicad-symbols/Timer.lib)))
(nets
(net (code 1) (name /BREAD2_5)
(node (ref J1) (pin 11)))
(net (code 2) (name /BREAD2_4)
(node (ref J1) (pin 13)))
(net (code 3) (name /BREAD2_3)
(node (ref J1) (pin 15)))
(net (code 4) (name /BREAD2_2)
(node (ref J1) (pin 17)))
(net (code 5) (name VCC)
(node (ref R15) (pin 1))
(node (ref C5) (pin 1))
(node (ref R1) (pin 1))
(node (ref U25) (pin 5))
(node (ref U17) (pin 5))
(node (ref C12) (pin 1))
(node (ref J4) (pin 2))
(node (ref R10) (pin 1))
(node (ref U6) (pin 5)))
(net (code 6) (name +3V3)
(node (ref J1) (pin 39))
(node (ref U13) (pin 10))
(node (ref U13) (pin 16))
(node (ref C4) (pin 1))
(node (ref C9) (pin 2))
(node (ref J4) (pin 3))
(node (ref U27) (pin 5))
(node (ref U28) (pin 5))
(node (ref J2) (pin 3))
(node (ref C3) (pin 1)))
(net (code 7) (name /BWRITE1_5)
(node (ref U26) (pin 13))
(node (ref J1) (pin 28)))
(net (code 8) (name /BWRITE1_4)
(node (ref J1) (pin 30))
(node (ref U26) (pin 14)))
(net (code 9) (name /BWRITE1_3)
(node (ref U26) (pin 3))
(node (ref J1) (pin 32)))
(net (code 10) (name /BWRITE1_2)
(node (ref J1) (pin 34))
(node (ref U26) (pin 4)))
(net (code 11) (name /BWRITE1_1)
(node (ref U26) (pin 5))
(node (ref J1) (pin 36)))
(net (code 12) (name /BWRITE1_0)
(node (ref J1) (pin 38))
(node (ref U26) (pin 6)))
(net (code 13) (name /~TRANSMIT)
(node (ref U14) (pin 12))
(node (ref U4) (pin 4)))
(net (code 14) (name /~RST_TX_FLAG)
(node (ref U2) (pin 4))
(node (ref U14) (pin 10)))
(net (code 15) (name /BWRITE1_7)
(node (ref J1) (pin 24))
(node (ref U26) (pin 11)))
(net (code 16) (name /BWRITE1_6)
(node (ref J1) (pin 26))
(node (ref U26) (pin 12)))
(net (code 17) (name GND)
(node (ref R2) (pin 2))
(node (ref U8) (pin 4))
(node (ref R5) (pin 2))
(node (ref U8) (pin 3))
(node (ref R4) (pin 2))
(node (ref C7) (pin 1))
(node (ref R6) (pin 2))
(node (ref C6) (pin 2))
(node (ref C9) (pin 1))
(node (ref U8) (pin 5))
(node (ref U8) (pin 6))
(node (ref U8) (pin 8))
(node (ref U11) (pin 3))
(node (ref U6) (pin 2))
(node (ref U10) (pin 3))
(node (ref R13) (pin 2))
(node (ref U9) (pin 4))
(node (ref U13) (pin 8))
(node (ref C8) (pin 1))
(node (ref U7) (pin 2))
(node (ref U9) (pin 11))
(node (ref U9) (pin 7))
(node (ref U15) (pin 4))
(node (ref U15) (pin 5))
(node (ref U15) (pin 6))
(node (ref U15) (pin 8))
(node (ref U15) (pin 3))
(node (ref C12) (pin 2))
(node (ref U16) (pin 2))
(node (ref U18) (pin 3))
(node (ref U19) (pin 3))
(node (ref U26) (pin 8))
(node (ref R8) (pin 2))
(node (ref R9) (pin 2))
(node (ref U14) (pin 11))
(node (ref U14) (pin 7))
(node (ref U14) (pin 4))
(node (ref U23) (pin 3))
(node (ref U24) (pin 3))
(node (ref U17) (pin 2))
(node (ref R11) (pin 2))
(node (ref R12) (pin 2))
(node (ref U21) (pin 3))
(node (ref C14) (pin 1))
(node (ref U25) (pin 3))
(node (ref R14) (pin 2))
(node (ref U20) (pin 3))
(node (ref C10) (pin 2))
(node (ref C11) (pin 1))
(node (ref C13) (pin 1))
(node (ref U28) (pin 3))
(node (ref U27) (pin 3))
(node (ref C5) (pin 2))
(node (ref C1) (pin 2))
(node (ref C3) (pin 2))
(node (ref U2) (pin 3))
(node (ref J3) (pin 1))
(node (ref U1) (pin 3))
(node (ref U5) (pin 3))
(node (ref U4) (pin 3))
(node (ref C4) (pin 2))
(node (ref J1) (pin 1))
(node (ref C2) (pin 2))
(node (ref J2) (pin 1))
(node (ref J2) (pin 2)))
(net (code 18) (name /BREAD2_6)
(node (ref J1) (pin 9)))
(net (code 19) (name /PERIPHERAL_TX)
(node (ref J3) (pin 3))
(node (ref U25) (pin 4)))
(net (code 20) (name /PERIPHERAL_RX)
(node (ref R15) (pin 2))
(node (ref U6) (pin 1))
(node (ref U13) (pin 14))
(node (ref J3) (pin 2)))
(net (code 21) (name /CLK_MODULE)
(node (ref J1) (pin 4))
(node (ref U2) (pin 2))
(node (ref U4) (pin 2))
(node (ref U1) (pin 2))
(node (ref U5) (pin 2)))
(net (code 22) (name /~APPLY_TX_DATA)
(node (ref U26) (pin 1))
(node (ref U5) (pin 4)))
(net (code 23) (name /BREAD2_1)
(node (ref U28) (pin 4))
(node (ref J1) (pin 19)))
(net (code 24) (name /TRANSMIT_FLAG)
(node (ref U28) (pin 2))
(node (ref U14) (pin 5)))
(net (code 25) (name /~CS_MODULE)
(node (ref U13) (pin 13))
(node (ref J1) (pin 2))
(node (ref U28) (pin 1))
(node (ref U27) (pin 1)))
(net (code 26) (name /BREAD2_0)
(node (ref U27) (pin 4))
(node (ref J1) (pin 21)))
(net (code 27) (name /BWRITE2_4)
(node (ref J1) (pin 14)))
(net (code 28) (name /BWRITE2_5)
(node (ref J1) (pin 12)))
(net (code 29) (name /BWRITE2_6)
(node (ref J1) (pin 10)))
(net (code 30) (name /BWRITE2_7)
(node (ref J1) (pin 8)))
(net (code 31) (name /SYNC_BIT)
(node (ref J1) (pin 6)))
(net (code 32) (name /PERIPHERAL_CLK)
(node (ref J1) (pin 3)))
(net (code 33) (name /~RESET_CLK)
(node (ref J1) (pin 5)))
(net (code 34) (name /BREAD2_7)
(node (ref J1) (pin 7)))
(net (code 35) (name +5V)
(node (ref C10) (pin 1))
(node (ref C14) (pin 2))
(node (ref J1) (pin 40))
(node (ref C13) (pin 2))
(node (ref U20) (pin 5))
(node (ref U23) (pin 5))
(node (ref U21) (pin 5))
(node (ref U24) (pin 5))
(node (ref C11) (pin 2))
(node (ref U26) (pin 16))
(node (ref U19) (pin 5))
(node (ref C1) (pin 1))
(node (ref C2) (pin 1))
(node (ref U4) (pin 5))
(node (ref U18) (pin 5))
(node (ref U1) (pin 5))
(node (ref U16) (pin 5))
(node (ref R7) (pin 1))
(node (ref U14) (pin 8))
(node (ref J2) (pin 4))
(node (ref U26) (pin 10))
(node (ref U14) (pin 14))
(node (ref J4) (pin 1))
(node (ref U2) (pin 5))
(node (ref U14) (pin 1))
(node (ref U5) (pin 5))
(node (ref U15) (pin 10))
(node (ref U15) (pin 16))
(node (ref U15) (pin 7))
(node (ref U15) (pin 9))
(node (ref R3) (pin 1))
(node (ref U8) (pin 16))
(node (ref C6) (pin 1))