-
Notifications
You must be signed in to change notification settings - Fork 0
/
maxonDriver.net
1169 lines (1169 loc) · 45 KB
/
maxonDriver.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 /home/kbisland/Documents/maxonDriver/maxonDriver.sch)
(date "Fri 15 Mar 2019 12:51:59 PM EDT")
(tool "Eeschema 5.0.1-33cea8e~68~ubuntu16.04.1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source maxonDriver.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /sheet5C8C18BE/) (tstamps /5C8C18C4/)
(title_block
(title)
(company)
(rev)
(date)
(source MC33926.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name /sheet5C8C27AE/) (tstamps /5C8C27B4/)
(title_block
(title)
(company)
(rev)
(date)
(source MC33926.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 4) (name /sheet5C8C28D7/) (tstamps /5C8C28DE/)
(title_block
(title)
(company)
(rev)
(date)
(source MC33926.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 5) (name /sheet5C8C28D8/) (tstamps /5C8C28EC/)
(title_block
(title)
(company)
(rev)
(date)
(source MC33926.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U1)
(value STM32L432KBUx)
(footprint Package_DFN_QFN:QFN-32-1EP_5x5mm_P0.5mm_EP3.45x3.45mm)
(datasheet http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/DM00257205.pdf)
(libsource (lib MCU_ST_STM32L4) (part STM32L432KBUx) (description "ARM Cortex-M4 MCU, 128KB flash, 64KB RAM, 80MHz, 1.71-3.6V, 26 GPIO, UFQFPN-32"))
(sheetpath (names /) (tstamps /))
(tstamp 5C8BCAD2))
(comp (ref J1)
(value Conn_02x03_Odd_Even)
(footprint Connector_PinHeader_2.54mm:PinHeader_2x03_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x03_Odd_Even) (description "Generic connector, double row, 02x03, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5C8BCC8A))
(comp (ref J6)
(value Conn_01x03_Male)
(footprint Connector_PinSocket_2.54mm:PinSocket_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 5C8BCF45))
(comp (ref J7)
(value Conn_01x03_Male)
(footprint Connector_PinSocket_2.54mm:PinSocket_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 5C8BCF8E))
(comp (ref J8)
(value Conn_01x03_Male)
(footprint Connector_PinSocket_2.54mm:PinSocket_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 5C8BCFC2))
(comp (ref J9)
(value Conn_01x03_Male)
(footprint Connector_PinSocket_2.54mm:PinSocket_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 5C8BCFF0))
(comp (ref J10)
(value Conn_01x02_Male)
(footprint Connector_PinSocket_2.54mm:PinSocket_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 5C8BD160))
(comp (ref J3)
(value Conn_01x06_Male)
(footprint Connector_Molex:Molex_CLIK-Mate_502443-0670_1x06-1MP_P2.00mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x06_Male) (description "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5C8BD32C))
(comp (ref TP1)
(value TestPoint)
(footprint TestPoint:TestPoint_Pad_D1.5mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5C8BD5BC))
(comp (ref TP2)
(value TestPoint)
(footprint TestPoint:TestPoint_Pad_D1.5mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5C8BD606))
(comp (ref TP3)
(value TestPoint)
(footprint TestPoint:TestPoint_Pad_D1.5mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5C8BD638))
(comp (ref TP4)
(value TestPoint)
(footprint TestPoint:TestPoint_Pad_D1.5mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5C8BD668))
(comp (ref U2)
(value MIC5504-3.3YM5)
(footprint Package_TO_SOT_SMD:SOT-23-5)
(datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/MIC550X.pdf)
(libsource (lib Regulator_Linear) (part MIC5504-3.3YM5) (description "300mA Low-dropout Voltage Regulator, Vout 3.3V, Vin up to 5.5V, SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 5C8BD769))
(comp (ref IC1)
(value TPSM84824MOLR)
(footprint TPSM84624MOLR)
(datasheet http://www.ti.com/lit/gpn/tpsm84824)
(fields
(field (name Description) "4.5V to 17V Input, 0.6V-10V Output, 8A Power Module in Compact 7.5x7.5mm Footprint")
(field (name Height) 5)
(field (name Manufacturer_Name) "Texas Instruments")
(field (name Manufacturer_Part_Number) TPSM84824MOLR)
(field (name "Mouser Part Number") 595-TPSM84824MOLR)
(field (name "Mouser Price/Stock") https://www.mouser.com/Search/Refine.aspx?Keyword=595-TPSM84824MOLR))
(libsource (lib TPSM84824MOLR) (part TPSM84824MOLR) (description "4.5V to 17V Input, 0.6V-10V Output, 8A Power Module in Compact 7.5x7.5mm Footprint"))
(sheetpath (names /) (tstamps /))
(tstamp 5C8BD8AD))
(comp (ref C4)
(value C)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C8C19E1))
(comp (ref C5)
(value C)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C8C1B6A))
(comp (ref J2)
(value Conn_02x03_Odd_Even)
(footprint Connector_PinHeader_2.54mm:PinHeader_2x03_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x03_Odd_Even) (description "Generic connector, double row, 02x03, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5C8C34EA))
(comp (ref J4)
(value Conn_02x03_Odd_Even)
(footprint Connector_PinHeader_2.54mm:PinHeader_2x02_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x03_Odd_Even) (description "Generic connector, double row, 02x03, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5C8C37E0))
(comp (ref J5)
(value Conn_02x03_Odd_Even)
(footprint Connector_PinHeader_2.54mm:PinHeader_2x02_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x03_Odd_Even) (description "Generic connector, double row, 02x03, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5C8C3AD3))
(comp (ref R2)
(value R)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C8C4F2E))
(comp (ref C1)
(value C)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C8C5820))
(comp (ref C2)
(value C)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C8C586A))
(comp (ref C3)
(value C)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C8C58AE))
(comp (ref R1)
(value R)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C8C867C))
(comp (ref D1)
(value LED)
(footprint LED_SMD:LED_0201_0603Metric)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5C8C8785))
(comp (ref C11)
(value C)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C8C974D))
(comp (ref C9)
(value C)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C8C97AF))
(comp (ref C8)
(value CP)
(footprint Capacitor_SMD:CP_Elec_4x3)
(datasheet ~)
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C8C98A4))
(comp (ref R3)
(value R)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C8CC698))
(comp (ref R4)
(value R)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C8CC732))
(comp (ref C10)
(value C)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C8D3202))
(comp (ref R7)
(value R)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C8D3FA7))
(comp (ref R5)
(value R)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C8D7346))
(comp (ref R6)
(value R)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C8D7411))
(comp (ref C6)
(value C)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C8D83F1))
(comp (ref C7)
(value C)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C8D8457))
(comp (ref R8)
(value R)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C8DA425))
(comp (ref R9)
(value R)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /sheet5C8C18BE/) (tstamps /5C8C18C4/))
(tstamp 5C8BDF87))
(comp (ref C13)
(value C)
(footprint Capacitor_SMD:C_1210_3225Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /sheet5C8C18BE/) (tstamps /5C8C18C4/))
(tstamp 5C8BE563))
(comp (ref C12)
(value C)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /sheet5C8C18BE/) (tstamps /5C8C18C4/))
(tstamp 5C8BE9BF))
(comp (ref C14)
(value C)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /sheet5C8C18BE/) (tstamps /5C8C18C4/))
(tstamp 5C8C02EF))
(comp (ref IC2)
(value MC33926PNB)
(footprint MC33926PNB:QFN80P800X800X220-33N)
(datasheet http://cache.nxp.com/files/analog/doc/data_sheet/MC33926.pdf)
(fields
(field (name "Arrow Part Number") MC33926PNB)
(field (name "Arrow Price/Stock") https://www.arrow.com/en/products/mc33926pnb/nxp-semiconductors)
(field (name Description) "Motor / Motion / Ignition Controllers & Drivers THROTTLE CTRL H-BRIDGE")
(field (name Height) 2.2)
(field (name Manufacturer_Name) Nexperia)
(field (name Manufacturer_Part_Number) MC33926PNB))
(libsource (lib MC33926PNB) (part MC33926PNB) (description "Motor / Motion / Ignition Controllers & Drivers THROTTLE CTRL H-BRIDGE"))
(sheetpath (names /sheet5C8C18BE/) (tstamps /5C8C18C4/))
(tstamp 5C8BDD41))
(comp (ref R10)
(value R)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /sheet5C8C27AE/) (tstamps /5C8C27B4/))
(tstamp 5C8BDF87))
(comp (ref C16)
(value C)
(footprint Capacitor_SMD:C_1210_3225Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /sheet5C8C27AE/) (tstamps /5C8C27B4/))
(tstamp 5C8BE563))
(comp (ref C15)
(value C)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /sheet5C8C27AE/) (tstamps /5C8C27B4/))
(tstamp 5C8BE9BF))
(comp (ref C17)
(value C)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /sheet5C8C27AE/) (tstamps /5C8C27B4/))
(tstamp 5C8C02EF))
(comp (ref IC3)
(value MC33926PNB)
(footprint MC33926PNB:QFN80P800X800X220-33N)
(datasheet http://cache.nxp.com/files/analog/doc/data_sheet/MC33926.pdf)
(fields
(field (name "Arrow Part Number") MC33926PNB)
(field (name "Arrow Price/Stock") https://www.arrow.com/en/products/mc33926pnb/nxp-semiconductors)
(field (name Description) "Motor / Motion / Ignition Controllers & Drivers THROTTLE CTRL H-BRIDGE")
(field (name Height) 2.2)
(field (name Manufacturer_Name) Nexperia)
(field (name Manufacturer_Part_Number) MC33926PNB))
(libsource (lib MC33926PNB) (part MC33926PNB) (description "Motor / Motion / Ignition Controllers & Drivers THROTTLE CTRL H-BRIDGE"))
(sheetpath (names /sheet5C8C27AE/) (tstamps /5C8C27B4/))
(tstamp 5C8BDD41))
(comp (ref R11)
(value R)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /sheet5C8C28D7/) (tstamps /5C8C28DE/))
(tstamp 5C8BDF87))
(comp (ref C19)
(value C)
(footprint Capacitor_SMD:C_1210_3225Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /sheet5C8C28D7/) (tstamps /5C8C28DE/))
(tstamp 5C8BE563))
(comp (ref C18)
(value C)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /sheet5C8C28D7/) (tstamps /5C8C28DE/))
(tstamp 5C8BE9BF))
(comp (ref C20)
(value C)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /sheet5C8C28D7/) (tstamps /5C8C28DE/))
(tstamp 5C8C02EF))
(comp (ref IC4)
(value MC33926PNB)
(footprint MC33926PNB:QFN80P800X800X220-33N)
(datasheet http://cache.nxp.com/files/analog/doc/data_sheet/MC33926.pdf)
(fields
(field (name "Arrow Part Number") MC33926PNB)
(field (name "Arrow Price/Stock") https://www.arrow.com/en/products/mc33926pnb/nxp-semiconductors)
(field (name Description) "Motor / Motion / Ignition Controllers & Drivers THROTTLE CTRL H-BRIDGE")
(field (name Height) 2.2)
(field (name Manufacturer_Name) Nexperia)
(field (name Manufacturer_Part_Number) MC33926PNB))
(libsource (lib MC33926PNB) (part MC33926PNB) (description "Motor / Motion / Ignition Controllers & Drivers THROTTLE CTRL H-BRIDGE"))
(sheetpath (names /sheet5C8C28D7/) (tstamps /5C8C28DE/))
(tstamp 5C8BDD41))
(comp (ref R12)
(value R)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /sheet5C8C28D8/) (tstamps /5C8C28EC/))
(tstamp 5C8BDF87))
(comp (ref C22)
(value C)
(footprint Capacitor_SMD:C_1210_3225Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /sheet5C8C28D8/) (tstamps /5C8C28EC/))
(tstamp 5C8BE563))
(comp (ref C21)
(value C)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /sheet5C8C28D8/) (tstamps /5C8C28EC/))
(tstamp 5C8BE9BF))
(comp (ref C23)
(value C)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /sheet5C8C28D8/) (tstamps /5C8C28EC/))
(tstamp 5C8C02EF))
(comp (ref IC5)
(value MC33926PNB)
(footprint MC33926PNB:QFN80P800X800X220-33N)
(datasheet http://cache.nxp.com/files/analog/doc/data_sheet/MC33926.pdf)
(fields
(field (name "Arrow Part Number") MC33926PNB)
(field (name "Arrow Price/Stock") https://www.arrow.com/en/products/mc33926pnb/nxp-semiconductors)
(field (name Description) "Motor / Motion / Ignition Controllers & Drivers THROTTLE CTRL H-BRIDGE")
(field (name Height) 2.2)
(field (name Manufacturer_Name) Nexperia)
(field (name Manufacturer_Part_Number) MC33926PNB))
(libsource (lib MC33926PNB) (part MC33926PNB) (description "Motor / Motion / Ignition Controllers & Drivers THROTTLE CTRL H-BRIDGE"))
(sheetpath (names /sheet5C8C28D8/) (tstamps /5C8C28EC/))
(tstamp 5C8BDD41)))
(libparts
(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_01x06_Male)
(description "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x06_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))))
(libpart (lib Connector) (part TestPoint)
(description "test point")
(docs ~)
(footprints
(fp Pin*)
(fp Test*))
(fields
(field (name Reference) TP)
(field (name Value) TestPoint))
(pins
(pin (num 1) (name 1) (type passive))))
(libpart (lib Connector_Generic) (part Conn_02x03_Odd_Even)
(description "Generic connector, double row, 02x03, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_2x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_02x03_Odd_Even))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))))
(libpart (lib 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 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 MC33926PNB) (part MC33926PNB)
(description "Motor / Motion / Ignition Controllers & Drivers THROTTLE CTRL H-BRIDGE")
(docs http://cache.nxp.com/files/analog/doc/data_sheet/MC33926.pdf)
(fields
(field (name Reference) IC)
(field (name Value) MC33926PNB)
(field (name Footprint) QFN80P800X800X220-33N)
(field (name Datasheet) http://cache.nxp.com/files/analog/doc/data_sheet/MC33926.pdf)
(field (name Description) "Motor / Motion / Ignition Controllers & Drivers THROTTLE CTRL H-BRIDGE")
(field (name Height) 2.2)
(field (name Manufacturer_Name) Nexperia)
(field (name Manufacturer_Part_Number) MC33926PNB)
(field (name "Arrow Part Number") MC33926PNB)
(field (name "Arrow Price/Stock") https://www.arrow.com/en/products/mc33926pnb/nxp-semiconductors))
(pins
(pin (num 1) (name IN2) (type BiDi))
(pin (num 2) (name IN1) (type BiDi))
(pin (num 3) (name SLEW) (type BiDi))
(pin (num 4) (name VPWR_1) (type BiDi))
(pin (num 5) (name AGND) (type BiDi))
(pin (num 6) (name VPWR_2) (type BiDi))
(pin (num 7) (name INV) (type BiDi))
(pin (num 8) (name FB) (type BiDi))
(pin (num 9) (name NC_1) (type BiDi))
(pin (num 10) (name EN) (type BiDi))
(pin (num 11) (name VPWR_3) (type BiDi))
(pin (num 12) (name OUT1_1) (type BiDi))
(pin (num 13) (name OUT1_2) (type BiDi))
(pin (num 14) (name OUT1_3) (type BiDi))
(pin (num 15) (name OUT1_4) (type BiDi))
(pin (num 16) (name ~D2) (type BiDi))
(pin (num 17) (name NC_2) (type BiDi))
(pin (num 18) (name PGND_1) (type BiDi))
(pin (num 19) (name PGND_2) (type BiDi))
(pin (num 20) (name PGND_3) (type BiDi))
(pin (num 21) (name ~SF) (type BiDi))
(pin (num 22) (name PGND_4) (type BiDi))
(pin (num 23) (name PGND_5) (type BiDi))
(pin (num 24) (name PGND_6) (type BiDi))
(pin (num 25) (name NC_3) (type BiDi))
(pin (num 26) (name D1) (type BiDi))
(pin (num 27) (name OUT2_1) (type BiDi))
(pin (num 28) (name OUT2_2) (type BiDi))
(pin (num 29) (name OUT2_3) (type BiDi))
(pin (num 30) (name OUT2_4) (type BiDi))
(pin (num 31) (name VPWR_4) (type BiDi))
(pin (num 32) (name CCP) (type BiDi))
(pin (num 33) (name EP_AGND) (type BiDi))))
(libpart (lib MCU_ST_STM32L4) (part STM32L432KBUx)
(aliases
(alias STM32L432KCUx))
(description "ARM Cortex-M4 MCU, 128KB flash, 64KB RAM, 80MHz, 1.71-3.6V, 26 GPIO, UFQFPN-32")
(docs http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/DM00257205.pdf)
(footprints
(fp QFN*1EP*5x5mm*P0.5mm*))
(fields
(field (name Reference) U)
(field (name Value) STM32L432KBUx)
(field (name Footprint) Package_DFN_QFN:QFN-32-1EP_5x5mm_P0.5mm_EP3.45x3.45mm))
(pins
(pin (num 1) (name VDD) (type power_in))
(pin (num 2) (name PC14) (type BiDi))
(pin (num 3) (name PC15) (type BiDi))
(pin (num 4) (name NRST) (type input))
(pin (num 5) (name VDDA) (type power_in))
(pin (num 6) (name PA0) (type BiDi))
(pin (num 7) (name PA1) (type BiDi))
(pin (num 8) (name PA2) (type BiDi))
(pin (num 9) (name PA3) (type BiDi))
(pin (num 10) (name PA4) (type BiDi))
(pin (num 11) (name PA5) (type BiDi))
(pin (num 12) (name PA6) (type BiDi))
(pin (num 13) (name PA7) (type BiDi))
(pin (num 14) (name PB0) (type BiDi))
(pin (num 15) (name PB1) (type BiDi))
(pin (num 16) (name VSS) (type power_in))
(pin (num 17) (name VDD) (type power_in))
(pin (num 18) (name PA8) (type BiDi))
(pin (num 19) (name PA9) (type BiDi))
(pin (num 20) (name PA10) (type BiDi))
(pin (num 21) (name PA11) (type BiDi))
(pin (num 22) (name PA12) (type BiDi))
(pin (num 23) (name PA13) (type BiDi))
(pin (num 24) (name PA14) (type BiDi))
(pin (num 25) (name PA15) (type BiDi))
(pin (num 26) (name PB3) (type BiDi))
(pin (num 27) (name PB4) (type BiDi))
(pin (num 28) (name PB5) (type BiDi))
(pin (num 29) (name PB6) (type BiDi))
(pin (num 30) (name PB7) (type BiDi))
(pin (num 31) (name PH3) (type BiDi))
(pin (num 32) (name VSS) (type power_in))
(pin (num 33) (name VSS) (type power_in))))
(libpart (lib Regulator_Linear) (part MIC5504-3.3YM5)
(aliases
(alias MIC5504-2.8YM5)
(alias MIC5504-2.5YM5)
(alias MIC5504-1.8YM5)
(alias MIC5504-1.2YM5)
(alias MIC5501-3.0YM5))
(description "300mA Low-dropout Voltage Regulator, Vout 3.3V, Vin up to 5.5V, SOT-23")
(docs http://ww1.microchip.com/downloads/en/DeviceDoc/MIC550X.pdf)
(footprints
(fp SOT?23?5*))
(fields
(field (name Reference) U)
(field (name Value) MIC5504-3.3YM5)
(field (name Footprint) Package_TO_SOT_SMD:SOT-23-5))
(pins
(pin (num 1) (name VIN) (type power_in))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name EN) (type input))
(pin (num 4) (name NC) (type NotConnected))
(pin (num 5) (name VOUT) (type power_out))))
(libpart (lib TPSM84824MOLR) (part TPSM84824MOLR)
(description "4.5V to 17V Input, 0.6V-10V Output, 8A Power Module in Compact 7.5x7.5mm Footprint")
(docs http://www.ti.com/lit/gpn/tpsm84824)
(fields
(field (name Reference) IC)
(field (name Value) TPSM84824MOLR)
(field (name Footprint) TPSM84624MOLR)
(field (name Datasheet) http://www.ti.com/lit/gpn/tpsm84824)
(field (name Description) "4.5V to 17V Input, 0.6V-10V Output, 8A Power Module in Compact 7.5x7.5mm Footprint")
(field (name Height) 5)
(field (name Manufacturer_Name) "Texas Instruments")
(field (name Manufacturer_Part_Number) TPSM84824MOLR)
(field (name "Mouser Part Number") 595-TPSM84824MOLR)
(field (name "Mouser Price/Stock") https://www.mouser.com/Search/Refine.aspx?Keyword=595-TPSM84824MOLR))
(pins
(pin (num 1) (name VOUT_1) (type BiDi))
(pin (num 2) (name FB) (type BiDi))
(pin (num 3) (name AGND_1) (type BiDi))
(pin (num 4) (name DNC) (type BiDi))
(pin (num 5) (name TT) (type BiDi))
(pin (num 6) (name SS/TR) (type BiDi))
(pin (num 7) (name PGOOD) (type BiDi))
(pin (num 8) (name VOUT_2) (type BiDi))
(pin (num 9) (name AGND_2) (type BiDi))
(pin (num 10) (name EN) (type BiDi))
(pin (num 11) (name VIN_1) (type BiDi))
(pin (num 12) (name PGND_1) (type BiDi))
(pin (num 13) (name PGND_2) (type BiDi))
(pin (num 14) (name PGND_3) (type BiDi))
(pin (num 15) (name PGND_4) (type BiDi))
(pin (num 16) (name SW_1) (type BiDi))
(pin (num 17) (name SW_2) (type BiDi))
(pin (num 18) (name PGND_5) (type BiDi))
(pin (num 19) (name PGND_6) (type BiDi))
(pin (num 20) (name PGND_7) (type BiDi))
(pin (num 21) (name PGND_8) (type BiDi))
(pin (num 22) (name VIN_2) (type BiDi))
(pin (num 23) (name AGND_3) (type BiDi))
(pin (num 24) (name RT/CLK) (type BiDi)))))
(libraries
(library (logical Connector)
(uri /usr/share/kicad/library/Connector.lib))
(library (logical Connector_Generic)
(uri /usr/share/kicad/library/Connector_Generic.lib))
(library (logical Device)
(uri /usr/share/kicad/library/Device.lib))
(library (logical MC33926PNB)
(uri /home/kbisland/Documents/KicadLibs/MC33926PNB/KiCad/MC33926PNB.lib))
(library (logical MCU_ST_STM32L4)
(uri /usr/share/kicad/library/MCU_ST_STM32L4.lib))
(library (logical Regulator_Linear)
(uri /usr/share/kicad/library/Regulator_Linear.lib))
(library (logical TPSM84824MOLR)
(uri /home/kbisland/Documents/maxonDriver/TPSM84824/TPSM84824MOLR.lib)))
(nets
(net (code 1) (name GND)
(node (ref IC2) (pin 24))
(node (ref IC2) (pin 23))
(node (ref IC2) (pin 22))
(node (ref IC2) (pin 20))
(node (ref IC2) (pin 19))
(node (ref IC2) (pin 18))
(node (ref IC2) (pin 33))
(node (ref IC2) (pin 26))
(node (ref IC2) (pin 5))
(node (ref IC2) (pin 2))
(node (ref IC3) (pin 22))
(node (ref IC3) (pin 20))
(node (ref IC3) (pin 19))
(node (ref IC3) (pin 18))
(node (ref IC3) (pin 33))
(node (ref IC3) (pin 26))
(node (ref IC3) (pin 5))
(node (ref IC3) (pin 2))
(node (ref C13) (pin 2))
(node (ref C12) (pin 2))
(node (ref C4) (pin 2))
(node (ref J8) (pin 3))
(node (ref J9) (pin 3))
(node (ref J10) (pin 1))
(node (ref IC1) (pin 12))
(node (ref IC1) (pin 13))
(node (ref IC1) (pin 14))
(node (ref IC1) (pin 15))
(node (ref IC1) (pin 18))
(node (ref IC1) (pin 19))
(node (ref IC1) (pin 20))
(node (ref IC1) (pin 21))
(node (ref IC1) (pin 23))
(node (ref J7) (pin 3))
(node (ref J3) (pin 2))
(node (ref TP2) (pin 1))
(node (ref U2) (pin 2))
(node (ref IC1) (pin 3))
(node (ref IC1) (pin 9))
(node (ref R4) (pin 2))
(node (ref C5) (pin 2))
(node (ref IC3) (pin 23))
(node (ref J2) (pin 5))
(node (ref U1) (pin 16))
(node (ref U1) (pin 32))
(node (ref U1) (pin 33))
(node (ref J1) (pin 5))
(node (ref J6) (pin 3))
(node (ref IC5) (pin 22))
(node (ref IC5) (pin 20))
(node (ref IC5) (pin 19))
(node (ref IC5) (pin 18))
(node (ref IC5) (pin 33))
(node (ref IC5) (pin 26))
(node (ref IC5) (pin 5))
(node (ref IC5) (pin 2))
(node (ref IC5) (pin 23))
(node (ref C19) (pin 2))
(node (ref C18) (pin 2))
(node (ref C22) (pin 2))
(node (ref C21) (pin 2))
(node (ref IC5) (pin 24))
(node (ref C16) (pin 2))
(node (ref C15) (pin 2))
(node (ref IC4) (pin 2))
(node (ref IC3) (pin 24))
(node (ref IC4) (pin 22))
(node (ref IC4) (pin 24))
(node (ref IC4) (pin 23))
(node (ref IC4) (pin 20))
(node (ref IC4) (pin 19))
(node (ref IC4) (pin 18))
(node (ref IC4) (pin 33))
(node (ref IC4) (pin 26))
(node (ref IC4) (pin 5))
(node (ref R7) (pin 2))
(node (ref R8) (pin 2))
(node (ref C10) (pin 2))
(node (ref C7) (pin 2))
(node (ref C6) (pin 2))
(node (ref C8) (pin 2))
(node (ref C9) (pin 2))
(node (ref C11) (pin 2))
(node (ref C3) (pin 2))
(node (ref C2) (pin 2))
(node (ref C1) (pin 2))
(node (ref D1) (pin 1))
(node (ref J5) (pin 5))
(node (ref J4) (pin 5))
(node (ref R6) (pin 2)))
(net (code 2) (name +3V3)
(node (ref C5) (pin 1))
(node (ref IC3) (pin 10))
(node (ref J2) (pin 2))
(node (ref R12) (pin 2))
(node (ref R11) (pin 2))
(node (ref IC5) (pin 10))
(node (ref R9) (pin 2))
(node (ref IC2) (pin 16))
(node (ref C1) (pin 1))
(node (ref IC4) (pin 16))
(node (ref C3) (pin 1))
(node (ref C2) (pin 1))
(node (ref IC5) (pin 16))
(node (ref J5) (pin 2))
(node (ref IC2) (pin 10))
(node (ref J6) (pin 2))
(node (ref U2) (pin 5))
(node (ref U1) (pin 17))
(node (ref U1) (pin 5))
(node (ref J1) (pin 2))
(node (ref J4) (pin 2))
(node (ref J7) (pin 2))
(node (ref U1) (pin 1))
(node (ref J8) (pin 2))
(node (ref IC3) (pin 16))
(node (ref J9) (pin 2))
(node (ref IC4) (pin 10))
(node (ref R2) (pin 2))
(node (ref TP1) (pin 1))
(node (ref R10) (pin 2)))
(net (code 3) (name "Net-(D1-Pad2)")
(node (ref D1) (pin 2))
(node (ref R1) (pin 2)))
(net (code 4) (name "Net-(R1-Pad1)")
(node (ref U1) (pin 2))
(node (ref R1) (pin 1)))
(net (code 5) (name M4B)
(node (ref J5) (pin 6))
(node (ref IC5) (pin 30))
(node (ref IC5) (pin 29))
(node (ref IC5) (pin 28))
(node (ref IC5) (pin 27)))
(net (code 6) (name M4A)
(node (ref IC5) (pin 14))
(node (ref IC5) (pin 15))
(node (ref J5) (pin 1))
(node (ref IC5) (pin 13))
(node (ref IC5) (pin 12)))
(net (code 7) (name M3B)
(node (ref IC3) (pin 28))
(node (ref IC3) (pin 27))
(node (ref IC3) (pin 29))
(node (ref J4) (pin 6))
(node (ref IC3) (pin 30)))
(net (code 8) (name "Net-(R2-Pad1)")
(node (ref U1) (pin 4))
(node (ref R2) (pin 1)))
(net (code 9) (name "Net-(J3-Pad3)")
(node (ref J3) (pin 3)))
(net (code 10) (name EN)
(node (ref IC1) (pin 10))
(node (ref R5) (pin 2))
(node (ref R6) (pin 1)))
(net (code 11) (name "Net-(IC1-Pad17)")
(node (ref IC1) (pin 17)))
(net (code 12) (name "Net-(IC1-Pad16)")
(node (ref IC1) (pin 16)))
(net (code 13) (name "Net-(IC1-Pad4)")
(node (ref IC1) (pin 4)))
(net (code 14) (name "Net-(IC1-Pad5)")
(node (ref IC1) (pin 5))
(node (ref R7) (pin 1)))
(net (code 15) (name "Net-(C10-Pad1)")
(node (ref C10) (pin 1))
(node (ref IC1) (pin 6)))
(net (code 16) (name "Net-(IC1-Pad24)")
(node (ref IC1) (pin 24))
(node (ref R8) (pin 1)))
(net (code 17) (name FB)
(node (ref R4) (pin 1))
(node (ref R3) (pin 2))
(node (ref IC1) (pin 2)))
(net (code 18) (name "Net-(IC1-Pad7)")
(node (ref IC1) (pin 7)))
(net (code 19) (name ENC1A)
(node (ref U1) (pin 6))
(node (ref J1) (pin 3)))
(net (code 20) (name VOUT)
(node (ref IC1) (pin 8))
(node (ref IC1) (pin 1))
(node (ref R3) (pin 1))
(node (ref C8) (pin 1))
(node (ref C9) (pin 1))
(node (ref C11) (pin 1)))
(net (code 21) (name "Net-(U2-Pad4)")
(node (ref U2) (pin 4)))
(net (code 22) (name +5V)
(node (ref J10) (pin 2)))
(net (code 23) (name M2IN)
(node (ref U1) (pin 13))
(node (ref IC4) (pin 1)))
(net (code 24) (name M1DIR)
(node (ref IC2) (pin 7))
(node (ref U1) (pin 3)))
(net (code 25) (name LS2)
(node (ref U1) (pin 29))
(node (ref J7) (pin 1)))
(net (code 26) (name MOSI)
(node (ref J3) (pin 4))
(node (ref U1) (pin 28)))
(net (code 27) (name M3DIR)
(node (ref IC3) (pin 7))
(node (ref U1) (pin 27)))
(net (code 28) (name SCK)
(node (ref U1) (pin 26))
(node (ref J3) (pin 5)))
(net (code 29) (name M4IN)
(node (ref IC5) (pin 1))
(node (ref U1) (pin 15)))
(net (code 30) (name M3IN)
(node (ref U1) (pin 14))
(node (ref IC3) (pin 1)))
(net (code 31) (name ENC4A)
(node (ref J5) (pin 3))
(node (ref U1) (pin 19)))
(net (code 32) (name ENC3B)
(node (ref J4) (pin 4))
(node (ref U1) (pin 18)))
(net (code 33) (name M1IN)
(node (ref IC2) (pin 1))
(node (ref U1) (pin 12)))
(net (code 34) (name ENC3A)
(node (ref J4) (pin 3))