-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathSIM7080.net
More file actions
1208 lines (1208 loc) · 47.5 KB
/
SIM7080.net
File metadata and controls
1208 lines (1208 loc) · 47.5 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/henrycheung1/Documents/kicad/sim7080_shield/SIM7080.sch)
(date "2021 August 25, Wednesday 20:55:01")
(tool "Eeschema (5.1.4-0)")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "TechStudio.Design SIM7080G NB-IoT Shield")
(company www.e-tinkers.com)
(rev V1.2)
(date 2021-08-25)
(source SIM7080.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value "Copyright: e-tinkers.com, 2021"))
(comment (number 4) (value "Author: Henry Cheung"))))
(sheet (number 2) (name /SIM7080_module/) (tstamps /60D8F2E2/)
(title_block
(title "TechStudio.Design SIM7080G NB-IoT Shield")
(company www.e-tinkers.com)
(rev V1.2)
(date 2021-08-25)
(source SIM7080_module.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value "Copyright: e-tinkers.com, 2021"))
(comment (number 4) (value "Author: Henry Cheung"))))
(sheet (number 3) (name /SIM7080_peripherals/) (tstamps /60DCDEB3/)
(title_block
(title "TechStudio.Design SIM7080G NB-IoT Shield")
(company www.e-tinkers.com)
(rev V1.2)
(date 2021-08-25)
(source SIM7080_peripherals.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value "Copyright: e-tinkers.com, 2021"))
(comment (number 4) (value "Author: Henry Cheung")))))
(components
(comp (ref C7)
(value 0.1uF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /SIM7080_module/) (tstamps /60D8F2E2/))
(tstamp 5F88E550))
(comp (ref C5)
(value 100uF)
(footprint Capacitor_SMD:C_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /SIM7080_module/) (tstamps /60D8F2E2/))
(tstamp 5F88EE24))
(comp (ref J4)
(value SIM_Card)
(footprint e-tinkers:HOAUC-HYC240-SIM-06-150_C645501)
(datasheet " ~")
(libsource (lib Connector) (part SIM_Card) (description "SIM Card Holder"))
(sheetpath (names /SIM7080_module/) (tstamps /60D8F2E2/))
(tstamp 5F8ADE50))
(comp (ref C9)
(value 0.1uF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /SIM7080_module/) (tstamps /60D8F2E2/))
(tstamp 5F8C24A9))
(comp (ref C1)
(value 22pF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /SIM7080_module/) (tstamps /60D8F2E2/))
(tstamp 5F8FC2D1))
(comp (ref D2)
(value ESDA6V1W5)
(footprint Package_TO_SOT_SMD:SOT-353_SC-70-5_Handsoldering)
(datasheet https://datasheet.lcsc.com/szlcsc/1810181812_STMicroelectronics-ESDA6V1W5_C48677.pdf)
(libsource (lib e-tinkers) (part ESDA6V1W5) (description "TVS Diode Array, 5.5V Standoff, 4 Channels, SOT-23-5 package"))
(sheetpath (names /SIM7080_module/) (tstamps /60D8F2E2/))
(tstamp 5FAF163B))
(comp (ref R2)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /SIM7080_module/) (tstamps /60D8F2E2/))
(tstamp 5FB06CB9))
(comp (ref J3)
(value USB_B_Micro)
(footprint e-tinkers:U254-051T-4BH83)
(datasheet ~)
(libsource (lib Connector) (part USB_B_Micro) (description "USB Micro Type B connector U254-051T-4BH83"))
(sheetpath (names /SIM7080_module/) (tstamps /60D8F2E2/))
(tstamp 5FD48C76))
(comp (ref C8)
(value 0.1uF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /SIM7080_module/) (tstamps /60D8F2E2/))
(tstamp 5FD28DC7))
(comp (ref C2)
(value NC)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /SIM7080_module/) (tstamps /60D8F2E2/))
(tstamp 5FA56AE6))
(comp (ref C3)
(value NC)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /SIM7080_module/) (tstamps /60D8F2E2/))
(tstamp 5FA56485))
(comp (ref R1)
(value 0)
(footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /SIM7080_module/) (tstamps /60D8F2E2/))
(tstamp 5FA55CBE))
(comp (ref U1)
(value USBLC6-2SC6)
(footprint Package_TO_SOT_SMD:SOT-23-6_Handsoldering)
(datasheet https://gct.co/files/drawings/sim5051.pdf?v=fde3e267-f8d9-4afe-a571-14a8876a71fc)
(libsource (lib e-tinkers) (part USBLC6-2SC6) (description "usb ESD protection diode"))
(sheetpath (names /SIM7080_module/) (tstamps /60D8F2E2/))
(tstamp 5FE25378))
(comp (ref J1)
(value "LTE Antenna")
(footprint Connector_Coaxial:U.FL_Hirose_U.FL-R-SMT-1_Vertical)
(datasheet " ~")
(libsource (lib Connector) (part Conn_Coaxial) (description "coaxial connector (BNC, SMA, SMB, SMC, Cinch/RCA, ...)"))
(sheetpath (names /SIM7080_module/) (tstamps /60D8F2E2/))
(tstamp 5FE49F30))
(comp (ref J2)
(value "GNSS Antenna")
(footprint Connector_Coaxial:U.FL_Hirose_U.FL-R-SMT-1_Vertical)
(datasheet " ~")
(libsource (lib Connector) (part Conn_Coaxial) (description "coaxial connector (BNC, SMA, SMB, SMC, Cinch/RCA, ...)"))
(sheetpath (names /SIM7080_module/) (tstamps /60D8F2E2/))
(tstamp 5FE87D09))
(comp (ref U2)
(value SIM7080G)
(footprint SimCom:SIM7080G)
(datasheet https://www.simcom.com/index.php/product/SIM7080G.html)
(libsource (lib SimCom) (part SIM7080G) (description "SimCom SIM7080x CAT-M and NB-IoT Module"))
(sheetpath (names /SIM7080_module/) (tstamps /60D8F2E2/))
(tstamp 5FF13EA6))
(comp (ref SW1)
(value PWRKEY)
(footprint e-tinkers:SW_TS-1101-X-X)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /SIM7080_module/) (tstamps /60D8F2E2/))
(tstamp 5FF46E07))
(comp (ref D1)
(value SD103AWS)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part D_Schottky_ALT) (description "Schottky diode, filled shape"))
(sheetpath (names /SIM7080_module/) (tstamps /60D8F2E2/))
(tstamp 6052838C))
(comp (ref JP1)
(value SolderJumper_2_Open)
(footprint Jumper:SolderJumper-2_P1.3mm_Open_Pad1.0x1.5mm)
(datasheet ~)
(libsource (lib Jumper) (part SolderJumper_2_Open) (description "Solder Jumper, 2-pole, open"))
(sheetpath (names /SIM7080_module/) (tstamps /60D8F2E2/))
(tstamp 609BD4D5))
(comp (ref U3)
(value ST4SIM-200M)
(footprint e-tinkers:ST4SIM-200M)
(datasheet https://www.st.com/resource/en/data_brief/st4sim-200m.pdf)
(libsource (lib e-tinkers) (part ST4SIM-200M) (description "ST4SIM-200M eSIM"))
(sheetpath (names /SIM7080_module/) (tstamps /60D8F2E2/))
(tstamp 60DDE116))
(comp (ref C4)
(value 100uF)
(footprint Capacitor_Tantalum_SMD:CP_EIA-3528-12_Kemet-T_Pad1.50x2.35mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names /SIM7080_module/) (tstamps /60D8F2E2/))
(tstamp 60DF9F2D))
(comp (ref C6)
(value 1uF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /SIM7080_module/) (tstamps /60D8F2E2/))
(tstamp 5F88EACB))
(comp (ref R4)
(value 1k)
(footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /SIM7080_peripherals/) (tstamps /60DCDEB3/))
(tstamp 5F8316B3))
(comp (ref R3)
(value 1k)
(footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /SIM7080_peripherals/) (tstamps /60DCDEB3/))
(tstamp 5F83216D))
(comp (ref D3)
(value "NETLIGHT (GREEN)")
(footprint LED_SMD:LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part LED_Small) (description "Light emitting diode, small symbol"))
(sheetpath (names /SIM7080_peripherals/) (tstamps /60DCDEB3/))
(tstamp 5F8331CD))
(comp (ref D4)
(value "STATUS (BLUE)")
(footprint LED_SMD:LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part LED_Small) (description "Light emitting diode, small symbol"))
(sheetpath (names /SIM7080_peripherals/) (tstamps /60DCDEB3/))
(tstamp 5F833E30))
(comp (ref J5)
(value "JST PH")
(footprint Connector_JST:JST_PH_S2B-PH-K_1x02_P2.00mm_Horizontal)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Female) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /SIM7080_peripherals/) (tstamps /60DCDEB3/))
(tstamp 5FB7C805))
(comp (ref U4)
(value TXB0104PW)
(footprint Package_SO:TSSOP-14_4.4x5mm_P0.65mm)
(datasheet http://www.ti.com/lit/ds/symlink/txb0104.pdf)
(libsource (lib Logic_LevelTranslator) (part TXB0104PW) (description "4-Bit Bidirectional Voltage-Level Translator, Auto Direction Sensing and ±15-kV ESD Protection, 1.2 - 3.6V APort, 1.65 - 5.5V BPort, TSSOP-14"))
(sheetpath (names /SIM7080_peripherals/) (tstamps /60DCDEB3/))
(tstamp 5FBFBDD5))
(comp (ref C10)
(value 0.1uF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /SIM7080_peripherals/) (tstamps /60DCDEB3/))
(tstamp 5FBFBDE1))
(comp (ref C11)
(value 0.1uF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /SIM7080_peripherals/) (tstamps /60DCDEB3/))
(tstamp 5FBFBDE9))
(comp (ref R7)
(value 100k)
(footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /SIM7080_peripherals/) (tstamps /60DCDEB3/))
(tstamp 5FDCC6B6))
(comp (ref L1)
(value BLM18BA121SN1D)
(footprint Inductor_SMD:L_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part L_Core_Ferrite) (description "Inductor with ferrite core"))
(sheetpath (names /SIM7080_peripherals/) (tstamps /60DCDEB3/))
(tstamp 60627FAC))
(comp (ref Q5)
(value FDN340P)
(footprint Package_TO_SOT_SMD:SOT-23_Handsoldering)
(datasheet ~)
(libsource (lib Device) (part Q_PMOS_GSD) (description "P-MOSFET transistor, gate/source/drain"))
(sheetpath (names /SIM7080_peripherals/) (tstamps /60DCDEB3/))
(tstamp 5FF88764))
(comp (ref C16)
(value 4.7uF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /SIM7080_peripherals/) (tstamps /60DCDEB3/))
(tstamp 6099F586))
(comp (ref U6)
(value MCP73831-2-OT)
(footprint Package_TO_SOT_SMD:SOT-23-5_HandSoldering)
(datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/20001984g.pdf)
(libsource (lib Battery_Management) (part MCP73831-2-OT) (description "Single cell, Li-Ion/Li-Po charge management controller, 4.20V, Tri-State Status Output, in SOT23-5 package"))
(sheetpath (names /SIM7080_peripherals/) (tstamps /60DCDEB3/))
(tstamp 609A08B5))
(comp (ref D7)
(value "CHARGING (RED)")
(footprint LED_SMD:LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part LED_Small) (description "Light emitting diode, small symbol"))
(sheetpath (names /SIM7080_peripherals/) (tstamps /60DCDEB3/))
(tstamp 609A2BC5))
(comp (ref R6)
(value 2k)
(footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /SIM7080_peripherals/) (tstamps /60DCDEB3/))
(tstamp 609A4AF3))
(comp (ref R8)
(value 2k)
(footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /SIM7080_peripherals/) (tstamps /60DCDEB3/))
(tstamp 609A50C2))
(comp (ref C17)
(value 4.7uF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /SIM7080_peripherals/) (tstamps /60DCDEB3/))
(tstamp 60A72FAE))
(comp (ref C13)
(value 10uF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /SIM7080_peripherals/) (tstamps /60DCDEB3/))
(tstamp 60B24FD6))
(comp (ref H2)
(value MountingHole_Pad)
(footprint MountingHole:MountingHole_2.7mm_M2.5)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /SIM7080_peripherals/) (tstamps /60DCDEB3/))
(tstamp 60D06D4C))
(comp (ref H3)
(value MountingHole_Pad)
(footprint MountingHole:MountingHole_2.7mm_M2.5)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /SIM7080_peripherals/) (tstamps /60DCDEB3/))
(tstamp 60D07282))
(comp (ref Q2)
(value DTC143Z)
(footprint e-tinkers:SOT523)
(libsource (lib Transistor_BJT) (part DTC143Z) (description "Digital NPN Transistor, 4k7/47k, SOT-523 (SC-75A)"))
(sheetpath (names /SIM7080_peripherals/) (tstamps /60DCDEB3/))
(tstamp 60B05B35))
(comp (ref Q3)
(value DTC143Z)
(footprint e-tinkers:SOT523)
(libsource (lib Transistor_BJT) (part DTC143Z) (description "Digital NPN Transistor, 4k7/47k, SOT-523 (SC-75A)"))
(sheetpath (names /SIM7080_peripherals/) (tstamps /60DCDEB3/))
(tstamp 60B06EE6))
(comp (ref D5)
(value SS12)
(footprint Diode_SMD:D_SMA)
(datasheet ~)
(libsource (lib Device) (part D_Schottky_ALT) (description "Schottky diode, filled shape"))
(sheetpath (names /SIM7080_peripherals/) (tstamps /60DCDEB3/))
(tstamp 609DF5B8))
(comp (ref D6)
(value ES1AF)
(footprint Diode_SMD:D_SMA)
(datasheet ~)
(libsource (lib Device) (part D_ALT) (description "Diode, filled shape"))
(sheetpath (names /SIM7080_peripherals/) (tstamps /60DCDEB3/))
(tstamp 60A0FB4A))
(comp (ref Q4)
(value DTC143Z)
(footprint e-tinkers:SOT523)
(libsource (lib Transistor_BJT) (part DTC143Z) (description "Digital NPN Transistor, 4k7/47k, SOT-523 (SC-75A)"))
(sheetpath (names /SIM7080_peripherals/) (tstamps /60DCDEB3/))
(tstamp 60D9C1C1))
(comp (ref R5)
(value 200k)
(footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /SIM7080_peripherals/) (tstamps /60DCDEB3/))
(tstamp 610B4BAB))
(comp (ref J6)
(value Conn_01x10_Male)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x10_P2.54mm_Horizontal)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x10_Male) (description "Generic connector, single row, 01x10, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /SIM7080_peripherals/) (tstamps /60DCDEB3/))
(tstamp 610F4AAA))
(comp (ref Q1)
(value FDN340P)
(footprint Package_TO_SOT_SMD:SOT-23_Handsoldering)
(datasheet ~)
(libsource (lib Device) (part Q_PMOS_GSD) (description "P-MOSFET transistor, gate/source/drain"))
(sheetpath (names /SIM7080_peripherals/) (tstamps /60DCDEB3/))
(tstamp 6112A2E9))
(comp (ref U5)
(value ME6211A33M3G-N)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet http://www.tme.eu/fr/Document/ced3461ed31ea70a3c416fb648e0cde7/APE8865-3.pdf)
(libsource (lib Regulator_Linear) (part APE8865N-33-HF-3) (description "300mA Low Dropout Voltage Regulator, Fixed Output 3.3V, SOT-23"))
(sheetpath (names /SIM7080_peripherals/) (tstamps /60DCDEB3/))
(tstamp 60D8CC10))
(comp (ref C12)
(value 100uF)
(footprint Capacitor_Tantalum_SMD:CP_EIA-3528-12_Kemet-T_Pad1.50x2.35mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names /SIM7080_peripherals/) (tstamps /60DCDEB3/))
(tstamp 60D931DD))
(comp (ref C14)
(value 47uF)
(footprint Capacitor_Tantalum_SMD:CP_EIA-3216-10_Kemet-I_Pad1.58x1.35mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names /SIM7080_peripherals/) (tstamps /60DCDEB3/))
(tstamp 60D93CD1))
(comp (ref C15)
(value 1uF)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /SIM7080_peripherals/) (tstamps /60DCDEB3/))
(tstamp 60D9421D))
(comp (ref H1)
(value MountingHole_Pad)
(footprint MountingHole:MountingHole_2.7mm_M2.5)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /SIM7080_peripherals/) (tstamps /60DCDEB3/))
(tstamp 60D9A080)))
(libparts
(libpart (lib Battery_Management) (part MCP73832-2-OT)
(aliases
(alias MCP73832-5-OT)
(alias MCP73832-4-OT)
(alias MCP73832-3-OT)
(alias MCP73831-2-OT)
(alias MCP73831-5-OT)
(alias MCP73831-4-OT)
(alias MCP73831-3-OT))
(description "Single cell, Li-Ion/Li-Po charge management controller, 4.20V, Open-Drain Status Output, in SOT23-5 package")
(docs http://ww1.microchip.com/downloads/en/DeviceDoc/20001984g.pdf)
(footprints
(fp SOT?23*))
(fields
(field (name Reference) U)
(field (name Value) MCP73832-2-OT)
(field (name Footprint) Package_TO_SOT_SMD:SOT-23-5))
(pins
(pin (num 1) (name STAT) (type output))
(pin (num 2) (name VSS) (type power_in))
(pin (num 3) (name VBAT) (type power_out))
(pin (num 4) (name VDD) (type power_in))
(pin (num 5) (name PROG) (type input))))
(libpart (lib Connector) (part Conn_01x02_Female)
(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_Female))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))))
(libpart (lib Connector) (part Conn_01x10_Male)
(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_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))
(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) (part Conn_Coaxial)
(description "coaxial connector (BNC, SMA, SMB, SMC, Cinch/RCA, ...)")
(docs " ~")
(footprints
(fp *BNC*)
(fp *SMA*)
(fp *SMB*)
(fp *SMC*)
(fp *Cinch*))
(fields
(field (name Reference) J)
(field (name Value) Conn_Coaxial))
(pins
(pin (num 1) (name In) (type passive))
(pin (num 2) (name Ext) (type passive))))
(libpart (lib Connector) (part SIM_Card)
(description "SIM Card Holder")
(footprints
(fp *SIM*Card*Holder*))
(fields
(field (name Reference) J)
(field (name Value) SIM_Card)
(field (name Footprint) e-tinkers:HOAUC-HYC240-SIM-06-150_C645501))
(pins
(pin (num 1) (name VCC) (type power_in))
(pin (num 2) (name RST) (type input))
(pin (num 3) (name CLK) (type input))
(pin (num 5) (name GND) (type power_in))
(pin (num 6) (name VPP) (type input))
(pin (num 7) (name I/O) (type BiDi))))
(libpart (lib Connector) (part USB_B_Micro)
(aliases
(alias USB_B_Mini))
(description "USB Micro Type B connector U254-051T-4BH83")
(docs ~)
(footprints
(fp USB*))
(fields
(field (name Reference) J)
(field (name Value) USB_B_Micro)
(field (name Footprint) e-tinkers:U254-051T-4BH83))
(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 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 CP)
(description "Polarized capacitor")
(docs ~)
(footprints
(fp CP_*))
(fields
(field (name Reference) C)
(field (name Value) CP))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part D_ALT)
(description "Diode, filled shape")
(docs ~)
(footprints
(fp TO-???*)
(fp *_Diode_*)
(fp *SingleDiode*)
(fp D_*))
(fields
(field (name Reference) D)
(field (name Value) D_ALT))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Device) (part D_Schottky_ALT)
(description "Schottky diode, filled shape")
(docs ~)
(footprints
(fp TO-???*)
(fp *_Diode_*)
(fp *SingleDiode*)
(fp D_*))
(fields
(field (name Reference) D)
(field (name Value) D_Schottky_ALT))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Device) (part LED_Small)
(description "Light emitting diode, small symbol")
(docs ~)
(footprints
(fp LED*)
(fp LED_SMD:*)
(fp LED_THT:*))
(fields
(field (name Reference) D)
(field (name Value) LED_Small))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Device) (part L_Core_Ferrite)
(description "Inductor with ferrite core")
(docs ~)
(footprints
(fp Choke_*)
(fp *Coil*)
(fp Inductor_*)
(fp L_*))
(fields
(field (name Reference) L)
(field (name Value) L_Core_Ferrite))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib Device) (part Q_PMOS_GSD)
(description "P-MOSFET transistor, gate/source/drain")
(docs ~)
(fields
(field (name Reference) Q)
(field (name Value) Q_PMOS_GSD))
(pins
(pin (num 1) (name G) (type input))
(pin (num 2) (name S) (type passive))
(pin (num 3) (name D) (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 Jumper) (part SolderJumper_2_Open)
(description "Solder Jumper, 2-pole, open")
(docs ~)
(footprints
(fp SolderJumper*Open*))
(fields
(field (name Reference) JP)
(field (name Value) SolderJumper_2_Open))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name B) (type passive))))
(libpart (lib Logic_LevelTranslator) (part TXB0104PW)
(description "4-Bit Bidirectional Voltage-Level Translator, Auto Direction Sensing and ±15-kV ESD Protection, 1.2 - 3.6V APort, 1.65 - 5.5V BPort, TSSOP-14")
(docs http://www.ti.com/lit/ds/symlink/txb0104.pdf)
(footprints
(fp TSSOP*14*5mm*P0.65mm*))
(fields
(field (name Reference) U)
(field (name Value) TXB0104PW)
(field (name Footprint) Package_SO:TSSOP-14_4.4x5mm_P0.65mm))
(pins
(pin (num 1) (name VCCA) (type power_in))
(pin (num 2) (name A1) (type BiDi))
(pin (num 3) (name A2) (type BiDi))
(pin (num 4) (name A3) (type BiDi))
(pin (num 5) (name A4) (type BiDi))
(pin (num 6) (name NC) (type NotConnected))
(pin (num 7) (name GND) (type power_in))
(pin (num 8) (name OE) (type input))
(pin (num 9) (name NC) (type NotConnected))
(pin (num 10) (name B4) (type BiDi))
(pin (num 11) (name B3) (type BiDi))
(pin (num 12) (name B2) (type BiDi))
(pin (num 13) (name B1) (type BiDi))
(pin (num 14) (name VCCB) (type power_in))))
(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 Regulator_Linear) (part APE8865N-12-HF-3)
(aliases
(alias APE8865N-15-HF-3)
(alias APE8865N-16-HF-3)
(alias APE8865N-17-HF-3)
(alias APE8865N-18-HF-3)
(alias APE8865N-19-HF-3)
(alias APE8865N-20-HF-3)
(alias APE8865N-21-HF-3)
(alias APE8865N-22-HF-3)
(alias APE8865N-23-HF-3)
(alias APE8865N-24-HF-3)
(alias APE8865N-25-HF-3)
(alias APE8865N-26-HF-3)
(alias APE8865N-27-HF-3)
(alias APE8865N-28-HF-3)
(alias APE8865N-29-HF-3)
(alias APE8865N-30-HF-3)
(alias APE8865N-31-HF-3)
(alias APE8865N-32-HF-3)
(alias APE8865N-33-HF-3)
(alias AP2127N-1.0)
(alias AP2127N-1.2)
(alias AP2127N-1.5)
(alias AP2127N-1.8)
(alias AP2127N-2.5)
(alias AP2127N-2.8)
(alias AP2127N-3.0)
(alias AP2127N-3.3))
(description "300mA Low Dropout Voltage Regulator, Fixed Output 1.2V, SOT-23")
(docs http://www.tme.eu/fr/Document/ced3461ed31ea70a3c416fb648e0cde7/APE8865-3.pdf)
(footprints
(fp SOT?23*))
(fields
(field (name Reference) U)
(field (name Value) APE8865N-12-HF-3)
(field (name Footprint) Package_TO_SOT_SMD:SOT-23))
(pins
(pin (num 1) (name GND) (type power_in))
(pin (num 2) (name VO) (type power_out))
(pin (num 3) (name VI) (type power_in))))
(libpart (lib SimCom) (part SIM7080G)
(description "SimCom SIM7080x CAT-M and NB-IoT Module")
(docs https://www.simcom.com/index.php/product/SIM7080G.html)
(fields
(field (name Reference) U)
(field (name Value) SIM7080G)
(field (name Footprint) SimCom:SIM7080G))
(pins
(pin (num 1) (name UART1_TXD) (type BiDi))
(pin (num 2) (name UART1_RXD) (type BiDi))
(pin (num 3) (name UART1_RTS) (type output))
(pin (num 4) (name UART1_CTS) (type input))
(pin (num 5) (name UART1_DCD) (type input))
(pin (num 6) (name UART1_DTR) (type output))
(pin (num 7) (name UART1_RI) (type output))
(pin (num 8) (name GND) (type power_in))
(pin (num 9) (name PCM_DIN) (type input))
(pin (num 10) (name PCM_DOUT) (type output))
(pin (num 11) (name PCM_CLK) (type output))
(pin (num 12) (name PCM_SYNC) (type output))
(pin (num 13) (name GND) (type power_in))
(pin (num 14) (name GPIO5) (type BiDi))
(pin (num 15) (name SIM_DATA) (type BiDi))
(pin (num 16) (name SIM_CLK) (type BiDi))
(pin (num 17) (name SIM_RST) (type BiDi))
(pin (num 18) (name SIM_VDD) (type power_out))
(pin (num 19) (name GND) (type power_in))
(pin (num 20) (name BOOT_CFG) (type input))
(pin (num 21) (name GND) (type power_in))
(pin (num 22) (name UART2_TXD) (type BiDi))
(pin (num 23) (name UART2_RXD) (type BiDi))
(pin (num 24) (name USB_VBUS) (type power_in))
(pin (num 25) (name USB_DP) (type BiDi))
(pin (num 26) (name USB_DM) (type BiDi))
(pin (num 27) (name GND) (type power_in))
(pin (num 28) (name NC) (type NotConnected))
(pin (num 29) (name NC) (type NotConnected))
(pin (num 30) (name GND) (type power_in))
(pin (num 31) (name GND) (type power_in))
(pin (num 32) (name RF_ANT) (type output))
(pin (num 33) (name GND) (type power_in))
(pin (num 34) (name VBAT) (type power_in))
(pin (num 35) (name VBAT) (type power_in))
(pin (num 36) (name GND) (type power_in))
(pin (num 37) (name GND) (type power_in))
(pin (num 38) (name ADC) (type input))
(pin (num 39) (name PWRKEY) (type input))
(pin (num 40) (name VDD_EXT) (type power_out))
(pin (num 41) (name NETLIGHT) (type output))
(pin (num 42) (name STATUS) (type output))
(pin (num 43) (name RFMIPI_DATA) (type BiDi))
(pin (num 44) (name RFMIPI_CLK) (type BiDi))
(pin (num 45) (name GND) (type power_in))
(pin (num 46) (name NC) (type NotConnected))
(pin (num 47) (name NC) (type NotConnected))
(pin (num 48) (name SPI_CS) (type output))
(pin (num 49) (name SPI_MOSI) (type output))
(pin (num 50) (name SPI_CLK) (type output))
(pin (num 51) (name SPI_MISO) (type input))
(pin (num 52) (name NC) (type NotConnected))
(pin (num 53) (name NC) (type NotConnected))
(pin (num 54) (name NC) (type NotConnected))
(pin (num 55) (name NC) (type NotConnected))
(pin (num 56) (name NC) (type NotConnected))
(pin (num 57) (name GPIO1) (type BiDi))
(pin (num 58) (name GPIO2) (type BiDi))
(pin (num 59) (name GPIO3) (type BiDi))
(pin (num 60) (name GPIO4) (type BiDi))
(pin (num 61) (name UART3_TXD) (type BiDi))
(pin (num 62) (name UART3_RXD) (type BiDi))
(pin (num 63) (name GND) (type power_in))
(pin (num 64) (name I2C_SDA) (type BiDi))
(pin (num 65) (name I2C_SCL) (type BiDi))
(pin (num 66) (name GND) (type power_in))
(pin (num 67) (name GND) (type power_in))
(pin (num 68) (name GNSS_ANT) (type output))
(pin (num 69) (name GND) (type power_in))
(pin (num 70) (name GND) (type power_in))
(pin (num 71) (name GND) (type power_in))
(pin (num 72) (name GND) (type power_in))
(pin (num 73) (name GND) (type power_in))
(pin (num 74) (name GND) (type power_in))
(pin (num 75) (name GND) (type power_in))
(pin (num 76) (name GND) (type power_in))
(pin (num 77) (name GND) (type power_in))))
(libpart (lib Switch) (part SW_Push)
(description "Push button switch, generic, two pins")
(docs ~)
(fields
(field (name Reference) SW)
(field (name Value) SW_Push))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib Transistor_BJT) (part DTC143Z)
(description "Digital NPN Transistor, 4k7/47k, SOT-523 (SC-75A)")
(footprints
(fp SOT?523*)
(fp SC?75*))
(fields
(field (name Reference) Q)
(field (name Value) DTC143Z))
(pins
(pin (num 1) (name B) (type input))
(pin (num 2) (name E) (type passive))
(pin (num 3) (name C) (type passive))))
(libpart (lib e-tinkers) (part ESDA6V1W5)
(description "TVS Diode Array, 5.5V Standoff, 4 Channels, SOT-23-5 package")
(docs https://datasheet.lcsc.com/szlcsc/1810181812_STMicroelectronics-ESDA6V1W5_C48677.pdf)
(footprints
(fp SOT?23?5*))
(fields
(field (name Reference) D)
(field (name Value) ESDA6V1W5)
(field (name Footprint) Package_TO_SOT_SMD:SOT-353_SC-70-5_Handsoldering))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))
(pin (num 3) (name K) (type passive))
(pin (num 4) (name K) (type passive))
(pin (num 5) (name K) (type passive))))
(libpart (lib e-tinkers) (part ST4SIM-200M)
(description "ST4SIM-200M eSIM")
(docs https://www.st.com/resource/en/data_brief/st4sim-200m.pdf)
(footprints
(fp SON_IM-200M_STM)
(fp SON_IM-200M_STM-M)
(fp SON_IM-200M_STM-L))
(fields
(field (name Reference) U)
(field (name Value) ST4SIM-200M)
(field (name Footprint) e-tinkers:ST4SIM-200M))
(pins
(pin (num 1) (name GND) (type power_in))
(pin (num 2) (name SWIO) (type BiDi))
(pin (num 3) (name I/O) (type BiDi))
(pin (num 4) (name NC) (type NotConnected))
(pin (num 5) (name NC) (type NotConnected))
(pin (num 6) (name CLK) (type input))
(pin (num 7) (name RESET) (type input))
(pin (num 8) (name VCC) (type power_in))
(pin (num 9) (name 9) (type power_in))))
(libpart (lib e-tinkers) (part USBLC6-2SC6)
(description "usb ESD protection diode")
(docs https://gct.co/files/drawings/sim5051.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 IO1) (type passive))
(pin (num 2) (name GND) (type passive))
(pin (num 3) (name IO2) (type passive))
(pin (num 4) (name IO2) (type passive))
(pin (num 5) (name VBUS) (type passive))
(pin (num 6) (name IO1) (type passive)))))
(libraries
(library (logical Battery_Management)
(uri "/Library/Application Support/kicad/library/Battery_Management.lib"))
(library (logical Connector)
(uri "/Library/Application Support/kicad/library/Connector.lib"))
(library (logical Device)
(uri "/Library/Application Support/kicad/library/Device.lib"))
(library (logical Jumper)
(uri "/Library/Application Support/kicad/library/Jumper.lib"))
(library (logical Logic_LevelTranslator)
(uri "/Library/Application Support/kicad/library/Logic_LevelTranslator.lib"))
(library (logical Mechanical)
(uri "/Library/Application Support/kicad/library/Mechanical.lib"))
(library (logical Regulator_Linear)
(uri "/Library/Application Support/kicad/library/Regulator_Linear.lib"))
(library (logical SimCom)
(uri /Users/henrycheung1/Documents/kicad/library/SimCom/SimCom.lib))
(library (logical Switch)
(uri "/Library/Application Support/kicad/library/Switch.lib"))
(library (logical Transistor_BJT)
(uri "/Library/Application Support/kicad/library/Transistor_BJT.lib"))
(library (logical e-tinkers)
(uri /Users/henrycheung1/Documents/kicad/library/e-tinkers/e-tinkers.lib)))
(nets
(net (code 1) (name "Net-(U2-Pad14)")
(node (ref U2) (pin 14)))
(net (code 2) (name "Net-(U2-Pad60)")
(node (ref U2) (pin 60)))
(net (code 3) (name "Net-(U2-Pad59)")
(node (ref U2) (pin 59)))
(net (code 4) (name "Net-(U2-Pad58)")
(node (ref U2) (pin 58)))
(net (code 5) (name "Net-(U2-Pad57)")
(node (ref U2) (pin 57)))
(net (code 6) (name "Net-(U2-Pad38)")
(node (ref U2) (pin 38)))
(net (code 7) (name GND)
(node (ref H1) (pin 1))
(node (ref C15) (pin 2))
(node (ref C14) (pin 2))
(node (ref C12) (pin 2))
(node (ref U5) (pin 1))
(node (ref J6) (pin 10))
(node (ref C7) (pin 2))
(node (ref C5) (pin 2))
(node (ref Q4) (pin 2))
(node (ref Q3) (pin 2))
(node (ref Q2) (pin 2))
(node (ref H3) (pin 1))
(node (ref H2) (pin 1))
(node (ref J4) (pin 5))
(node (ref C9) (pin 2))
(node (ref C13) (pin 2))
(node (ref C17) (pin 2))
(node (ref D2) (pin 2))
(node (ref R8) (pin 2))
(node (ref U6) (pin 2))
(node (ref C16) (pin 2))
(node (ref R7) (pin 2))
(node (ref C11) (pin 1))
(node (ref C10) (pin 2))
(node (ref U4) (pin 7))
(node (ref J5) (pin 2))
(node (ref C6) (pin 2))
(node (ref C4) (pin 2))
(node (ref J3) (pin 5))
(node (ref U3) (pin 9))
(node (ref U3) (pin 1))
(node (ref C8) (pin 2))
(node (ref C2) (pin 2))
(node (ref C3) (pin 2))
(node (ref U1) (pin 2))
(node (ref J1) (pin 2))
(node (ref J2) (pin 2))
(node (ref U2) (pin 13))
(node (ref SW1) (pin 1))
(node (ref U2) (pin 19))
(node (ref U2) (pin 8))
(node (ref U2) (pin 21))
(node (ref U2) (pin 77))
(node (ref U2) (pin 76))
(node (ref U2) (pin 75))
(node (ref U2) (pin 74))
(node (ref U2) (pin 73))
(node (ref U2) (pin 27))
(node (ref U2) (pin 72))
(node (ref U2) (pin 71))
(node (ref U2) (pin 70))
(node (ref U2) (pin 30))
(node (ref U2) (pin 31))
(node (ref U2) (pin 69))
(node (ref U2) (pin 33))
(node (ref U2) (pin 67))
(node (ref U2) (pin 66))
(node (ref U2) (pin 36))
(node (ref U2) (pin 37))
(node (ref U2) (pin 63))
(node (ref U2) (pin 45)))
(net (code 8) (name "Net-(U2-Pad51)")
(node (ref U2) (pin 51)))
(net (code 9) (name "Net-(U2-Pad50)")
(node (ref U2) (pin 50)))
(net (code 10) (name "Net-(U2-Pad49)")
(node (ref U2) (pin 49)))
(net (code 11) (name "Net-(U2-Pad48)")
(node (ref U2) (pin 48)))
(net (code 12) (name "Net-(U2-Pad11)")
(node (ref U2) (pin 11)))
(net (code 13) (name "Net-(U2-Pad10)")
(node (ref U2) (pin 10)))
(net (code 14) (name "Net-(U2-Pad12)")
(node (ref U2) (pin 12)))
(net (code 15) (name "Net-(U2-Pad9)")
(node (ref U2) (pin 9)))
(net (code 16) (name NB_RI)
(node (ref U4) (pin 2))
(node (ref U2) (pin 7)))
(net (code 17) (name NB_DTR)
(node (ref U2) (pin 6))
(node (ref U4) (pin 3)))
(net (code 18) (name NB_RXD)
(node (ref U4) (pin 4))
(node (ref U2) (pin 2)))
(net (code 19) (name NB_TXD)
(node (ref U2) (pin 1))
(node (ref U4) (pin 5)))
(net (code 20) (name PWRKEY)
(node (ref D1) (pin 1))
(node (ref J6) (pin 7)))
(net (code 21) (name VBAT)
(node (ref C5) (pin 1))
(node (ref C7) (pin 1))
(node (ref J6) (pin 1))
(node (ref C13) (pin 1))
(node (ref C4) (pin 1))