-
Notifications
You must be signed in to change notification settings - Fork 2
/
SmallKat Jumbo Motherboard.net
1123 lines (1123 loc) · 42.7 KB
/
SmallKat Jumbo Motherboard.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/SmallKat Jumbo Motherboard/SmallKat Jumbo Motherboard.sch")
(date "Thu 07 Feb 2019 07:51:36 PM EST")
(tool "Eeschema 5.0.1-33cea8e~68~ubuntu16.04.1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source "SmallKat Jumbo Motherboard.sch")
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref J1)
(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 5B754050))
(comp (ref J2)
(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 5B7542F6))
(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 5B7554C0))
(comp (ref J6)
(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 5B756689))
(comp (ref J4)
(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 5B757863))
(comp (ref J5)
(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 5B758A22))
(comp (ref J7)
(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 5B75ADCF))
(comp (ref J9)
(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 5B75E536))
(comp (ref Y2)
(value 32MHZ)
(footprint Crystal:Crystal_SMD_2016-4Pin_2.0x1.6mm)
(datasheet ~)
(libsource (lib Device) (part Crystal_GND24) (description "Four pin crystal, GND on pins 2 and 4"))
(sheetpath (names /) (tstamps /))
(tstamp 5B785C94))
(comp (ref C5)
(value 10PF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B7890BA))
(comp (ref C4)
(value 10PF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B78911D))
(comp (ref C3)
(value 10PF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B789181))
(comp (ref C2)
(value 10PF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B7891EA))
(comp (ref IC1)
(value TPS562201DDCR)
(footprint TPS562201DDCR:SOT95P280X110-6N)
(datasheet http://www.ti.com/lit/gpn/tps562201)
(fields
(field (name "Arrow Part Number") TPS562201DDCR)
(field (name "Arrow Price/Stock") https://www.arrow.com/en/products/tps562201ddcr/texas-instruments)
(field (name Description) "4.5V to 17V Input, 2A Output, Synchronous Step-Down Converter")
(field (name Height) 1.1)
(field (name Manufacturer_Name) "Texas Instruments")
(field (name Manufacturer_Part_Number) TPS562201DDCR))
(libsource (lib TPS562201DDCR) (part TPS562201DDCR) (description "4.5V to 17V Input, 2A Output, Synchronous Step-Down Converter"))
(sheetpath (names /) (tstamps /))
(tstamp 5B78B75C))
(comp (ref R3)
(value 10K)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5B78BA0C))
(comp (ref R4)
(value 33.2K)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5B78BADF))
(comp (ref R2)
(value 10K)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5B78BB76))
(comp (ref C10)
(value 0.1UF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B78CA2E))
(comp (ref C9)
(value 10UF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B78CABD))
(comp (ref C8)
(value 10UF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B78CB3D))
(comp (ref L1)
(value 4.7UH)
(footprint Inductor_SMD:L_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names /) (tstamps /))
(tstamp 5B78FEEB))
(comp (ref C7)
(value 22UF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B790039))
(comp (ref C6)
(value 22UF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B7900C6))
(comp (ref C11)
(value 0.1UF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B793FF3))
(comp (ref D2)
(value 641-1675-1-ND)
(footprint Diode_SMD:D_0402_1005Metric)
(datasheet CDBQR0130L-HF)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5B79599F))
(comp (ref IC2)
(value TPS562201DDCR)
(footprint TPS562201DDCR:SOT95P280X110-6N)
(datasheet http://www.ti.com/lit/gpn/tps562201)
(fields
(field (name "Arrow Part Number") TPS562201DDCR)
(field (name "Arrow Price/Stock") https://www.arrow.com/en/products/tps562201ddcr/texas-instruments)
(field (name Description) "4.5V to 17V Input, 2A Output, Synchronous Step-Down Converter")
(field (name Height) 1.1)
(field (name Manufacturer_Name) "Texas Instruments")
(field (name Manufacturer_Part_Number) TPS562201DDCR))
(libsource (lib TPS562201DDCR) (part TPS562201DDCR) (description "4.5V to 17V Input, 2A Output, Synchronous Step-Down Converter"))
(sheetpath (names /) (tstamps /))
(tstamp 5B795F99))
(comp (ref R6)
(value 10K)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5B795FA0))
(comp (ref R7)
(value 33.2K)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5B795FA7))
(comp (ref R5)
(value 10K)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5B795FAE))
(comp (ref C16)
(value 0.1UF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B795FCB))
(comp (ref C15)
(value 10UF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B795FD4))
(comp (ref C14)
(value 10UF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B795FDD))
(comp (ref L2)
(value 4.7UH)
(footprint Inductor_SMD:L_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names /) (tstamps /))
(tstamp 5B795FFA))
(comp (ref C13)
(value 22UF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B796001))
(comp (ref C12)
(value 22UF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B796008))
(comp (ref C17)
(value 0.1UF)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B796027))
(comp (ref D1)
(value 641-1675-1-ND)
(footprint Diode_SMD:D_0402_1005Metric)
(datasheet CDBQR0130L-HF)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5B796031))
(comp (ref J14)
(value Conn_01x04_Male)
(footprint Connector_Molex:Molex_CLIK-Mate_502443-0470_1x04-1MP_P2.00mm_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 5B79A887))
(comp (ref J15)
(value Conn_01x04_Male)
(footprint Connector_Molex:Molex_CLIK-Mate_502443-0470_1x04-1MP_P2.00mm_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 5B79C89C))
(comp (ref J16)
(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 5B8005AE))
(comp (ref Y1)
(value 32.768khz)
(footprint Crystal:Crystal_SMD_2012-2Pin_2.0x1.2mm)
(datasheet ~)
(libsource (lib Device) (part Crystal) (description "Two pin crystal"))
(sheetpath (names /) (tstamps /))
(tstamp 5B836102))
(comp (ref J12)
(value Conn_01x05_Male)
(footprint Connector_Molex:Molex_CLIK-Mate_502443-0570_1x05-1MP_P2.00mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x05_Male) (description "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5BADBF81))
(comp (ref R8)
(value R)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BDADB69))
(comp (ref R9)
(value R)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BDADC3F))
(comp (ref FB1)
(value Ferrite_Bead)
(footprint Inductor_SMD:L_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part Ferrite_Bead) (description "Ferrite bead"))
(sheetpath (names /) (tstamps /))
(tstamp 5C5C918D))
(comp (ref U1)
(value STM32H743VITx)
(footprint Package_QFP:LQFP-100_14x14mm_P0.5mm)
(datasheet http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/DM00387108.pdf)
(libsource (lib MCU_ST_STM32H7) (part STM32H743VITx) (description "ARM Cortex-M7 MCU, 2048KB flash, 864KB RAM, 400MHz, 1.7-3.6V, 82 GPIO, LQFP-100"))
(sheetpath (names /) (tstamps /))
(tstamp 5C5C9820))
(comp (ref C1)
(value C)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C5CDCEA))
(comp (ref C18)
(value C)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C5CDDDA))
(comp (ref C19)
(value C)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C5CDEAD))
(comp (ref C20)
(value C)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C5CE107))
(comp (ref C21)
(value C)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C5CE24E))
(comp (ref C22)
(value C)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C5CE324))
(comp (ref C23)
(value C)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C5CE3FD))
(comp (ref R10)
(value R)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C5D3D07))
(comp (ref R1)
(value R)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C5D3E32))
(comp (ref J8)
(value PRT-10474)
(footprint PRT-10474:SHDR2W320P716_1X2_1574X813X1588P)
(datasheet http://cdn.sparkfun.com/datasheets/Prototyping/xt60.pdf)
(fields
(field (name Description) "Soldering Workstation Equipment XT60 Connectors Male/Female Pair")
(field (name Height) 15.875)
(field (name Manufacturer_Name) SparkFun)
(field (name Manufacturer_Part_Number) PRT-10474)
(field (name "Mouser Part Number") 474-PRT-10474)
(field (name "Mouser Price/Stock") https://www.mouser.com/Search/Refine.aspx?Keyword=474-PRT-10474))
(libsource (lib PRT-10474) (part PRT-10474) (description "Soldering Workstation Equipment XT60 Connectors Male/Female Pair"))
(sheetpath (names /) (tstamps /))
(tstamp 5C5FD6A5))
(comp (ref J10)
(value Conn_01x04_Male)
(footprint Connector_Molex:Molex_CLIK-Mate_502443-0470_1x04-1MP_P2.00mm_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 5C605853))
(comp (ref R11)
(value R)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C605868))
(comp (ref R12)
(value R)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C60586F)))
(libparts
(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 Conn_01x05_Male)
(description "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x05_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))))
(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 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 Crystal)
(description "Two pin crystal")
(docs ~)
(footprints
(fp Crystal*))
(fields
(field (name Reference) Y)
(field (name Value) Crystal))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib Device) (part Crystal_GND24)
(description "Four pin crystal, GND on pins 2 and 4")
(docs ~)
(footprints
(fp Crystal*))
(fields
(field (name Reference) Y)
(field (name Value) Crystal_GND24))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))
(pin (num 3) (name 3) (type passive))
(pin (num 4) (name 4) (type passive))))
(libpart (lib Device) (part D)
(description Diode)
(docs ~)
(footprints
(fp TO-???*)
(fp *_Diode_*)
(fp *SingleDiode*)
(fp D_*))
(fields
(field (name Reference) D)
(field (name Value) D))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Device) (part Ferrite_Bead)
(description "Ferrite bead")
(docs ~)
(footprints
(fp Inductor_*)
(fp L_*)
(fp *Ferrite*))
(fields
(field (name Reference) FB)
(field (name Value) Ferrite_Bead))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part L)
(description Inductor)
(docs ~)
(footprints
(fp Choke_*)
(fp *Coil*)
(fp Inductor_*)
(fp L_*))
(fields
(field (name Reference) L)
(field (name Value) L))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (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 MCU_ST_STM32H7) (part STM32H743VITx)
(description "ARM Cortex-M7 MCU, 2048KB flash, 864KB RAM, 400MHz, 1.7-3.6V, 82 GPIO, LQFP-100")
(docs http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/DM00387108.pdf)
(footprints
(fp LQFP*14x14mm*P0.5mm*))
(fields
(field (name Reference) U)
(field (name Value) STM32H743VITx)
(field (name Footprint) Package_QFP:LQFP-100_14x14mm_P0.5mm))
(pins
(pin (num 1) (name PE2) (type BiDi))
(pin (num 2) (name PE3) (type BiDi))
(pin (num 3) (name PE4) (type BiDi))
(pin (num 4) (name PE5) (type BiDi))
(pin (num 5) (name PE6) (type BiDi))
(pin (num 6) (name VBAT) (type power_in))
(pin (num 7) (name PC13) (type BiDi))
(pin (num 8) (name PC14) (type BiDi))
(pin (num 9) (name PC15) (type BiDi))
(pin (num 10) (name VSS) (type power_in))
(pin (num 11) (name VDD) (type power_in))
(pin (num 12) (name PH0) (type input))
(pin (num 13) (name PH1) (type input))
(pin (num 14) (name NRST) (type input))
(pin (num 15) (name PC0) (type BiDi))
(pin (num 16) (name PC1) (type BiDi))
(pin (num 17) (name PC2_C) (type BiDi))
(pin (num 18) (name PC3_C) (type BiDi))
(pin (num 19) (name VSSA) (type power_in))
(pin (num 20) (name VREF+) (type BiDi))
(pin (num 21) (name VDDA) (type power_in))
(pin (num 22) (name PA0) (type BiDi))
(pin (num 23) (name PA1) (type BiDi))
(pin (num 24) (name PA2) (type BiDi))
(pin (num 25) (name PA3) (type BiDi))
(pin (num 26) (name VSS) (type power_in))
(pin (num 27) (name VDD) (type power_in))
(pin (num 28) (name PA4) (type BiDi))
(pin (num 29) (name PA5) (type BiDi))
(pin (num 30) (name PA6) (type BiDi))
(pin (num 31) (name PA7) (type BiDi))
(pin (num 32) (name PC4) (type BiDi))
(pin (num 33) (name PC5) (type BiDi))
(pin (num 34) (name PB0) (type BiDi))
(pin (num 35) (name PB1) (type BiDi))
(pin (num 36) (name PB2) (type BiDi))
(pin (num 37) (name PE7) (type BiDi))
(pin (num 38) (name PE8) (type BiDi))
(pin (num 39) (name PE9) (type BiDi))
(pin (num 40) (name PE10) (type BiDi))
(pin (num 41) (name PE11) (type BiDi))
(pin (num 42) (name PE12) (type BiDi))
(pin (num 43) (name PE13) (type BiDi))
(pin (num 44) (name PE14) (type BiDi))
(pin (num 45) (name PE15) (type BiDi))
(pin (num 46) (name PB10) (type BiDi))
(pin (num 47) (name PB11) (type BiDi))
(pin (num 48) (name VCAP1) (type power_in))
(pin (num 49) (name VSS) (type power_in))
(pin (num 50) (name VDD) (type power_in))
(pin (num 51) (name PB12) (type BiDi))
(pin (num 52) (name PB13) (type BiDi))
(pin (num 53) (name PB14) (type BiDi))
(pin (num 54) (name PB15) (type BiDi))
(pin (num 55) (name PD8) (type BiDi))
(pin (num 56) (name PD9) (type BiDi))
(pin (num 57) (name PD10) (type BiDi))
(pin (num 58) (name PD11) (type BiDi))
(pin (num 59) (name PD12) (type BiDi))
(pin (num 60) (name PD13) (type BiDi))
(pin (num 61) (name PD14) (type BiDi))
(pin (num 62) (name PD15) (type BiDi))
(pin (num 63) (name PC6) (type BiDi))
(pin (num 64) (name PC7) (type BiDi))
(pin (num 65) (name PC8) (type BiDi))
(pin (num 66) (name PC9) (type BiDi))
(pin (num 67) (name PA8) (type BiDi))
(pin (num 68) (name PA9) (type BiDi))
(pin (num 69) (name PA10) (type BiDi))
(pin (num 70) (name PA11) (type BiDi))
(pin (num 71) (name PA12) (type BiDi))
(pin (num 72) (name PA13) (type BiDi))
(pin (num 73) (name VCAP2) (type power_in))
(pin (num 74) (name VSS) (type power_in))
(pin (num 75) (name VDD) (type power_in))
(pin (num 76) (name PA14) (type BiDi))
(pin (num 77) (name PA15) (type BiDi))
(pin (num 78) (name PC10) (type BiDi))
(pin (num 79) (name PC11) (type BiDi))
(pin (num 80) (name PC12) (type BiDi))
(pin (num 81) (name PD0) (type BiDi))
(pin (num 82) (name PD1) (type BiDi))
(pin (num 83) (name PD2) (type BiDi))
(pin (num 84) (name PD3) (type BiDi))
(pin (num 85) (name PD4) (type BiDi))
(pin (num 86) (name PD5) (type BiDi))
(pin (num 87) (name PD6) (type BiDi))
(pin (num 88) (name PD7) (type BiDi))
(pin (num 89) (name PB3) (type BiDi))
(pin (num 90) (name PB4) (type BiDi))
(pin (num 91) (name PB5) (type BiDi))
(pin (num 92) (name PB6) (type BiDi))
(pin (num 93) (name PB7) (type BiDi))
(pin (num 94) (name BOOT0) (type input))
(pin (num 95) (name PB8) (type BiDi))
(pin (num 96) (name PB9) (type BiDi))
(pin (num 97) (name PE0) (type BiDi))
(pin (num 98) (name PE1) (type BiDi))
(pin (num 99) (name VSS) (type power_in))
(pin (num 100) (name VDD) (type power_in))))
(libpart (lib PRT-10474) (part PRT-10474)
(description "Soldering Workstation Equipment XT60 Connectors Male/Female Pair")
(docs http://cdn.sparkfun.com/datasheets/Prototyping/xt60.pdf)
(fields
(field (name Reference) J)
(field (name Value) PRT-10474)
(field (name Footprint) SHDR2W320P716_1X2_1574X813X1588P)
(field (name Datasheet) http://cdn.sparkfun.com/datasheets/Prototyping/xt60.pdf)
(field (name Description) "Soldering Workstation Equipment XT60 Connectors Male/Female Pair")
(field (name Height) 15.875)
(field (name Manufacturer_Name) SparkFun)
(field (name Manufacturer_Part_Number) PRT-10474)
(field (name "Mouser Part Number") 474-PRT-10474)
(field (name "Mouser Price/Stock") https://www.mouser.com/Search/Refine.aspx?Keyword=474-PRT-10474))
(pins
(pin (num 1) (name GND) (type BiDi))
(pin (num 2) (name POS) (type BiDi))))
(libpart (lib TPS562201DDCR) (part TPS562201DDCR)
(description "4.5V to 17V Input, 2A Output, Synchronous Step-Down Converter")
(docs http://www.ti.com/lit/gpn/tps562201)
(fields
(field (name Reference) IC)
(field (name Value) TPS562201DDCR)
(field (name Footprint) SOT95P280X110-6N)
(field (name Datasheet) http://www.ti.com/lit/gpn/tps562201)
(field (name Description) "4.5V to 17V Input, 2A Output, Synchronous Step-Down Converter")
(field (name Height) 1.1)
(field (name Manufacturer_Name) "Texas Instruments")
(field (name Manufacturer_Part_Number) TPS562201DDCR)
(field (name "Arrow Part Number") TPS562201DDCR)
(field (name "Arrow Price/Stock") https://www.arrow.com/en/products/tps562201ddcr/texas-instruments))
(pins
(pin (num 1) (name GND) (type BiDi))
(pin (num 2) (name SW) (type BiDi))
(pin (num 3) (name VIN) (type BiDi))
(pin (num 4) (name VFB) (type BiDi))
(pin (num 5) (name EN) (type BiDi))
(pin (num 6) (name VBST) (type BiDi)))))
(libraries
(library (logical Connector)
(uri /usr/share/kicad/library/Connector.lib))
(library (logical Device)
(uri /usr/share/kicad/library/Device.lib))
(library (logical MCU_ST_STM32H7)
(uri /usr/share/kicad/library/MCU_ST_STM32H7.lib))
(library (logical PRT-10474)
(uri "/home/kbisland/Documents/SmallKat Jumbo Motherboard/xt-60/PRT-10474.lib"))
(library (logical TPS562201DDCR)
(uri /home/kbisland/Downloads/TPS562201DDCR/KiCad/TPS562201DDCR.lib)))
(nets
(net (code 1) (name "Net-(U1-Pad36)")
(node (ref U1) (pin 36)))
(net (code 2) (name "Net-(U1-Pad34)")
(node (ref U1) (pin 34)))
(net (code 3) (name "Net-(U1-Pad35)")
(node (ref U1) (pin 35)))
(net (code 4) (name SCK2)
(node (ref U1) (pin 46))
(node (ref J4) (pin 3)))
(net (code 5) (name "Net-(U1-Pad47)")
(node (ref U1) (pin 47)))
(net (code 6) (name "Net-(U1-Pad51)")
(node (ref U1) (pin 51)))
(net (code 7) (name "Net-(U1-Pad52)")
(node (ref U1) (pin 52)))
(net (code 8) (name "Net-(U1-Pad67)")
(node (ref U1) (pin 67)))
(net (code 9) (name CS6)
(node (ref U1) (pin 92)))
(net (code 10) (name "Net-(U1-Pad93)")
(node (ref U1) (pin 93)))
(net (code 11) (name "Net-(U1-Pad95)")
(node (ref U1) (pin 95)))
(net (code 12) (name "Net-(U1-Pad96)")
(node (ref U1) (pin 96)))
(net (code 13) (name "Net-(U1-Pad15)")
(node (ref U1) (pin 15)))
(net (code 14) (name SWDIO)
(node (ref J12) (pin 3))
(node (ref U1) (pin 72)))
(net (code 15) (name GND)
(node (ref C16) (pin 1))
(node (ref R1) (pin 2))
(node (ref C12) (pin 2))
(node (ref J16) (pin 2))
(node (ref J10) (pin 4))
(node (ref C13) (pin 2))
(node (ref Y2) (pin 2))
(node (ref IC1) (pin 1))
(node (ref C2) (pin 2))
(node (ref C3) (pin 2))
(node (ref C4) (pin 2))
(node (ref C14) (pin 1))
(node (ref C15) (pin 1))
(node (ref J8) (pin 1))
(node (ref C20) (pin 2))
(node (ref J7) (pin 2))
(node (ref J3) (pin 2))
(node (ref J6) (pin 2))
(node (ref J2) (pin 2))
(node (ref J1) (pin 2))
(node (ref C19) (pin 2))
(node (ref J5) (pin 2))
(node (ref J4) (pin 2))
(node (ref J9) (pin 2))
(node (ref Y2) (pin 4))
(node (ref R5) (pin 2))
(node (ref U1) (pin 10))
(node (ref U1) (pin 26))
(node (ref U1) (pin 49))
(node (ref U1) (pin 74))
(node (ref U1) (pin 99))
(node (ref U1) (pin 19))
(node (ref IC2) (pin 1))
(node (ref C6) (pin 2))
(node (ref C22) (pin 2))
(node (ref C23) (pin 2))
(node (ref C21) (pin 2))
(node (ref C18) (pin 2))
(node (ref C1) (pin 2))
(node (ref C7) (pin 2))
(node (ref J15) (pin 4))
(node (ref J14) (pin 4))
(node (ref C5) (pin 2))
(node (ref C10) (pin 1))
(node (ref J12) (pin 5))
(node (ref C9) (pin 1))
(node (ref R2) (pin 2))
(node (ref C8) (pin 1))
(node (ref FB1) (pin 1))
(node (ref FB1) (pin 2)))
(net (code 16) (name "Net-(U1-Pad14)")
(node (ref U1) (pin 14)))
(net (code 17) (name "Net-(U1-Pad22)")
(node (ref U1) (pin 22)))
(net (code 18) (name IMU1_CS)
(node (ref U1) (pin 23)))
(net (code 19) (name MOSI2)
(node (ref J4) (pin 5))
(node (ref U1) (pin 16)))
(net (code 20) (name SWCLK)
(node (ref J12) (pin 2))
(node (ref U1) (pin 76)))
(net (code 21) (name CS3)
(node (ref U1) (pin 77))
(node (ref J2) (pin 6)))
(net (code 22) (name "Net-(U1-Pad24)")
(node (ref U1) (pin 24)))
(net (code 23) (name "Net-(U1-Pad25)")
(node (ref U1) (pin 25)))
(net (code 24) (name CS1)
(node (ref U1) (pin 28))
(node (ref J1) (pin 6)))
(net (code 25) (name LED1)
(node (ref U1) (pin 59)))
(net (code 26) (name LED2)
(node (ref U1) (pin 60)))
(net (code 27) (name LED3)
(node (ref U1) (pin 61)))
(net (code 28) (name IMU2_CS)
(node (ref U1) (pin 62)))
(net (code 29) (name "Net-(U1-Pad83)")
(node (ref U1) (pin 83)))
(net (code 30) (name "Net-(U1-Pad84)")
(node (ref U1) (pin 84)))
(net (code 31) (name "Net-(U1-Pad85)")
(node (ref U1) (pin 85)))
(net (code 32) (name "Net-(U1-Pad86)")
(node (ref U1) (pin 86)))
(net (code 33) (name "Net-(U1-Pad87)")
(node (ref U1) (pin 87)))
(net (code 34) (name "Net-(U1-Pad58)")
(node (ref U1) (pin 58)))
(net (code 35) (name "Net-(U1-Pad55)")
(node (ref U1) (pin 55)))
(net (code 36) (name "Net-(U1-Pad56)")
(node (ref U1) (pin 56)))
(net (code 37) (name "Net-(U1-Pad97)")
(node (ref U1) (pin 97)))
(net (code 38) (name "Net-(U1-Pad98)")
(node (ref U1) (pin 98)))
(net (code 39) (name "Net-(U1-Pad40)")
(node (ref U1) (pin 40)))
(net (code 40) (name "Net-(U1-Pad41)")
(node (ref U1) (pin 41)))
(net (code 41) (name "Net-(U1-Pad42)")
(node (ref U1) (pin 42)))
(net (code 42) (name "Net-(U1-Pad43)")
(node (ref U1) (pin 43)))
(net (code 43) (name "Net-(U1-Pad32)")
(node (ref U1) (pin 32)))
(net (code 44) (name SCK3)
(node (ref U1) (pin 78))
(node (ref J2) (pin 3)))
(net (code 45) (name MISO3)
(node (ref J2) (pin 4))
(node (ref U1) (pin 79)))
(net (code 46) (name MOSI3)
(node (ref U1) (pin 80))
(node (ref J2) (pin 5)))
(net (code 47) (name "Net-(U1-Pad7)")
(node (ref U1) (pin 7)))
(net (code 48) (name CS2)
(node (ref U1) (pin 18))
(node (ref J4) (pin 6)))
(net (code 49) (name "Net-(U1-Pad33)")
(node (ref U1) (pin 33)))
(net (code 50) (name "Net-(U1-Pad63)")
(node (ref U1) (pin 63)))
(net (code 51) (name "Net-(U1-Pad64)")
(node (ref U1) (pin 64)))
(net (code 52) (name "Net-(U1-Pad65)")
(node (ref U1) (pin 65)))
(net (code 53) (name "Net-(U1-Pad66)")
(node (ref U1) (pin 66)))
(net (code 54) (name "Net-(U1-Pad81)")
(node (ref U1) (pin 81)))
(net (code 55) (name "Net-(U1-Pad82)")
(node (ref U1) (pin 82)))
(net (code 56) (name "Net-(U1-Pad57)")
(node (ref U1) (pin 57)))
(net (code 57) (name +5V)
(node (ref R6) (pin 1))
(node (ref C16) (pin 2))
(node (ref C15) (pin 2))
(node (ref J10) (pin 1))
(node (ref J15) (pin 1))
(node (ref IC2) (pin 3))
(node (ref C14) (pin 2)))
(net (code 58) (name RX)
(node (ref J14) (pin 2))
(node (ref U1) (pin 69)))
(net (code 59) (name +3V3)
(node (ref C18) (pin 1))
(node (ref C19) (pin 1))
(node (ref C20) (pin 1))
(node (ref C21) (pin 1))
(node (ref U1) (pin 21))
(node (ref U1) (pin 75))
(node (ref J14) (pin 3))
(node (ref R10) (pin 2))
(node (ref D1) (pin 1))
(node (ref J12) (pin 4))
(node (ref R4) (pin 1))
(node (ref C1) (pin 1))
(node (ref C23) (pin 1))
(node (ref C22) (pin 1))
(node (ref U1) (pin 27))
(node (ref U1) (pin 11))
(node (ref U1) (pin 100))
(node (ref U1) (pin 6))
(node (ref D2) (pin 1))
(node (ref R7) (pin 1))
(node (ref U1) (pin 50)))
(net (code 60) (name TX)
(node (ref U1) (pin 68))
(node (ref J14) (pin 1)))
(net (code 61) (name "Net-(J15-Pad2)")
(node (ref R9) (pin 1))
(node (ref J15) (pin 2)))
(net (code 62) (name "Net-(J15-Pad3)")
(node (ref J15) (pin 3))
(node (ref R8) (pin 1)))
(net (code 63) (name "Net-(C17-Pad1)")
(node (ref IC2) (pin 6))
(node (ref C17) (pin 1)))
(net (code 64) (name NRST)
(node (ref J12) (pin 1)))
(net (code 65) (name USB_HS_DP)
(node (ref U1) (pin 54))
(node (ref R8) (pin 2)))
(net (code 66) (name USB_HS_DM)
(node (ref R9) (pin 2))
(node (ref U1) (pin 53)))
(net (code 67) (name +BATT)
(node (ref J1) (pin 1))
(node (ref J7) (pin 1))
(node (ref J6) (pin 1))
(node (ref R3) (pin 1))
(node (ref J4) (pin 1))
(node (ref J16) (pin 1))
(node (ref IC1) (pin 3))
(node (ref J3) (pin 1))
(node (ref J8) (pin 2))
(node (ref J2) (pin 1))
(node (ref J5) (pin 1))
(node (ref J9) (pin 1))
(node (ref C8) (pin 2))
(node (ref C10) (pin 2))
(node (ref C9) (pin 2)))
(net (code 68) (name SCK6)
(node (ref J16) (pin 3))
(node (ref J3) (pin 3))
(node (ref U1) (pin 89)))
(net (code 69) (name MISO6)
(node (ref U1) (pin 90))
(node (ref J3) (pin 4))
(node (ref J16) (pin 4)))
(net (code 70) (name MOSI6)
(node (ref J3) (pin 5))
(node (ref J16) (pin 5))
(node (ref U1) (pin 91)))
(net (code 71) (name CS6_HEAD)
(node (ref U1) (pin 88))
(node (ref J16) (pin 6)))
(net (code 72) (name "Net-(U1-Pad44)")
(node (ref U1) (pin 44)))
(net (code 73) (name OSCIN_32)
(node (ref Y1) (pin 1))