This repository has been archived by the owner on Apr 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMegaBote.net
1002 lines (1002 loc) · 37.3 KB
/
MegaBote.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/connor/workspace/MegaBote/MegaBote/MegaBote.sch)
(date "Fri 26 Jun 2020 08:15:52 PM PDT")
(tool "Eeschema 5.1.6")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source MegaBote.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref JP2)
(value CAN_TERM)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical_SMD_Pin1Left)
(datasheet ~)
(libsource (lib Device) (part Jumper_NO_Small) (description "Jumper, normally open, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5EF9AF91))
(comp (ref R2)
(value 120k)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name LCSC_FP) 0402)
(field (name LCSC_PN) C25750))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5EF9C013))
(comp (ref J3)
(value Micro_SD_Card)
(footprint Connector_Card:microSD_HC_Molex_104031-0811)
(datasheet http://katalog.we-online.de/em/datasheet/693072010801.pdf)
(fields
(field (name DIGIKEY) WM6357CT-ND))
(libsource (lib Connector) (part Micro_SD_Card_Det) (description "Micro SD Card Socket with card detection pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5EFA869D))
(comp (ref J1)
(value USB_B_Mini)
(footprint Connector_USB:USB_Mini-B_Wuerth_65100516121_Horizontal)
(datasheet ~)
(fields
(field (name DIGIKEY) 732-2109-1-ND))
(libsource (lib Connector) (part USB_B_Mini) (description "USB Mini Type B connector"))
(sheetpath (names /) (tstamps /))
(tstamp 5EFAAC07))
(comp (ref U1)
(value SN65HVD230)
(footprint Package_SO:SOIC-8_3.9x4.9mm_P1.27mm)
(datasheet http://www.ti.com/lit/ds/symlink/sn65hvd230.pdf)
(fields
(field (name LCSC_FP) SOIC-8_3.9x4.9x1.27P)
(field (name LCSC_PN) C12084))
(libsource (lib Interface_CAN_LIN) (part SN65HVD230) (description "CAN Bus Transceivers, 3.3V, 1Mbps, Low-Power capabilities, SOIC-8"))
(sheetpath (names /) (tstamps /))
(tstamp 5EFD9B56))
(comp (ref U4)
(value STM32F105RBTx)
(footprint Package_QFP:LQFP-64_10x10mm_P0.5mm)
(datasheet http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/CD00220364.pdf)
(fields
(field (name LCSC_FP) LQFP-64_10.0x10.0x0.5P)
(field (name LCSC_PN) C8349))
(libsource (lib MCU_ST_STM32F1) (part STM32F105RBTx) (description "ARM Cortex-M3 MCU, 128KB flash, 64KB RAM, 72MHz, 2-3.6V, 51 GPIO, LQFP-64"))
(sheetpath (names /) (tstamps /))
(tstamp 5F037BD5))
(comp (ref HSE1)
(value 25MHz)
(footprint Crystal:Crystal_SMD_3225-4Pin_3.2x2.5mm)
(datasheet https://datasheet.lcsc.com/szlcsc/Yangxing-Tech-X322525MOB4SI_C9006.pdf)
(fields
(field (name LCSC_FP) SMD-3225_4P)
(field (name LCSC_PN) C9006))
(libsource (lib Device) (part Crystal_GND24_Small) (description "Four pin crystal, GND on pins 2 and 4, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F06990D))
(comp (ref C8)
(value 20pf)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name LCSC_FP) 0402)
(field (name LCSC_PN) C1554))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F06F85F))
(comp (ref U2)
(value AMS1117-3.3)
(footprint Package_TO_SOT_SMD:SOT-223-3_TabPin2)
(datasheet http://www.advanced-monolithic.com/pdf/ds1117.pdf)
(fields
(field (name LCSC_FP) SOT-223)
(field (name LCSC_PN) C6186))
(libsource (lib Regulator_Linear) (part AMS1117-3.3) (description "1A Low Dropout regulator, positive, 3.3V fixed output, SOT-223"))
(sheetpath (names /) (tstamps /))
(tstamp 5F07EED0))
(comp (ref F1)
(value 500ma)
(footprint Fuse:Fuse_0805_2012Metric)
(datasheet ~)
(fields
(field (name LCSC_FP) 0805)
(field (name LCSC_PN) C90129))
(libsource (lib Device) (part Fuse_Small) (description "Fuse, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F081DCA))
(comp (ref FB1)
(value "100 @ 100MHz")
(footprint Inductor_SMD:L_0805_2012Metric)
(datasheet ~)
(fields
(field (name LCSC_FP) 0805)
(field (name LCSC_PN) C1015))
(libsource (lib Device) (part Ferrite_Bead_Small) (description "Ferrite bead, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F0827AF))
(comp (ref D1)
(value B5819W)
(footprint Diode_SMD:D_SOD-123)
(datasheet https://datasheet.lcsc.com/szlcsc/Changjiang-Electronics-Tech-CJ-B5819W_C8598.pdf)
(fields
(field (name LCSC_FP) SOD-123)
(field (name LCSC_PN) C8598))
(libsource (lib Device) (part D_Schottky_Small) (description "Schottky diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F0886DD))
(comp (ref C1)
(value 10uf)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(fields
(field (name LCSC_FP) 0805)
(field (name LCSC_PN) C15850))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F08A8B0))
(comp (ref C5)
(value 100nf)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name LCSC_FP) 0402)
(field (name LCSC_PN) C1525))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F0B49F7))
(comp (ref R4)
(value 10k)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name LCSC_FP) 0402)
(field (name LCSC_PN) C25744))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F0FEBA6))
(comp (ref R5)
(value 2.2k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC_FP) 0603)
(field (name LCSC_PN) C4190))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F117D15))
(comp (ref D2)
(value RED)
(footprint LED_SMD:LED_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC_FP) LED_0603)
(field (name LCSC_PN) C2286))
(libsource (lib Device) (part LED_Small) (description "Light emitting diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F18D53E))
(comp (ref J4)
(value Conn_02x05_Odd_Even)
(footprint Connector_PinHeader_1.27mm:PinHeader_2x05_P1.27mm_Vertical_SMD)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x05_Odd_Even) (description "Generic connector, double row, 02x05, 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 5F1049F1))
(comp (ref H1)
(value MountingHole_Pad)
(footprint MountingHole:MountingHole_2.2mm_M2_Pad_Via)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5F2606AE))
(comp (ref H2)
(value MountingHole_Pad)
(footprint MountingHole:MountingHole_2.2mm_M2_Pad_Via)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5F2615FA))
(comp (ref H3)
(value MountingHole_Pad)
(footprint MountingHole:MountingHole_2.2mm_M2_Pad_Via)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5F261DAA))
(comp (ref H4)
(value MountingHole_Pad)
(footprint MountingHole:MountingHole_2.2mm_M2_Pad_Via)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5F262305))
(comp (ref C3)
(value 10uf)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(fields
(field (name LCSC_FP) 0805)
(field (name LCSC_PN) C15850))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F28D254))
(comp (ref C4)
(value 10uf)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(fields
(field (name LCSC_FP) 0805)
(field (name LCSC_PN) C15850))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F28F4E2))
(comp (ref C6)
(value 100nf)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name LCSC_FP) 0402)
(field (name LCSC_PN) C1525))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F298D47))
(comp (ref C7)
(value 100nf)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name LCSC_FP) 0402)
(field (name LCSC_PN) C1525))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F2A5EE9))
(comp (ref C9)
(value 100nf)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name LCSC_FP) 0402)
(field (name LCSC_PN) C1525))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F2A628C))
(comp (ref C12)
(value 100nf)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name LCSC_FP) 0402)
(field (name LCSC_PN) C1525))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F2A668A))
(comp (ref C13)
(value 100nf)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name LCSC_FP) 0402)
(field (name LCSC_PN) C1525))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F2A6B85))
(comp (ref C14)
(value 100nf)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name LCSC_FP) 0402)
(field (name LCSC_PN) C1525))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F2A6F6A))
(comp (ref C11)
(value 100nf)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name LCSC_FP) 0402)
(field (name LCSC_PN) C1525))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F2A746F))
(comp (ref C2)
(value 100nf)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name LCSC_FP) 0402)
(field (name LCSC_PN) C1525))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F2A7851))
(comp (ref C10)
(value 20pf)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(fields
(field (name LCSC_FP) 0402)
(field (name LCSC_PN) C1554))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F2B3D7B))
(comp (ref D3)
(value RED)
(footprint LED_SMD:LED_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC_FP) LED_0603)
(field (name LCSC_PN) C2286))
(libsource (lib Device) (part LED_Small) (description "Light emitting diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F2BDAC1))
(comp (ref R3)
(value 2.2k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC_FP) 0603)
(field (name LCSC_PN) C4190))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F2C5BAE))
(comp (ref R1)
(value 10k)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(fields
(field (name LCSC_FP) 0402)
(field (name LCSC_PN) C25744))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F2CD054))
(comp (ref J2)
(value J1962)
(footprint OBD2:J1962)
(datasheet https://www.obd2-shop.eu/files/obd_pcb-th.pdf)
(fields
(field (name CONNECTOR) https://www.obd2-shop.eu/product_info.php/cPath/21_65_69/products_id/169/language/en?osCsid=r4qrsr7i6410qn43v0t3qrr360)
(field (name HOUSING) https://www.obd2-shop.eu/obd2steckerrechtwinkligerabgangclipausfhrung-p-155.html?language=en))
(libsource (lib OBD2) (part J1962) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F2D9D0C))
(comp (ref U3)
(value USBLC6-2SC6)
(footprint Package_TO_SOT_SMD:SOT-23-6)
(datasheet https://www.st.com/resource/en/datasheet/usblc6-2.pdf)
(fields
(field (name LCSC_FP) SOT-23-6L)
(field (name LCSC_PN) C7519))
(libsource (lib Power_Protection) (part USBLC6-2SC6) (description "Very low capacitance ESD protection diode, 2 data-line, SOT-23-6"))
(sheetpath (names /) (tstamps /))
(tstamp 5F33EE2C))
(comp (ref JP1)
(value VBUS_JUMP)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical_SMD_Pin1Left)
(datasheet ~)
(libsource (lib Device) (part Jumper_NO_Small) (description "Jumper, normally open, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F361D94)))
(libparts
(libpart (lib Connector) (part Micro_SD_Card_Det)
(aliases
(alias Micro_SD_Card_Det_Hirose_DM3AT))
(description "Micro SD Card Socket with card detection pins")
(docs https://www.hirose.com/product/en/download_file/key_name/DM3/category/Catalog/doc_file_id/49662/?file_category_id=4&item_id=195&is_series=1)
(footprints
(fp microSD*))
(fields
(field (name Reference) J)
(field (name Value) Micro_SD_Card_Det))
(pins
(pin (num 1) (name DAT2) (type BiDi))
(pin (num 2) (name DAT3/CD) (type BiDi))
(pin (num 3) (name CMD) (type input))
(pin (num 4) (name VDD) (type power_in))
(pin (num 5) (name CLK) (type input))
(pin (num 6) (name VSS) (type power_in))
(pin (num 7) (name DAT0) (type BiDi))
(pin (num 8) (name DAT1) (type BiDi))
(pin (num 9) (name DET_B) (type passive))
(pin (num 10) (name DET_A) (type passive))
(pin (num 11) (name SHIELD) (type passive))))
(libpart (lib Connector) (part USB_B_Micro)
(aliases
(alias USB_B_Mini))
(description "USB Micro Type B connector")
(docs ~)
(footprints
(fp USB*))
(fields
(field (name Reference) J)
(field (name Value) USB_B_Micro))
(pins
(pin (num 1) (name VBUS) (type power_out))
(pin (num 2) (name D-) (type passive))
(pin (num 3) (name D+) (type passive))
(pin (num 4) (name ID) (type passive))
(pin (num 5) (name GND) (type power_out))
(pin (num 6) (name Shield) (type passive))))
(libpart (lib Connector_Generic) (part Conn_02x05_Odd_Even)
(description "Generic connector, double row, 02x05, 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_02x05_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))
(pin (num 7) (name Pin_7) (type passive))
(pin (num 8) (name Pin_8) (type passive))
(pin (num 9) (name Pin_9) (type passive))
(pin (num 10) (name Pin_10) (type passive))))
(libpart (lib Device) (part C_Small)
(description "Unpolarized capacitor, small symbol")
(docs ~)
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part Crystal_GND24_Small)
(description "Four pin crystal, GND on pins 2 and 4, small symbol")
(docs ~)
(footprints
(fp Crystal*))
(fields
(field (name Reference) Y)
(field (name Value) Crystal_GND24_Small))
(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_Schottky_Small)
(description "Schottky diode, small symbol")
(docs ~)
(footprints
(fp TO-???*)
(fp *_Diode_*)
(fp *SingleDiode*)
(fp D_*))
(fields
(field (name Reference) D)
(field (name Value) D_Schottky_Small))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Device) (part Ferrite_Bead_Small)
(description "Ferrite bead, small symbol")
(docs ~)
(footprints
(fp Inductor_*)
(fp L_*)
(fp *Ferrite*))
(fields
(field (name Reference) FB)
(field (name Value) Ferrite_Bead_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part Fuse_Small)
(description "Fuse, small symbol")
(docs ~)
(footprints
(fp SM*))
(fields
(field (name Reference) F)
(field (name Value) Fuse_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part Jumper_NO_Small)
(description "Jumper, normally open, small symbol")
(docs ~)
(footprints
(fp SolderJumper*Open*)
(fp Jumper*)
(fp TestPoint*2Pads*)
(fp TestPoint*Bridge*))
(fields
(field (name Reference) JP)
(field (name Value) Jumper_NO_Small))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib Device) (part LED_Small)
(description "Light emitting diode, small symbol")
(docs ~)
(footprints
(fp LED*)
(fp LED_SMD:*)
(fp LED_THT:*))
(fields
(field (name Reference) D)
(field (name Value) LED_Small))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Device) (part R_Small)
(description "Resistor, small symbol")
(docs ~)
(footprints
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Interface_CAN_LIN) (part SN65HVD230)
(aliases
(alias SN65HVD231))
(description "CAN Bus Transceivers, 3.3V, 1Mbps, Low-Power capabilities, SOIC-8")
(docs http://www.ti.com/lit/ds/symlink/sn65hvd230.pdf)
(footprints
(fp SOIC*3.9x4.9mm*P1.27mm*))
(fields
(field (name Reference) U)
(field (name Value) SN65HVD230)
(field (name Footprint) Package_SO:SOIC-8_3.9x4.9mm_P1.27mm))
(pins
(pin (num 1) (name D) (type input))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name VCC) (type power_in))
(pin (num 4) (name R) (type output))
(pin (num 5) (name Vref) (type output))
(pin (num 6) (name CANL) (type BiDi))
(pin (num 7) (name CANH) (type BiDi))
(pin (num 8) (name Rs) (type input))))
(libpart (lib MCU_ST_STM32F1) (part STM32F105R8Tx)
(aliases
(alias STM32F105RBTx)
(alias STM32F105RCTx))
(description "ARM Cortex-M3 MCU, 64KB flash, 64KB RAM, 72MHz, 2-3.6V, 51 GPIO, LQFP-64")
(docs http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/CD00220364.pdf)
(footprints
(fp LQFP*10x10mm*P0.5mm*))
(fields
(field (name Reference) U)
(field (name Value) STM32F105R8Tx)
(field (name Footprint) Package_QFP:LQFP-64_10x10mm_P0.5mm))
(pins
(pin (num 1) (name VBAT) (type power_in))
(pin (num 2) (name PC13) (type BiDi))
(pin (num 3) (name PC14) (type BiDi))
(pin (num 4) (name PC15) (type BiDi))
(pin (num 5) (name PD0) (type input))
(pin (num 6) (name PD1) (type input))
(pin (num 7) (name NRST) (type input))
(pin (num 8) (name PC0) (type BiDi))
(pin (num 9) (name PC1) (type BiDi))
(pin (num 10) (name PC2) (type BiDi))
(pin (num 11) (name PC3) (type BiDi))
(pin (num 12) (name VSSA) (type power_in))
(pin (num 13) (name VDDA) (type power_in))
(pin (num 14) (name PA0) (type BiDi))
(pin (num 15) (name PA1) (type BiDi))
(pin (num 16) (name PA2) (type BiDi))
(pin (num 17) (name PA3) (type BiDi))
(pin (num 18) (name VSS) (type power_in))
(pin (num 19) (name VDD) (type power_in))
(pin (num 20) (name PA4) (type BiDi))
(pin (num 21) (name PA5) (type BiDi))
(pin (num 22) (name PA6) (type BiDi))
(pin (num 23) (name PA7) (type BiDi))
(pin (num 24) (name PC4) (type BiDi))
(pin (num 25) (name PC5) (type BiDi))
(pin (num 26) (name PB0) (type BiDi))
(pin (num 27) (name PB1) (type BiDi))
(pin (num 28) (name PB2) (type BiDi))
(pin (num 29) (name PB10) (type BiDi))
(pin (num 30) (name PB11) (type BiDi))
(pin (num 31) (name VSS) (type power_in))
(pin (num 32) (name VDD) (type power_in))
(pin (num 33) (name PB12) (type BiDi))
(pin (num 34) (name PB13) (type BiDi))
(pin (num 35) (name PB14) (type BiDi))
(pin (num 36) (name PB15) (type BiDi))
(pin (num 37) (name PC6) (type BiDi))
(pin (num 38) (name PC7) (type BiDi))
(pin (num 39) (name PC8) (type BiDi))
(pin (num 40) (name PC9) (type BiDi))
(pin (num 41) (name PA8) (type BiDi))
(pin (num 42) (name PA9) (type BiDi))
(pin (num 43) (name PA10) (type BiDi))
(pin (num 44) (name PA11) (type BiDi))
(pin (num 45) (name PA12) (type BiDi))
(pin (num 46) (name PA13) (type BiDi))
(pin (num 47) (name VSS) (type power_in))
(pin (num 48) (name VDD) (type power_in))
(pin (num 49) (name PA14) (type BiDi))
(pin (num 50) (name PA15) (type BiDi))
(pin (num 51) (name PC10) (type BiDi))
(pin (num 52) (name PC11) (type BiDi))
(pin (num 53) (name PC12) (type BiDi))
(pin (num 54) (name PD2) (type BiDi))
(pin (num 55) (name PB3) (type BiDi))
(pin (num 56) (name PB4) (type BiDi))
(pin (num 57) (name PB5) (type BiDi))
(pin (num 58) (name PB6) (type BiDi))
(pin (num 59) (name PB7) (type BiDi))
(pin (num 60) (name BOOT0) (type input))
(pin (num 61) (name PB8) (type BiDi))
(pin (num 62) (name PB9) (type BiDi))
(pin (num 63) (name VSS) (type power_in))
(pin (num 64) (name VDD) (type power_in))))
(libpart (lib Mechanical) (part MountingHole_Pad)
(description "Mounting Hole with connection")
(docs ~)
(footprints
(fp MountingHole*Pad*))
(fields
(field (name Reference) H)
(field (name Value) MountingHole_Pad))
(pins
(pin (num 1) (name 1) (type input))))
(libpart (lib OBD2) (part J1962)
(fields
(field (name Reference) J)
(field (name Value) J1962))
(pins
(pin (num 1) (name NC) (type NotConnected))
(pin (num 2) (name J1850+) (type BiDi))
(pin (num 4) (name Chassis_GND) (type power_out))
(pin (num 5) (name Signal_GND) (type power_out))
(pin (num 6) (name CANH) (type BiDi))
(pin (num 7) (name ISO9141_K_LINE) (type BiDi))
(pin (num 10) (name J1850-) (type BiDi))
(pin (num 14) (name CANL) (type BiDi))
(pin (num 15) (name ISO9141_L_LINE) (type BiDi))
(pin (num 16) (name VBATT) (type power_in))))
(libpart (lib Power_Protection) (part USBLC6-2SC6)
(description "Very low capacitance ESD protection diode, 2 data-line, SOT-23-6")
(docs https://www.st.com/resource/en/datasheet/usblc6-2.pdf)
(footprints
(fp SOT?23*))
(fields
(field (name Reference) U)
(field (name Value) USBLC6-2SC6)
(field (name Footprint) Package_TO_SOT_SMD:SOT-23-6))
(pins
(pin (num 1) (name I/O1) (type passive))
(pin (num 2) (name GND) (type passive))
(pin (num 3) (name I/O2) (type passive))
(pin (num 4) (name I/O2) (type passive))
(pin (num 5) (name VBUS) (type passive))
(pin (num 6) (name I/O1) (type passive))))
(libpart (lib Regulator_Linear) (part AP1117-15)
(aliases
(alias AP1117-18)
(alias AP1117-25)
(alias AP1117-33)
(alias AP1117-50)
(alias LD1117S33TR_SOT223)
(alias LD1117S12TR_SOT223)
(alias LD1117S18TR_SOT223)
(alias LD1117S25TR_SOT223)
(alias LD1117S50TR_SOT223)
(alias NCP1117-12_SOT223)
(alias NCP1117-1.5_SOT223)
(alias NCP1117-1.8_SOT223)
(alias NCP1117-2.0_SOT223)
(alias NCP1117-2.5_SOT223)
(alias NCP1117-2.85_SOT223)
(alias NCP1117-3.3_SOT223)
(alias NCP1117-5.0_SOT223)
(alias AMS1117-1.5)
(alias AMS1117-1.8)
(alias AMS1117-2.5)
(alias AMS1117-2.85)
(alias AMS1117-3.3)
(alias AMS1117-5.0))
(description "1A Low Dropout regulator, positive, 1.5V fixed output, SOT-223")
(docs http://www.diodes.com/datasheets/AP1117.pdf)
(footprints
(fp SOT?223*TabPin2*))
(fields
(field (name Reference) U)
(field (name Value) AP1117-15)
(field (name Footprint) Package_TO_SOT_SMD:SOT-223-3_TabPin2))
(pins
(pin (num 1) (name GND) (type power_in))
(pin (num 2) (name VO) (type power_out))
(pin (num 3) (name VI) (type power_in)))))
(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 Interface_CAN_LIN)
(uri /usr/share/kicad/library/Interface_CAN_LIN.lib))
(library (logical MCU_ST_STM32F1)
(uri /usr/share/kicad/library/MCU_ST_STM32F1.lib))
(library (logical Mechanical)
(uri /usr/share/kicad/library/Mechanical.lib))
(library (logical OBD2)
(uri /home/connor/workspace/MegaBote/MegaBote/OBD2.lib))
(library (logical Power_Protection)
(uri /usr/share/kicad/library/Power_Protection.lib))
(library (logical Regulator_Linear)
(uri /usr/share/kicad/library/Regulator_Linear.lib)))
(nets
(net (code 1) (name "Net-(U4-Pad43)")
(node (ref U4) (pin 43)))
(net (code 2) (name "Net-(U4-Pad4)")
(node (ref U4) (pin 4)))
(net (code 3) (name "Net-(U4-Pad36)")
(node (ref U4) (pin 36)))
(net (code 4) (name "Net-(U4-Pad35)")
(node (ref U4) (pin 35)))
(net (code 5) (name "Net-(U4-Pad34)")
(node (ref U4) (pin 34)))
(net (code 6) (name "Net-(U4-Pad30)")
(node (ref U4) (pin 30)))
(net (code 7) (name "Net-(U4-Pad29)")
(node (ref U4) (pin 29)))
(net (code 8) (name "Net-(U4-Pad59)")
(node (ref U4) (pin 59)))
(net (code 9) (name "Net-(U4-Pad58)")
(node (ref U4) (pin 58)))
(net (code 10) (name "Net-(U4-Pad57)")
(node (ref U4) (pin 57)))
(net (code 11) (name "Net-(U4-Pad56)")
(node (ref U4) (pin 56)))
(net (code 12) (name "Net-(U4-Pad28)")
(node (ref U4) (pin 28)))
(net (code 13) (name "Net-(U4-Pad27)")
(node (ref U4) (pin 27)))
(net (code 14) (name "Net-(U4-Pad26)")
(node (ref U4) (pin 26)))
(net (code 15) (name "Net-(U4-Pad50)")
(node (ref U4) (pin 50)))
(net (code 16) (name "Net-(U4-Pad3)")
(node (ref U4) (pin 3)))
(net (code 17) (name "Net-(U4-Pad41)")
(node (ref U4) (pin 41)))
(net (code 18) (name "Net-(U4-Pad17)")
(node (ref U4) (pin 17)))
(net (code 19) (name "Net-(U4-Pad16)")
(node (ref U4) (pin 16)))
(net (code 20) (name "Net-(U4-Pad15)")
(node (ref U4) (pin 15)))
(net (code 21) (name "Net-(U4-Pad14)")
(node (ref U4) (pin 14)))
(net (code 22) (name "Net-(D3-Pad2)")
(node (ref D3) (pin 2))
(node (ref U4) (pin 33)))
(net (code 23) (name "Net-(D3-Pad1)")
(node (ref D3) (pin 1))
(node (ref R5) (pin 1)))
(net (code 24) (name GND)
(node (ref C14) (pin 2))
(node (ref U2) (pin 1))
(node (ref R5) (pin 2))
(node (ref U4) (pin 18))
(node (ref H4) (pin 1))
(node (ref H3) (pin 1))
(node (ref R1) (pin 2))
(node (ref R3) (pin 2))
(node (ref C10) (pin 1))
(node (ref C2) (pin 2))
(node (ref C11) (pin 2))
(node (ref C8) (pin 1))
(node (ref H2) (pin 1))
(node (ref C13) (pin 2))
(node (ref J3) (pin 4))
(node (ref C12) (pin 2))
(node (ref C9) (pin 2))
(node (ref C7) (pin 2))
(node (ref C6) (pin 2))
(node (ref C4) (pin 1))
(node (ref C3) (pin 1))
(node (ref H1) (pin 1))
(node (ref J4) (pin 9))
(node (ref J4) (pin 5))
(node (ref J4) (pin 3))
(node (ref U1) (pin 2))
(node (ref J1) (pin 5))
(node (ref C5) (pin 2))
(node (ref R4) (pin 2))
(node (ref U4) (pin 12))
(node (ref U4) (pin 63))
(node (ref U4) (pin 47))
(node (ref U4) (pin 31))
(node (ref HSE1) (pin 4))
(node (ref HSE1) (pin 2))
(node (ref J2) (pin 4))
(node (ref C1) (pin 1)))
(net (code 25) (name "Net-(U4-Pad24)")
(node (ref U4) (pin 24)))
(net (code 26) (name "Net-(D2-Pad1)")
(node (ref D2) (pin 1))
(node (ref R3) (pin 1)))
(net (code 27) (name "Net-(U4-Pad25)")
(node (ref U4) (pin 25)))
(net (code 28) (name "Net-(U4-Pad11)")
(node (ref U4) (pin 11)))
(net (code 29) (name "Net-(U4-Pad10)")
(node (ref U4) (pin 10)))
(net (code 30) (name "Net-(U4-Pad9)")
(node (ref U4) (pin 9)))
(net (code 31) (name "Net-(U4-Pad8)")
(node (ref U4) (pin 8)))
(net (code 32) (name "Net-(U4-Pad54)")
(node (ref U4) (pin 54)))
(net (code 33) (name "Net-(U4-Pad37)")
(node (ref U4) (pin 37)))
(net (code 34) (name "Net-(U4-Pad38)")
(node (ref U4) (pin 38)))
(net (code 35) (name "Net-(U4-Pad39)")
(node (ref U4) (pin 39)))
(net (code 36) (name "Net-(U4-Pad40)")
(node (ref U4) (pin 40)))
(net (code 37) (name "Net-(U4-Pad51)")
(node (ref U4) (pin 51)))
(net (code 38) (name "Net-(U4-Pad52)")
(node (ref U4) (pin 52)))
(net (code 39) (name "Net-(U4-Pad53)")
(node (ref U4) (pin 53)))
(net (code 40) (name "Net-(U4-Pad2)")
(node (ref U4) (pin 2)))
(net (code 41) (name +3V3)
(node (ref U4) (pin 48))
(node (ref U4) (pin 1))
(node (ref U4) (pin 19))
(node (ref U4) (pin 32))
(node (ref J3) (pin 6))
(node (ref U2) (pin 2))
(node (ref U1) (pin 3))
(node (ref C13) (pin 1))
(node (ref C14) (pin 1))
(node (ref C3) (pin 2))
(node (ref D2) (pin 2))
(node (ref U4) (pin 13))
(node (ref C5) (pin 1))
(node (ref C2) (pin 1))
(node (ref U4) (pin 64))
(node (ref J4) (pin 1))
(node (ref C4) (pin 2))
(node (ref C6) (pin 1))
(node (ref C7) (pin 1))
(node (ref C9) (pin 1))
(node (ref C12) (pin 1)))
(net (code 42) (name BOOT0)
(node (ref U4) (pin 60))
(node (ref R4) (pin 1)))
(net (code 43) (name "Net-(J4-Pad8)")
(node (ref J4) (pin 8)))
(net (code 44) (name "Net-(J2-Pad10)")
(node (ref J2) (pin 10)))
(net (code 45) (name VCC)
(node (ref J2) (pin 16))
(node (ref D1) (pin 2)))
(net (code 46) (name "Net-(J2-Pad7)")
(node (ref J2) (pin 7)))
(net (code 47) (name CANH)
(node (ref U1) (pin 7))
(node (ref J2) (pin 6))
(node (ref R2) (pin 2)))
(net (code 48) (name "Net-(J2-Pad5)")
(node (ref J2) (pin 5)))
(net (code 49) (name "Net-(J2-Pad2)")
(node (ref J2) (pin 2)))
(net (code 50) (name "Net-(J2-Pad15)")
(node (ref J2) (pin 15)))
(net (code 51) (name CANL)
(node (ref J2) (pin 14))
(node (ref JP2) (pin 2))
(node (ref U1) (pin 6)))
(net (code 52) (name "Net-(J2-Pad1)")
(node (ref J2) (pin 1)))
(net (code 53) (name "Net-(R1-Pad1)")
(node (ref R1) (pin 1))
(node (ref U1) (pin 8)))
(net (code 54) (name "Net-(J3-Pad8)")
(node (ref J3) (pin 8)))
(net (code 55) (name "Net-(J3-Pad10)")
(node (ref J3) (pin 10)))
(net (code 56) (name "Net-(J3-Pad9)")
(node (ref J3) (pin 9)))
(net (code 57) (name "Net-(J3-Pad1)")
(node (ref J3) (pin 1)))
(net (code 58) (name USB_VBUS)
(node (ref U4) (pin 42))
(node (ref JP1) (pin 2)))
(net (code 59) (name "Net-(J1-Pad1)")
(node (ref JP1) (pin 1))
(node (ref J1) (pin 1)))
(net (code 61) (name "Net-(J1-Pad6)")
(node (ref J1) (pin 6)))
(net (code 62) (name "Net-(J1-Pad4)")
(node (ref J1) (pin 4)))
(net (code 63) (name "Net-(U3-Pad5)")
(node (ref U3) (pin 5)))
(net (code 64) (name USB_D-)
(node (ref U4) (pin 44))
(node (ref U3) (pin 3)))
(net (code 65) (name "Net-(U3-Pad2)")
(node (ref U3) (pin 2)))
(net (code 66) (name USB_D+)
(node (ref U4) (pin 45))
(node (ref U3) (pin 1)))
(net (code 67) (name "Net-(J4-Pad7)")
(node (ref J4) (pin 7)))
(net (code 68) (name SWCLK)
(node (ref J4) (pin 4))
(node (ref U4) (pin 49)))
(net (code 69) (name SWDIO)
(node (ref U4) (pin 46))
(node (ref J4) (pin 2)))
(net (code 70) (name NRST)
(node (ref C11) (pin 1))
(node (ref J4) (pin 10))
(node (ref U4) (pin 7)))
(net (code 71) (name SWO)
(node (ref U4) (pin 55))
(node (ref J4) (pin 6)))
(net (code 72) (name CAN1_TX)
(node (ref U4) (pin 62))
(node (ref U1) (pin 1)))
(net (code 73) (name USB_CONN_D+)
(node (ref U3) (pin 6))
(node (ref J1) (pin 3)))
(net (code 74) (name USB_CONN_D-)
(node (ref J1) (pin 2))
(node (ref U3) (pin 4)))
(net (code 75) (name MISO)
(node (ref U4) (pin 22))
(node (ref J3) (pin 7)))
(net (code 76) (name SCK)
(node (ref U4) (pin 21))
(node (ref J3) (pin 5)))
(net (code 77) (name MOSI)
(node (ref J3) (pin 3))
(node (ref U4) (pin 23)))
(net (code 78) (name SD_CS)
(node (ref U4) (pin 20))
(node (ref J3) (pin 2)))
(net (code 79) (name "Net-(J3-Pad11)")
(node (ref J3) (pin 11)))
(net (code 80) (name "Net-(JP2-Pad1)")
(node (ref JP2) (pin 1))
(node (ref R2) (pin 1)))
(net (code 81) (name "Net-(U1-Pad5)")
(node (ref U1) (pin 5)))
(net (code 82) (name CAN1_RX)
(node (ref U1) (pin 4))
(node (ref U4) (pin 61)))
(net (code 83) (name HSE_IN)
(node (ref C8) (pin 2))
(node (ref U4) (pin 5))
(node (ref HSE1) (pin 1)))
(net (code 84) (name "Net-(F1-Pad2)")
(node (ref F1) (pin 2))
(node (ref FB1) (pin 2)))
(net (code 85) (name "Net-(D1-Pad1)")
(node (ref F1) (pin 1))
(node (ref D1) (pin 1)))
(net (code 86) (name "Net-(C1-Pad2)")
(node (ref U2) (pin 3))
(node (ref C1) (pin 2))
(node (ref FB1) (pin 1)))
(net (code 87) (name HSE_OUT)
(node (ref U4) (pin 6))