forked from rusefi/rusefi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
brain_board_STM32F407.net
1290 lines (1290 loc) · 47.7 KB
/
brain_board_STM32F407.net
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(export (version D)
(design
(source C:/Users/Vista_64_D630/Desktop/Jared/code/Hardware/trunk/rusefi.com/brain_board_STM32F407/brain_board_STM32F407.sch)
(date "4/28/2017 6:02:02 AM")
(tool "Eeschema 4.0.5")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company "rusEFI by Art_Electro")
(rev R0.4)
(date 2017-02-18)
(source brain_board_STM32F407.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U1)
(value STM32F407VG)
(footprint Housings_QFP:LQFP-100_14x14mm_Pitch0.5mm)
(libsource (lib KICAD_Older_Version) (part STM32F407VG))
(sheetpath (names /) (tstamps /))
(tstamp 52CFAC02))
(comp (ref P1)
(value CONN_25X2)
(footprint Pin_Headers:Pin_Header_Straight_2x25_Pitch2.54mm)
(libsource (lib KICAD_Older_Version) (part CONN_25X2))
(sheetpath (names /) (tstamps /))
(tstamp 52CFAC03))
(comp (ref P2)
(value CONN_25X2)
(footprint Pin_Headers:Pin_Header_Straight_2x25_Pitch2.54mm)
(libsource (lib KICAD_Older_Version) (part CONN_25X2))
(sheetpath (names /) (tstamps /))
(tstamp 52CFAC04))
(comp (ref C19)
(value 4.7uF)
(footprint Capacitors_SMD:C_0805)
(libsource (lib KICAD_Older_Version) (part CP1))
(sheetpath (names /) (tstamps /))
(tstamp 52CFAC13))
(comp (ref C18)
(value 0.1uF)
(footprint Capacitors_SMD:C_0805)
(libsource (lib KICAD_Older_Version) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 52CFAC14))
(comp (ref C16)
(value 1uF)
(footprint Capacitors_SMD:C_0805)
(libsource (lib KICAD_Older_Version) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 52CFAD58))
(comp (ref BT1)
(value BATTERY_CR2032)
(footprint BATT_CR2032_MPD)
(libsource (lib KICAD_Older_Version) (part BATTERY_CR2032))
(sheetpath (names /) (tstamps /))
(tstamp 52CFBA3E))
(comp (ref C15)
(value 2u2F)
(footprint Capacitors_SMD:C_0805)
(libsource (lib KICAD_Older_Version) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 52D139A3))
(comp (ref C17)
(value 2u2F)
(footprint Capacitors_SMD:C_0805)
(libsource (lib KICAD_Older_Version) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 52D139AE))
(comp (ref C6)
(value 1uF)
(footprint Capacitors_SMD:C_0805)
(libsource (lib KICAD_Older_Version) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 52D13B14))
(comp (ref C7)
(value 1uF)
(footprint Capacitors_SMD:C_0805)
(libsource (lib KICAD_Older_Version) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 52D13B1A))
(comp (ref C8)
(value 0.01uF)
(footprint Capacitors_SMD:C_0805)
(libsource (lib KICAD_Older_Version) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 52D13B20))
(comp (ref C5)
(value 0.01uF)
(footprint Capacitors_SMD:C_0805)
(libsource (lib KICAD_Older_Version) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 52D13B2B))
(comp (ref FB1)
(value FILTER)
(footprint Resistors_SMD:R_0805)
(libsource (lib KICAD_Older_Version) (part FILTER))
(sheetpath (names /) (tstamps /))
(tstamp 52D13553))
(comp (ref C2)
(value 18pF)
(footprint Capacitors_SMD:C_0805)
(libsource (lib KICAD_Older_Version) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 52D13C3B))
(comp (ref C3)
(value 18pF)
(footprint Capacitors_SMD:C_0805)
(libsource (lib KICAD_Older_Version) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 52D13C4D))
(comp (ref X1)
(value CRYSTAL)
(footprint HC-49V)
(libsource (lib KICAD_Older_Version) (part CRYSTAL))
(sheetpath (names /) (tstamps /))
(tstamp 52D13AFB))
(comp (ref SW1)
(value SW_PUSH)
(footprint TL-1105)
(libsource (lib KICAD_Older_Version) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 52D13F6B))
(comp (ref C1)
(value 20nF)
(footprint Capacitors_SMD:C_0805)
(libsource (lib KICAD_Older_Version) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 52D13F78))
(comp (ref R10)
(value 47R)
(footprint Resistors_SMD:R_0805)
(libsource (lib KICAD_Older_Version) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 52D13B02))
(comp (ref R3)
(value 10k)
(footprint Resistors_SMD:R_0805)
(libsource (lib KICAD_Older_Version) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 52D13FCF))
(comp (ref R4)
(value 10k)
(footprint Resistors_SMD:R_0805)
(libsource (lib KICAD_Older_Version) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 52D13EB3))
(comp (ref SW2)
(value SW_PUSH)
(footprint TL-1105)
(libsource (lib KICAD_Older_Version) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 52D14775))
(comp (ref C4)
(value 2u2F)
(footprint Capacitors_SMD:C_0805)
(libsource (lib KICAD_Older_Version) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 52D1477B))
(comp (ref R1)
(value 10k)
(footprint Resistors_SMD:R_0805)
(libsource (lib KICAD_Older_Version) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 52D14781))
(comp (ref R2)
(value 100R)
(footprint Resistors_SMD:R_0805)
(libsource (lib KICAD_Older_Version) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 52D1479B))
(comp (ref R5)
(value 330R)
(footprint Resistors_SMD:R_0805)
(libsource (lib KICAD_Older_Version) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 52D14C53))
(comp (ref R6)
(value 680R)
(footprint Resistors_SMD:R_0805)
(libsource (lib KICAD_Older_Version) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 52D15A08))
(comp (ref R7)
(value 680R)
(footprint Resistors_SMD:R_0805)
(libsource (lib KICAD_Older_Version) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 52D15A23))
(comp (ref R8)
(value 680R)
(footprint Resistors_SMD:R_0805)
(libsource (lib KICAD_Older_Version) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 52D15A33))
(comp (ref R9)
(value 680R)
(footprint Resistors_SMD:R_0805)
(libsource (lib KICAD_Older_Version) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 52D15C06))
(comp (ref JP1)
(value JUMPER)
(footprint rusEFI_LIB:SM0805_jumper)
(libsource (lib KICAD_Older_Version) (part JUMPER))
(sheetpath (names /) (tstamps /))
(tstamp 52D15D96))
(comp (ref JP2)
(value JUMPER)
(footprint rusEFI_LIB:SM0805_jumper)
(libsource (lib KICAD_Older_Version) (part JUMPER))
(sheetpath (names /) (tstamps /))
(tstamp 52D15DA3))
(comp (ref JP4)
(value JUMPER)
(footprint rusEFI_LIB:SM0805_jumper)
(libsource (lib KICAD_Older_Version) (part JUMPER))
(sheetpath (names /) (tstamps /))
(tstamp 52D15DC3))
(comp (ref JP3)
(value JUMPER)
(footprint rusEFI_LIB:SM0805_jumper)
(libsource (lib KICAD_Older_Version) (part JUMPER))
(sheetpath (names /) (tstamps /))
(tstamp 52D15DD0))
(comp (ref JP5)
(value JUMPER3)
(footprint Pin_Headers:Pin_Header_Straight_1x03_Pitch2.54mm)
(libsource (lib KICAD_Older_Version) (part JUMPER3))
(sheetpath (names /) (tstamps /))
(tstamp 52D185D8))
(comp (ref C14)
(value 0.1uF)
(footprint Capacitors_SMD:C_0805)
(libsource (lib KICAD_Older_Version) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 52D186F5))
(comp (ref C13)
(value 0.1uF)
(footprint Capacitors_SMD:C_0805)
(libsource (lib KICAD_Older_Version) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 52D188F0))
(comp (ref C12)
(value 0.1uF)
(footprint Capacitors_SMD:C_0805)
(libsource (lib KICAD_Older_Version) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 52D188F6))
(comp (ref C11)
(value 0.1uF)
(footprint Capacitors_SMD:C_0805)
(libsource (lib KICAD_Older_Version) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 52D188FC))
(comp (ref C10)
(value 0.1uF)
(footprint Capacitors_SMD:C_0805)
(libsource (lib KICAD_Older_Version) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 52D18902))
(comp (ref C9)
(value 0.1uF)
(footprint Capacitors_SMD:C_0805)
(libsource (lib KICAD_Older_Version) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 52D18908))
(comp (ref J1)
(value MINI-USB-5P-3400020P1)
(footprint MINI-USB-5P-3400020P1)
(fields
(field (name MFG,MFG#) JAE,DX2R005HN2E700)
(field (name VEND1,VEND1#) DIGI,670-1190-1-ND))
(libsource (lib KICAD_Older_Version) (part MINI-USB-5P-3400020P1))
(sheetpath (names /) (tstamps /))
(tstamp 52D197D7))
(comp (ref J2)
(value MINI-USB-5P-3400020P1V)
(footprint MINI-USB_RCTP_V-T_B)
(fields
(field (name MFG,MFG#) TE,1734753-1)
(field (name VEND1,VEND1#) DIGI,A107790-ND))
(libsource (lib KICAD_Older_Version) (part MINI-USB-5P-3400020P1))
(sheetpath (names /) (tstamps /))
(tstamp 53B662B6))
(comp (ref D6)
(value PMEG2010EA)
(footprint Diodes_SMD:D_0805)
(libsource (lib KICAD_Older_Version) (part DIODESCH))
(sheetpath (names /) (tstamps /))
(tstamp 52D3B48A))
(comp (ref P3)
(value CONN_2)
(footprint Pin_Headers:Pin_Header_Straight_1x02_Pitch2.54mm)
(libsource (lib KICAD_Older_Version) (part CONN_2))
(sheetpath (names /) (tstamps /))
(tstamp 52D3B4AF))
(comp (ref D5)
(value PMEG2010EA)
(footprint Diodes_SMD:D_0805)
(libsource (lib KICAD_Older_Version) (part DIODESCH))
(sheetpath (names /) (tstamps /))
(tstamp 52D3B74A))
(comp (ref U3)
(value LM2937)
(footprint SOT223)
(libsource (lib KICAD_Older_Version) (part LM2937))
(sheetpath (names /) (tstamps /))
(tstamp 52D3B8F2))
(comp (ref R11)
(value 1k)
(footprint Resistors_SMD:R_0805)
(libsource (lib KICAD_Older_Version) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 52DFBBA4))
(comp (ref R12)
(value 1k)
(footprint Resistors_SMD:R_0805)
(libsource (lib KICAD_Older_Version) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 52DFBBC8))
(comp (ref D9)
(value PMEG2010EA)
(footprint Diodes_SMD:D_0805)
(libsource (lib KICAD_Older_Version) (part DIODESCH))
(sheetpath (names /) (tstamps /))
(tstamp 52DFC5B8))
(comp (ref F1002)
(value FUSE)
(footprint Diodes_SMD:D_0805)
(fields
(field (name Field4) DNP,DNP)
(field (name Field5) DNP,DNP))
(libsource (lib KICAD_Older_Version) (part FUSE))
(sheetpath (names /) (tstamps /))
(tstamp 548DBA39))
(comp (ref R13)
(value 1k)
(footprint Resistors_SMD:R_0805)
(libsource (lib KICAD_Older_Version) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 52DFD8F8))
(comp (ref D1)
(value BLUE_LED_0805)
(footprint LEDs:LED_0805)
(libsource (lib KICAD_Older_Version) (part LED_0805))
(sheetpath (names /) (tstamps /))
(tstamp 52DFCEA3))
(comp (ref D2)
(value BLUE_LED_0805)
(footprint LEDs:LED_0805)
(libsource (lib KICAD_Older_Version) (part LED_0805))
(sheetpath (names /) (tstamps /))
(tstamp 52DFD273))
(comp (ref D3)
(value BLUE_LED_0805)
(footprint LEDs:LED_0805)
(libsource (lib KICAD_Older_Version) (part LED_0805))
(sheetpath (names /) (tstamps /))
(tstamp 52DFD283))
(comp (ref D4)
(value BLUE_LED_0805)
(footprint LEDs:LED_0805)
(libsource (lib KICAD_Older_Version) (part LED_0805))
(sheetpath (names /) (tstamps /))
(tstamp 52DFD289))
(comp (ref D7)
(value BLUE_LED_0805)
(footprint LEDs:LED_0805)
(libsource (lib KICAD_Older_Version) (part LED_0805))
(sheetpath (names /) (tstamps /))
(tstamp 52DFD605))
(comp (ref D8)
(value BLUE_LED_0805)
(footprint LEDs:LED_0805)
(libsource (lib KICAD_Older_Version) (part LED_0805))
(sheetpath (names /) (tstamps /))
(tstamp 52DFD614))
(comp (ref D11)
(value BLUE_LED_0805)
(footprint LEDs:LED_0805)
(libsource (lib KICAD_Older_Version) (part LED_0805))
(sheetpath (names /) (tstamps /))
(tstamp 52DFD623))
(comp (ref C20)
(value 0.1uF)
(footprint Capacitors_SMD:C_0805)
(libsource (lib KICAD_Older_Version) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 52EE55A7))
(comp (ref R14)
(value 100k)
(footprint Resistors_SMD:R_0805)
(libsource (lib KICAD_Older_Version) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 52EE56AF))
(comp (ref X2)
(value "CRYSTAL(MC306)")
(footprint MC-306)
(libsource (lib "crystal(mc306)") (part "CRYSTAL(MC306)"))
(sheetpath (names /) (tstamps /))
(tstamp 52F266A3))
(comp (ref C21)
(value 18pF)
(footprint Capacitors_SMD:C_0805)
(libsource (lib KICAD_Older_Version) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 52F266B6))
(comp (ref C22)
(value 18pF)
(footprint Capacitors_SMD:C_0805)
(libsource (lib KICAD_Older_Version) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 52F266D6))
(comp (ref U2)
(value NUF2101MT1G)
(footprint SOT-457)
(libsource (lib KICAD_Older_Version) (part NUF2101MT1G))
(sheetpath (names /) (tstamps /))
(tstamp 52FCFA72))
(comp (ref G1)
(value LOGO)
(footprint LOGO_F)
(libsource (lib KICAD_Older_Version) (part LOGO))
(sheetpath (names /) (tstamps /))
(tstamp 52FE356F))
(comp (ref P4)
(value CONN_02X05)
(footprint Connect:IDC_Header_Straight_10pins)
(libsource (lib conn) (part CONN_02X05))
(sheetpath (names /) (tstamps /))
(tstamp 58635876))
(comp (ref P5)
(value CONN_01X03)
(footprint Pin_Headers:Pin_Header_Angled_1x03)
(libsource (lib conn) (part CONN_01X03))
(sheetpath (names /) (tstamps /))
(tstamp 58618F13))
(comp (ref P6)
(value CONN_01X03)
(footprint Pin_Headers:Pin_Header_Angled_1x03)
(libsource (lib conn) (part CONN_01X03))
(sheetpath (names /) (tstamps /))
(tstamp 58619400)))
(libparts
(libpart (lib KICAD_Older_Version) (part BATTERY_CR2032)
(footprints
(fp BATT_CR2032_MPD))
(fields
(field (name Reference) BT)
(field (name Value) BATTERY_CR2032))
(pins
(pin (num 1) (name +) (type passive))
(pin (num 2) (name -) (type passive))))
(libpart (lib KICAD_Older_Version) (part C)
(footprints
(fp SM*)
(fp C?)
(fp C1-1))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib conn) (part CONN_01X03)
(description "Connector, single row, 01x03")
(footprints
(fp Pin_Header_Straight_1X03)
(fp Pin_Header_Angled_1X03)
(fp Socket_Strip_Straight_1X03)
(fp Socket_Strip_Angled_1X03))
(fields
(field (name Reference) P)
(field (name Value) CONN_01X03))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))))
(libpart (lib conn) (part CONN_02X05)
(description "Connector, double row, 02x05")
(footprints
(fp Pin_Header_Straight_2X05)
(fp Pin_Header_Angled_2X05)
(fp Socket_Strip_Straight_2X05)
(fp Socket_Strip_Angled_2X05))
(fields
(field (name Reference) P)
(field (name Value) CONN_02X05))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))
(pin (num 5) (name P5) (type passive))
(pin (num 6) (name P6) (type passive))
(pin (num 7) (name P7) (type passive))
(pin (num 8) (name P8) (type passive))
(pin (num 9) (name P9) (type passive))
(pin (num 10) (name P10) (type passive))))
(libpart (lib KICAD_Older_Version) (part CONN_2)
(fields
(field (name Reference) P)
(field (name Value) CONN_2))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name PM) (type passive))))
(libpart (lib KICAD_Older_Version) (part CONN_25X2)
(fields
(field (name Reference) P)
(field (name Value) CONN_25X2))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))
(pin (num 5) (name P5) (type passive))
(pin (num 6) (name P6) (type passive))
(pin (num 7) (name P7) (type passive))
(pin (num 8) (name P8) (type passive))
(pin (num 9) (name P9) (type passive))
(pin (num 10) (name P10) (type passive))
(pin (num 11) (name P11) (type passive))
(pin (num 12) (name P12) (type passive))
(pin (num 13) (name P13) (type passive))
(pin (num 14) (name P14) (type passive))
(pin (num 15) (name P15) (type passive))
(pin (num 16) (name P16) (type passive))
(pin (num 17) (name P17) (type passive))
(pin (num 18) (name P18) (type passive))
(pin (num 19) (name P19) (type passive))
(pin (num 20) (name P20) (type passive))
(pin (num 21) (name P21) (type passive))
(pin (num 22) (name P22) (type passive))
(pin (num 23) (name P23) (type input))
(pin (num 24) (name P24) (type passive))
(pin (num 25) (name P25) (type input))
(pin (num 26) (name P26) (type passive))
(pin (num 27) (name P27) (type passive))
(pin (num 28) (name P28) (type passive))
(pin (num 29) (name P29) (type passive))
(pin (num 30) (name P30) (type passive))
(pin (num 31) (name P31) (type passive))
(pin (num 32) (name P32) (type passive))
(pin (num 33) (name P33) (type passive))
(pin (num 34) (name P34) (type passive))
(pin (num 35) (name P35) (type passive))
(pin (num 36) (name P36) (type passive))
(pin (num 37) (name P37) (type passive))
(pin (num 38) (name P38) (type passive))
(pin (num 39) (name P39) (type passive))
(pin (num 40) (name P40) (type passive))
(pin (num 41) (name P41) (type passive))
(pin (num 42) (name P42) (type passive))
(pin (num 43) (name P43) (type passive))
(pin (num 44) (name P44) (type passive))
(pin (num 45) (name P45) (type passive))
(pin (num 46) (name P46) (type passive))
(pin (num 47) (name P47) (type passive))
(pin (num 48) (name P48) (type passive))
(pin (num 49) (name P49) (type passive))
(pin (num 50) (name P50) (type passive))))
(libpart (lib KICAD_Older_Version) (part CP1)
(footprints
(fp CP*)
(fp SM*))
(fields
(field (name Reference) C)
(field (name Value) CP1))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib KICAD_Older_Version) (part CRYSTAL)
(fields
(field (name Reference) X)
(field (name Value) CRYSTAL))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib "crystal(mc306)") (part "CRYSTAL(MC306)")
(footprints
(fp MC-*))
(fields
(field (name Reference) X)
(field (name Value) "CRYSTAL(MC306)"))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 4) (name 4) (type passive))))
(libpart (lib KICAD_Older_Version) (part DIODESCH)
(footprints
(fp D?)
(fp S*))
(fields
(field (name Reference) D)
(field (name Value) DIODESCH))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name K) (type passive))))
(libpart (lib KICAD_Older_Version) (part FILTER)
(fields
(field (name Reference) FB)
(field (name Value) FILTER))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib KICAD_Older_Version) (part FUSE)
(fields
(field (name Reference) F)
(field (name Value) FUSE))
(pins
(pin (num 1) (name ~) (type input))
(pin (num 2) (name ~) (type input))))
(libpart (lib KICAD_Older_Version) (part JUMPER)
(fields
(field (name Reference) JP)
(field (name Value) JUMPER))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib KICAD_Older_Version) (part JUMPER3)
(fields
(field (name Reference) JP)
(field (name Value) JUMPER3))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))
(pin (num 3) (name 3) (type passive))))
(libpart (lib KICAD_Older_Version) (part LED_0805)
(footprints
(fp LED-0805*))
(fields
(field (name Reference) D)
(field (name Value) LED_0805))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name K) (type passive))))
(libpart (lib KICAD_Older_Version) (part LM2937)
(footprints
(fp SOT223)
(fp TO263))
(fields
(field (name Reference) U)
(field (name Value) LM2937))
(pins
(pin (num 1) (name Vin) (type passive))
(pin (num 2) (name GND) (type passive))
(pin (num 3) (name Vout) (type power_out))
(pin (num 4) (name ~) (type passive))))
(libpart (lib KICAD_Older_Version) (part LOGO)
(fields
(field (name Reference) "#G")
(field (name Value) LOGO)))
(libpart (lib KICAD_Older_Version) (part MINI-USB-5P-3400020P1)
(footprints
(fp MINI-USB-5P-3400020P1)
(fp MINI-USB*))
(fields
(field (name Reference) J)
(field (name Value) MINI-USB-5P-3400020P1))
(pins
(pin (num 1) (name VBUS) (type input))
(pin (num 2) (name D-) (type input))
(pin (num 3) (name D+) (type input))
(pin (num 4) (name ID) (type input))
(pin (num 5) (name GND) (type input))
(pin (num 6) (name SHIELD) (type input))))
(libpart (lib KICAD_Older_Version) (part NUF2101MT1G)
(footprints
(fp SOT*))
(fields
(field (name Reference) U)
(field (name Value) NUF2101MT1G))
(pins
(pin (num 1) (name D+out) (type output))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name D-out) (type output))
(pin (num 4) (name D-) (type input))
(pin (num 5) (name Vbus) (type power_in))
(pin (num 6) (name D+) (type input))))
(libpart (lib KICAD_Older_Version) (part R)
(footprints
(fp R?)
(fp SM0603)
(fp SM0805)
(fp R?-*)
(fp SM1206))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib KICAD_Older_Version) (part STM32F407VG)
(fields
(field (name Reference) U)
(field (name Value) STM32F407VG)
(field (name Footprint) TQFP100))
(pins
(pin (num 1) (name PE2/TRACECLK/FSMC_A23/ETH_MII_TXD3/EVENTOUT) (type input))
(pin (num 2) (name PE3/TRACED0/FSMC_A19/EVENTOUT) (type input))
(pin (num 3) (name PE4/TRACED1/FSMC_A20/DCMI_D4/EVENTOUT) (type input))
(pin (num 4) (name PE5/TRACED2/FSMC_A21/TIM9_CH1/DCMI_D6/EVENTOUT) (type input))
(pin (num 5) (name PE6/TRACED3_/_FSMC_A22/TIM9_CH2/DCMI_D7/EVENTOUT) (type input))
(pin (num 6) (name VBAT) (type input))
(pin (num 7) (name PC13/EVENTOUT) (type input))
(pin (num 8) (name PC14/OSC32_IN/EVENTOUT) (type input))
(pin (num 9) (name PC15/OSC32_OUT/EVENTOUT) (type input))
(pin (num 10) (name VSS) (type input))
(pin (num 11) (name VDD) (type input))
(pin (num 12) (name PH0/OSC_IN/EVENTOUT) (type input))
(pin (num 13) (name PH1/OSC_OUT/EVENTOUT) (type input))
(pin (num 14) (name NRST) (type input))
(pin (num 15) (name PC0/OTG_HS_ULPI_STP/EVENTOUT) (type input))
(pin (num 16) (name PC1/ETH_MDC/_EVENTOUT) (type input))
(pin (num 17) (name PC2/SPI2_MISO/OTG_HS_ULPI_DIR/ETH_MII_TXD2/I2S2ext_SD/EVENTOUT) (type input))
(pin (num 18) (name PC3/SPI2_MOSI/I2S2_SD/OTG_HS_ULPI_NXT/ETH_MII_TX_CLK/EVENTOUT) (type input))
(pin (num 19) (name VDD) (type input))
(pin (num 20) (name VSSA) (type input))
(pin (num 21) (name VREF+) (type input))
(pin (num 22) (name VDDA) (type input))
(pin (num 23) (name PA0/WKUP/USART2_CTS/UART4_TX/ETH_MII_CRS_/TIM2_CH1_ETR/TIM5_CH1/TIM8_ETR/EVENTOUT) (type input))
(pin (num 24) (name PA1/USART2_RTS/UART4_RX/ETH_RMII_REF_CLK/ETH_MII_RX_CLK/TIM5_CH2/TIMM2_CH2/EVENTOUT) (type input))
(pin (num 25) (name PA2/USART2_TX/TIM5_CH3/TIM9_CH1/TIM2_CH3/ETH_MDIO/EVENTOUT) (type input))
(pin (num 26) (name PA3/USART2_RX/TIM5_CH4/TIM9_CH2/TIM2_CH4/OTG_HS_ULPI_D0/ETH_MII_COL/EVENTOUT) (type input))
(pin (num 27) (name VSS) (type input))
(pin (num 28) (name VDD) (type input))
(pin (num 29) (name PA4/SPI1_NSS/SPI3_NSS/USART2_CK/DCMI_HSYNC/OTG_HS_SOF/I2S3_WS/EVENTOUT) (type input))
(pin (num 30) (name PA5/SPI1_SCK/OTG_HS_ULPI_CK/TIM2_CH1_ETR/TIM8_CHIN/EVENTOUT) (type input))
(pin (num 31) (name PA6/SPI1_MISO/TIM8_BKIN/TIM13_CH1/DCMI_PIXCLK/TIM3_CH1/TIM1_BKIN/EVENTOUT) (type input))
(pin (num 32) (name PA7/SPI1_MOSI/TIM8_CH1N/TIM14_CH1/TIM3_CH2/ETH_MII_RX_DV/TIM1_CH1N/RMII_CRS_DV/EVENTOUT) (type input))
(pin (num 33) (name PC4/ETH_RMII_RX_D0/ETH_MII_RX_D0/EVENTOUT) (type input))
(pin (num 34) (name PC5/ETH_RMII_RX_D1/ETH_MII_RX_D1/EVENTOUT) (type input))
(pin (num 35) (name PB0/TIM3_CH3/TIM8_CH2N/OTG_HS_ULPI_D1/ETH_MII_RXD2/TIM1_CH2N/EVENTOUT) (type input))
(pin (num 36) (name PB1/TIM3_CH4/TIM8_CH3N/OTG_HS_ULPI_D2/ETH_MII_RXD3/OTG_HS_INTN/TIM1_CH3N/EVENTOUT) (type input))
(pin (num 37) (name PB2/BOOT1/EVENTOUT) (type input))
(pin (num 38) (name PE7/FSMC_D4/TIM1_ETR/EVENTOUT) (type input))
(pin (num 39) (name PE8/FSMC_D5/TIM1_CH1N/EVENTOUT) (type input))
(pin (num 40) (name PE9/FSMC_D6/TIM1_CH1/EVENTOUT) (type input))
(pin (num 41) (name PE10/FSMC_D7/TIM1_CH2N/EVENTOUT) (type input))
(pin (num 42) (name PE11/FSMC_D8/TIM1_CH2/EVENTOUT) (type input))
(pin (num 43) (name PE12/FSMC_D9/TIM1_CH3N/EVENTOUT) (type input))
(pin (num 44) (name PE13/FSMC_D10/TIM1_CH3/EVENTOUT) (type input))
(pin (num 45) (name PE14/FSMC_D11/TIM1_CH4/EVENTOUT) (type input))
(pin (num 46) (name PE15/FSMC_D12/TIM1_BKIN/EVENTOUT) (type input))
(pin (num 47) (name PB10/SPI2_SCK/I2S2_CK/I2C2_SCL/USART3_TX/OTG_HS_ULPI_D3/ETH_MII_RX_ER/TIM2_CH3/EVENTOUT) (type input))
(pin (num 48) (name PB11/I2C2_SDA/USART3_RX/OTG_HS_ULPI_D4/ETH_RMII_TX_EN/ETH_MII_TX_EN/TIM2_CH4/EVENTOUT) (type input))
(pin (num 49) (name VCAP_1) (type input))
(pin (num 50) (name VDD) (type input))
(pin (num 51) (name PB12/SPI2_NSS/I2S2_WS/I2C2_SMBA/USART3_CK/TIM1_BKIN/CAN2_RX/OTG_HS_ULPI_D5/ETH_RMII_TXD0/ETH_MII_TXD0/OTG_HS_ID/EVENTOUT) (type input))
(pin (num 52) (name PB13/SPI2_SCK/I2S2_CK/USART3_CTS/TIM1_CH1N/CAN2_TX/OTG_HS_ULPI_D6/ETH_RMII_TXD1/ETH_MII_TXD1/EVENTOUT) (type input))
(pin (num 53) (name PB14/SPI2_MISO/TIM1_CH2N/TIM12_CH1/OTG_HS_DM/USART3_RTS/TIM8_CH2N/I2S2ext_SD/EVENTOUT) (type input))
(pin (num 54) (name PB15/SPI2_MOSI/I2S2_SD/TIM1_CH3N/TIM8_CH3N/TIM12_CH2/OTG_HS_DP/EVENTOUT) (type input))
(pin (num 55) (name PD8/FSMC_D13/USART3_TX/EVENTOUT) (type input))
(pin (num 56) (name PD9/FSMC_D14/USART3_RX/EVENTOUT) (type input))
(pin (num 57) (name PD10/FSMC_D15/USART3_CK/EVENTOUT) (type input))
(pin (num 58) (name PD11/FSMC_CLE/FSMC_A16/USART3_CTS/EVENTOUT) (type input))
(pin (num 59) (name PD12/FSMC_ALE/FSMC_A17/TIM4_CH1/USART3_RTS/EVENTOUT) (type input))
(pin (num 60) (name PD13/FSMC_A18/TIM4_CH2/EVENTOUT) (type input))
(pin (num 61) (name PD14/FSMC_D0/TIM4_CH3/EVENTOUT/_EVENTOUT) (type input))
(pin (num 62) (name PD15/FSMC_D1/TIM4_CH4/EVENTOUT) (type input))
(pin (num 63) (name PC6/I2S2_MCK/TIM8_CH1/SDIO_D6/USART6_TX/DCMI_D0/TIM3_CH1/EVENTOUT) (type input))
(pin (num 64) (name PC7/I2S3_MCK/TIM8_CH2/SDIO_D7/USART6_RX/DCMI_D1/TIM3_CH2/EVENTOUT) (type input))
(pin (num 65) (name PC8/TIM8_CH3/SDIO_D0/TIM3_CH3/USART6_CK/DCMI_D2/EVENTOUT) (type input))
(pin (num 66) (name PC9/I2S_CKIN/MCO2/TIM8_CH4/SDIO_D1/I2C3_SDA/DCMI_D3/TIM3_CH4/EVENTOUT) (type input))
(pin (num 67) (name PA8/MCO1/USART1_CK/TIM1_CH1/I2C3_SCL/OTG_FS_SOF/EVENTOUT) (type input))
(pin (num 68) (name PA9/USART1_TX/TIM1_CH2/I2C3_SMBA/DCMI_D0/EVENTOUT) (type input))
(pin (num 69) (name PA10/USART1_RX/TIM1_CH3/OTG_FS_ID/DCMI_D1/EVENTOUT) (type input))
(pin (num 70) (name PA11/USART1_CTS/CAN1_RX/TIM1_CH4_/OTG_FS_DM/EVENTOUT) (type input))
(pin (num 71) (name PA12/USART1_RTS/CAN1_TX/TIM1_ETR/OTG_FS_DP/EVENTOUT) (type input))
(pin (num 72) (name PA13/JTMS/SWDIO/EVENTOUT) (type input))
(pin (num 73) (name VCAP_2) (type input))
(pin (num 74) (name VSS) (type input))
(pin (num 75) (name VDD) (type input))
(pin (num 76) (name PA14/JTCK/SWCLK/EVENTOUT) (type input))
(pin (num 77) (name PA15/JTDI/SPI3_NSS/I2S3_WS/TIM2_CH1_ETR/SPI1_NSS/EVENTOUT) (type input))
(pin (num 78) (name PC10/SPI3_SCK/I2S3_CK/UART4_TX/SDIO_D2/DCMI_D8/USART3_TX/EVENTOUT) (type input))
(pin (num 79) (name PC11/UART4_RX/SPI3_MISO/SDIO_D3/DCMI_D4/USART3_RX/I2S3ext_SD/EVENTOUT) (type input))
(pin (num 80) (name PC12/UART5_TX/SDIO_CK/DCMI_D9/SPI3_MOSI/I2S3_SD/USART3_CK/EVENTOUT) (type input))
(pin (num 81) (name PD0/FSMC_D2/CAN1_RX/EVENTOUT) (type input))
(pin (num 82) (name PD1/FSMC_D3/CAN1_TX/EVENTOUT) (type input))
(pin (num 83) (name PD2/TIM3_ETR/UART5_RX/SDIO_CMD/DCMI_D11/EVENTOUT) (type input))
(pin (num 84) (name PD3/FSMC_CLK/USART2_CTS/EVENTOUT) (type input))
(pin (num 85) (name PD4/FSMC_NOE/USART2_RTS/EVENTOUT) (type input))
(pin (num 86) (name PD5/FSMC_NWE/USART2_TX/EVENTOUT) (type input))
(pin (num 87) (name PD6/FSMC_NWAIT/USART2_RX/EVENTOUT) (type input))
(pin (num 88) (name PD7/USART2_CK/FSMC_NE1/FSMC_NCE2/EVENTOUT) (type input))
(pin (num 89) (name PB3/JTDO/TRACESWO/SPI3_SCK/I2S3_CK/TIM2_CH2/SPI1_SCK/EVENTOUT) (type input))
(pin (num 90) (name PB4/NJTRST/SPI3_MISO/TIM3_CH1/SPI1_MISO/I2S3ext_SD/EVENTOUT) (type input))
(pin (num 91) (name PB5/I2C1_SMBA/CAN2_RX/OTG_HS_ULPI_D7/ETH_PPS_OUT/TIM3_CH2/SPI1_MOSI/SPI3_MOSI/DCMI_D10/I2S3_SD/EVENTOUT) (type input))
(pin (num 92) (name PB6/I2C1_SCL/TIM4_CH1/CAN2_TX/DCMI_D5/USART1_TX/EVENTOUT) (type input))
(pin (num 93) (name PB7/I2C1_SDA/FSMC_NL/DCMI_VSYNC/USART1_RX/TIM4_CH2/EVENTOUT) (type input))
(pin (num 94) (name BOOT0) (type input))
(pin (num 95) (name PB8/TIM4_CH3/SDIO_D4/TIM10_CH1/DCMI_D6/ETH_MII_TXD3/I2C1_SCL/CAN1_RX/EVENTOUT) (type input))
(pin (num 96) (name PB9/SPI2_NSS/I2S2_WS/TIM4_CH4/TIM11_CH1/SDIO_D5/DCMI_D7/I2C1_SDA/CAN1_TX/EVENTOUT) (type input))
(pin (num 97) (name PE0/TIM4_ETR/FSMC_NBL0/DCMI_D2/EVENTOUT) (type input))
(pin (num 98) (name PE1/FSMC_NBL1/DCMI_D3/EVENTOUT) (type input))
(pin (num 99) (name VSS) (type input))
(pin (num 100) (name VDD) (type input))))
(libpart (lib KICAD_Older_Version) (part SW_PUSH)
(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)))))
(libraries
(library (logical "crystal(mc306)")
(uri "C:\\Users\\Vista_64_D630\\Desktop\\Jared\\code\\Hardware\\trunk\\rusefi.com\\rusefi_lib\\crystal(mc306).lib"))
(library (logical KICAD_Older_Version)
(uri C:\Users\Vista_64_D630\Desktop\Jared\code\Hardware\trunk\rusefi.com\rusefi_lib\KICAD_Older_Version.lib))
(library (logical conn)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library\\conn.lib")))
(nets
(net (code 1) (name /PB10)
(node (ref U1) (pin 47))
(node (ref P1) (pin 34)))
(net (code 2) (name /PB12)
(node (ref U1) (pin 51))
(node (ref P1) (pin 36)))
(net (code 3) (name /PB14)
(node (ref P1) (pin 38))
(node (ref U1) (pin 53)))
(net (code 4) (name /PD8)
(node (ref U1) (pin 55))
(node (ref P1) (pin 40)))
(net (code 5) (name /PD10)
(node (ref U1) (pin 57))
(node (ref P1) (pin 42)))
(net (code 6) (name /PB8)
(node (ref U1) (pin 95))
(node (ref P2) (pin 19)))
(net (code 7) (name /PD7)
(node (ref U1) (pin 88))
(node (ref P2) (pin 27)))
(net (code 8) (name /PD5)
(node (ref P2) (pin 29))
(node (ref U1) (pin 86)))
(net (code 9) (name /PD3)
(node (ref P2) (pin 31))
(node (ref U1) (pin 84)))
(net (code 10) (name /PD1)
(node (ref P2) (pin 33))
(node (ref U1) (pin 82)))
(net (code 11) (name /PC12)
(node (ref U1) (pin 80))
(node (ref P2) (pin 35)))
(net (code 12) (name /PC10)
(node (ref U1) (pin 78))
(node (ref P2) (pin 37)))
(net (code 13) (name /PA10)
(node (ref U1) (pin 69))
(node (ref P2) (pin 41)))
(net (code 14) (name /PA8)
(node (ref P2) (pin 43))
(node (ref U1) (pin 67)))
(net (code 15) (name /PC8)
(node (ref P2) (pin 45))
(node (ref U1) (pin 65)))
(net (code 16) (name /PC6)
(node (ref P2) (pin 47))
(node (ref U1) (pin 63)))
(net (code 17) (name /PC13)
(node (ref U1) (pin 7))
(node (ref P2) (pin 12)))
(net (code 18) (name /PA2)
(node (ref U1) (pin 25))
(node (ref P1) (pin 14)))
(net (code 19) (name /PC1)
(node (ref P1) (pin 7))
(node (ref U1) (pin 16)))
(net (code 20) (name /PC3)
(node (ref U1) (pin 18))
(node (ref P1) (pin 9)))
(net (code 21) (name /PA1)
(node (ref U1) (pin 24))
(node (ref P1) (pin 11)))
(net (code 22) (name /PA3)
(node (ref U1) (pin 26))
(node (ref P1) (pin 13)))
(net (code 23) (name /PA5)
(node (ref P1) (pin 15))
(node (ref U1) (pin 30)))
(net (code 24) (name /PA7)
(node (ref P1) (pin 17))
(node (ref U1) (pin 32)))
(net (code 25) (name /PC5)
(node (ref U1) (pin 34))
(node (ref P1) (pin 19)))
(net (code 26) (name /PB1)
(node (ref U1) (pin 36))
(node (ref P1) (pin 21)))
(net (code 27) (name /PC0)
(node (ref P1) (pin 8))
(node (ref U1) (pin 15)))
(net (code 28) (name /PC2)
(node (ref P1) (pin 10))
(node (ref U1) (pin 17)))
(net (code 29) (name /PA0)
(node (ref P1) (pin 12))
(node (ref R5) (pin 1))
(node (ref U1) (pin 23)))
(net (code 30) (name /PA4)
(node (ref U1) (pin 29))
(node (ref P1) (pin 16)))
(net (code 31) (name /PA6)
(node (ref P1) (pin 18))
(node (ref U1) (pin 31)))
(net (code 32) (name /PC4)
(node (ref U1) (pin 33))
(node (ref P1) (pin 20)))
(net (code 33) (name /PB0)
(node (ref P1) (pin 22))
(node (ref U1) (pin 35)))
(net (code 34) (name /PB2)
(node (ref U1) (pin 37))
(node (ref P1) (pin 24)))
(net (code 35) (name /PE9)
(node (ref P1) (pin 27))
(node (ref U1) (pin 40)))
(net (code 36) (name /PB11)
(node (ref U1) (pin 48))
(node (ref P1) (pin 35)))
(net (code 37) (name /PB13)
(node (ref P1) (pin 37))
(node (ref U1) (pin 52)))
(net (code 38) (name /PB15)
(node (ref U1) (pin 54))
(node (ref P1) (pin 39)))
(net (code 39) (name /PD9)
(node (ref P1) (pin 41))
(node (ref U1) (pin 56)))
(net (code 40) (name /PD11)
(node (ref P1) (pin 43))
(node (ref U1) (pin 58)))
(net (code 41) (name /PC9)
(node (ref P2) (pin 46))
(node (ref U1) (pin 66)))
(net (code 42) (name /PB9)
(node (ref P2) (pin 20))
(node (ref U1) (pin 96)))
(net (code 43) (name /PB7)
(node (ref U1) (pin 93))
(node (ref P2) (pin 24)))
(net (code 44) (name /PD6)
(node (ref P2) (pin 30))
(node (ref U1) (pin 87)))
(net (code 45) (name /PD2)
(node (ref P2) (pin 34))
(node (ref U1) (pin 83)))
(net (code 46) (name /PD0)
(node (ref P2) (pin 36))
(node (ref U1) (pin 81)))
(net (code 47) (name /PC11)
(node (ref P2) (pin 38))
(node (ref U1) (pin 79)))
(net (code 48) (name /PA15)
(node (ref U1) (pin 77))
(node (ref P2) (pin 40)))
(net (code 49) (name /PC7)
(node (ref P2) (pin 48))
(node (ref U1) (pin 64)))
(net (code 50) (name GND)
(node (ref BT1) (pin 2))
(node (ref D1) (pin 2))
(node (ref D2) (pin 2))
(node (ref P1) (pin 49))
(node (ref P2) (pin 2))
(node (ref U1) (pin 74))
(node (ref P1) (pin 23))
(node (ref U1) (pin 10))
(node (ref U1) (pin 20))
(node (ref P2) (pin 1))
(node (ref P2) (pin 50))
(node (ref P2) (pin 49))
(node (ref P4) (pin 8))
(node (ref P4) (pin 7))
(node (ref U1) (pin 99))
(node (ref P1) (pin 1))
(node (ref P1) (pin 2))
(node (ref P1) (pin 5))
(node (ref J1) (pin 5))
(node (ref C2) (pin 2))
(node (ref C3) (pin 2))
(node (ref P3) (pin 2))
(node (ref U3) (pin 4))
(node (ref U3) (pin 2))
(node (ref J2) (pin 5))
(node (ref C9) (pin 1))
(node (ref C10) (pin 1))
(node (ref C11) (pin 1))
(node (ref C12) (pin 1))
(node (ref C13) (pin 1))
(node (ref C14) (pin 1))
(node (ref SW1) (pin 2))
(node (ref C1) (pin 1))
(node (ref U2) (pin 2))
(node (ref U1) (pin 27))
(node (ref R14) (pin 2))