-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathv2SLI.net
1369 lines (1369 loc) · 54.5 KB
/
v2SLI.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 /Users/dgramop/Documents/Projects/v2SLI/v2SLI.sch)
(date "Monday, February 17, 2020 at 06:06:21 PM")
(tool "Eeschema (5.0.1-3-g963ef8bb5)")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title Payload)
(company "Cougar Rocketry")
(rev 2)
(date 2020-02-17)
(source v2SLI.sch)
(comment (number 1) (value "Dhruv Gramopadhye"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U7)
(value STM32F103C8Tx)
(footprint Package_QFP:LQFP-48_7x7mm_P0.5mm)
(datasheet http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/CD00161566.pdf)
(libsource (lib MCU_ST_STM32F1) (part STM32F103C8Tx) (description "ARM Cortex-M3 MCU, 64KB flash, 20KB RAM, 72MHz, 2-3.6V, 37 GPIO, LQFP-48"))
(sheetpath (names /) (tstamps /))
(tstamp 5E5187C6))
(comp (ref U2)
(value BMP388)
(footprint BMP388:PQFN50P200X200X80-10N)
(libsource (lib BMP388) (part BMP388) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E5189DA))
(comp (ref U4)
(value ICM20948)
(footprint Package_DFN_QFN:QFN-24-1EP_3x3mm_P0.4mm_EP1.75x1.6mm)
(libsource (lib "ICM 20948") (part ICM20948) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E518AB5))
(comp (ref U3)
(value BMP388)
(footprint BMP388:PQFN50P200X200X80-10N)
(libsource (lib BMP388) (part BMP388) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E518C17))
(comp (ref U1)
(value STM32F205RETx)
(footprint Package_QFP:LQFP-64_10x10mm_P0.5mm)
(datasheet http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/CD00237391.pdf)
(libsource (lib MCU_ST_STM32F2) (part STM32F205RETx) (description "ARM Cortex-M3 MCU, 512KB flash, 128KB RAM, 120MHz, 1.8-3.6V, 51 GPIO, LQFP-64"))
(sheetpath (names /) (tstamps /))
(tstamp 5E519058))
(comp (ref J20)
(value Micro_SD_Card)
(footprint 1140084168:1140084168)
(datasheet http://katalog.we-online.de/em/datasheet/693072010801.pdf)
(libsource (lib Connector) (part Micro_SD_Card) (description "Micro SD Card Socket"))
(sheetpath (names /) (tstamps /))
(tstamp 5E5192C8))
(comp (ref U5)
(value TCR2EE185-SOT553)
(footprint Package_TO_SOT_SMD:SOT-553)
(libsource (lib Regulator_Linear) (part TCR2EE185-SOT553) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E519469))
(comp (ref J1)
(value "Inter-MCU Interrupts Header")
(footprint Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E519932))
(comp (ref D1)
(value LED)
(footprint LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5E519C63))
(comp (ref D2)
(value LED)
(footprint LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5E51A11E))
(comp (ref J2)
(value "Inter-MCU UART Header")
(footprint Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E51D3F1))
(comp (ref J15)
(value "Boot 0")
(footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x03_Male) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E51EC5A))
(comp (ref J13)
(value "Boot 1")
(footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x03_Male) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E51EF1C))
(comp (ref J11)
(value "Boot 0")
(footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x03_Male) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E52183D))
(comp (ref J12)
(value "Boot 1")
(footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x03_Male) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E521844))
(comp (ref J3)
(value "SPI Bus")
(footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x03_Male) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E525E50))
(comp (ref J4)
(value UART1)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E530958))
(comp (ref J6)
(value UART2)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E531B5B))
(comp (ref J7)
(value I2C1)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E5338AB))
(comp (ref J5)
(value 205GPIOs)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x04_Male) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E53497C))
(comp (ref J10)
(value "Programming Header for 205")
(footprint Connector_PinSocket_2.54mm:PinSocket_1x04_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x04_Male) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E535A25))
(comp (ref J8)
(value Conn_02x15_Top_Bottom)
(footprint Connector_PinHeader_2.54mm:PinHeader_2x15_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x15_Top_Bottom) (description "Generic connector, double row, 02x15, top/bottom pin numbering scheme (row 1: 1...pins_per_row, row2: pins_per_row+1 ... num_pins), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E539796))
(comp (ref J9)
(value Conn_02x15_Top_Bottom)
(footprint Connector_PinHeader_2.54mm:PinHeader_2x15_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x15_Top_Bottom) (description "Generic connector, double row, 02x15, top/bottom pin numbering scheme (row 1: 1...pins_per_row, row2: pins_per_row+1 ... num_pins), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E539A1C))
(comp (ref R2)
(value R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E53FF09))
(comp (ref R3)
(value R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E540088))
(comp (ref C2)
(value "C VCAP")
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib pspice) (part C) (description "Capacitor symbol for simulation only"))
(sheetpath (names /) (tstamps /))
(tstamp 5E5431C4))
(comp (ref C3)
(value "C VCAP")
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib pspice) (part C) (description "Capacitor symbol for simulation only"))
(sheetpath (names /) (tstamps /))
(tstamp 5E543E72))
(comp (ref C1)
(value C)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib pspice) (part C) (description "Capacitor symbol for simulation only"))
(sheetpath (names /) (tstamps /))
(tstamp 5E545C66))
(comp (ref R1)
(value R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E5460BE))
(comp (ref SW1)
(value SW_Push)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E546F04))
(comp (ref C4)
(value C)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib pspice) (part C) (description "Capacitor symbol for simulation only"))
(sheetpath (names /) (tstamps /))
(tstamp 5E54B4DB))
(comp (ref R10)
(value R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E54B4E8))
(comp (ref SW2)
(value SW_Push)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E54B4F7))
(comp (ref U8)
(value Xbee)
(footprint XBP9B-DPST-001:DIP2200W51P200L3294H279Q20P)
(libsource (lib XBEE) (part Xbee) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E54DB03))
(comp (ref U6)
(value ADA746)
(footprint Connector_PinSocket_2.54mm:PinSocket_1x09_P2.54mm_Vertical)
(libsource (lib ada746) (part ADA746) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E54EC84))
(comp (ref SW3)
(value SW_Push)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E5518F0))
(comp (ref R7)
(value R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E5543CE))
(comp (ref R6)
(value R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E55461F))
(comp (ref J14)
(value "Programming Header for 103")
(footprint Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x04_Male) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E55871E))
(comp (ref R9)
(value R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E558735))
(comp (ref R8)
(value R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E55873C))
(comp (ref D3)
(value LED)
(footprint LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5E565049))
(comp (ref D4)
(value LED)
(footprint LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5E5651DD))
(comp (ref R11)
(value R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E565715))
(comp (ref R12)
(value R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E565B60))
(comp (ref R4)
(value R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E5679E1))
(comp (ref R5)
(value R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E567BC8))
(comp (ref J16)
(value "SPI Bus")
(footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x03_Male) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E56D007))
(comp (ref J18)
(value GPIOs)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x04_Male) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E575F1D))
(comp (ref J21)
(value "Radio UART")
(footprint Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E57D9D7))
(comp (ref J17)
(value "Enable Fix ")
(footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x03_Male) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E594373))
(comp (ref J19)
(value UART1)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E595907))
(comp (ref C5)
(value C)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib pspice) (part C) (description "Capacitor symbol for simulation only"))
(sheetpath (names /) (tstamps /))
(tstamp 5E5C1D61))
(comp (ref C6)
(value C)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib pspice) (part C) (description "Capacitor symbol for simulation only"))
(sheetpath (names /) (tstamps /))
(tstamp 5E5C26F1))
(comp (ref C7)
(value C)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib pspice) (part C) (description "Capacitor symbol for simulation only"))
(sheetpath (names /) (tstamps /))
(tstamp 5E5C37D1))
(comp (ref C8)
(value CAP)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib pspice) (part CAP) (description "Capacitor symbol for simulation only"))
(sheetpath (names /) (tstamps /))
(tstamp 5E5C40D5))
(comp (ref D5)
(value LED)
(footprint LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5E5C5F27))
(comp (ref R13)
(value R)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E5C63BE))
(comp (ref J23)
(value "GND RAIL")
(footprint Connector_Wire:SolderWirePad_1x01_Drill2mm)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x01_Male) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E5D6BD3))
(comp (ref J22)
(value "VCC RAIL")
(footprint Connector_Wire:SolderWirePad_1x01_Drill2mm)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x01_Male) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E5D7705)))
(libparts
(libpart (lib BMP388) (part BMP388)
(fields
(field (name Reference) U)
(field (name Value) BMP388))
(pins
(pin (num 1) (name VDDIO) (type unspc))
(pin (num 2) (name SCK) (type unspc))
(pin (num 3) (name VSS) (type unspc))
(pin (num 4) (name SDI) (type unspc))
(pin (num 5) (name SDO) (type unspc))
(pin (num 6) (name CSB) (type unspc))
(pin (num 7) (name INT) (type unspc))
(pin (num 8) (name VSS) (type unspc))
(pin (num 9) (name VSS) (type unspc))
(pin (num 10) (name VDD) (type unspc))))
(libpart (lib Connector) (part Conn_01x01_Male)
(description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x01_Male))
(pins
(pin (num 1) (name Pin_1) (type passive))))
(libpart (lib Connector) (part Conn_01x02_Male)
(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_Male))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))))
(libpart (lib Connector) (part Conn_01x03_Male)
(description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x03_Male))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))))
(libpart (lib Connector) (part Conn_01x04_Male)
(description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x04_Male))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))))
(libpart (lib Connector) (part Micro_SD_Card)
(description "Micro SD Card Socket")
(docs http://katalog.we-online.de/em/datasheet/693072010801.pdf)
(footprints
(fp microSD*))
(fields
(field (name Reference) J)
(field (name Value) Micro_SD_Card))
(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 input))
(pin (num 8) (name DAT1) (type input))
(pin (num 9) (name SHIELD) (type passive))))
(libpart (lib Connector_Generic) (part Conn_02x15_Top_Bottom)
(description "Generic connector, double row, 02x15, top/bottom pin numbering scheme (row 1: 1...pins_per_row, row2: pins_per_row+1 ... num_pins), script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_2x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_02x15_Top_Bottom))
(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))))
(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 "ICM 20948") (part ICM20948)
(fields
(field (name Reference) U)
(field (name Value) ICM20948))
(pins
(pin (num 1) (name NC) (type NotConnected))
(pin (num 2) (name NC) (type NotConnected))
(pin (num 3) (name NC) (type NotConnected))
(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 AUX_CL) (type unspc))
(pin (num 8) (name VDDIO) (type BiDi))
(pin (num 9) (name SDO/AD0) (type BiDi))
(pin (num 10) (name REGOUT) (type output))
(pin (num 11) (name FSYNC) (type unspc))
(pin (num 12) (name INT1) (type unspc))
(pin (num 13) (name VDD) (type unspc))
(pin (num 14) (name NC) (type NotConnected))
(pin (num 15) (name NC) (type NotConnected))
(pin (num 16) (name NC) (type NotConnected))
(pin (num 17) (name NC) (type NotConnected))
(pin (num 18) (name GND) (type unspc))
(pin (num 19) (name RESV) (type unspc))
(pin (num 20) (name RESV) (type unspc))
(pin (num 21) (name AUX_DA) (type unspc))
(pin (num 22) (name nCS) (type unspc))
(pin (num 23) (name SCL/SCLK) (type unspc))
(pin (num 24) (name SDA/SDI) (type unspc))))
(libpart (lib MCU_ST_STM32F1) (part STM32F103C8Tx)
(aliases
(alias STM32F103CBTx))
(description "ARM Cortex-M3 MCU, 64KB flash, 20KB RAM, 72MHz, 2-3.6V, 37 GPIO, LQFP-48")
(docs http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/CD00161566.pdf)
(footprints
(fp LQFP*7x7mm*P0.5mm*))
(fields
(field (name Reference) U)
(field (name Value) STM32F103C8Tx)
(field (name Footprint) Package_QFP:LQFP-48_7x7mm_P0.5mm))
(pins
(pin (num 1) (name VBAT) (type power_in))
(pin (num 2) (name PC13) (type BiDi))
(pin (num 3) (name PC14) (type BiDi))
(pin (num 4) (name PC15) (type BiDi))
(pin (num 5) (name PD0) (type input))
(pin (num 6) (name PD1) (type input))
(pin (num 7) (name NRST) (type input))
(pin (num 8) (name VSSA) (type power_in))
(pin (num 9) (name VDDA) (type power_in))
(pin (num 10) (name PA0) (type BiDi))
(pin (num 11) (name PA1) (type BiDi))
(pin (num 12) (name PA2) (type BiDi))
(pin (num 13) (name PA3) (type BiDi))
(pin (num 14) (name PA4) (type BiDi))
(pin (num 15) (name PA5) (type BiDi))
(pin (num 16) (name PA6) (type BiDi))
(pin (num 17) (name PA7) (type BiDi))
(pin (num 18) (name PB0) (type BiDi))
(pin (num 19) (name PB1) (type BiDi))
(pin (num 20) (name PB2) (type BiDi))
(pin (num 21) (name PB10) (type BiDi))
(pin (num 22) (name PB11) (type BiDi))
(pin (num 23) (name VSS) (type power_in))
(pin (num 24) (name VDD) (type power_in))
(pin (num 25) (name PB12) (type BiDi))
(pin (num 26) (name PB13) (type BiDi))
(pin (num 27) (name PB14) (type BiDi))
(pin (num 28) (name PB15) (type BiDi))
(pin (num 29) (name PA8) (type BiDi))
(pin (num 30) (name PA9) (type BiDi))
(pin (num 31) (name PA10) (type BiDi))
(pin (num 32) (name PA11) (type BiDi))
(pin (num 33) (name PA12) (type BiDi))
(pin (num 34) (name PA13) (type BiDi))
(pin (num 35) (name VSS) (type power_in))
(pin (num 36) (name VDD) (type power_in))
(pin (num 37) (name PA14) (type BiDi))
(pin (num 38) (name PA15) (type BiDi))
(pin (num 39) (name PB3) (type BiDi))
(pin (num 40) (name PB4) (type BiDi))
(pin (num 41) (name PB5) (type BiDi))
(pin (num 42) (name PB6) (type BiDi))
(pin (num 43) (name PB7) (type BiDi))
(pin (num 44) (name BOOT0) (type input))
(pin (num 45) (name PB8) (type BiDi))
(pin (num 46) (name PB9) (type BiDi))
(pin (num 47) (name VSS) (type power_in))
(pin (num 48) (name VDD) (type power_in))))
(libpart (lib MCU_ST_STM32F2) (part STM32F205RBTx)
(aliases
(alias STM32F205RCTx)
(alias STM32F205RETx)
(alias STM32F205RFTx)
(alias STM32F205RGTx))
(description "ARM Cortex-M3 MCU, 128KB flash, 64KB RAM, 120MHz, 1.8-3.6V, 51 GPIO, LQFP-64")
(docs http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/CD00237391.pdf)
(footprints
(fp LQFP*10x10mm*P0.5mm*))
(fields
(field (name Reference) U)
(field (name Value) STM32F205RBTx)
(field (name Footprint) Package_QFP:LQFP-64_10x10mm_P0.5mm))
(pins
(pin (num 1) (name VBAT) (type power_in))
(pin (num 2) (name PC13) (type BiDi))
(pin (num 3) (name PC14) (type BiDi))
(pin (num 4) (name PC15) (type BiDi))
(pin (num 5) (name PH0) (type input))
(pin (num 6) (name PH1) (type input))
(pin (num 7) (name NRST) (type input))
(pin (num 8) (name PC0) (type BiDi))
(pin (num 9) (name PC1) (type BiDi))
(pin (num 10) (name PC2) (type BiDi))
(pin (num 11) (name PC3) (type BiDi))
(pin (num 12) (name VSSA) (type power_in))
(pin (num 13) (name VDDA) (type power_in))
(pin (num 14) (name PA0) (type BiDi))
(pin (num 15) (name PA1) (type BiDi))
(pin (num 16) (name PA2) (type BiDi))
(pin (num 17) (name PA3) (type BiDi))
(pin (num 18) (name VSS) (type power_in))
(pin (num 19) (name VDD) (type power_in))
(pin (num 20) (name PA4) (type BiDi))
(pin (num 21) (name PA5) (type BiDi))
(pin (num 22) (name PA6) (type BiDi))
(pin (num 23) (name PA7) (type BiDi))
(pin (num 24) (name PC4) (type BiDi))
(pin (num 25) (name PC5) (type BiDi))
(pin (num 26) (name PB0) (type BiDi))
(pin (num 27) (name PB1) (type BiDi))
(pin (num 28) (name PB2) (type BiDi))
(pin (num 29) (name PB10) (type BiDi))
(pin (num 30) (name PB11) (type BiDi))
(pin (num 31) (name VCAP_1) (type power_in))
(pin (num 32) (name VDD) (type power_in))
(pin (num 33) (name PB12) (type BiDi))
(pin (num 34) (name PB13) (type BiDi))
(pin (num 35) (name PB14) (type BiDi))
(pin (num 36) (name PB15) (type BiDi))
(pin (num 37) (name PC6) (type BiDi))
(pin (num 38) (name PC7) (type BiDi))
(pin (num 39) (name PC8) (type BiDi))
(pin (num 40) (name PC9) (type BiDi))
(pin (num 41) (name PA8) (type BiDi))
(pin (num 42) (name PA9) (type BiDi))
(pin (num 43) (name PA10) (type BiDi))
(pin (num 44) (name PA11) (type BiDi))
(pin (num 45) (name PA12) (type BiDi))
(pin (num 46) (name PA13) (type BiDi))
(pin (num 47) (name VCAP_2) (type power_in))
(pin (num 48) (name VDD) (type power_in))
(pin (num 49) (name PA14) (type BiDi))
(pin (num 50) (name PA15) (type BiDi))
(pin (num 51) (name PC10) (type BiDi))
(pin (num 52) (name PC11) (type BiDi))
(pin (num 53) (name PC12) (type BiDi))
(pin (num 54) (name PD2) (type BiDi))
(pin (num 55) (name PB3) (type BiDi))
(pin (num 56) (name PB4) (type BiDi))
(pin (num 57) (name PB5) (type BiDi))
(pin (num 58) (name PB6) (type BiDi))
(pin (num 59) (name PB7) (type BiDi))
(pin (num 60) (name BOOT0) (type input))
(pin (num 61) (name PB8) (type BiDi))
(pin (num 62) (name PB9) (type BiDi))
(pin (num 63) (name VSS) (type power_in))
(pin (num 64) (name VDD) (type power_in))))
(libpart (lib Regulator_Linear) (part TCR2EE185-SOT553)
(fields
(field (name Reference) U)
(field (name Value) TCR2EE185-SOT553))
(pins
(pin (num 1) (name control) (type input))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name Vin) (type power_in))
(pin (num 4) (name Vout) (type power_out))
(pin (num 5) (name NC) (type NotConnected))))
(libpart (lib Switch) (part SW_Push)
(description "Push button switch, generic, two pins")
(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 XBEE) (part Xbee)
(fields
(field (name Reference) U)
(field (name Value) Xbee))
(pins
(pin (num 1) (name VCC) (type input))
(pin (num 2) (name DOUT) (type input))
(pin (num 3) (name DIN/CONFIG) (type input))
(pin (num 4) (name DIO12) (type input))
(pin (num 5) (name RESET) (type input))
(pin (num 6) (name PWM0/RSS/DIO10) (type input))
(pin (num 7) (name DIO11) (type input))
(pin (num 8) (name RESERVED) (type input))
(pin (num 9) (name DTR/SLEEP_RQ/DIO8) (type input))
(pin (num 10) (name GND) (type input))
(pin (num 11) (name DIO4) (type input))
(pin (num 12) (name CTS/DIO7) (type input))
(pin (num 13) (name ON/SLEEP) (type input))
(pin (num 14) (name VREF) (type input))
(pin (num 15) (name ASC/DIO5) (type input))
(pin (num 16) (name RTS/DIO6) (type input))
(pin (num 17) (name AD3/DIO3) (type input))
(pin (num 18) (name AD2/DIO2) (type input))
(pin (num 19) (name AD1/DIO1) (type input))
(pin (num 20) (name AD0/DIO0/CMSN_BTN) (type input))))
(libpart (lib ada746) (part ADA746)
(fields
(field (name Reference) U)
(field (name Value) ADA746))
(pins
(pin (num 1) (name 3.3U) (type input))
(pin (num 2) (name EN) (type input))
(pin (num 3) (name VBAT) (type input))
(pin (num 4) (name FIX) (type input))
(pin (num 5) (name TX) (type input))
(pin (num 6) (name RX) (type input))
(pin (num 7) (name GND) (type input))
(pin (num 8) (name VIN) (type input))
(pin (num 9) (name PPS) (type input))))
(libpart (lib pspice) (part CAP)
(aliases
(alias C))
(description "Capacitor symbol for simulation only")
(docs ~)
(fields
(field (name Reference) C)
(field (name Value) CAP))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive)))))
(libraries
(library (logical BMP388)
(uri "/Users/dgramop/Downloads/Kicad/BMP388 - barometric altimeter/BMP388.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 "ICM 20948")
(uri "/Users/dgramop/Downloads/Kicad/ICM 20948 - accelerometer/ICM 20948.lib"))
(library (logical MCU_ST_STM32F1)
(uri "/Library/Application Support/kicad/library/MCU_ST_STM32F1.lib"))
(library (logical MCU_ST_STM32F2)
(uri "/Library/Application Support/kicad/library/MCU_ST_STM32F2.lib"))
(library (logical Regulator_Linear)
(uri "/Library/Application Support/kicad/library/Regulator_Linear.lib"))
(library (logical Switch)
(uri "/Library/Application Support/kicad/library/Switch.lib"))
(library (logical XBEE)
(uri /Users/dgramop/Downloads/XBEE.lib))
(library (logical ada746)
(uri /Users/dgramop/Downloads/Send-Archive/ada746.lib))
(library (logical pspice)
(uri "/Library/Application Support/kicad/library/pspice.lib")))
(nets
(net (code 1) (name "Net-(C4-Pad2)")
(node (ref C4) (pin 2))
(node (ref U7) (pin 7))
(node (ref R10) (pin 1))
(node (ref SW2) (pin 1)))
(net (code 2) (name /CSSD)
(node (ref J20) (pin 2))
(node (ref U7) (pin 32)))
(net (code 3) (name "Net-(U7-Pad14)")
(node (ref U7) (pin 14)))
(net (code 4) (name "Net-(U7-Pad15)")
(node (ref U7) (pin 15)))
(net (code 5) (name "Net-(U7-Pad16)")
(node (ref U7) (pin 16)))
(net (code 6) (name "Net-(U7-Pad17)")
(node (ref U7) (pin 17)))
(net (code 7) (name /PB0)
(node (ref J18) (pin 1))
(node (ref U7) (pin 18)))
(net (code 8) (name /PB1)
(node (ref J18) (pin 2))
(node (ref U7) (pin 19)))
(net (code 9) (name "Net-(D3-Pad2)")
(node (ref D3) (pin 2))
(node (ref U7) (pin 27)))
(net (code 10) (name "Net-(D4-Pad2)")
(node (ref D4) (pin 2))
(node (ref U7) (pin 28)))
(net (code 11) (name /CLK103SPI)
(node (ref J16) (pin 3))
(node (ref J20) (pin 5))
(node (ref U7) (pin 39)))
(net (code 12) (name /MISO103SPI)
(node (ref J20) (pin 7))
(node (ref U7) (pin 40))
(node (ref J16) (pin 2)))
(net (code 13) (name /MOSI103SPI)
(node (ref U7) (pin 41))
(node (ref J20) (pin 3))
(node (ref J16) (pin 1)))
(net (code 14) (name "Net-(U7-Pad42)")
(node (ref U7) (pin 42)))
(net (code 15) (name "Net-(U7-Pad43)")
(node (ref U7) (pin 43)))
(net (code 16) (name "Net-(U7-Pad45)")
(node (ref U7) (pin 45)))
(net (code 17) (name "Net-(U7-Pad46)")
(node (ref U7) (pin 46)))
(net (code 18) (name "Net-(U7-Pad2)")
(node (ref U7) (pin 2)))
(net (code 19) (name "Net-(U7-Pad3)")
(node (ref U7) (pin 3)))
(net (code 20) (name "Net-(U7-Pad4)")
(node (ref U7) (pin 4)))
(net (code 21) (name "Net-(U7-Pad5)")
(node (ref U7) (pin 5)))
(net (code 22) (name "Net-(U7-Pad6)")
(node (ref U7) (pin 6)))
(net (code 23) (name /BMP0CS)
(node (ref U1) (pin 33))
(node (ref U2) (pin 6)))
(net (code 24) (name "Net-(U2-Pad7)")
(node (ref U2) (pin 7)))
(net (code 25) (name "Net-(U4-Pad1)")
(node (ref U4) (pin 1)))
(net (code 26) (name "Net-(U4-Pad10)")
(node (ref U4) (pin 10)))
(net (code 27) (name "Net-(U4-Pad11)")
(node (ref U4) (pin 11)))
(net (code 28) (name /ACCINT)
(node (ref U4) (pin 12))
(node (ref U1) (pin 26)))
(net (code 29) (name "Net-(U4-Pad14)")
(node (ref U4) (pin 14)))
(net (code 30) (name "Net-(U4-Pad15)")
(node (ref U4) (pin 15)))
(net (code 31) (name "Net-(U4-Pad16)")
(node (ref U4) (pin 16)))
(net (code 32) (name "Net-(U4-Pad17)")
(node (ref U4) (pin 17)))
(net (code 33) (name "Net-(U4-Pad19)")
(node (ref U4) (pin 19)))
(net (code 34) (name "Net-(U4-Pad2)")
(node (ref U4) (pin 2)))
(net (code 35) (name "Net-(U4-Pad21)")
(node (ref U4) (pin 21)))
(net (code 36) (name "Net-(U4-Pad3)")
(node (ref U4) (pin 3)))
(net (code 37) (name "Net-(U4-Pad4)")
(node (ref U4) (pin 4)))
(net (code 38) (name "Net-(U4-Pad5)")
(node (ref U4) (pin 5)))
(net (code 39) (name "Net-(U4-Pad6)")
(node (ref U4) (pin 6)))
(net (code 40) (name "Net-(U4-Pad7)")
(node (ref U4) (pin 7)))
(net (code 41) (name /VDDIOACC)
(node (ref U4) (pin 8))
(node (ref C5) (pin 1))
(node (ref U5) (pin 4)))
(net (code 42) (name /BMP1CS)
(node (ref U1) (pin 34))
(node (ref U3) (pin 6)))
(net (code 43) (name "Net-(U3-Pad7)")
(node (ref U3) (pin 7)))
(net (code 44) (name "Net-(C1-Pad2)")
(node (ref SW1) (pin 1))
(node (ref C1) (pin 2))
(node (ref R1) (pin 1))
(node (ref U1) (pin 7)))
(net (code 45) (name "Net-(U1-Pad14)")
(node (ref U1) (pin 14)))
(net (code 46) (name "Net-(U1-Pad15)")
(node (ref U1) (pin 15)))
(net (code 47) (name /UART1RX)
(node (ref U1) (pin 43))
(node (ref J4) (pin 1)))
(net (code 48) (name "Net-(U1-Pad44)")
(node (ref U1) (pin 44)))
(net (code 49) (name "Net-(U1-Pad45)")
(node (ref U1) (pin 45)))
(net (code 50) (name "Net-(U1-Pad50)")
(node (ref U1) (pin 50)))
(net (code 51) (name /UART2TX)
(node (ref U1) (pin 16))
(node (ref J6) (pin 2)))
(net (code 52) (name /UART2RX)
(node (ref J6) (pin 1))
(node (ref U1) (pin 17)))
(net (code 53) (name "Net-(U1-Pad20)")
(node (ref U1) (pin 20)))
(net (code 54) (name /205CLKSPI)
(node (ref U4) (pin 23))
(node (ref J3) (pin 3))
(node (ref U3) (pin 2))
(node (ref U2) (pin 2))
(node (ref U1) (pin 21)))
(net (code 55) (name /205MISOSPI)
(node (ref U2) (pin 5))
(node (ref U4) (pin 9))
(node (ref J3) (pin 2))
(node (ref U3) (pin 5))
(node (ref U1) (pin 22)))
(net (code 56) (name /205MOSISPI)
(node (ref U2) (pin 4))
(node (ref U4) (pin 24))
(node (ref U1) (pin 23))
(node (ref U3) (pin 4))
(node (ref J3) (pin 1)))
(net (code 57) (name "Net-(U1-Pad41)")
(node (ref U1) (pin 41)))
(net (code 58) (name /UART1TX)
(node (ref U1) (pin 42))
(node (ref J4) (pin 2)))
(net (code 59) (name "Net-(U1-Pad27)")
(node (ref U1) (pin 27)))
(net (code 60) (name /TX205RX103)
(node (ref J2) (pin 2))
(node (ref U1) (pin 29))
(node (ref U7) (pin 22)))
(net (code 61) (name /RX205TX103)
(node (ref U7) (pin 21))
(node (ref J2) (pin 1))
(node (ref U1) (pin 30)))
(net (code 62) (name /ICMCS)
(node (ref U4) (pin 22))
(node (ref U1) (pin 35)))