-
Notifications
You must be signed in to change notification settings - Fork 1
/
openSTM32F4_LQFP64.kicad_pcb
7462 lines (7377 loc) · 590 KB
/
openSTM32F4_LQFP64.kicad_pcb
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
(kicad_pcb (version 20171130) (host pcbnew 5.1.6-c6e7f7d~86~ubuntu16.04.1)
(general
(thickness 1.6)
(drawings 91)
(tracks 1162)
(zones 0)
(modules 77)
(nets 78)
)
(page A4)
(layers
(0 F.Cu signal)
(31 B.Cu signal)
(32 B.Adhes user hide)
(33 F.Adhes user hide)
(34 B.Paste user hide)
(35 F.Paste user hide)
(36 B.SilkS user hide)
(37 F.SilkS user hide)
(38 B.Mask user)
(39 F.Mask user hide)
(40 Dwgs.User user)
(41 Cmts.User user)
(42 Eco1.User user)
(43 Eco2.User user)
(44 Edge.Cuts user)
(45 Margin user)
(46 B.CrtYd user hide)
(47 F.CrtYd user hide)
(48 B.Fab user hide)
(49 F.Fab user hide)
)
(setup
(last_trace_width 0.2)
(user_trace_width 0.25)
(user_trace_width 0.4)
(user_trace_width 0.5)
(user_trace_width 1)
(user_trace_width 1.5)
(trace_clearance 0.2)
(zone_clearance 0.2)
(zone_45_only yes)
(trace_min 0.2)
(via_size 0.8)
(via_drill 0.4)
(via_min_size 0.4)
(via_min_drill 0.3)
(uvia_size 0.3)
(uvia_drill 0.1)
(uvias_allowed no)
(uvia_min_size 0.2)
(uvia_min_drill 0.1)
(edge_width 0.05)
(segment_width 0.2)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.12)
(mod_text_size 1 1)
(mod_text_width 0.15)
(pad_size 0.8 0.8)
(pad_drill 0.4)
(pad_to_mask_clearance 0.051)
(solder_mask_min_width 0.25)
(aux_axis_origin 0 0)
(grid_origin 75.5396 115.42268)
(visible_elements FFFFFF7F)
(pcbplotparams
(layerselection 0x010fc_ffffffff)
(usegerberextensions false)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(excludeedgelayer true)
(linewidth 0.100000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "assets/gerber/"))
)
(net 0 "")
(net 1 GND)
(net 2 +5V)
(net 3 +3V3)
(net 4 BUTTON)
(net 5 "Net-(C9-Pad1)")
(net 6 "Net-(C10-Pad1)")
(net 7 "Net-(C11-Pad1)")
(net 8 "Net-(C12-Pad1)")
(net 9 "Net-(C15-Pad1)")
(net 10 "Net-(C17-Pad2)")
(net 11 "Net-(C17-Pad1)")
(net 12 "Net-(C18-Pad1)")
(net 13 NRST)
(net 14 "Net-(C26-Pad1)")
(net 15 "Net-(D1-Pad1)")
(net 16 5V_USB)
(net 17 "Net-(D6-Pad1)")
(net 18 "Net-(D7-Pad2)")
(net 19 CP2102_RXD)
(net 20 "Net-(D8-Pad2)")
(net 21 CP2102_TXD])
(net 22 UART6_RXD)
(net 23 UART6_TXD)
(net 24 PB2)
(net 25 TIM11_PWM1)
(net 26 TIM10_PWM1)
(net 27 TIM12_PWM2)
(net 28 TIM12_PWM1)
(net 29 UART1_RXD)
(net 30 UART1_TXD)
(net 31 BOOT0)
(net 32 MOTOR_LEFT_DIR)
(net 33 MOTOR_LEFT_PULSE)
(net 34 MOTOR_RIGHT_DIR)
(net 35 MOTOR_RIGHT_PULSE)
(net 36 DAC1)
(net 37 ADC3)
(net 38 ADC2)
(net 39 ADC1)
(net 40 ADC0)
(net 41 "Net-(J13-Pad2)")
(net 42 "Net-(J13-Pad3)")
(net 43 RESOLVER_RIGHT)
(net 44 RESOLVER_LEFT)
(net 45 I2C2_SDA)
(net 46 I2C2_SCL)
(net 47 SPI1_MOSI)
(net 48 SPI1_MISO)
(net 49 SPI1_SCK)
(net 50 I2S2_EXT_SD)
(net 51 I2S2_SD)
(net 52 I2S2_CK)
(net 53 I2S2_WS)
(net 54 "Net-(R4-Pad2)")
(net 55 "Net-(R6-Pad2)")
(net 56 MPU9250_SCL)
(net 57 "Net-(R9-Pad1)")
(net 58 MPU9250_SDA)
(net 59 "Net-(R11-Pad1)")
(net 60 "Net-(R12-Pad2)")
(net 61 LED_STT1)
(net 62 "Net-(J8-Pad4)")
(net 63 "Net-(J8-Pad3)")
(net 64 SWCLK)
(net 65 SWDIO)
(net 66 PD2)
(net 67 PA15)
(net 68 PC8)
(net 69 PC9)
(net 70 PA8)
(net 71 PA11)
(net 72 PC12)
(net 73 PC13)
(net 74 PC15)
(net 75 PC14)
(net 76 UART4_TXD)
(net 77 UART4_RXD)
(net_class Default "This is the default net class."
(clearance 0.2)
(trace_width 0.2)
(via_dia 0.8)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net +3V3)
(add_net +5V)
(add_net 5V_USB)
(add_net ADC0)
(add_net ADC1)
(add_net ADC2)
(add_net ADC3)
(add_net BOOT0)
(add_net BUTTON)
(add_net CP2102_RXD)
(add_net CP2102_TXD])
(add_net DAC1)
(add_net GND)
(add_net I2C2_SCL)
(add_net I2C2_SDA)
(add_net I2S2_CK)
(add_net I2S2_EXT_SD)
(add_net I2S2_SD)
(add_net I2S2_WS)
(add_net LED_STT1)
(add_net MOTOR_LEFT_DIR)
(add_net MOTOR_LEFT_PULSE)
(add_net MOTOR_RIGHT_DIR)
(add_net MOTOR_RIGHT_PULSE)
(add_net MPU9250_SCL)
(add_net MPU9250_SDA)
(add_net NRST)
(add_net "Net-(C10-Pad1)")
(add_net "Net-(C11-Pad1)")
(add_net "Net-(C12-Pad1)")
(add_net "Net-(C15-Pad1)")
(add_net "Net-(C17-Pad1)")
(add_net "Net-(C17-Pad2)")
(add_net "Net-(C18-Pad1)")
(add_net "Net-(C26-Pad1)")
(add_net "Net-(C9-Pad1)")
(add_net "Net-(D1-Pad1)")
(add_net "Net-(D6-Pad1)")
(add_net "Net-(D7-Pad2)")
(add_net "Net-(D8-Pad2)")
(add_net "Net-(J13-Pad2)")
(add_net "Net-(J13-Pad3)")
(add_net "Net-(J8-Pad3)")
(add_net "Net-(J8-Pad4)")
(add_net "Net-(R11-Pad1)")
(add_net "Net-(R12-Pad2)")
(add_net "Net-(R4-Pad2)")
(add_net "Net-(R6-Pad2)")
(add_net "Net-(R9-Pad1)")
(add_net PA11)
(add_net PA15)
(add_net PA8)
(add_net PB2)
(add_net PC12)
(add_net PC13)
(add_net PC14)
(add_net PC15)
(add_net PC8)
(add_net PC9)
(add_net PD2)
(add_net RESOLVER_LEFT)
(add_net RESOLVER_RIGHT)
(add_net SPI1_MISO)
(add_net SPI1_MOSI)
(add_net SPI1_SCK)
(add_net SWCLK)
(add_net SWDIO)
(add_net TIM10_PWM1)
(add_net TIM11_PWM1)
(add_net TIM12_PWM1)
(add_net TIM12_PWM2)
(add_net UART1_RXD)
(add_net UART1_TXD)
(add_net UART4_RXD)
(add_net UART4_TXD)
(add_net UART6_RXD)
(add_net UART6_TXD)
)
(module Package_SO:TI_SO-PowerPAD-8_ThermalVias (layer F.Cu) (tedit 5ED460E1) (tstamp 5EA0849D)
(at 159.9946 57.6961 90)
(descr "8-pin HTSOP package with 1.27mm pin pitch, compatible with SOIC-8, 3.9x4.9mm² body, exposed pad, thermal vias with large copper area, as proposed in http://www.ti.com/lit/ds/symlink/tps5430.pdf")
(tags "HTSOP 1.27")
(path /5EC362EA)
(attr smd)
(fp_text reference U2 (at 1.69926 3.68554 180) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(fp_text value TPS5430DDA (at 0 3.5 90) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(fp_line (start -2.075 -2.525) (end -3.475 -2.525) (layer F.SilkS) (width 0.15))
(fp_line (start -2.075 2.575) (end 2.075 2.575) (layer F.SilkS) (width 0.15))
(fp_line (start -2.075 -2.575) (end 2.075 -2.575) (layer F.SilkS) (width 0.15))
(fp_line (start -2.075 2.575) (end -2.075 2.43) (layer F.SilkS) (width 0.15))
(fp_line (start 2.075 2.575) (end 2.075 2.43) (layer F.SilkS) (width 0.15))
(fp_line (start 2.075 -2.575) (end 2.075 -2.43) (layer F.SilkS) (width 0.15))
(fp_line (start -2.075 -2.575) (end -2.075 -2.525) (layer F.SilkS) (width 0.15))
(fp_line (start -3.75 2.75) (end 3.75 2.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -3.75 -2.75) (end 3.75 -2.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.75 -2.75) (end 3.75 2.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -3.75 -2.75) (end -3.75 2.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.95 -1.45) (end -0.95 -2.45) (layer F.Fab) (width 0.15))
(fp_line (start -1.95 2.45) (end -1.95 -1.45) (layer F.Fab) (width 0.15))
(fp_line (start 1.95 2.45) (end -1.95 2.45) (layer F.Fab) (width 0.15))
(fp_line (start 1.95 -2.45) (end 1.95 2.45) (layer F.Fab) (width 0.15))
(fp_line (start -0.95 -2.45) (end 1.95 -2.45) (layer F.Fab) (width 0.15))
(fp_text user %R (at 0 0 90) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(pad 9 thru_hole circle (at 0.6 1.8 90) (size 0.8 0.8) (drill 0.4) (layers *.Cu)
(net 1 GND))
(pad 9 thru_hole circle (at 0.6 0.7 90) (size 0.8 0.8) (drill 0.4) (layers *.Cu)
(net 1 GND))
(pad 9 thru_hole circle (at -0.6 0.7 90) (size 0.8 0.8) (drill 0.4) (layers *.Cu)
(net 1 GND))
(pad 9 thru_hole circle (at -0.6 1.8 90) (size 0.8 0.8) (drill 0.4) (layers *.Cu)
(net 1 GND))
(pad 9 thru_hole circle (at 0.6 -1.8 90) (size 0.8 0.8) (drill 0.4) (layers *.Cu)
(net 1 GND))
(pad 9 thru_hole circle (at 0.6 -0.6 90) (size 0.8 0.8) (drill 0.4) (layers *.Cu)
(net 1 GND))
(pad 9 thru_hole circle (at -0.6 -0.6 90) (size 0.8 0.8) (drill 0.4) (layers *.Cu)
(net 1 GND))
(pad 9 thru_hole circle (at -0.6 -1.8 90) (size 0.8 0.8) (drill 0.4) (layers *.Cu)
(net 1 GND))
(pad 9 smd rect (at 0 0 90) (size 2.95 4.5) (layers B.Cu)
(net 1 GND))
(pad 8 smd rect (at 2.7 -1.905 90) (size 1.55 0.6) (layers F.Cu F.Paste F.Mask)
(net 10 "Net-(C17-Pad2)"))
(pad 7 smd rect (at 2.7 -0.635 90) (size 1.55 0.6) (layers F.Cu F.Paste F.Mask)
(net 9 "Net-(C15-Pad1)"))
(pad 6 smd rect (at 2.7 0.635 90) (size 1.55 0.6) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 5 smd rect (at 2.7 1.905 90) (size 1.55 0.6) (layers F.Cu F.Paste F.Mask))
(pad 4 smd rect (at -2.7 1.905 90) (size 1.55 0.6) (layers F.Cu F.Paste F.Mask)
(net 54 "Net-(R4-Pad2)"))
(pad 3 smd rect (at -2.7 0.635 90) (size 1.55 0.6) (layers F.Cu F.Paste F.Mask))
(pad 2 smd rect (at -2.7 -0.635 90) (size 1.55 0.6) (layers F.Cu F.Paste F.Mask))
(pad 1 smd rect (at -2.7 -1.905 90) (size 1.55 0.6) (layers F.Cu F.Paste F.Mask)
(net 11 "Net-(C17-Pad1)"))
(pad 9 smd rect (at 0 0 90) (size 2.95 4.5) (layers F.Cu)
(net 1 GND))
(pad 9 smd rect (at 0 0 90) (size 2.6 3.1) (layers F.Cu F.Paste F.Mask))
(model ${KISYS3DMOD}/Package_SO.3dshapes/HTSOP-8-1EP_3.9x4.9mm_Pitch1.27mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module footprints:MPU9250 (layer F.Cu) (tedit 5ED3E62D) (tstamp 5EA5C3D2)
(at 180.85308 90.77452)
(path /5EF4AC70)
(fp_text reference U4 (at 0 0.5) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value MPU-9250 (at 0 -0.5) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 2.12 -2.12) (end -2.12 -2.12) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.12 2.12) (end 2.12 -2.12) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.12 2.12) (end 2.12 2.12) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.12 -2.12) (end -2.12 2.12) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.5 -0.75) (end -0.75 -1.5) (layer F.Fab) (width 0.1))
(fp_line (start -1.5 1.5) (end -1.5 -0.75) (layer F.Fab) (width 0.1))
(fp_line (start 1.5 1.5) (end -1.5 1.5) (layer F.Fab) (width 0.1))
(fp_line (start 1.5 -1.5) (end 1.5 1.5) (layer F.Fab) (width 0.1))
(fp_line (start -0.75 -1.5) (end 1.5 -1.5) (layer F.Fab) (width 0.1))
(fp_line (start -1.36 -1.61) (end -1.61 -1.61) (layer F.SilkS) (width 0.12))
(fp_line (start 1.61 1.61) (end 1.61 1.36) (layer F.SilkS) (width 0.12))
(fp_line (start 1.36 1.61) (end 1.61 1.61) (layer F.SilkS) (width 0.12))
(fp_line (start -1.61 1.61) (end -1.61 1.36) (layer F.SilkS) (width 0.12))
(fp_line (start -1.36 1.61) (end -1.61 1.61) (layer F.SilkS) (width 0.12))
(fp_line (start 1.61 -1.61) (end 1.61 -1.36) (layer F.SilkS) (width 0.12))
(fp_line (start 1.36 -1.61) (end 1.61 -1.61) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.75 0.75) (thickness 0.11)))
)
(pad 2 smd roundrect (at -1.5 -0.6) (size 0.75 0.2) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25))
(pad 3 smd roundrect (at -1.5 -0.2) (size 0.75 0.2) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25))
(pad 4 smd roundrect (at -1.5 0.2) (size 0.75 0.2) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25))
(pad 5 smd roundrect (at -1.5 0.6) (size 0.75 0.2) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25))
(pad 10 smd roundrect (at 0.2 1.5) (size 0.2 0.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 14 "Net-(C26-Pad1)"))
(pad 11 smd roundrect (at 0.6 1.5) (size 0.2 0.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 59 "Net-(R11-Pad1)"))
(pad 12 smd custom (at 1 1.5) (size 0.115147 0.115147) (layers F.Cu F.Paste F.Mask)
(options (clearance outline) (anchor circle))
(primitives
(gr_poly (pts
(xy -0.06 -0.335) (xy -0.036569 -0.335) (xy 0.06 -0.238431) (xy 0.06 0.335) (xy -0.06 0.335)
) (width 0.08))
))
(pad 6 smd custom (at -1.5 1) (size 0.115147 0.115147) (layers F.Cu F.Paste F.Mask)
(options (clearance outline) (anchor circle))
(primitives
(gr_poly (pts
(xy -0.335 -0.06) (xy 0.335 -0.06) (xy 0.335 -0.036569) (xy 0.238431 0.06) (xy -0.335 0.06)
) (width 0.08))
))
(pad 7 smd custom (at -1 1.5) (size 0.115147 0.115147) (layers F.Cu F.Paste F.Mask)
(options (clearance outline) (anchor circle))
(primitives
(gr_poly (pts
(xy -0.06 -0.238431) (xy 0.036569 -0.335) (xy 0.06 -0.335) (xy 0.06 0.335) (xy -0.06 0.335)
) (width 0.08))
))
(pad 13 smd custom (at 1.5 1) (size 0.115147 0.115147) (layers F.Cu F.Paste F.Mask)
(net 3 +3V3)
(options (clearance outline) (anchor circle))
(primitives
(gr_poly (pts
(xy -0.335 -0.06) (xy 0.335 -0.06) (xy 0.335 0.06) (xy -0.238431 0.06) (xy -0.335 -0.036569)
) (width 0.08))
))
(pad 14 smd roundrect (at 1.5 0.6) (size 0.75 0.2) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25))
(pad 15 smd roundrect (at 1.5 0.2) (size 0.75 0.2) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25))
(pad 8 smd roundrect (at -0.6 1.5) (size 0.2 0.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 3 +3V3))
(pad 9 smd roundrect (at -0.2 1.5) (size 0.2 0.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 57 "Net-(R9-Pad1)"))
(pad 1 smd custom (at -1.5 -1) (size 0.115147 0.115147) (layers F.Cu F.Paste F.Mask)
(net 3 +3V3)
(options (clearance outline) (anchor circle))
(primitives
(gr_poly (pts
(xy -0.335 -0.06) (xy 0.238431 -0.06) (xy 0.335 0.036569) (xy 0.335 0.06) (xy -0.335 0.06)
) (width 0.08))
))
(pad 16 smd roundrect (at 1.5 -0.2) (size 0.75 0.2) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25))
(pad 17 smd roundrect (at 1.5 -0.6) (size 0.75 0.2) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25))
(pad 18 smd custom (at 1.5 -1) (size 0.115147 0.115147) (layers F.Cu F.Paste F.Mask)
(net 1 GND)
(options (clearance outline) (anchor circle))
(primitives
(gr_poly (pts
(xy -0.335 0.036569) (xy -0.238431 -0.06) (xy 0.335 -0.06) (xy 0.335 0.06) (xy -0.335 0.06)
) (width 0.08))
))
(pad 19 smd custom (at 1 -1.5) (size 0.115147 0.115147) (layers F.Cu F.Paste F.Mask)
(options (clearance outline) (anchor circle))
(primitives
(gr_poly (pts
(xy -0.06 -0.335) (xy 0.06 -0.335) (xy 0.06 0.238431) (xy -0.036569 0.335) (xy -0.06 0.335)
) (width 0.08))
))
(pad 20 smd roundrect (at 0.6 -1.5) (size 0.2 0.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 1 GND))
(pad 21 smd roundrect (at 0.2 -1.5) (size 0.2 0.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25))
(pad 22 smd roundrect (at -0.2 -1.5) (size 0.2 0.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 55 "Net-(R6-Pad2)"))
(pad 23 smd roundrect (at -0.6 -1.5) (size 0.2 0.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 56 MPU9250_SCL))
(pad 24 smd custom (at -1 -1.5) (size 0.115147 0.115147) (layers F.Cu F.Paste F.Mask)
(net 58 MPU9250_SDA)
(options (clearance outline) (anchor circle))
(primitives
(gr_poly (pts
(xy -0.06 -0.335) (xy 0.06 -0.335) (xy 0.06 0.335) (xy 0.036569 0.335) (xy -0.06 0.238431)
) (width 0.08))
))
(pad GND smd rect (at 0 0) (size 1.75 1.6) (layers F.Cu F.Mask)
(net 1 GND))
(pad "" smd roundrect (at -0.44 -0.4) (size 0.71 0.64) (layers F.Paste) (roundrect_rratio 0.25))
(pad "" smd roundrect (at -0.44 0.4) (size 0.71 0.64) (layers F.Paste) (roundrect_rratio 0.25))
(pad "" smd roundrect (at 0.44 -0.4) (size 0.71 0.64) (layers F.Paste) (roundrect_rratio 0.25))
(pad "" smd roundrect (at 0.44 0.4) (size 0.71 0.64) (layers F.Paste) (roundrect_rratio 0.25))
)
(module Connector_BarrelJack:BarrelJack_Wuerth_6941xx301002 (layer F.Cu) (tedit 5B191DE1) (tstamp 5EA4031C)
(at 151.2316 51.66868 180)
(descr "Wuerth electronics barrel jack connector (5.5mm outher diameter, inner diameter 2.05mm or 2.55mm depending on exact order number), See: http://katalog.we-online.de/em/datasheet/6941xx301002.pdf")
(tags "connector barrel jack")
(path /5EA9F141)
(fp_text reference J1 (at 0 -2.5) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Barrel_Jack_Switch (at 0 15.5) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -4.6 -1) (end -2.5 -1) (layer F.SilkS) (width 0.12))
(fp_line (start 6.2 0.5) (end 5 0.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.2 5.5) (end 5 5.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.2 0.5) (end 6.2 5.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 5 0.5) (end 5 -1.4) (layer F.CrtYd) (width 0.05))
(fp_line (start -5 14.1) (end 5 14.1) (layer F.CrtYd) (width 0.05))
(fp_line (start -5 -1.4) (end -5 14.1) (layer F.CrtYd) (width 0.05))
(fp_line (start 5 -1.4) (end -5 -1.4) (layer F.CrtYd) (width 0.05))
(fp_line (start -4.9 -1.3) (end -4.9 0.3) (layer F.SilkS) (width 0.12))
(fp_line (start -3.2 -1.3) (end -4.9 -1.3) (layer F.SilkS) (width 0.12))
(fp_line (start 4.6 -1) (end 4.6 0.8) (layer F.SilkS) (width 0.12))
(fp_line (start 2.5 -1) (end 4.6 -1) (layer F.SilkS) (width 0.12))
(fp_line (start -4.6 13.7) (end -4.6 -1) (layer F.SilkS) (width 0.12))
(fp_line (start 4.6 13.7) (end -4.6 13.7) (layer F.SilkS) (width 0.12))
(fp_line (start -4.5 13.6) (end -4.5 0.1) (layer F.Fab) (width 0.1))
(fp_line (start 4.5 13.6) (end -4.5 13.6) (layer F.Fab) (width 0.1))
(fp_line (start 4.5 -0.9) (end 4.5 13.6) (layer F.Fab) (width 0.1))
(fp_line (start 4.5 -0.9) (end -3.5 -0.9) (layer F.Fab) (width 0.1))
(fp_line (start -4.5 0.1) (end -3.5 -0.9) (layer F.Fab) (width 0.1))
(fp_line (start 4.6 5.2) (end 4.6 13.7) (layer F.SilkS) (width 0.12))
(fp_line (start 5 14.1) (end 5 5.5) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 7.5) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0 180) (size 4.4 1.8) (drill oval 3.4 0.8) (layers *.Cu *.Mask)
(net 9 "Net-(C15-Pad1)"))
(pad 2 thru_hole oval (at 0 5.8 180) (size 4 1.8) (drill oval 3 0.8) (layers *.Cu *.Mask)
(net 1 GND))
(pad 3 thru_hole oval (at 4.8 3 270) (size 4 1.8) (drill oval 3 0.8) (layers *.Cu *.Mask)
(net 1 GND))
(model ${KIPRJMOD}/kicad-library/3D/JackDC_5.5mmx2.1mm.step
(offset (xyz 0 -8 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 180))
)
)
(module footprints:openSTM32F4_LQFP64_outline (layer F.Cu) (tedit 5EA2B0F6) (tstamp 5EB757BE)
(at 193.81724 109.63148)
(path /5ED741CE)
(fp_text reference U6 (at -53.9 3.95) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value outline (at -54.05 -0.525) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center -51.05 -65.025) (end -49.55 -65.025) (layer F.SilkS) (width 0.12))
(fp_circle (center -3.05 -65.025) (end -1.55 -65.025) (layer F.SilkS) (width 0.12))
(fp_circle (center -3.05 -3.025) (end -1.55 -3.025) (layer F.SilkS) (width 0.12))
(fp_circle (center -51.05 -3.025) (end -49.55 -3.025) (layer F.SilkS) (width 0.12))
(fp_line (start -0.05 -0.025) (end -54.05 -0.025) (layer F.SilkS) (width 0.12))
(fp_line (start -0.05 -68.025) (end -0.05 -0.025) (layer F.SilkS) (width 0.12))
(fp_line (start -54.05 -68.025) (end -0.05 -68.025) (layer F.SilkS) (width 0.12))
(fp_line (start -54.05 -0.025) (end -54.05 -68.025) (layer F.SilkS) (width 0.12))
)
(module Connector_PinHeader_2.54mm:PinHeader_2x05_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 5EB08CC2)
(at 189.0141 91.44508)
(descr "Through hole straight pin header, 2x05, 2.54mm pitch, double rows")
(tags "Through hole pin header THT 2x05 2.54mm double row")
(path /5EE5B9AE)
(fp_text reference J5 (at 3.58902 12.7381) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(fp_text value Conn_02x05_Odd_Even (at 1.27 12.49) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(fp_line (start 4.35 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.35 11.95) (end 4.35 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 11.95) (end 4.35 11.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 -1.8) (end -1.8 11.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 1.27 -1.33) (end 3.87 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 1.27 1.27) (end 1.27 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end 1.27 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 3.87 -1.33) (end 3.87 11.49) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end -1.33 11.49) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 11.49) (end 3.87 11.49) (layer F.SilkS) (width 0.12))
(fp_line (start -1.27 0) (end 0 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 11.43) (end -1.27 0) (layer F.Fab) (width 0.1))
(fp_line (start 3.81 11.43) (end -1.27 11.43) (layer F.Fab) (width 0.1))
(fp_line (start 3.81 -1.27) (end 3.81 11.43) (layer F.Fab) (width 0.1))
(fp_line (start 0 -1.27) (end 3.81 -1.27) (layer F.Fab) (width 0.1))
(fp_text user %R (at 1.27 5.08 90) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(pad 10 thru_hole oval (at 2.54 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 68 PC8))
(pad 9 thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 69 PC9))
(pad 8 thru_hole oval (at 2.54 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 70 PA8))
(pad 7 thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 71 PA11))
(pad 6 thru_hole oval (at 2.54 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 66 PD2))
(pad 5 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 72 PC12))
(pad 4 thru_hole oval (at 2.54 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 67 PA15))
(pad 3 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 73 PC13))
(pad 2 thru_hole oval (at 2.54 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 74 PC15))
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 75 PC14))
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x05_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 5EB0AE7D)
(at 183.8452 70.18528 90)
(descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x04 2.54mm single row")
(path /5EE4943A)
(fp_text reference J18 (at 1.23952 -2.8321 180) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(fp_text value Conn_01x04 (at 0 9.95 90) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 9.4) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 9.4) (end 1.8 9.4) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 -1.8) (end -1.8 9.4) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 1.27) (end 1.33 8.95) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end -1.33 8.95) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 8.95) (end 1.33 8.95) (layer F.SilkS) (width 0.12))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 8.89) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 8.89) (end -1.27 8.89) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end 1.27 8.89) (layer F.Fab) (width 0.1))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_text user %R (at 0 3.81) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(pad 4 thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 GND))
(pad 3 thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 64 SWCLK))
(pad 2 thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 65 SWDIO))
(pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 +3V3))
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder (layer F.Cu) (tedit 5B301BBD) (tstamp 5EAFAF91)
(at 156.5783 79.99984)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(path /5EDC5D24)
(attr smd)
(fp_text reference R16 (at -2.81686 0.20574) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(fp_text value 10K (at 0 1.43) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(fp_line (start 1.65 0.73) (end -1.65 0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.171267 0.51) (end 0.171267 0.51) (layer F.SilkS) (width 0.12))
(fp_line (start -0.171267 -0.51) (end 0.171267 -0.51) (layer F.SilkS) (width 0.12))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(pad 2 smd roundrect (at 0.875 0) (size 1.05 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 31 BOOT0))
(pad 1 smd roundrect (at -0.875 0) (size 1.05 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 62 "Net-(J8-Pad4)"))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder (layer F.Cu) (tedit 5B301BBD) (tstamp 5EAFF99B)
(at 156.6164 93.93682)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(path /5EDB1D35)
(attr smd)
(fp_text reference R13 (at -2.84988 -1.33604) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(fp_text value 10K (at 0 1.43) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(fp_line (start 1.65 0.73) (end -1.65 0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.171267 0.51) (end 0.171267 0.51) (layer F.SilkS) (width 0.12))
(fp_line (start -0.171267 -0.51) (end 0.171267 -0.51) (layer F.SilkS) (width 0.12))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(pad 2 smd roundrect (at 0.875 0) (size 1.05 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 63 "Net-(J8-Pad3)"))
(pad 1 smd roundrect (at -0.875 0) (size 1.05 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 24 PB2))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector_PinHeader_2.54mm:PinHeader_2x03_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 5EA40313)
(at 188.976 73.94448)
(descr "Through hole straight pin header, 2x03, 2.54mm pitch, double rows")
(tags "Through hole pin header THT 2x03 2.54mm double row")
(path /5ED10069)
(fp_text reference J3 (at -2.54 -0.82296) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(fp_text value Conn_02x03_Odd_Even (at 1.27 7.41) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(fp_line (start 4.35 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.35 6.85) (end 4.35 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 6.85) (end 4.35 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 1.27 -1.33) (end 3.87 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 1.27 1.27) (end 1.27 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end 1.27 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 3.87 -1.33) (end 3.87 6.41) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end -1.33 6.41) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 6.41) (end 3.87 6.41) (layer F.SilkS) (width 0.12))
(fp_line (start -1.27 0) (end 0 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 6.35) (end -1.27 0) (layer F.Fab) (width 0.1))
(fp_line (start 3.81 6.35) (end -1.27 6.35) (layer F.Fab) (width 0.1))
(fp_line (start 3.81 -1.27) (end 3.81 6.35) (layer F.Fab) (width 0.1))
(fp_line (start 0 -1.27) (end 3.81 -1.27) (layer F.Fab) (width 0.1))
(fp_text user %R (at 1.27 2.54 90) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(pad 6 thru_hole oval (at 2.54 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 GND))
(pad 5 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 +3V3))
(pad 4 thru_hole oval (at 2.54 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 GND))
(pad 3 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 +3V3))
(pad 2 thru_hole oval (at 2.54 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 GND))
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 +3V3))
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x03_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector_PinHeader_2.54mm:PinHeader_2x03_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 5EA402F7)
(at 188.976 82.68208)
(descr "Through hole straight pin header, 2x03, 2.54mm pitch, double rows")
(tags "Through hole pin header THT 2x03 2.54mm double row")
(path /5ECE0DB8)
(fp_text reference J2 (at -2.63398 -1.16332) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(fp_text value Conn_02x03_Odd_Even (at 1.27 7.41) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(fp_line (start 4.35 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.35 6.85) (end 4.35 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 6.85) (end 4.35 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 1.27 -1.33) (end 3.87 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 1.27 1.27) (end 1.27 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end 1.27 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 3.87 -1.33) (end 3.87 6.41) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end -1.33 6.41) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 6.41) (end 3.87 6.41) (layer F.SilkS) (width 0.12))
(fp_line (start -1.27 0) (end 0 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 6.35) (end -1.27 0) (layer F.Fab) (width 0.1))
(fp_line (start 3.81 6.35) (end -1.27 6.35) (layer F.Fab) (width 0.1))
(fp_line (start 3.81 -1.27) (end 3.81 6.35) (layer F.Fab) (width 0.1))
(fp_line (start 0 -1.27) (end 3.81 -1.27) (layer F.Fab) (width 0.1))
(fp_text user %R (at 1.27 2.54 90) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(pad 6 thru_hole oval (at 2.54 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 GND))
(pad 5 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 +5V))
(pad 4 thru_hole oval (at 2.54 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 GND))
(pad 3 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 +5V))
(pad 2 thru_hole oval (at 2.54 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 GND))
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 +5V))
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x03_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector_JST:JST_EH_B3B-EH-A_1x03_P2.50mm_Vertical (layer F.Cu) (tedit 5C28142C) (tstamp 5EA3E20C)
(at 170.0784 101.9302 180)
(descr "JST EH series connector, B3B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator")
(tags "connector JST EH vertical")
(path /5ECA68ED)
(fp_text reference J9 (at 6.604 2.89052) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(fp_text value Conn_01x03 (at 2.5 3.4) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(fp_line (start -2.91 2.61) (end -0.41 2.61) (layer F.Fab) (width 0.1))
(fp_line (start -2.91 0.11) (end -2.91 2.61) (layer F.Fab) (width 0.1))
(fp_line (start -2.91 2.61) (end -0.41 2.61) (layer F.SilkS) (width 0.12))
(fp_line (start -2.91 0.11) (end -2.91 2.61) (layer F.SilkS) (width 0.12))
(fp_line (start 6.61 0.81) (end 6.61 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start 7.61 0.81) (end 6.61 0.81) (layer F.SilkS) (width 0.12))
(fp_line (start -1.61 0.81) (end -1.61 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start -2.61 0.81) (end -1.61 0.81) (layer F.SilkS) (width 0.12))
(fp_line (start 7.11 0) (end 7.61 0) (layer F.SilkS) (width 0.12))
(fp_line (start 7.11 -1.21) (end 7.11 0) (layer F.SilkS) (width 0.12))
(fp_line (start -2.11 -1.21) (end 7.11 -1.21) (layer F.SilkS) (width 0.12))
(fp_line (start -2.11 0) (end -2.11 -1.21) (layer F.SilkS) (width 0.12))
(fp_line (start -2.61 0) (end -2.11 0) (layer F.SilkS) (width 0.12))
(fp_line (start 7.61 -1.71) (end -2.61 -1.71) (layer F.SilkS) (width 0.12))
(fp_line (start 7.61 2.31) (end 7.61 -1.71) (layer F.SilkS) (width 0.12))
(fp_line (start -2.61 2.31) (end 7.61 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start -2.61 -1.71) (end -2.61 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8 -2.1) (end -3 -2.1) (layer F.CrtYd) (width 0.05))
(fp_line (start 8 2.7) (end 8 -2.1) (layer F.CrtYd) (width 0.05))
(fp_line (start -3 2.7) (end 8 2.7) (layer F.CrtYd) (width 0.05))
(fp_line (start -3 -2.1) (end -3 2.7) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.5 -1.6) (end -2.5 -1.6) (layer F.Fab) (width 0.1))
(fp_line (start 7.5 2.2) (end 7.5 -1.6) (layer F.Fab) (width 0.1))
(fp_line (start -2.5 2.2) (end 7.5 2.2) (layer F.Fab) (width 0.1))
(fp_line (start -2.5 -1.6) (end -2.5 2.2) (layer F.Fab) (width 0.1))
(fp_text user %R (at 2.5 1.5) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(pad 3 thru_hole oval (at 5 0 180) (size 1.7 1.95) (drill 0.95) (layers *.Cu *.Mask)
(net 1 GND))
(pad 2 thru_hole oval (at 2.5 0 180) (size 1.7 1.95) (drill 0.95) (layers *.Cu *.Mask)
(net 30 UART1_TXD))
(pad 1 thru_hole roundrect (at 0 0 180) (size 1.7 1.95) (drill 0.95) (layers *.Cu *.Mask) (roundrect_rratio 0.147059)
(net 29 UART1_RXD))
(model ${KISYS3DMOD}/Connector_JST.3dshapes/JST_EH_B3B-EH-A_1x03_P2.50mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector_JST:JST_EH_B3B-EH-A_1x03_P2.50mm_Vertical (layer F.Cu) (tedit 5C28142C) (tstamp 5EA3E1B5)
(at 167.7416 106.9594 180)
(descr "JST EH series connector, B3B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator")
(tags "connector JST EH vertical")
(path /5EC9C177)
(fp_text reference J7 (at 8.34898 -1.85674) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(fp_text value Conn_01x03 (at 2.5 3.4) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(fp_line (start -2.91 2.61) (end -0.41 2.61) (layer F.Fab) (width 0.1))
(fp_line (start -2.91 0.11) (end -2.91 2.61) (layer F.Fab) (width 0.1))
(fp_line (start -2.91 2.61) (end -0.41 2.61) (layer F.SilkS) (width 0.12))
(fp_line (start -2.91 0.11) (end -2.91 2.61) (layer F.SilkS) (width 0.12))
(fp_line (start 6.61 0.81) (end 6.61 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start 7.61 0.81) (end 6.61 0.81) (layer F.SilkS) (width 0.12))
(fp_line (start -1.61 0.81) (end -1.61 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start -2.61 0.81) (end -1.61 0.81) (layer F.SilkS) (width 0.12))
(fp_line (start 7.11 0) (end 7.61 0) (layer F.SilkS) (width 0.12))
(fp_line (start 7.11 -1.21) (end 7.11 0) (layer F.SilkS) (width 0.12))
(fp_line (start -2.11 -1.21) (end 7.11 -1.21) (layer F.SilkS) (width 0.12))
(fp_line (start -2.11 0) (end -2.11 -1.21) (layer F.SilkS) (width 0.12))
(fp_line (start -2.61 0) (end -2.11 0) (layer F.SilkS) (width 0.12))
(fp_line (start 7.61 -1.71) (end -2.61 -1.71) (layer F.SilkS) (width 0.12))
(fp_line (start 7.61 2.31) (end 7.61 -1.71) (layer F.SilkS) (width 0.12))
(fp_line (start -2.61 2.31) (end 7.61 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start -2.61 -1.71) (end -2.61 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8 -2.1) (end -3 -2.1) (layer F.CrtYd) (width 0.05))
(fp_line (start 8 2.7) (end 8 -2.1) (layer F.CrtYd) (width 0.05))
(fp_line (start -3 2.7) (end 8 2.7) (layer F.CrtYd) (width 0.05))
(fp_line (start -3 -2.1) (end -3 2.7) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.5 -1.6) (end -2.5 -1.6) (layer F.Fab) (width 0.1))
(fp_line (start 7.5 2.2) (end 7.5 -1.6) (layer F.Fab) (width 0.1))
(fp_line (start -2.5 2.2) (end 7.5 2.2) (layer F.Fab) (width 0.1))
(fp_line (start -2.5 -1.6) (end -2.5 2.2) (layer F.Fab) (width 0.1))
(fp_text user %R (at 2.5 1.5) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(pad 3 thru_hole oval (at 5 0 180) (size 1.7 1.95) (drill 0.95) (layers *.Cu *.Mask)
(net 1 GND))
(pad 2 thru_hole oval (at 2.5 0 180) (size 1.7 1.95) (drill 0.95) (layers *.Cu *.Mask)
(net 23 UART6_TXD))
(pad 1 thru_hole roundrect (at 0 0 180) (size 1.7 1.95) (drill 0.95) (layers *.Cu *.Mask) (roundrect_rratio 0.147059)
(net 22 UART6_RXD))
(model ${KISYS3DMOD}/Connector_JST.3dshapes/JST_EH_B3B-EH-A_1x03_P2.50mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector_JST:JST_EH_B3B-EH-A_1x03_P2.50mm_Vertical (layer F.Cu) (tedit 5C28142C) (tstamp 5EA3E114)
(at 147.37334 89.55786 90)
(descr "JST EH series connector, B3B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator")
(tags "connector JST EH vertical")
(path /5EC96C57)
(fp_text reference J4 (at -3.7465 -1.19634 180) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(fp_text value Conn_01x03 (at 2.5 3.4 90) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(fp_line (start -2.91 2.61) (end -0.41 2.61) (layer F.Fab) (width 0.1))
(fp_line (start -2.91 0.11) (end -2.91 2.61) (layer F.Fab) (width 0.1))
(fp_line (start -2.91 2.61) (end -0.41 2.61) (layer F.SilkS) (width 0.12))
(fp_line (start -2.91 0.11) (end -2.91 2.61) (layer F.SilkS) (width 0.12))
(fp_line (start 6.61 0.81) (end 6.61 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start 7.61 0.81) (end 6.61 0.81) (layer F.SilkS) (width 0.12))
(fp_line (start -1.61 0.81) (end -1.61 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start -2.61 0.81) (end -1.61 0.81) (layer F.SilkS) (width 0.12))
(fp_line (start 7.11 0) (end 7.61 0) (layer F.SilkS) (width 0.12))
(fp_line (start 7.11 -1.21) (end 7.11 0) (layer F.SilkS) (width 0.12))
(fp_line (start -2.11 -1.21) (end 7.11 -1.21) (layer F.SilkS) (width 0.12))
(fp_line (start -2.11 0) (end -2.11 -1.21) (layer F.SilkS) (width 0.12))
(fp_line (start -2.61 0) (end -2.11 0) (layer F.SilkS) (width 0.12))
(fp_line (start 7.61 -1.71) (end -2.61 -1.71) (layer F.SilkS) (width 0.12))
(fp_line (start 7.61 2.31) (end 7.61 -1.71) (layer F.SilkS) (width 0.12))
(fp_line (start -2.61 2.31) (end 7.61 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start -2.61 -1.71) (end -2.61 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8 -2.1) (end -3 -2.1) (layer F.CrtYd) (width 0.05))
(fp_line (start 8 2.7) (end 8 -2.1) (layer F.CrtYd) (width 0.05))
(fp_line (start -3 2.7) (end 8 2.7) (layer F.CrtYd) (width 0.05))
(fp_line (start -3 -2.1) (end -3 2.7) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.5 -1.6) (end -2.5 -1.6) (layer F.Fab) (width 0.1))
(fp_line (start 7.5 2.2) (end 7.5 -1.6) (layer F.Fab) (width 0.1))
(fp_line (start -2.5 2.2) (end 7.5 2.2) (layer F.Fab) (width 0.1))
(fp_line (start -2.5 -1.6) (end -2.5 2.2) (layer F.Fab) (width 0.1))
(fp_text user %R (at 2.5 1.5 90) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(pad 3 thru_hole oval (at 5 0 90) (size 1.7 1.95) (drill 0.95) (layers *.Cu *.Mask)
(net 1 GND))
(pad 2 thru_hole oval (at 2.5 0 90) (size 1.7 1.95) (drill 0.95) (layers *.Cu *.Mask)
(net 76 UART4_TXD))
(pad 1 thru_hole roundrect (at 0 0 90) (size 1.7 1.95) (drill 0.95) (layers *.Cu *.Mask) (roundrect_rratio 0.147059)
(net 77 UART4_RXD))
(model ${KISYS3DMOD}/Connector_JST.3dshapes/JST_EH_B3B-EH-A_1x03_P2.50mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 5EAC9FAF)
(at 159.54248 69.7738 270)
(descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x04 2.54mm single row")
(path /5EBCA3B2)
(fp_text reference J14 (at -2.31902 -1.20396 180) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(fp_text value Conn_01x04 (at 0 9.95 90) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 9.4) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 9.4) (end 1.8 9.4) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 -1.8) (end -1.8 9.4) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 1.27) (end 1.33 8.95) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end -1.33 8.95) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 8.95) (end 1.33 8.95) (layer F.SilkS) (width 0.12))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 8.89) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 8.89) (end -1.27 8.89) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end 1.27 8.89) (layer F.Fab) (width 0.1))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_text user %R (at 0 3.81) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(pad 4 thru_hole oval (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 44 RESOLVER_LEFT))
(pad 3 thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 33 MOTOR_LEFT_PULSE))
(pad 2 thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 43 RESOLVER_RIGHT))
(pad 1 thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 35 MOTOR_RIGHT_PULSE))
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector_PinHeader_2.54mm:PinHeader_2x03_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 5EAAB127)
(at 151.9682 77.1906 90)
(descr "Through hole straight pin header, 2x03, 2.54mm pitch, double rows")
(tags "Through hole pin header THT 2x03 2.54mm double row")
(path /5EA75748)