-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBetsyBoardBig.net
More file actions
1242 lines (1242 loc) · 48.3 KB
/
BetsyBoardBig.net
File metadata and controls
1242 lines (1242 loc) · 48.3 KB
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 /Users/pengstad/Private/Eda/BetsyBoard/BetsyBoardBig.sch)
(date "Tuesday, November 03, 2020 at 04:37:00 PM")
(tool "Eeschema (5.1.6-0-10_14)")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "BetsyBoard Big")
(company)
(rev 0.2)
(date 2020-08-30)
(source BetsyBoardBig.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U4)
(value STM32L486Rx-LQFP64)
(footprint Package_QFP:LQFP-64_10x10mm_P0.5mm)
(datasheet https://www.st.com/resource/en/datasheet/dm00108833.pdf)
(libsource (lib @Engstad) (part STM32L486Rx-LQFP64) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 55F9D79E))
(comp (ref C12)
(value 4.7uF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 55FB1A3F))
(comp (ref C6)
(value 0.1uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 55FB1A93))
(comp (ref C14)
(value 0.1uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 55FB1B14))
(comp (ref C15)
(value 0.1uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 55FB1B48))
(comp (ref C16)
(value 0.1uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 55FB1BA8))
(comp (ref C17)
(value 0.1uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 55FB1BDE))
(comp (ref C5)
(value 1.0uF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 55FB260E))
(comp (ref C10)
(value 0.1uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5603811A))
(comp (ref C1)
(value 1uF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 560BBDCE))
(comp (ref X1)
(value XTAL)
(footprint engstad:cstce-v-c)
(libsource (lib @Engstad) (part crystal-resonator-smd) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 560C0405))
(comp (ref D1)
(value RED)
(footprint LED_SMD:LED_0603_1608Metric)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 560C0EFD))
(comp (ref R3)
(value 180)
(footprint Resistor_SMD:R_0603_1608Metric)
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 560C1104))
(comp (ref D2)
(value GRN)
(footprint LED_SMD:LED_0603_1608Metric)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 562B4DD6))
(comp (ref R4)
(value 180)
(footprint Resistor_SMD:R_0603_1608Metric)
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 562B4DDD))
(comp (ref Y1)
(value Crystal)
(footprint Crystal:Crystal_SMD_3215-2Pin_3.2x1.5mm)
(libsource (lib Device) (part Crystal) (description "Two pin crystal"))
(sheetpath (names /) (tstamps /))
(tstamp 562BB610))
(comp (ref C8)
(value 12pF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 562BB6B5))
(comp (ref C9)
(value 12pF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 562BB746))
(comp (ref C2)
(value 1uF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 563870A0))
(comp (ref C3)
(value 0.1uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 564EFD30))
(comp (ref P6)
(value BATT)
(footprint Connector_JST:JST_PH_B2B-PH-K_1x02_P2.00mm_Vertical)
(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 56691320))
(comp (ref C11)
(value 0.1uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 57D7DBA4))
(comp (ref J1)
(value USB_B_Micro)
(footprint engstad:usb-micro-b-amphenol-fci-10118194-oval)
(datasheet ~)
(libsource (lib Connector) (part USB_B_Micro) (description "USB Micro Type B connector"))
(sheetpath (names /) (tstamps /))
(tstamp 5FA38BF4))
(comp (ref FB1)
(value 220Ω@100MHz)
(footprint Inductor_SMD:L_0805_2012Metric)
(datasheet https://www.murata.com/en-us/products/en-us/products/productdata/8796738977822/ENFA0005.pdf)
(fields
(field (name "Manuf #") BLM21PG221SN1D))
(libsource (lib Device) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FA452E4))
(comp (ref FB2)
(value 220Ω@100MHz)
(footprint Inductor_SMD:L_0805_2012Metric)
(datasheet https://www.murata.com/en-us/products/en-us/products/productdata/8796738977822/ENFA0005.pdf)
(fields
(field (name "Manuf #") BLM21PG221SN1D))
(libsource (lib Device) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FAD7732))
(comp (ref J2)
(value Micro_SD_Card)
(footprint engstad:Molex_PS_105162_001)
(datasheet https://www.molex.com/pdm_docs/sd/1051620001_sd.pdf)
(fields
(field (name DigiKey#) WM14405CT-ND))
(libsource (lib Connector) (part Micro_SD_Card_Det1) (description "Micro SD Card Socket with single detect pin"))
(sheetpath (names /) (tstamps /))
(tstamp 5F82D29C))
(comp (ref U2)
(value USBLC6-2SC6)
(footprint Package_TO_SOT_SMD:SOT-23-6)
(datasheet https://www.st.com/resource/en/datasheet/usblc6-2.pdf)
(libsource (lib Power_Protection) (part USBLC6-2SC6) (description "Very low capacitance ESD protection diode, 2 data-line, SOT-23-6"))
(sheetpath (names /) (tstamps /))
(tstamp 5F6507DA))
(comp (ref U1)
(value TLV75733PDBVR)
(footprint Package_TO_SOT_SMD:SOT-23-5)
(datasheet https://www.ti.com/lit/ds/symlink/tlv757p.pdf?HQS=TI-null-null-digikeymode-df-pf-null-wwe&ts=1601868242728)
(libsource (lib Regulator_Linear) (part LP5907MFX-3.3) (description "250-mA Ultra-Low-Noise Low-IQ LDO, 3.3V, SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 5F6ED042))
(comp (ref NT1)
(value Net-Tie_2)
(footprint NetTie:NetTie-2_SMD_Pad0.5mm)
(datasheet ~)
(libsource (lib Device) (part Net-Tie_2) (description "Net tie, 2 pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5F7C24DA))
(comp (ref U5)
(value IS25WP256D-xM)
(footprint Package_SO:SOIC-16W_7.5x10.3mm_P1.27mm)
(datasheet "http://www.issi.com/WW/pdf/IS25LP(WP)256D.pdf")
(libsource (lib Memory_Flash) (part IS25WP256D-xM) (description "256-Mbit, 1.8V SPI Serial Flash Memory with Dual-I/O and Quad-I/O Support, SOIC-16"))
(sheetpath (names /) (tstamps /))
(tstamp 5F7865F4))
(comp (ref J6)
(value I2C)
(footprint Connector_JST:JST_SH_SM04B-SRSS-TB_1x04-1MP_P1.00mm_Horizontal)
(datasheet ~)
(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 5F81B24C))
(comp (ref C4)
(value 0.1uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5F860ECE))
(comp (ref R5)
(value 10K)
(footprint Resistor_SMD:R_0603_1608Metric)
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F87A3DF))
(comp (ref R1)
(value 1K)
(footprint Resistor_SMD:R_0603_1608Metric)
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F881A5A))
(comp (ref J4)
(value USART3)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x08_P2.54mm_Horizontal)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x08) (description "Generic connector, single row, 01x08, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5F7D8D6E))
(comp (ref H1)
(value Mounting)
(footprint MountingHole:MountingHole_3.2mm_M3_Pad_Via)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5FA4163A))
(comp (ref H2)
(value Mounting)
(footprint MountingHole:MountingHole_3.2mm_M3_Pad_Via)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5FA592B4))
(comp (ref H3)
(value Mounting)
(footprint MountingHole:MountingHole_3.2mm_M3_Pad_Via)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5FA617DB))
(comp (ref H4)
(value Mounting)
(footprint MountingHole:MountingHole_3.2mm_M3_Pad_Via)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5FA61F3A))
(comp (ref J3)
(value CLOCKS)
(footprint Connector_PinHeader_2.54mm:PinHeader_2x03_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x03_Odd_Even) (description "Generic connector, double row, 02x03, 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 5FA992E3))
(comp (ref J7)
(value ANALOG)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x10_P2.54mm_Horizontal)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x10) (description "Generic connector, single row, 01x10, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5FAE7263))
(comp (ref C13)
(value 16pF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FE592B3))
(comp (ref C18)
(value 16pF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FE599A9))
(comp (ref U6)
(value 74LVC1G3157)
(footprint Package_TO_SOT_SMD:SOT-23-6)
(datasheet http://www.ti.com/lit/sg/scyt129e/scyt129e.pdf)
(libsource (lib 74xGxx) (part 74LVC1G3157) (description "SPDT Analog Swich, Low-Voltage CMOS"))
(sheetpath (names /) (tstamps /))
(tstamp 600053B7))
(comp (ref P3)
(value CORTEX-JTAG)
(footprint Connector_PinHeader_1.27mm:PinHeader_2x05_P1.27mm_Vertical)
(libsource (lib Connector_Generic) (part Conn_02x05_Odd_Even) (description "Generic connector, double row, 02x05, 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 56040117))
(comp (ref C19)
(value 0.1uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FD44608))
(comp (ref Q2)
(value DTC123JKA)
(footprint Package_TO_SOT_SMD:SC-59)
(datasheet https://www.mouser.com/datasheet/2/348/dtc123jkat146-e-1872573.pdf)
(libsource (lib Transistor_BJT) (part DTC123J) (description "Digital NPN Transistor, 2k2/47k, SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 5FD44777))
(comp (ref SW5)
(value SW_PUSH_NO_ALT)
(footprint engstad:TACTILE_SWITCH-TE-FSM4JSMAATR)
(datasheet https://www.mouser.com/datasheet/2/418/1/NG_CD_2-1437565-7_V-663781.pdf)
(libsource (lib @Engstad) (part SW_PUSH_NO_ALT) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FD47572))
(comp (ref C20)
(value 0.1uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FD7FD77))
(comp (ref D3)
(value 1N4148W)
(footprint Diode_SMD:D_SOD-123)
(datasheet https://www.vishay.com/docs/85748/1n4148w.pdf)
(libsource (lib Diode) (part 1N4148W) (description "75V 0.15A Fast Switching Diode, SOD-123"))
(sheetpath (names /) (tstamps /))
(tstamp 5FD9A427))
(comp (ref C21)
(value 10uF/5%)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5FD9DCE1))
(comp (ref R7)
(value 100R)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small_US) (description "Resistor, small US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FDA2099))
(comp (ref R9)
(value 1M)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small_US) (description "Resistor, small US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FDB18F9))
(comp (ref R6)
(value 330K)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small_US) (description "Resistor, small US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FDB1EA0))
(comp (ref R8)
(value 10K)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small_US) (description "Resistor, small US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5FE3534A))
(comp (ref Q3)
(value MMBFJ270)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet https://www.mouser.com/datasheet/2/308/MMBFJ270-D-1811572.pdf)
(libsource (lib Device) (part Q_PJFET_DSG) (description "P-JFET transistor, drain/source/gate"))
(sheetpath (names /) (tstamps /))
(tstamp 5FE52FFE))
(comp (ref SW4)
(value JUMPER)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
(libsource (lib @Engstad) (part JUMPER) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FFAA0D4))
(comp (ref J8)
(value SPI)
(footprint Connector_PinHeader_2.54mm:PinHeader_2x03_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x03_Odd_Even) (description "Generic connector, double row, 02x03, 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 5FFDC9C5))
(comp (ref J5)
(value USART1)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Horizontal)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5FFE77FB))
(comp (ref SW1)
(value SW_PUSH_NO_ALT)
(footprint engstad:TACTILE_SWITCH-TE-FSM4JSMAATR)
(datasheet https://www.mouser.com/datasheet/2/418/1/NG_CD_2-1437565-7_V-663781.pdf)
(libsource (lib @Engstad) (part SW_PUSH_NO_ALT) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 60310734)))
(libparts
(libpart (lib 74xGxx) (part 74LVC1G3157)
(description "SPDT Analog Swich, Low-Voltage CMOS")
(docs http://www.ti.com/lit/sg/scyt129e/scyt129e.pdf)
(footprints
(fp SOT*)
(fp SC*))
(fields
(field (name Reference) U)
(field (name Value) 74LVC1G3157))
(pins
(pin (num 1) (name ~) (type BiDi))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name ~) (type BiDi))
(pin (num 4) (name ~) (type BiDi))
(pin (num 5) (name VCC) (type power_in))
(pin (num 6) (name ~) (type input))
(pin (num 7) (name ~) (type BiDi))))
(libpart (lib @Engstad) (part JUMPER)
(fields
(field (name Reference) SW)
(field (name Value) JUMPER))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))
(pin (num 3) (name ~) (type passive))))
(libpart (lib @Engstad) (part STM32L486Rx-LQFP64)
(fields
(field (name Reference) U)
(field (name Value) STM32L486Rx-LQFP64))
(pins
(pin (num 1) (name VBAT) (type input))
(pin (num 2) (name PC13) (type input))
(pin (num 3) (name PC14/OSC32_IN) (type input))
(pin (num 4) (name PC15/OSC32_OUT) (type input))
(pin (num 5) (name PH0/OSC_IN) (type input))
(pin (num 6) (name PH1/OSC_OUT) (type input))
(pin (num 7) (name NRST) (type input))
(pin (num 8) (name PC0/ADC1/I2C3_SCL) (type BiDi))
(pin (num 9) (name PC1/ADC2/I2C3_SDA) (type BiDi))
(pin (num 10) (name PC2/ADC3/SPI2_MISO) (type BiDi))
(pin (num 11) (name PC3/ADC4/VLCD/SPI2_MOSI) (type BiDi))
(pin (num 12) (name VSSA/VREF-) (type power_in))
(pin (num 13) (name VDDA/VREF+) (type power_in))
(pin (num 14) (name PA0/OPA1_VIN+/ADC5) (type BiDi))
(pin (num 15) (name PA1/OPA1_VIN-/ADC6) (type BiDi))
(pin (num 16) (name PA2/ADC7/LSCO) (type BiDi))
(pin (num 17) (name PA3/OPA1_VOUT/ADC8) (type BiDi))
(pin (num 18) (name VSSUSB) (type power_in))
(pin (num 19) (name VDD0) (type power_in))
(pin (num 20) (name PA4/SPI1_NSS/SPI3_NSS/DAC1_O1/ADC9) (type BiDi))
(pin (num 21) (name PA5/SPI1_SCK/DAC1_O2/ADC10) (type BiDi))
(pin (num 22) (name PA6/QSPI_IO3/SPI1_MISO/OPA2_VIN+/ADC11) (type BiDi))
(pin (num 23) (name PA7/QSPI_IO2/SPI1_MOSI/OPA2_VIN-/ADC12) (type BiDi))
(pin (num 24) (name PC4/CMP1_IN-/ADC13) (type BiDi))
(pin (num 25) (name PC5/CMP1_IN+/ADC14) (type BiDi))
(pin (num 26) (name PB0/QSPI_IO1/OPA2_VOUT/ADC15) (type BiDi))
(pin (num 27) (name PB1/QSPI_IO0/CMP1_IN-/ADC16) (type BiDi))
(pin (num 28) (name PB2/RTC_OUT/I2C3_SMBA/CMP1_IN+) (type BiDi))
(pin (num 29) (name PB10/QSPI_CLK/I2C2_SCL/SPI2_SCK) (type output))
(pin (num 30) (name PB11/QSPI_NCS/I2C2_SMBA/SPI2_NSS) (type output))
(pin (num 31) (name VSS0) (type power_in))
(pin (num 32) (name VDD1) (type power_in))
(pin (num 33) (name PB12/I2C2_SMBA/SPI2_NSS) (type BiDi))
(pin (num 34) (name PB13/I2C2_SCL/SPI2_SCK) (type BiDi))
(pin (num 35) (name PB14/I2C2_SDA/SPI2_MISO) (type BiDi))
(pin (num 36) (name PB15/RTC_REFIN/SPI2_MOSI) (type BiDi))
(pin (num 37) (name PC6) (type BiDi))
(pin (num 38) (name PC7) (type BiDi))
(pin (num 39) (name PC8/SDD0) (type BiDi))
(pin (num 40) (name PC9/SDD1) (type BiDi))
(pin (num 41) (name PA8/MCO) (type BiDi))
(pin (num 42) (name PA9/OTG_FS_VBUS) (type BiDi))
(pin (num 43) (name PA10/OTG_FS_ID) (type BiDi))
(pin (num 44) (name PA11/OTG_FS_D-) (type BiDi))
(pin (num 45) (name PA12/OTG_FS_D+) (type BiDi))
(pin (num 46) (name PA13/JTMS/SWDIO) (type BiDi))
(pin (num 47) (name VSS1) (type power_in))
(pin (num 48) (name VDDUSB) (type power_in))
(pin (num 49) (name PA14/JTCLK/SWCLK) (type BiDi))
(pin (num 50) (name PA15/SPI1_NSS/SPI3_NSS/JTDI) (type BiDi))
(pin (num 51) (name PC10/SDD2/SPI3_SCK) (type BiDi))
(pin (num 52) (name PC11/SDD3/SPI3_MISO) (type BiDi))
(pin (num 53) (name PC12/SDCLK/SPI3_MOSI) (type BiDi))
(pin (num 54) (name PD2/SDCMD) (type BiDi))
(pin (num 55) (name PB3/JTDO/SWO/SPI1_SCK/CMP2_IN-) (type BiDi))
(pin (num 56) (name PB4/NJTRST/SPI1_MISO/CMP2_IN+) (type BiDi))
(pin (num 57) (name PB5/I2C1_SMBA) (type BiDi))
(pin (num 58) (name PB6/I2C1_SCL) (type BiDi))
(pin (num 59) (name PB7/I2C1_SDA/PVD_IN/CMP2_IN-) (type BiDi))
(pin (num 60) (name BOOT0) (type input))
(pin (num 61) (name PB8/I2C1_SDA) (type BiDi))
(pin (num 62) (name PB9/ISC1_SDA/SPI2_NSS) (type BiDi))
(pin (num 63) (name VSS2) (type power_in))
(pin (num 64) (name VDD2) (type power_in))))
(libpart (lib @Engstad) (part SW_PUSH_NO_ALT)
(fields
(field (name Reference) SW)
(field (name Value) SW_PUSH_NO_ALT))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib @Engstad) (part crystal-resonator-smd)
(fields
(field (name Reference) X)
(field (name Value) crystal-resonator-smd))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name gnd) (type passive))
(pin (num 3) (name 3) (type passive))))
(libpart (lib Connector) (part Micro_SD_Card_Det1)
(description "Micro SD Card Socket with single detect pin")
(docs https://www.molex.com/pdm_docs/sd/1051620001_sd.pdf)
(footprints
(fp microSD*))
(fields
(field (name Reference) J)
(field (name Value) Micro_SD_Card_Det1))
(pins
(pin (num 1) (name DAT2) (type BiDi))
(pin (num 2) (name DAT3/CD) (type BiDi))
(pin (num 3) (name CMD) (type input))
(pin (num 4) (name VDD) (type power_in))
(pin (num 5) (name CLK) (type input))
(pin (num 6) (name VSS) (type power_in))
(pin (num 7) (name DAT0) (type BiDi))
(pin (num 8) (name DAT1) (type BiDi))
(pin (num 9) (name DET) (type passive))
(pin (num 10) (name SHIELD) (type passive))))
(libpart (lib Connector) (part USB_B_Micro)
(aliases
(alias USB_B_Mini))
(description "USB Micro Type B connector")
(docs ~)
(footprints
(fp USB*))
(fields
(field (name Reference) J)
(field (name Value) USB_B_Micro))
(pins
(pin (num 1) (name VBUS) (type power_out))
(pin (num 2) (name D-) (type passive))
(pin (num 3) (name D+) (type passive))
(pin (num 4) (name ID) (type passive))
(pin (num 5) (name GND) (type power_out))
(pin (num 6) (name Shield) (type passive))))
(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_01x03)
(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))
(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_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_01x08)
(description "Generic connector, single row, 01x08, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x08))
(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))))
(libpart (lib Connector_Generic) (part Conn_01x10)
(description "Generic connector, single row, 01x10, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x10))
(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))))
(libpart (lib Connector_Generic) (part Conn_02x03_Odd_Even)
(description "Generic connector, double row, 02x03, 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_02x03_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))))
(libpart (lib Connector_Generic) (part Conn_02x05_Odd_Even)
(description "Generic connector, double row, 02x05, 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_02x05_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))))
(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 C_Small)
(description "Unpolarized capacitor, small symbol")
(docs ~)
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part Crystal)
(description "Two pin crystal")
(docs ~)
(footprints
(fp Crystal*))
(fields
(field (name Reference) Y)
(field (name Value) Crystal))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib Device) (part Ferrite_Bead_Small)
(description "Ferrite bead, small symbol")
(docs ~)
(footprints
(fp Inductor_*)
(fp L_*)
(fp *Ferrite*))
(fields
(field (name Reference) FB)
(field (name Value) Ferrite_Bead_Small))
(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 Net-Tie_2)
(description "Net tie, 2 pins")
(docs ~)
(footprints
(fp Net*Tie*))
(fields
(field (name Reference) NT)
(field (name Value) Net-Tie_2))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib Device) (part Q_PJFET_DSG)
(description "P-JFET transistor, drain/source/gate")
(docs ~)
(fields
(field (name Reference) Q)
(field (name Value) Q_PJFET_DSG))
(pins
(pin (num 1) (name D) (type passive))
(pin (num 2) (name S) (type passive))
(pin (num 3) (name G) (type input))))
(libpart (lib Device) (part R_Small_US)
(description "Resistor, small US symbol")
(docs ~)
(footprints
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R_Small_US))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part R_US)
(description "Resistor, US symbol")
(docs ~)
(footprints
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R_US))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Diode) (part MMSD914)
(aliases
(alias 1N4148W)
(alias BAV16W)
(alias 1N4448W)
(alias MMSD4148))
(description "100V 0.2A Switching Diode, SOD-123")
(docs https://www.onsemi.com/pub/Collateral/MMSD914T1-D.PDF)
(footprints
(fp D*SOD?123*))
(fields
(field (name Reference) D)
(field (name Value) MMSD914)
(field (name Footprint) Diode_SMD:D_SOD-123))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Mechanical) (part MountingHole_Pad)
(description "Mounting Hole with connection")
(docs ~)
(footprints
(fp MountingHole*Pad*))
(fields
(field (name Reference) H)
(field (name Value) MountingHole_Pad))
(pins
(pin (num 1) (name 1) (type input))))
(libpart (lib Memory_Flash) (part IS25WP256D-xM)
(description "256-Mbit, 1.8V SPI Serial Flash Memory with Dual-I/O and Quad-I/O Support, SOIC-16")
(docs "http://www.issi.com/WW/pdf/IS25LP(WP)256D.pdf")
(footprints
(fp SOIC*7.5x10.3mm*P1.27mm*))
(fields
(field (name Reference) U)
(field (name Value) IS25WP256D-xM)
(field (name Footprint) Package_SO:SOIC-16W_7.5x10.3mm_P1.27mm))
(pins
(pin (num 1) (name ~HOLD~/IO3) (type BiDi))
(pin (num 2) (name VCC) (type power_in))
(pin (num 3) (name ~RESET~/NC) (type input))
(pin (num 4) (name NC) (type NotConnected))
(pin (num 5) (name NC) (type NotConnected))
(pin (num 6) (name NC) (type NotConnected))
(pin (num 7) (name ~CE) (type input))
(pin (num 8) (name SO/IO1) (type BiDi))
(pin (num 9) (name ~WP~/IO2) (type BiDi))
(pin (num 10) (name GND) (type power_in))
(pin (num 11) (name NC) (type NotConnected))
(pin (num 12) (name NC) (type NotConnected))
(pin (num 13) (name NC) (type NotConnected))
(pin (num 14) (name NC) (type NotConnected))
(pin (num 15) (name SI/IO0) (type BiDi))
(pin (num 16) (name SCK) (type input))))
(libpart (lib Power_Protection) (part USBLC6-2SC6)
(description "Very low capacitance ESD protection diode, 2 data-line, SOT-23-6")
(docs https://www.st.com/resource/en/datasheet/usblc6-2.pdf)
(footprints
(fp SOT?23*))
(fields
(field (name Reference) U)
(field (name Value) USBLC6-2SC6)
(field (name Footprint) Package_TO_SOT_SMD:SOT-23-6))
(pins
(pin (num 1) (name I/O1) (type passive))
(pin (num 2) (name GND) (type passive))
(pin (num 3) (name I/O2) (type passive))
(pin (num 4) (name I/O2) (type passive))
(pin (num 5) (name VBUS) (type passive))
(pin (num 6) (name I/O1) (type passive))))
(libpart (lib Regulator_Linear) (part LP5907MFX-1.2)
(aliases
(alias LP5907MFX-1.5)
(alias LP5907MFX-1.8)
(alias LP5907MFX-2.5)
(alias LP5907MFX-2.8)
(alias LP5907MFX-2.85)
(alias LP5907MFX-2.9)
(alias LP5907MFX-3.0)
(alias LP5907MFX-3.1)
(alias LP5907MFX-3.2)
(alias LP5907MFX-3.3)
(alias LP5907MFX-4.5)
(alias NCP718xSN120)
(alias NCP718xSN150)
(alias NCP718xSN180)
(alias NCP718xSN250)
(alias NCP718xSN300)
(alias NCP718xSN330)
(alias NCP718xSN500))
(description "250-mA Ultra-Low-Noise Low-IQ LDO, 1.2V, SOT-23")
(docs http://www.ti.com/lit/ds/symlink/lp5907.pdf)
(footprints
(fp SOT?23*))
(fields
(field (name Reference) U)
(field (name Value) LP5907MFX-1.2)
(field (name Footprint) Package_TO_SOT_SMD:SOT-23-5))
(pins
(pin (num 1) (name IN) (type power_in))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name EN) (type input))
(pin (num 4) (name NC) (type NotConnected))
(pin (num 5) (name OUT) (type power_out))))
(libpart (lib Transistor_BJT) (part DTC123J)
(description "Digital NPN Transistor, 2k2/47k, SOT-23")
(footprints
(fp SOT?23*)
(fp SC?59*))
(fields
(field (name Reference) Q)
(field (name Value) DTC123J))
(pins
(pin (num 1) (name B) (type input))
(pin (num 2) (name E) (type passive))
(pin (num 3) (name C) (type passive)))))
(libraries
(library (logical 74xGxx)
(uri "/Library/Application Support/kicad/library/74xGxx.lib"))
(library (logical @Engstad)
(uri /Users/pengstad/Private/Eda/engstad-kicad-lib/engstad/engstad.lib))
(library (logical Connector)
(uri "/Library/Application Support/kicad/library/Connector.lib"))
(library (logical Connector_Generic)
(uri "/Library/Application Support/kicad/library/Connector_Generic.lib"))
(library (logical Device)
(uri "/Library/Application Support/kicad/library/Device.lib"))
(library (logical Diode)
(uri "/Library/Application Support/kicad/library/Diode.lib"))
(library (logical Mechanical)
(uri "/Library/Application Support/kicad/library/Mechanical.lib"))
(library (logical Memory_Flash)
(uri "/Library/Application Support/kicad/library/Memory_Flash.lib"))
(library (logical Power_Protection)
(uri "/Library/Application Support/kicad/library/Power_Protection.lib"))
(library (logical Regulator_Linear)
(uri "/Library/Application Support/kicad/library/Regulator_Linear.lib"))
(library (logical Transistor_BJT)
(uri "/Library/Application Support/kicad/library/Transistor_BJT.lib")))
(nets
(net (code 1) (name /VBAT)
(node (ref U4) (pin 1))
(node (ref C10) (pin 1))
(node (ref SW4) (pin 2)))
(net (code 2) (name /SPI2_CIPO)
(node (ref U4) (pin 10))
(node (ref J8) (pin 4)))
(net (code 3) (name /SPI2_COPI)
(node (ref U4) (pin 11))
(node (ref J8) (pin 3)))
(net (code 4) (name /OPAMP_IN+)
(node (ref U4) (pin 14))
(node (ref J7) (pin 8)))
(net (code 5) (name /OPAMP_IN-)
(node (ref U4) (pin 15))
(node (ref J7) (pin 9)))
(net (code 6) (name /OCLK_LS)
(node (ref U4) (pin 16))
(node (ref J3) (pin 2)))
(net (code 7) (name /OPAMP_OUT)
(node (ref J7) (pin 7))
(node (ref U4) (pin 17)))
(net (code 8) (name /RTC_TS)
(node (ref J3) (pin 5))
(node (ref U4) (pin 2)))
(net (code 9) (name /DAC_OUT1)
(node (ref U4) (pin 20))
(node (ref J7) (pin 3)))
(net (code 10) (name /DAC_OUT2)
(node (ref U4) (pin 21))
(node (ref J7) (pin 2)))
(net (code 11) (name /QSPI_IO3)
(node (ref U4) (pin 22))
(node (ref U5) (pin 1)))
(net (code 12) (name /QSPI_IO2)
(node (ref U4) (pin 23))
(node (ref U5) (pin 9)))
(net (code 13) (name /USART3_TXD)
(node (ref U4) (pin 24))
(node (ref J4) (pin 3)))
(net (code 14) (name /USART3_RXD)
(node (ref J4) (pin 4))
(node (ref U4) (pin 25)))
(net (code 15) (name /QSPI_IO1)
(node (ref U5) (pin 8))
(node (ref U4) (pin 26)))
(net (code 16) (name /QSPI_IO0)
(node (ref U5) (pin 15))
(node (ref U4) (pin 27)))
(net (code 17) (name /RTC_OUT)
(node (ref J3) (pin 3))
(node (ref U4) (pin 28)))
(net (code 18) (name /RTC_OSC_IN)
(node (ref Y1) (pin 1))
(node (ref C8) (pin 1))
(node (ref U4) (pin 3)))
(net (code 19) (name /QSPI_CS#)
(node (ref U4) (pin 30))
(node (ref U5) (pin 7)))
(net (code 20) (name /USART3_CK)
(node (ref U4) (pin 33))
(node (ref J4) (pin 7)))
(net (code 21) (name /PB13)
(node (ref U6) (pin 4))
(node (ref U4) (pin 34)))
(net (code 22) (name /USART3_RTS)
(node (ref U4) (pin 35))
(node (ref J4) (pin 5)))
(net (code 23) (name /USR_SW)
(node (ref R1) (pin 1))
(node (ref R5) (pin 2))
(node (ref C4) (pin 1))
(node (ref U4) (pin 37)))
(net (code 24) (name /LED_RED)
(node (ref D1) (pin 2))
(node (ref U4) (pin 38)))
(net (code 25) (name /SDMMC_D0)
(node (ref J2) (pin 7))
(node (ref U4) (pin 39)))
(net (code 26) (name /RTC_OSC_OUT)
(node (ref Y1) (pin 2))
(node (ref U4) (pin 4))
(node (ref C9) (pin 1)))
(net (code 27) (name /SDMMC_D1)
(node (ref J2) (pin 8))
(node (ref U4) (pin 40)))
(net (code 28) (name /OCLK_M)
(node (ref J3) (pin 4))
(node (ref U4) (pin 41)))
(net (code 29) (name /USART1_TX)
(node (ref J5) (pin 1))
(node (ref U4) (pin 42)))
(net (code 30) (name /USART1_RX)