forked from noriakinakagawa/RasPi4-UART-RS485
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRasPi4-UART-RS485.net
1015 lines (1015 loc) · 43.1 KB
/
RasPi4-UART-RS485.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 "I:\\Nakagawa\\Dropbox (rt-net)\\kiCAD\\RasPi4-UART-RS485\\RasPi4-UART-RS485.sch")
(date "2020/12/24 12:27:11")
(tool "Eeschema (5.1.8)-1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "Raspberry Pi 4 UART-RS485")
(company "Noriaki Nakagawa")
(rev)
(date "15 nov 2012")
(source RasPi4-UART-RS485.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref MK3)
(value M2.5)
(footprint MountingHole:MountingHole_2.7mm_M2.5)
(libsource (lib RasPi4-UART-RS485-rescue) (part Mounting_Hole-Mechanical) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5834FBEF))
(comp (ref MK2)
(value M2.5)
(footprint MountingHole:MountingHole_2.7mm_M2.5)
(libsource (lib RasPi4-UART-RS485-rescue) (part Mounting_Hole-Mechanical) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5834FC19))
(comp (ref MK4)
(value M2.5)
(footprint MountingHole:MountingHole_2.7mm_M2.5)
(libsource (lib RasPi4-UART-RS485-rescue) (part Mounting_Hole-Mechanical) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5834FC4F))
(comp (ref P1)
(value Conn_02x20)
(footprint Socket_Strips:Socket_Strip_Straight_2x20_Pitch2.54mm)
(fields
(field (name order_URL) https://akizukidenshi.com/catalog/g/gC-00085/)
(field (name 型番) FH-2x20SG))
(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 59AD464A))
(comp (ref U6)
(value LTC6994xS6-1)
(footprint TO_SOT_Packages_SMD:TSOT-23-6)
(datasheet https://www.analog.com/media/en/technical-documentation/data-sheets/699412fb.pdf)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/analog-devices-inc/LTC6994CS6-1-TRMPBF/LTC6994CS6-1-TRMPBFCT-ND/2404476)
(field (name 型番) LTC6994CS6-1#TRMPBF))
(libsource (lib Timer) (part LTC6994xS6-1) (description "TimerBlox Delay Block, Programmable, Noise Discriminator, Rising or Falling Edge, TSOT-23-6"))
(sheetpath (names /) (tstamps /))
(tstamp 5FBF67A8))
(comp (ref R1)
(value 470k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/panasonic-electronic-components/ERJ-3EKF4703V/P470KHCT-ND/1746784)
(field (name 型番) ERJ-3EKF4703V))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5FBF77F2))
(comp (ref U1)
(value 74LVC1G04)
(footprint TO_SOT_Packages_SMD:SOT-353_SC-70-5)
(datasheet https://assets.nexperia.com/documents/data-sheet/74LVC1G04.pdf)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/nexperia-usa-inc/74LVC1G04GW-125/1727-2871-1-ND/763420)
(field (name 型番) 74LVC1G04GW,125))
(libsource (lib 74xGxx) (part 74LVC1G04) (description "Single NOT Gate, Low-Voltage CMOS"))
(sheetpath (names /) (tstamps /))
(tstamp 5FBFA707))
(comp (ref C1)
(value 0.1u)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/kemet/C0603C104M4RACTU/399-1099-1-ND/411374)
(field (name 型番) C0603C104M4RACTU))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5FF9035A))
(comp (ref C2)
(value 0.1u)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/kemet/C0603C104M4RACTU/399-1099-1-ND/411374)
(field (name 型番) C0603C104M4RACTU))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5FFA12DF))
(comp (ref J7)
(value B2B-XH)
(footprint Connectors_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical)
(datasheet ~)
(fields
(field (name order_URL) https://akizukidenshi.com/catalog/g/gC-12247/)
(field (name 型番) "B2B-XH-A(LF)(SN"))
(libsource (lib Connector_Generic) (part Conn_01x02) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5FD4C039))
(comp (ref D1)
(value LED)
(footprint LEDs:LED_0603)
(datasheet ~)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/lite-on-inc/LTST-C190KRKT/160-1436-1-ND/386816)
(field (name 型番) LTST-C190KRKT))
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 600123BD))
(comp (ref R8)
(value 10k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/te-connectivity-passive-product/CRG0603F10K-10/A121523CT-ND/5246510)
(field (name 型番) CRG0603F10K/10))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 6001BEDC))
(comp (ref U11)
(value ST1480ACDR)
(footprint Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm)
(datasheet https://media.digikey.com/pdf/Data%20Sheets/ST%20Microelectronics%20PDFS/ST1480AB_C_Rev_4.pdf)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/stmicroelectronics/ST1480ACDR/497-3726-1-ND/686444)
(field (name 型番) ST1480ACDR))
(libsource (lib ST1480ACDR) (part ST1480ACDR) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FE4A026))
(comp (ref U17)
(value D24V50F5)
(footprint D24V50F5:D24V50F5)
(datasheet https://www.pololu.com/product/2851)
(fields
(field (name order_URL) https://store.shopping.yahoo.co.jp/suzakulab/pololu-2851.html)
(field (name 型番) D24V50F5))
(libsource (lib D24V50F5) (part D24V50F5) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEB4714))
(comp (ref J1)
(value B4B-EH)
(footprint Connectors_JST:JST_EH_B4B-EH-A_1x04_P2.50mm_Vertical)
(datasheet ~)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/jst-sales-america-inc/B4B-EH-A-LF-SN/455-1613-ND/758748)
(field (name 型番) "B4B-EH-A(LF)(SN)"))
(libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5FBDE04B))
(comp (ref U7)
(value LTC6994xS6-1)
(footprint TO_SOT_Packages_SMD:TSOT-23-6)
(datasheet https://www.analog.com/media/en/technical-documentation/data-sheets/699412fb.pdf)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/analog-devices-inc/LTC6994CS6-1-TRMPBF/LTC6994CS6-1-TRMPBFCT-ND/2404476)
(field (name 型番) LTC6994CS6-1#TRMPBF))
(libsource (lib Timer) (part LTC6994xS6-1) (description "TimerBlox Delay Block, Programmable, Noise Discriminator, Rising or Falling Edge, TSOT-23-6"))
(sheetpath (names /) (tstamps /))
(tstamp 5FF72E8E))
(comp (ref R2)
(value 470k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/panasonic-electronic-components/ERJ-3EKF4703V/P470KHCT-ND/1746784)
(field (name 型番) ERJ-3EKF4703V))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5FF72E96))
(comp (ref U2)
(value 74LVC1G04)
(footprint TO_SOT_Packages_SMD:SOT-353_SC-70-5)
(datasheet https://assets.nexperia.com/documents/data-sheet/74LVC1G04.pdf)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/nexperia-usa-inc/74LVC1G04GW-125/1727-2871-1-ND/763420)
(field (name 型番) 74LVC1G04GW,125))
(libsource (lib 74xGxx) (part 74LVC1G04) (description "Single NOT Gate, Low-Voltage CMOS"))
(sheetpath (names /) (tstamps /))
(tstamp 5FF72E9E))
(comp (ref C3)
(value 0.1u)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/kemet/C0603C104M4RACTU/399-1099-1-ND/411374)
(field (name 型番) C0603C104M4RACTU))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5FF72ED3))
(comp (ref C4)
(value 0.1u)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/kemet/C0603C104M4RACTU/399-1099-1-ND/411374)
(field (name 型番) C0603C104M4RACTU))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5FF72EDB))
(comp (ref U12)
(value ST1480ACDR)
(footprint Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm)
(datasheet https://media.digikey.com/pdf/Data%20Sheets/ST%20Microelectronics%20PDFS/ST1480AB_C_Rev_4.pdf)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/stmicroelectronics/ST1480ACDR/497-3726-1-ND/686444)
(field (name 型番) ST1480ACDR))
(libsource (lib ST1480ACDR) (part ST1480ACDR) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF72EEA))
(comp (ref J2)
(value B4B-EH)
(footprint Connectors_JST:JST_EH_B4B-EH-A_1x04_P2.50mm_Vertical)
(datasheet ~)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/jst-sales-america-inc/B4B-EH-A-LF-SN/455-1613-ND/758748)
(field (name 型番) "B4B-EH-A(LF)(SN)"))
(libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5FF72EF6))
(comp (ref U8)
(value LTC6994xS6-1)
(footprint TO_SOT_Packages_SMD:TSOT-23-6)
(datasheet https://www.analog.com/media/en/technical-documentation/data-sheets/699412fb.pdf)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/analog-devices-inc/LTC6994CS6-1-TRMPBF/LTC6994CS6-1-TRMPBFCT-ND/2404476)
(field (name 型番) LTC6994CS6-1#TRMPBF))
(libsource (lib Timer) (part LTC6994xS6-1) (description "TimerBlox Delay Block, Programmable, Noise Discriminator, Rising or Falling Edge, TSOT-23-6"))
(sheetpath (names /) (tstamps /))
(tstamp 5FFAC9C5))
(comp (ref R3)
(value 470k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/panasonic-electronic-components/ERJ-3EKF4703V/P470KHCT-ND/1746784)
(field (name 型番) ERJ-3EKF4703V))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5FFAC9CD))
(comp (ref U3)
(value 74LVC1G04)
(footprint TO_SOT_Packages_SMD:SOT-353_SC-70-5)
(datasheet https://assets.nexperia.com/documents/data-sheet/74LVC1G04.pdf)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/nexperia-usa-inc/74LVC1G04GW-125/1727-2871-1-ND/763420)
(field (name 型番) 74LVC1G04GW,125))
(libsource (lib 74xGxx) (part 74LVC1G04) (description "Single NOT Gate, Low-Voltage CMOS"))
(sheetpath (names /) (tstamps /))
(tstamp 5FFAC9D5))
(comp (ref C5)
(value 0.1u)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/kemet/C0603C104M4RACTU/399-1099-1-ND/411374)
(field (name 型番) C0603C104M4RACTU))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5FFACA0A))
(comp (ref C6)
(value 0.1u)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/kemet/C0603C104M4RACTU/399-1099-1-ND/411374)
(field (name 型番) C0603C104M4RACTU))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5FFACA12))
(comp (ref U13)
(value ST1480ACDR)
(footprint Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm)
(datasheet https://media.digikey.com/pdf/Data%20Sheets/ST%20Microelectronics%20PDFS/ST1480AB_C_Rev_4.pdf)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/stmicroelectronics/ST1480ACDR/497-3726-1-ND/686444)
(field (name 型番) ST1480ACDR))
(libsource (lib ST1480ACDR) (part ST1480ACDR) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FFACA21))
(comp (ref J3)
(value B4B-EH)
(footprint Connectors_JST:JST_EH_B4B-EH-A_1x04_P2.50mm_Vertical)
(datasheet ~)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/jst-sales-america-inc/B4B-EH-A-LF-SN/455-1613-ND/758748)
(field (name 型番) "B4B-EH-A(LF)(SN)"))
(libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5FFACA2D))
(comp (ref U9)
(value LTC6994xS6-1)
(footprint TO_SOT_Packages_SMD:TSOT-23-6)
(datasheet https://www.analog.com/media/en/technical-documentation/data-sheets/699412fb.pdf)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/analog-devices-inc/LTC6994CS6-1-TRMPBF/LTC6994CS6-1-TRMPBFCT-ND/2404476)
(field (name 型番) LTC6994CS6-1#TRMPBF))
(libsource (lib Timer) (part LTC6994xS6-1) (description "TimerBlox Delay Block, Programmable, Noise Discriminator, Rising or Falling Edge, TSOT-23-6"))
(sheetpath (names /) (tstamps /))
(tstamp 5FFACA4B))
(comp (ref R4)
(value 470k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/panasonic-electronic-components/ERJ-3EKF4703V/P470KHCT-ND/1746784)
(field (name 型番) ERJ-3EKF4703V))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5FFACA53))
(comp (ref U4)
(value 74LVC1G04)
(footprint TO_SOT_Packages_SMD:SOT-353_SC-70-5)
(datasheet https://assets.nexperia.com/documents/data-sheet/74LVC1G04.pdf)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/nexperia-usa-inc/74LVC1G04GW-125/1727-2871-1-ND/763420)
(field (name 型番) 74LVC1G04GW,125))
(libsource (lib 74xGxx) (part 74LVC1G04) (description "Single NOT Gate, Low-Voltage CMOS"))
(sheetpath (names /) (tstamps /))
(tstamp 5FFACA5B))
(comp (ref C7)
(value 0.1u)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/kemet/C0603C104M4RACTU/399-1099-1-ND/411374)
(field (name 型番) C0603C104M4RACTU))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5FFACA8D))
(comp (ref C8)
(value 0.1u)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/kemet/C0603C104M4RACTU/399-1099-1-ND/411374)
(field (name 型番) C0603C104M4RACTU))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5FFACA95))
(comp (ref U14)
(value ST1480ACDR)
(footprint Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm)
(datasheet https://media.digikey.com/pdf/Data%20Sheets/ST%20Microelectronics%20PDFS/ST1480AB_C_Rev_4.pdf)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/stmicroelectronics/ST1480ACDR/497-3726-1-ND/686444)
(field (name 型番) ST1480ACDR))
(libsource (lib ST1480ACDR) (part ST1480ACDR) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FFACAA4))
(comp (ref J4)
(value B4B-EH)
(footprint Connectors_JST:JST_EH_B4B-EH-A_1x04_P2.50mm_Vertical)
(datasheet ~)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/jst-sales-america-inc/B4B-EH-A-LF-SN/455-1613-ND/758748)
(field (name 型番) "B4B-EH-A(LF)(SN)"))
(libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5FFACAB0))
(comp (ref U10)
(value LTC6994xS6-1)
(footprint TO_SOT_Packages_SMD:TSOT-23-6)
(datasheet https://www.analog.com/media/en/technical-documentation/data-sheets/699412fb.pdf)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/analog-devices-inc/LTC6994CS6-1-TRMPBF/LTC6994CS6-1-TRMPBFCT-ND/2404476)
(field (name 型番) LTC6994CS6-1#TRMPBF))
(libsource (lib Timer) (part LTC6994xS6-1) (description "TimerBlox Delay Block, Programmable, Noise Discriminator, Rising or Falling Edge, TSOT-23-6"))
(sheetpath (names /) (tstamps /))
(tstamp 5FFD86B9))
(comp (ref R5)
(value 470k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/panasonic-electronic-components/ERJ-3EKF4703V/P470KHCT-ND/1746784)
(field (name 型番) ERJ-3EKF4703V))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5FFD86C1))
(comp (ref U5)
(value 74LVC1G04)
(footprint TO_SOT_Packages_SMD:SOT-353_SC-70-5)
(datasheet https://assets.nexperia.com/documents/data-sheet/74LVC1G04.pdf)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/nexperia-usa-inc/74LVC1G04GW-125/1727-2871-1-ND/763420)
(field (name 型番) 74LVC1G04GW,125))
(libsource (lib 74xGxx) (part 74LVC1G04) (description "Single NOT Gate, Low-Voltage CMOS"))
(sheetpath (names /) (tstamps /))
(tstamp 5FFD86C9))
(comp (ref C9)
(value 0.1u)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/kemet/C0603C104M4RACTU/399-1099-1-ND/411374)
(field (name 型番) C0603C104M4RACTU))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5FFD86FB))
(comp (ref C10)
(value 0.1u)
(footprint Capacitors_SMD:C_0603)
(datasheet ~)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/kemet/C0603C104M4RACTU/399-1099-1-ND/411374)
(field (name 型番) C0603C104M4RACTU))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5FFD8703))
(comp (ref U15)
(value ST1480ACDR)
(footprint Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm)
(datasheet https://media.digikey.com/pdf/Data%20Sheets/ST%20Microelectronics%20PDFS/ST1480AB_C_Rev_4.pdf)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/stmicroelectronics/ST1480ACDR/497-3726-1-ND/686444)
(field (name 型番) ST1480ACDR))
(libsource (lib ST1480ACDR) (part ST1480ACDR) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FFD8712))
(comp (ref J5)
(value B4B-EH)
(footprint Connectors_JST:JST_EH_B4B-EH-A_1x04_P2.50mm_Vertical)
(datasheet ~)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/jst-sales-america-inc/B4B-EH-A-LF-SN/455-1613-ND/758748)
(field (name 型番) "B4B-EH-A(LF)(SN)"))
(libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5FFD871E))
(comp (ref U16)
(value MPU-9250)
(footprint MPU-9250:MPU-9250)
(datasheet https://strawberry-linux.com/pub/mpu-9250-manual.pdf)
(fields
(field (name order_URL) https://strawberry-linux.com/catalog/items?code=12250)
(field (name 型番) MPU-9250))
(libsource (lib MPU-9250) (part MPU-9250) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 6001852B))
(comp (ref R6)
(value 10k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/te-connectivity-passive-product/CRG0603F10K-10/A121523CT-ND/5246510)
(field (name 型番) CRG0603F10K/10))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 601F4966))
(comp (ref R7)
(value 10k)
(footprint Resistors_SMD:R_0603)
(datasheet ~)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/te-connectivity-passive-product/CRG0603F10K-10/A121523CT-ND/5246510)
(field (name 型番) CRG0603F10K/10))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 60208C87))
(comp (ref J6)
(value B4B-EH)
(footprint Connectors_JST:JST_EH_B4B-EH-A_1x04_P2.50mm_Vertical)
(datasheet ~)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/jst-sales-america-inc/B4B-EH-A-LF-SN/455-1613-ND/758748)
(field (name 型番) "B4B-EH-A(LF)(SN)"))
(libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 607F5EE2))
(comp (ref J8)
(value B2B-PH)
(footprint Connectors_JST:JST_PH_B2B-PH-K_1x02_P2.00mm_Vertical)
(datasheet ~)
(fields
(field (name order_URL) https://akizukidenshi.com/catalog/g/gC-12802/)
(field (name 型番) "B2B-PH-K-S(LF)(SN)"))
(libsource (lib Connector_Generic) (part Conn_01x02) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5FE1636A))
(comp (ref M1)
(value Fan)
(footprint F251R-05LB:F251R-05LB)
(datasheet ~)
(fields
(field (name order_URL) https://www.digikey.jp/product-detail/ja/nidec-copal-electronics/F251R-05LB/563-1109-ND/1165503)
(field (name 型番) F251R-05LB))
(libsource (lib Motor) (part Fan) (description Fan))
(sheetpath (names /) (tstamps /))
(tstamp 5FF136D8)))
(libparts
(libpart (lib 74xGxx) (part 74LVC1G04)
(aliases
(alias 74LVC1GU04)
(alias 74AHC1G04)
(alias 74AHCT1G04)
(alias 74AUC1G04)
(alias 74AUP1G04)
(alias 74AHC1GU04)
(alias 74AHCT1GU04)
(alias 74AUC1GU04)
(alias 74AUP1GU04))
(description "Single NOT Gate, Low-Voltage CMOS")
(docs http://www.ti.com/lit/sg/scyt129e/scyt129e.pdf)
(footprints
(fp SOT*)
(fp SG-*))
(fields
(field (name Reference) U)
(field (name Value) 74LVC1G04))
(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 Connector_Generic) (part Conn_01x02)
(description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x02))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))))
(libpart (lib Connector_Generic) (part Conn_01x04)
(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))
(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 D24V50F5) (part D24V50F5)
(fields
(field (name Reference) U)
(field (name Value) D24V50F5))
(pins
(pin (num 1) (name ENABLE) (type input))
(pin (num 2) (name VIN) (type input))
(pin (num 3) (name GND) (type input))
(pin (num 4) (name GND) (type input))
(pin (num 5) (name VOUT) (type input))))
(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 LED)
(description "Light emitting diode")
(docs ~)
(footprints
(fp LED*)
(fp LED_SMD:*)
(fp LED_THT:*))
(fields
(field (name Reference) D)
(field (name Value) LED))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (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 MPU-9250) (part MPU-9250)
(docs https://strawberry-linux.com/pub/mpu-9250-manual.pdf)
(fields
(field (name Reference) U)
(field (name Value) MPU-9250)
(field (name order_URL) https://strawberry-linux.com/catalog/items?code=12250)
(field (name 型番) MPU-9250))
(pins
(pin (num 1) (name VDD) (type power_in))
(pin (num 2) (name VDDIO) (type input))
(pin (num 3) (name SCL/SCLK) (type input))
(pin (num 4) (name SDA/SDI) (type input))
(pin (num 5) (name AD0/SDO) (type input))
(pin (num 6) (name ~CS) (type input))
(pin (num 7) (name AUX_CL) (type input))
(pin (num 8) (name AUX_DA) (type input))
(pin (num 9) (name INT) (type input))
(pin (num 10) (name GND) (type power_in))))
(libpart (lib Motor) (part Fan)
(description Fan)
(docs ~)
(footprints
(fp PinHeader*P2.54mm*)
(fp TerminalBlock*))
(fields
(field (name Reference) M)
(field (name Value) Fan))
(pins
(pin (num 1) (name +) (type passive))
(pin (num 2) (name -) (type passive))))
(libpart (lib RasPi4-UART-RS485-rescue) (part Mounting_Hole-Mechanical)
(footprints
(fp Mounting?Hole*)
(fp Hole*))
(fields
(field (name Reference) MK)
(field (name Value) Mounting_Hole-Mechanical)))
(libpart (lib ST1480ACDR) (part ST1480ACDR)
(aliases
(alias MAX3072E)
(alias MAX3075E)
(alias MAX3078E)
(alias SP3481EN)
(alias SP3485CN)
(alias SP3485EN))
(docs https://media.digikey.com/pdf/Data%20Sheets/ST%20Microelectronics%20PDFS/ST1480AB_C_Rev_4.pdf)
(footprints
(fp SOIC*3.9x4.9mm*P1.27mm*))
(fields
(field (name Reference) U)
(field (name Value) ST1480ACDR)
(field (name Footprint) Package_SO:SOIC-8_3.9x4.9mm_P1.27mm)
(field (name order_URL) https://www.digikey.jp/product-detail/ja/stmicroelectronics/ST1480ACDR/497-3726-1-ND/686444)
(field (name 型番) ST1480ACDR))
(pins
(pin (num 1) (name RO) (type output))
(pin (num 2) (name ~RE~) (type input))
(pin (num 3) (name DE) (type input))
(pin (num 4) (name DI) (type input))
(pin (num 5) (name GND) (type power_in))
(pin (num 6) (name A) (type BiDi))
(pin (num 7) (name B) (type BiDi))
(pin (num 8) (name VCC) (type power_in))))
(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 74xGxx)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/74xGxx.lib"))
(library (logical Connector_Generic)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Connector_Generic.lib"))
(library (logical D24V50F5)
(uri "I:\\Nakagawa\\Dropbox (rt-net)\\kiCAD\\RasPi4-UART-RS485/D24V50F5/D24V50F5.lib"))
(library (logical Device)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Device.lib"))
(library (logical MPU-9250)
(uri "I:\\Nakagawa\\Dropbox (rt-net)\\kiCAD\\RasPi4-UART-RS485/MPU-9250/MPU-9250.lib"))
(library (logical Motor)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Motor.lib"))
(library (logical RasPi4-UART-RS485-rescue)
(uri "I:\\Nakagawa\\Dropbox (rt-net)\\kiCAD\\RasPi4-UART-RS485/RasPi4-UART-RS485-rescue.lib"))
(library (logical ST1480ACDR)
(uri "I:\\Nakagawa\\Dropbox (rt-net)\\kiCAD\\RasPi4-UART-RS485/ST1480ACDR/ST1480ACDR.lib"))
(library (logical Timer)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Timer.lib")))
(nets
(net (code 1) (name +BATT)
(node (ref J2) (pin 2))
(node (ref J5) (pin 2))
(node (ref J4) (pin 2))
(node (ref J6) (pin 2))
(node (ref J3) (pin 2))
(node (ref D1) (pin 2))
(node (ref J7) (pin 2))
(node (ref U17) (pin 2))
(node (ref J1) (pin 2)))
(net (code 2) (name TXD4)
(node (ref U4) (pin 2))
(node (ref U14) (pin 4))
(node (ref P1) (pin 24)))
(net (code 3) (name RXD4)
(node (ref P1) (pin 21))
(node (ref U14) (pin 1)))
(net (code 4) (name "Net-(U4-Pad4)")
(node (ref U4) (pin 4))
(node (ref U9) (pin 1)))
(net (code 5) (name "Net-(R4-Pad1)")
(node (ref R4) (pin 1))
(node (ref U9) (pin 3)))
(net (code 6) (name "Net-(R5-Pad1)")
(node (ref R5) (pin 1))
(node (ref U10) (pin 3)))
(net (code 7) (name "Net-(U10-Pad6)")
(node (ref U15) (pin 2))
(node (ref U10) (pin 6))
(node (ref U15) (pin 3)))
(net (code 8) (name "Net-(U10-Pad1)")
(node (ref U10) (pin 1))
(node (ref U5) (pin 4)))
(net (code 9) (name TXD5)
(node (ref U15) (pin 4))
(node (ref U5) (pin 2))
(node (ref P1) (pin 32)))
(net (code 10) (name "Net-(U14-Pad2)")
(node (ref U9) (pin 6))
(node (ref U14) (pin 2))
(node (ref U14) (pin 3)))
(net (code 11) (name GND)
(node (ref U8) (pin 2))
(node (ref P1) (pin 20))
(node (ref P1) (pin 25))
(node (ref R3) (pin 2))
(node (ref J6) (pin 1))
(node (ref C3) (pin 2))
(node (ref C4) (pin 2))
(node (ref P1) (pin 30))
(node (ref U14) (pin 5))
(node (ref C9) (pin 2))
(node (ref U6) (pin 2))
(node (ref C7) (pin 2))
(node (ref P1) (pin 14))
(node (ref J2) (pin 1))
(node (ref P1) (pin 34))
(node (ref U12) (pin 5))
(node (ref J8) (pin 2))
(node (ref U16) (pin 10))
(node (ref P1) (pin 39))
(node (ref R2) (pin 2))
(node (ref U2) (pin 3))
(node (ref U3) (pin 3))
(node (ref U10) (pin 2))
(node (ref J5) (pin 1))
(node (ref C8) (pin 2))
(node (ref C10) (pin 2))
(node (ref U15) (pin 5))
(node (ref P1) (pin 9))
(node (ref U5) (pin 3))
(node (ref R5) (pin 2))
(node (ref P1) (pin 6))
(node (ref U1) (pin 3))
(node (ref U9) (pin 2))
(node (ref C6) (pin 2))
(node (ref R4) (pin 2))
(node (ref C5) (pin 2))
(node (ref U4) (pin 3))
(node (ref J4) (pin 1))
(node (ref U11) (pin 5))
(node (ref R1) (pin 2))
(node (ref U7) (pin 2))
(node (ref U13) (pin 5))
(node (ref U17) (pin 4))
(node (ref U17) (pin 3))
(node (ref C2) (pin 2))
(node (ref J7) (pin 1))
(node (ref R8) (pin 2))
(node (ref C1) (pin 2))
(node (ref J3) (pin 1))
(node (ref J1) (pin 1)))
(net (code 12) (name "Net-(J4-Pad3)")
(node (ref J4) (pin 3))
(node (ref U14) (pin 6)))
(net (code 13) (name +3V3)
(node (ref U2) (pin 5))
(node (ref U6) (pin 5))
(node (ref P1) (pin 1))
(node (ref U1) (pin 5))
(node (ref U6) (pin 4))
(node (ref P1) (pin 17))
(node (ref U7) (pin 5))
(node (ref U7) (pin 4))
(node (ref U13) (pin 8))
(node (ref C2) (pin 1))
(node (ref R6) (pin 2))
(node (ref R7) (pin 1))
(node (ref C1) (pin 1))
(node (ref C7) (pin 1))
(node (ref C8) (pin 1))
(node (ref C5) (pin 1))
(node (ref C6) (pin 1))
(node (ref U3) (pin 5))
(node (ref U9) (pin 4))
(node (ref U9) (pin 5))
(node (ref U4) (pin 5))
(node (ref U11) (pin 8))
(node (ref U16) (pin 5))
(node (ref U12) (pin 8))
(node (ref U10) (pin 5))
(node (ref U16) (pin 1))
(node (ref U16) (pin 2))
(node (ref U16) (pin 6))
(node (ref U15) (pin 8))
(node (ref U10) (pin 4))
(node (ref U14) (pin 8))
(node (ref C4) (pin 1))
(node (ref U8) (pin 5))
(node (ref C3) (pin 1))
(node (ref U8) (pin 4))
(node (ref U5) (pin 5))
(node (ref C10) (pin 1))
(node (ref C9) (pin 1)))
(net (code 14) (name "Net-(J4-Pad4)")
(node (ref J4) (pin 4))
(node (ref U14) (pin 7)))
(net (code 15) (name RXD3)
(node (ref U13) (pin 1))
(node (ref P1) (pin 29)))
(net (code 16) (name TXD3)
(node (ref U13) (pin 4))
(node (ref U3) (pin 2))
(node (ref P1) (pin 7)))
(net (code 17) (name "Net-(U3-Pad4)")
(node (ref U3) (pin 4))
(node (ref U8) (pin 1)))
(net (code 18) (name "Net-(R3-Pad1)")
(node (ref R3) (pin 1))
(node (ref U8) (pin 3)))
(net (code 19) (name "Net-(U13-Pad2)")
(node (ref U8) (pin 6))
(node (ref U13) (pin 2))
(node (ref U13) (pin 3)))
(net (code 20) (name "Net-(J3-Pad3)")
(node (ref J3) (pin 3))
(node (ref U13) (pin 6)))
(net (code 21) (name "Net-(J3-Pad4)")
(node (ref U13) (pin 7))
(node (ref J3) (pin 4)))
(net (code 22) (name "/GPIO22(GEN3)")
(node (ref P1) (pin 15)))
(net (code 23) (name "/GPIO27(GEN2)")
(node (ref P1) (pin 13)))
(net (code 24) (name "/GPIO17(GEN0)")
(node (ref P1) (pin 11)))
(net (code 25) (name SDA)
(node (ref U16) (pin 4))
(node (ref P1) (pin 3))
(node (ref R7) (pin 2)))
(net (code 26) (name "Net-(U16-Pad9)")
(node (ref U16) (pin 9)))
(net (code 27) (name "Net-(U16-Pad8)")
(node (ref U16) (pin 8)))
(net (code 28) (name "Net-(U16-Pad7)")
(node (ref U16) (pin 7)))
(net (code 29) (name "Net-(J1-Pad4)")
(node (ref U11) (pin 7))
(node (ref J6) (pin 4))
(node (ref J1) (pin 4)))
(net (code 30) (name "Net-(M1-Pad1)")
(node (ref M1) (pin 1)))
(net (code 31) (name "Net-(M1-Pad2)")
(node (ref M1) (pin 2)))
(net (code 32) (name +5V)
(node (ref P1) (pin 4))
(node (ref U17) (pin 5))
(node (ref P1) (pin 2))
(node (ref J8) (pin 1)))
(net (code 33) (name RXD5)
(node (ref U15) (pin 1))
(node (ref P1) (pin 33)))
(net (code 34) (name "Net-(J5-Pad3)")
(node (ref U15) (pin 6))
(node (ref J5) (pin 3)))
(net (code 35) (name "Net-(J5-Pad4)")
(node (ref U15) (pin 7))
(node (ref J5) (pin 4)))
(net (code 36) (name /GPIO20)
(node (ref P1) (pin 38)))
(net (code 37) (name /GPIO21)
(node (ref P1) (pin 40)))
(net (code 38) (name SCL)
(node (ref R6) (pin 1))
(node (ref U16) (pin 3))
(node (ref P1) (pin 5)))
(net (code 39) (name /GPIO26)
(node (ref P1) (pin 37)))
(net (code 40) (name "/GPIO24(GEN5)")
(node (ref P1) (pin 18)))
(net (code 41) (name /GPIO10)
(node (ref P1) (pin 19)))
(net (code 42) (name "/GPIO25(GEN6)")
(node (ref P1) (pin 22)))
(net (code 43) (name /GPIO11)
(node (ref P1) (pin 23)))
(net (code 44) (name /GPIO7)
(node (ref P1) (pin 26)))
(net (code 45) (name /GPIO6)
(node (ref P1) (pin 31)))
(net (code 46) (name /GPIO19)
(node (ref P1) (pin 35)))
(net (code 47) (name /GPIO16)
(node (ref P1) (pin 36)))
(net (code 48) (name RXD1)
(node (ref U11) (pin 1))
(node (ref P1) (pin 10)))
(net (code 49) (name TXD1)
(node (ref U11) (pin 4))
(node (ref U1) (pin 2))
(node (ref P1) (pin 8)))
(net (code 50) (name "Net-(U11-Pad2)")
(node (ref U6) (pin 6))
(node (ref U11) (pin 2))
(node (ref U11) (pin 3)))
(net (code 51) (name "Net-(R1-Pad1)")
(node (ref U6) (pin 3))
(node (ref R1) (pin 1)))
(net (code 52) (name "Net-(U1-Pad4)")
(node (ref U6) (pin 1))
(node (ref U1) (pin 4)))
(net (code 53) (name "/GPIO23(GEN4)")
(node (ref P1) (pin 16)))
(net (code 54) (name /GPIO18)
(node (ref P1) (pin 12)))
(net (code 55) (name RXD2)
(node (ref P1) (pin 28))
(node (ref U12) (pin 1)))
(net (code 56) (name TXD2)
(node (ref P1) (pin 27))
(node (ref U12) (pin 4))
(node (ref U2) (pin 2)))
(net (code 57) (name "Net-(U2-Pad4)")
(node (ref U7) (pin 1))
(node (ref U2) (pin 4)))
(net (code 58) (name "Net-(R2-Pad1)")
(node (ref U7) (pin 3))
(node (ref R2) (pin 1)))
(net (code 59) (name "Net-(J2-Pad3)")
(node (ref U12) (pin 6))
(node (ref J2) (pin 3)))
(net (code 60) (name "Net-(J2-Pad4)")