-
Notifications
You must be signed in to change notification settings - Fork 1
/
F745_DISC.kicad_pcb
5094 lines (5038 loc) · 381 KB
/
F745_DISC.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)-1")
(general
(thickness 1.6)
(drawings 18)
(tracks 1245)
(zones 0)
(modules 48)
(nets 103)
)
(page A4)
(layers
(0 F.Cu signal)
(31 B.Cu signal)
(32 B.Adhes user)
(33 F.Adhes user)
(34 B.Paste user)
(35 F.Paste user)
(36 B.SilkS user)
(37 F.SilkS user)
(38 B.Mask user)
(39 F.Mask user)
(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)
(47 F.CrtYd user)
(48 B.Fab user hide)
(49 F.Fab user hide)
)
(setup
(last_trace_width 0.25)
(trace_clearance 0.2)
(zone_clearance 0.508)
(zone_45_only no)
(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.3 1.6)
(pad_drill 0)
(pad_to_mask_clearance 0.05)
(aux_axis_origin 0 0)
(visible_elements 7FFFFFFF)
(pcbplotparams
(layerselection 0x010fc_ffffffff)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(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 "Gerber/"))
)
(net 0 "")
(net 1 BOOT)
(net 2 "Net-(BOOT1-Pad2)")
(net 3 NRST)
(net 4 "Net-(BOOT2-Pad2)")
(net 5 GND)
(net 6 VCAP_1)
(net 7 VCAP_2)
(net 8 5V_IN)
(net 9 "Net-(D1-Pad1)")
(net 10 "Net-(D2-Pad2)")
(net 11 RX)
(net 12 "Net-(D3-Pad2)")
(net 13 TX)
(net 14 "Net-(D4-Pad2)")
(net 15 "Net-(J1-Pad1)")
(net 16 NSS1)
(net 17 MOSI1)
(net 18 SCK1)
(net 19 MISO1)
(net 20 "Net-(J1-Pad8)")
(net 21 "Net-(J2-PadB8)")
(net 22 "Net-(J2-PadA5)")
(net 23 "Net-(J2-PadA7)")
(net 24 "Net-(J2-PadA6)")
(net 25 "Net-(J2-PadA8)")
(net 26 "Net-(J2-PadB5)")
(net 27 PB9)
(net 28 PB4)
(net 29 PD7)
(net 30 PD5)
(net 31 PD3)
(net 32 PC12)
(net 33 PC10)
(net 34 PA8)
(net 35 PC9)
(net 36 PC7)
(net 37 PD15)
(net 38 PD13)
(net 39 PD11)
(net 40 PD9)
(net 41 PB15)
(net 42 PB13)
(net 43 PB12)
(net 44 PB14)
(net 45 PD8)
(net 46 PD10)
(net 47 PD12)
(net 48 PD14)
(net 49 PC6)
(net 50 PC8)
(net 51 PA15)
(net 52 PC11)
(net 53 PD2)
(net 54 PD4)
(net 55 PD6)
(net 56 PB3)
(net 57 PB5)
(net 58 PB8)
(net 59 PE0)
(net 60 PE3)
(net 61 PC15)
(net 62 PC1)
(net 63 PC3)
(net 64 PA1)
(net 65 PA3)
(net 66 PC5)
(net 67 PB1)
(net 68 PE7)
(net 69 PE9)
(net 70 PE11)
(net 71 PE13)
(net 72 PE15)
(net 73 PB11)
(net 74 PB10)
(net 75 PE14)
(net 76 PE12)
(net 77 PE10)
(net 78 PE8)
(net 79 PB2)
(net 80 PB0)
(net 81 PC4)
(net 82 PA2)
(net 83 PA0)
(net 84 PC2)
(net 85 PC0)
(net 86 PC14)
(net 87 PE1)
(net 88 SWCLK)
(net 89 SWDIO)
(net 90 MOSI)
(net 91 MISO)
(net 92 SCK)
(net 93 NSS)
(net 94 CAN_RX)
(net 95 CAN_TX)
(net 96 SCL)
(net 97 SDA)
(net 98 LED)
(net 99 USB_DP)
(net 100 USB_DM)
(net 101 OSC_OUT)
(net 102 OSC_IN)
(net_class Default "This is the default net class."
(clearance 0.2)
(trace_width 0.25)
(via_dia 0.8)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net 5V_IN)
(add_net BOOT)
(add_net CAN_RX)
(add_net CAN_TX)
(add_net GND)
(add_net LED)
(add_net MISO)
(add_net MISO1)
(add_net MOSI)
(add_net MOSI1)
(add_net NRST)
(add_net NSS)
(add_net NSS1)
(add_net "Net-(BOOT1-Pad2)")
(add_net "Net-(BOOT2-Pad2)")
(add_net "Net-(D1-Pad1)")
(add_net "Net-(D2-Pad2)")
(add_net "Net-(D3-Pad2)")
(add_net "Net-(D4-Pad2)")
(add_net "Net-(J1-Pad1)")
(add_net "Net-(J1-Pad8)")
(add_net "Net-(J2-PadA5)")
(add_net "Net-(J2-PadA6)")
(add_net "Net-(J2-PadA7)")
(add_net "Net-(J2-PadA8)")
(add_net "Net-(J2-PadB5)")
(add_net "Net-(J2-PadB8)")
(add_net OSC_IN)
(add_net OSC_OUT)
(add_net PA0)
(add_net PA1)
(add_net PA15)
(add_net PA2)
(add_net PA3)
(add_net PA8)
(add_net PB0)
(add_net PB1)
(add_net PB10)
(add_net PB11)
(add_net PB12)
(add_net PB13)
(add_net PB14)
(add_net PB15)
(add_net PB2)
(add_net PB3)
(add_net PB4)
(add_net PB5)
(add_net PB8)
(add_net PB9)
(add_net PC0)
(add_net PC1)
(add_net PC10)
(add_net PC11)
(add_net PC12)
(add_net PC14)
(add_net PC15)
(add_net PC2)
(add_net PC3)
(add_net PC4)
(add_net PC5)
(add_net PC6)
(add_net PC7)
(add_net PC8)
(add_net PC9)
(add_net PD10)
(add_net PD11)
(add_net PD12)
(add_net PD13)
(add_net PD14)
(add_net PD15)
(add_net PD2)
(add_net PD3)
(add_net PD4)
(add_net PD5)
(add_net PD6)
(add_net PD7)
(add_net PD8)
(add_net PD9)
(add_net PE0)
(add_net PE1)
(add_net PE10)
(add_net PE11)
(add_net PE12)
(add_net PE13)
(add_net PE14)
(add_net PE15)
(add_net PE3)
(add_net PE7)
(add_net PE8)
(add_net PE9)
(add_net RX)
(add_net SCK)
(add_net SCK1)
(add_net SCL)
(add_net SDA)
(add_net SWCLK)
(add_net SWDIO)
(add_net TX)
(add_net USB_DM)
(add_net USB_DP)
(add_net VCAP_1)
(add_net VCAP_2)
)
(module logo:imageee (layer F.Cu) (tedit 5F2E6585) (tstamp 5F2F2A2B)
(at 54.25 54.35)
(fp_text reference " " (at 1.27 1.27 90) (layer F.SilkS) hide
(effects (font (size 1.524 1.524) (thickness 0.3)))
)
(fp_text value " " (at 0.52 1.27) (layer F.SilkS) hide
(effects (font (size 1.524 1.524) (thickness 0.3)))
)
(fp_poly (pts (xy 0.494739 4.217141) (xy 0.331969 4.252542) (xy 0.211482 4.310752) (xy 0.134567 4.3911)
(xy 0.102514 4.492915) (xy 0.1016 4.515634) (xy 0.1016 4.604817) (xy 0.165288 4.536097)
(xy 0.280728 4.444753) (xy 0.428911 4.38624) (xy 0.61336 4.359349) (xy 0.6858 4.35719)
(xy 0.800623 4.358874) (xy 0.880365 4.36722) (xy 0.940601 4.385081) (xy 0.994388 4.413737)
(xy 1.05426 4.458195) (xy 1.099036 4.511929) (xy 1.130753 4.582531) (xy 1.151449 4.67759)
(xy 1.163164 4.804696) (xy 1.167936 4.971438) (xy 1.168361 5.061464) (xy 1.166316 5.238974)
(xy 1.158768 5.374136) (xy 1.143535 5.475294) (xy 1.118436 5.55079) (xy 1.081288 5.608968)
(xy 1.029911 5.658171) (xy 1.007936 5.674983) (xy 0.914999 5.717119) (xy 0.789871 5.738204)
(xy 0.646005 5.739485) (xy 0.496856 5.722209) (xy 0.355877 5.687623) (xy 0.236522 5.636973)
(xy 0.17949 5.598223) (xy 0.1016 5.532684) (xy 0.1016 5.619414) (xy 0.123806 5.714279)
(xy 0.159055 5.76012) (xy 0.241072 5.810563) (xy 0.360403 5.849795) (xy 0.50453 5.87648)
(xy 0.660937 5.889283) (xy 0.817107 5.886868) (xy 0.960522 5.867902) (xy 1.02224 5.852194)
(xy 1.144262 5.793949) (xy 1.249133 5.705351) (xy 1.323388 5.599266) (xy 1.344732 5.544029)
(xy 1.353773 5.486137) (xy 1.361442 5.388569) (xy 1.367172 5.262442) (xy 1.3704 5.118874)
(xy 1.370901 5.0292) (xy 1.368707 4.840937) (xy 1.361179 4.695169) (xy 1.346266 4.583694)
(xy 1.321916 4.498312) (xy 1.28608 4.430822) (xy 1.236705 4.373026) (xy 1.19806 4.338181)
(xy 1.104677 4.274874) (xy 0.996011 4.233654) (xy 0.860568 4.211462) (xy 0.6985 4.205218)
(xy 0.494739 4.217141)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy -0.762351 4.694407) (xy -0.874814 4.726633) (xy -0.970191 4.780657) (xy -1.034462 4.848806)
(xy -1.054988 4.882111) (xy -1.069978 4.917017) (xy -1.080297 4.961765) (xy -1.086813 5.0246)
(xy -1.09039 5.113764) (xy -1.091897 5.2375) (xy -1.0922 5.39806) (xy -1.0922 5.861009)
(xy -0.98425 5.860122) (xy -0.906774 5.861884) (xy -0.799462 5.867352) (xy -0.683052 5.875428)
(xy -0.6604 5.877268) (xy -0.547381 5.88481) (xy -0.468227 5.883693) (xy -0.406483 5.872234)
(xy -0.345696 5.84875) (xy -0.335593 5.844064) (xy -0.236663 5.772055) (xy -0.174546 5.672972)
(xy -0.153195 5.558479) (xy -0.15675 5.540487) (xy -0.356632 5.540487) (xy -0.375447 5.620872)
(xy -0.42072 5.680829) (xy -0.4603 5.715549) (xy -0.501456 5.733921) (xy -0.560228 5.739669)
(xy -0.652653 5.73652) (xy -0.658904 5.73617) (xy -0.753159 5.726339) (xy -0.83077 5.710172)
(xy -0.873184 5.692185) (xy -0.89554 5.660273) (xy -0.908501 5.603435) (xy -0.913923 5.511119)
(xy -0.9144 5.457889) (xy -0.912273 5.364323) (xy -0.906629 5.294155) (xy -0.898568 5.259499)
(xy -0.896199 5.2578) (xy -0.862934 5.265798) (xy -0.801314 5.285853) (xy -0.775549 5.295006)
(xy -0.680136 5.326616) (xy -0.578617 5.35601) (xy -0.56381 5.359846) (xy -0.453566 5.403798)
(xy -0.383589 5.46607) (xy -0.356632 5.540487) (xy -0.15675 5.540487) (xy -0.176558 5.44024)
(xy -0.189381 5.412363) (xy -0.241356 5.349386) (xy -0.33088 5.293424) (xy -0.462782 5.241988)
(xy -0.591347 5.205161) (xy -0.731952 5.162377) (xy -0.82566 5.11749) (xy -0.876373 5.068099)
(xy -0.888611 5.022264) (xy -0.867732 4.940562) (xy -0.805629 4.885587) (xy -0.701131 4.856621)
(xy -0.610454 4.8514) (xy -0.457887 4.869223) (xy -0.331349 4.920369) (xy -0.260888 4.976857)
(xy -0.209782 5.031713) (xy -0.19484 4.974575) (xy -0.194195 4.889078) (xy -0.234641 4.816663)
(xy -0.307867 4.758576) (xy -0.405561 4.716062) (xy -0.519414 4.690366) (xy -0.641114 4.682733)
(xy -0.762351 4.694407)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy -2.105164 4.699802) (xy -2.214027 4.726234) (xy -2.302005 4.779795) (xy -2.349559 4.826001)
(xy -2.367042 4.848894) (xy -2.38021 4.878543) (xy -2.389829 4.922269) (xy -2.396662 4.987393)
(xy -2.401472 5.081239) (xy -2.405025 5.211129) (xy -2.408083 5.384383) (xy -2.40813 5.387401)
(xy -2.410546 5.559685) (xy -2.411368 5.687713) (xy -2.410095 5.778018) (xy -2.406224 5.837133)
(xy -2.399255 5.87159) (xy -2.388686 5.887921) (xy -2.374016 5.89266) (xy -2.369332 5.8928)
(xy -2.31345 5.878648) (xy -2.266251 5.853259) (xy -2.245032 5.836113) (xy -2.229925 5.813754)
(xy -2.219893 5.778065) (xy -2.213901 5.72093) (xy -2.210914 5.634234) (xy -2.209896 5.509861)
(xy -2.2098 5.410837) (xy -2.208839 5.270273) (xy -2.20619 5.145693) (xy -2.202197 5.046837)
(xy -2.197207 4.983443) (xy -2.194021 4.966837) (xy -2.147722 4.912526) (xy -2.06313 4.87415)
(xy -1.950883 4.853996) (xy -1.82162 4.854347) (xy -1.730375 4.867275) (xy -1.651 4.88315)
(xy -1.651 5.387975) (xy -1.650879 5.566206) (xy -1.649358 5.699335) (xy -1.644698 5.793061)
(xy -1.635161 5.853081) (xy -1.619008 5.885091) (xy -1.5945 5.89479) (xy -1.5599 5.887875)
(xy -1.513468 5.870043) (xy -1.50495 5.866608) (xy -1.486438 5.858005) (xy -1.472429 5.844746)
(xy -1.462297 5.820363) (xy -1.455412 5.778388) (xy -1.451147 5.712355) (xy -1.448875 5.615797)
(xy -1.447969 5.482245) (xy -1.4478 5.305233) (xy -1.4478 4.7117) (xy -1.6129 4.70729)
(xy -1.729983 4.703864) (xy -1.86444 4.699498) (xy -1.96215 4.696049) (xy -2.105164 4.699802)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy -3.636694 4.157438) (xy -3.683 4.191) (xy -3.697053 4.207076) (xy -3.708246 4.227799)
(xy -3.716905 4.258686) (xy -3.723353 4.305251) (xy -3.727914 4.37301) (xy -3.730914 4.46748)
(xy -3.732676 4.594175) (xy -3.733526 4.758611) (xy -3.733787 4.966305) (xy -3.7338 5.0546)
(xy -3.7338 5.8674) (xy -3.63855 5.867531) (xy -3.570243 5.869151) (xy -3.46885 5.873368)
(xy -3.351972 5.879408) (xy -3.302 5.882332) (xy -3.185102 5.888165) (xy -3.103939 5.887434)
(xy -3.04366 5.878278) (xy -2.989418 5.858836) (xy -2.9464 5.837751) (xy -2.87089 5.792544)
(xy -2.816284 5.74137) (xy -2.779627 5.675687) (xy -2.757961 5.586953) (xy -2.748334 5.466625)
(xy -2.747787 5.30616) (xy -2.748291 5.280051) (xy -2.9464 5.280051) (xy -2.949567 5.435906)
(xy -2.960427 5.549212) (xy -2.981016 5.627901) (xy -3.013369 5.679909) (xy -3.057247 5.712027)
(xy -3.107462 5.724389) (xy -3.187878 5.73125) (xy -3.282675 5.732818) (xy -3.376032 5.729303)
(xy -3.452128 5.720916) (xy -3.495143 5.707867) (xy -3.49714 5.706191) (xy -3.507979 5.671078)
(xy -3.516657 5.597543) (xy -3.52289 5.497932) (xy -3.526398 5.384589) (xy -3.526897 5.269858)
(xy -3.524105 5.166084) (xy -3.517739 5.08561) (xy -3.512069 5.053574) (xy -3.464455 4.961065)
(xy -3.384241 4.894414) (xy -3.284381 4.856992) (xy -3.177829 4.852171) (xy -3.077537 4.883323)
(xy -3.020646 4.925646) (xy -2.988204 4.959979) (xy -2.966929 4.992853) (xy -2.954465 5.035508)
(xy -2.948458 5.099183) (xy -2.946553 5.195115) (xy -2.9464 5.280051) (xy -2.748291 5.280051)
(xy -2.748564 5.26591) (xy -2.754186 5.107132) (xy -2.76544 4.989658) (xy -2.78591 4.90403)
(xy -2.819181 4.840792) (xy -2.868837 4.790488) (xy -2.938463 4.743661) (xy -2.948849 4.737523)
(xy -3.051728 4.700367) (xy -3.177519 4.687645) (xy -3.304442 4.699645) (xy -3.401152 4.731572)
(xy -3.462619 4.759963) (xy -3.504576 4.774643) (xy -3.509102 4.7752) (xy -3.517246 4.751405)
(xy -3.523974 4.686433) (xy -3.528635 4.5899) (xy -3.53058 4.471423) (xy -3.5306 4.4577)
(xy -3.531062 4.325936) (xy -3.53333 4.236719) (xy -3.538725 4.181794) (xy -3.548565 4.15291)
(xy -3.564173 4.141814) (xy -3.5814 4.1402) (xy -3.636694 4.157438)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy -4.13385 4.130518) (xy -4.171426 4.139806) (xy -4.201188 4.15138) (xy -4.224045 4.170754)
(xy -4.240909 4.203441) (xy -4.252689 4.254955) (xy -4.260296 4.330809) (xy -4.264641 4.436516)
(xy -4.266634 4.577591) (xy -4.267185 4.759545) (xy -4.2672 4.938039) (xy -4.2674 5.153158)
(xy -4.268251 5.323682) (xy -4.270128 5.455817) (xy -4.273405 5.555768) (xy -4.278458 5.629739)
(xy -4.285662 5.683936) (xy -4.295392 5.724563) (xy -4.308023 5.757825) (xy -4.318 5.7785)
(xy -4.348755 5.84033) (xy -4.366809 5.879539) (xy -4.3688 5.88547) (xy -4.347879 5.896821)
(xy -4.297462 5.894853) (xy -4.236065 5.882839) (xy -4.182206 5.864055) (xy -4.158604 5.848303)
(xy -4.132787 5.815983) (xy -4.112102 5.778371) (xy -4.095989 5.729785) (xy -4.083889 5.664545)
(xy -4.075242 5.576967) (xy -4.069488 5.461371) (xy -4.06607 5.312075) (xy -4.064427 5.123396)
(xy -4.064 4.889654) (xy -4.064 4.113832) (xy -4.13385 4.130518)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy -5.250763 4.703024) (xy -5.380527 4.746381) (xy -5.470613 4.81991) (xy -5.522343 4.924647)
(xy -5.5372 5.047279) (xy -5.532936 5.135488) (xy -5.5153 5.194455) (xy -5.477021 5.245373)
(xy -5.465013 5.257694) (xy -5.392879 5.310838) (xy -5.303612 5.352941) (xy -5.281062 5.359975)
(xy -5.181702 5.375653) (xy -5.065132 5.378285) (xy -4.953787 5.368543) (xy -4.871513 5.347706)
(xy -4.832282 5.34849) (xy -4.811341 5.384699) (xy -4.806936 5.445079) (xy -4.817313 5.518373)
(xy -4.84072 5.593329) (xy -4.875403 5.658692) (xy -4.919609 5.703206) (xy -4.9276 5.707718)
(xy -5.019971 5.734649) (xy -5.135245 5.741007) (xy -5.256847 5.72889) (xy -5.368202 5.700391)
(xy -5.452739 5.657607) (xy -5.473829 5.638657) (xy -5.524069 5.594988) (xy -5.553736 5.597518)
(xy -5.5626 5.640469) (xy -5.541213 5.730006) (xy -5.475147 5.802074) (xy -5.4018 5.843601)
(xy -5.282223 5.878545) (xy -5.138471 5.892257) (xy -4.992069 5.884699) (xy -4.864544 5.85583)
(xy -4.836703 5.844633) (xy -4.75895 5.805337) (xy -4.702583 5.76306) (xy -4.66422 5.709165)
(xy -4.640478 5.635018) (xy -4.627975 5.531986) (xy -4.623328 5.391433) (xy -4.622894 5.298824)
(xy -4.623781 5.151795) (xy -4.624174 5.139178) (xy -4.811921 5.139178) (xy -4.837174 5.189442)
(xy -4.8895 5.213815) (xy -4.979688 5.226681) (xy -5.083857 5.228108) (xy -5.17729 5.218526)
(xy -5.216718 5.208133) (xy -5.278267 5.168552) (xy -5.322991 5.119083) (xy -5.350528 5.061256)
(xy -5.344229 5.005013) (xy -5.335302 4.981544) (xy -5.281423 4.907596) (xy -5.192043 4.864798)
(xy -5.067521 4.8514) (xy -4.95397 4.872097) (xy -4.870585 4.931631) (xy -4.822113 5.026168)
(xy -4.816043 5.0546) (xy -4.811921 5.139178) (xy -4.624174 5.139178) (xy -4.627083 5.045806)
(xy -4.633902 4.971115) (xy -4.645337 4.91798) (xy -4.662489 4.876657) (xy -4.672571 4.858983)
(xy -4.741356 4.776177) (xy -4.833142 4.722694) (xy -4.956563 4.694928) (xy -5.08 4.688802)
(xy -5.250763 4.703024)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy 3.185875 -3.663388) (xy 3.224728 -3.632062) (xy 3.2893 -3.591387) (xy 3.474247 -3.468255)
(xy 3.629108 -3.335719) (xy 3.762979 -3.18347) (xy 3.884952 -3.001197) (xy 4.001617 -2.783681)
(xy 4.098675 -2.564856) (xy 4.165125 -2.358563) (xy 4.205252 -2.146503) (xy 4.223338 -1.910383)
(xy 4.225147 -1.8288) (xy 4.225294 -1.681724) (xy 4.220622 -1.570006) (xy 4.20945 -1.478303)
(xy 4.190098 -1.39127) (xy 4.169507 -1.3208) (xy 4.064843 -1.048021) (xy 3.933079 -0.816127)
(xy 3.7724 -0.621945) (xy 3.766906 -0.616462) (xy 3.578092 -0.449585) (xy 3.391414 -0.328724)
(xy 3.198603 -0.250172) (xy 2.991391 -0.210223) (xy 2.845173 -0.203201) (xy 2.61989 -0.221592)
(xy 2.429291 -0.276945) (xy 2.272932 -0.369528) (xy 2.150368 -0.499606) (xy 2.061151 -0.667448)
(xy 2.058075 -0.675467) (xy 2.026045 -0.773178) (xy 2.012089 -0.860552) (xy 2.012952 -0.963231)
(xy 2.016063 -1.006429) (xy 2.027304 -1.108309) (xy 2.042399 -1.199199) (xy 2.057515 -1.257601)
(xy 2.072477 -1.311733) (xy 2.070663 -1.341405) (xy 2.0415 -1.336867) (xy 1.982194 -1.303792)
(xy 1.900182 -1.247821) (xy 1.802908 -1.174594) (xy 1.697809 -1.08975) (xy 1.592329 -0.998928)
(xy 1.493906 -0.907769) (xy 1.477743 -0.891986) (xy 1.215096 -0.598002) (xy 0.990582 -0.273271)
(xy 0.806286 0.077163) (xy 0.664293 0.448252) (xy 0.566689 0.83495) (xy 0.515558 1.232213)
(xy 0.508 1.454812) (xy 0.531971 1.877211) (xy 0.603026 2.282544) (xy 0.71988 2.668506)
(xy 0.881248 3.032793) (xy 1.085845 3.3731) (xy 1.332385 3.687122) (xy 1.619584 3.972556)
(xy 1.946155 4.227097) (xy 2.11529 4.336876) (xy 2.456424 4.517636) (xy 2.822674 4.660802)
(xy 3.20127 4.76201) (xy 3.497053 4.809032) (xy 3.603206 4.820683) (xy 3.417299 4.671129)
(xy 3.281338 4.556589) (xy 3.172929 4.450883) (xy 3.077197 4.337542) (xy 2.979268 4.2001)
(xy 2.944896 4.148121) (xy 2.822579 3.925531) (xy 2.721471 3.670878) (xy 2.646229 3.400125)
(xy 2.601509 3.129238) (xy 2.5908 2.934221) (xy 2.615089 2.610147) (xy 2.685877 2.293716)
(xy 2.80005 1.990943) (xy 2.954493 1.707841) (xy 3.146092 1.450424) (xy 3.371732 1.224707)
(xy 3.545629 1.090597) (xy 3.653994 1.024643) (xy 3.794681 0.95119) (xy 3.951467 0.877702)
(xy 4.108129 0.811645) (xy 4.248442 0.760481) (xy 4.2926 0.746924) (xy 4.432639 0.718794)
(xy 4.607307 0.701684) (xy 4.801673 0.69546) (xy 5.000806 0.699988) (xy 5.189775 0.715132)
(xy 5.353649 0.740758) (xy 5.420234 0.757093) (xy 5.747599 0.875553) (xy 6.045519 1.033326)
(xy 6.311467 1.227908) (xy 6.54292 1.456797) (xy 6.737352 1.717491) (xy 6.892238 2.007487)
(xy 7.005053 2.324285) (xy 7.006315 2.328871) (xy 7.053346 2.500557) (xy 7.094146 2.374228)
(xy 7.207137 1.942217) (xy 7.271678 1.497805) (xy 7.287738 1.043971) (xy 7.255281 0.583696)
(xy 7.174274 0.119961) (xy 7.122015 -0.0889) (xy 7.052606 -0.315717) (xy 6.966777 -0.554295)
(xy 6.87121 -0.788012) (xy 6.772585 -1.000246) (xy 6.703317 -1.130623) (xy 6.428328 -1.565235)
(xy 6.118609 -1.967091) (xy 5.776958 -2.334038) (xy 5.406173 -2.66392) (xy 5.009054 -2.954584)
(xy 4.588399 -3.203875) (xy 4.147007 -3.409639) (xy 3.687678 -3.569722) (xy 3.4544 -3.631428)
(xy 3.31942 -3.661976) (xy 3.231092 -3.677829) (xy 3.187287 -3.678472) (xy 3.185875 -3.663388)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy 4.745168 1.582973) (xy 4.510939 1.624976) (xy 4.253003 1.715689) (xy 4.023111 1.84683)
(xy 3.824733 2.014678) (xy 3.661341 2.215513) (xy 3.536405 2.445613) (xy 3.453396 2.701259)
(xy 3.438565 2.774503) (xy 3.415335 3.044346) (xy 3.441473 3.306408) (xy 3.515687 3.556632)
(xy 3.63668 3.790962) (xy 3.80316 4.005341) (xy 3.845172 4.048837) (xy 4.047068 4.215244)
(xy 4.274654 4.341083) (xy 4.520583 4.424373) (xy 4.777509 4.463135) (xy 5.038084 4.455391)
(xy 5.223205 4.420071) (xy 5.482935 4.327449) (xy 5.712421 4.194744) (xy 5.909271 4.024159)
(xy 6.071093 3.817892) (xy 6.195498 3.578144) (xy 6.22623 3.496972) (xy 6.262548 3.3834)
(xy 6.284535 3.284731) (xy 6.295519 3.179739) (xy 6.298826 3.047198) (xy 6.298861 3.03356)
(xy 6.291712 2.842039) (xy 6.266312 2.678677) (xy 6.217578 2.522683) (xy 6.140428 2.353268)
(xy 6.125405 2.3241) (xy 5.985466 2.10952) (xy 5.807452 1.926211) (xy 5.595744 1.777542)
(xy 5.354721 1.666886) (xy 5.217262 1.624976) (xy 4.976827 1.582399) (xy 4.745168 1.582973)) (layer B.SilkS) (width 0.01))
)
(module Connector_PinHeader_1.27mm:PinHeader_1x04_P1.27mm_Vertical (layer F.Cu) (tedit 59FED6E3) (tstamp 5F2BC603)
(at 38.64 59.43 90)
(descr "Through hole straight pin header, 1x04, 1.27mm pitch, single row")
(tags "Through hole pin header THT 1x04 1.27mm single row")
(path /6005E38D/600DD2D6)
(fp_text reference SPI (at -0.01 -2.24 180) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.13)))
)
(fp_text value Conn_01x04 (at 0 9.95 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.55 -1.15) (end -1.55 -1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.55 4.95) (end 1.55 -1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.55 4.95) (end 1.55 4.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.55 -1.15) (end -1.55 4.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.11 -0.76) (end 0 -0.76) (layer F.SilkS) (width 0.12))
(fp_line (start -1.11 0) (end -1.11 -0.76) (layer F.SilkS) (width 0.12))
(fp_line (start 0.563471 0.76) (end 1.11 0.76) (layer F.SilkS) (width 0.12))
(fp_line (start -1.11 0.76) (end -0.563471 0.76) (layer F.SilkS) (width 0.12))
(fp_line (start 1.11 0.76) (end 1.11 4.505) (layer F.SilkS) (width 0.12))
(fp_line (start -1.11 0.76) (end -1.11 4.505) (layer F.SilkS) (width 0.12))
(fp_line (start 0.30753 4.505) (end 1.11 4.505) (layer F.SilkS) (width 0.12))
(fp_line (start -1.11 4.505) (end -0.30753 4.505) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -0.11) (end -0.525 -0.635) (layer F.Fab) (width 0.1))
(fp_line (start -1.05 4.445) (end -1.05 -0.11) (layer F.Fab) (width 0.1))
(fp_line (start 1.05 4.445) (end -1.05 4.445) (layer F.Fab) (width 0.1))
(fp_line (start 1.05 -0.635) (end 1.05 4.445) (layer F.Fab) (width 0.1))
(fp_line (start -0.525 -0.635) (end 1.05 -0.635) (layer F.Fab) (width 0.1))
(fp_text user %R (at 0 3.81) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 4 thru_hole oval (at 0 3.81 90) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 90 MOSI))
(pad 3 thru_hole oval (at 0 2.54 90) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 91 MISO))
(pad 2 thru_hole oval (at 0 1.27 90) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 92 SCK))
(pad 1 thru_hole rect (at 0 0 90) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 93 NSS))
(model ${KISYS3DMOD}/Connector_PinHeader_1.27mm.3dshapes/PinHeader_1x04_P1.27mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector_PinHeader_1.27mm:PinHeader_1x04_P1.27mm_Vertical (layer F.Cu) (tedit 59FED6E3) (tstamp 5F2BC5EB)
(at 38.64 56.29 90)
(descr "Through hole straight pin header, 1x04, 1.27mm pitch, single row")
(tags "Through hole pin header THT 1x04 1.27mm single row")
(path /6005E38D/600DD2EC)
(fp_text reference SWD (at 0.09 -2.44 180) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.13)))
)
(fp_text value Conn_01x04 (at 0 9.95 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.55 -1.15) (end -1.55 -1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.55 4.95) (end 1.55 -1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.55 4.95) (end 1.55 4.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.55 -1.15) (end -1.55 4.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.11 -0.76) (end 0 -0.76) (layer F.SilkS) (width 0.12))
(fp_line (start -1.11 0) (end -1.11 -0.76) (layer F.SilkS) (width 0.12))
(fp_line (start 0.563471 0.76) (end 1.11 0.76) (layer F.SilkS) (width 0.12))
(fp_line (start -1.11 0.76) (end -0.563471 0.76) (layer F.SilkS) (width 0.12))
(fp_line (start 1.11 0.76) (end 1.11 4.505) (layer F.SilkS) (width 0.12))
(fp_line (start -1.11 0.76) (end -1.11 4.505) (layer F.SilkS) (width 0.12))
(fp_line (start 0.30753 4.505) (end 1.11 4.505) (layer F.SilkS) (width 0.12))
(fp_line (start -1.11 4.505) (end -0.30753 4.505) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -0.11) (end -0.525 -0.635) (layer F.Fab) (width 0.1))
(fp_line (start -1.05 4.445) (end -1.05 -0.11) (layer F.Fab) (width 0.1))
(fp_line (start 1.05 4.445) (end -1.05 4.445) (layer F.Fab) (width 0.1))
(fp_line (start 1.05 -0.635) (end 1.05 4.445) (layer F.Fab) (width 0.1))
(fp_line (start -0.525 -0.635) (end 1.05 -0.635) (layer F.Fab) (width 0.1))
(fp_text user %R (at 0 3.81) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 4 thru_hole oval (at 0 3.81 90) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 5 GND))
(pad 3 thru_hole oval (at 0 2.54 90) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 1 BOOT))
(pad 2 thru_hole oval (at 0 1.27 90) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 88 SWCLK))
(pad 1 thru_hole rect (at 0 0 90) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 89 SWDIO))
(model ${KISYS3DMOD}/Connector_PinHeader_1.27mm.3dshapes/PinHeader_1x04_P1.27mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector_PinHeader_1.27mm:PinHeader_1x04_P1.27mm_Vertical (layer F.Cu) (tedit 59FED6E3) (tstamp 5F2BC5D3)
(at 38.64 53.15 90)
(descr "Through hole straight pin header, 1x04, 1.27mm pitch, single row")
(tags "Through hole pin header THT 1x04 1.27mm single row")
(path /6005E38D/600DD2F2)
(fp_text reference UART (at -0.15 -2.73 180) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.13)))
)
(fp_text value Conn_01x04 (at 0 9.95 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.55 -1.15) (end -1.55 -1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.55 4.95) (end 1.55 -1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.55 4.95) (end 1.55 4.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.55 -1.15) (end -1.55 4.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.11 -0.76) (end 0 -0.76) (layer F.SilkS) (width 0.12))
(fp_line (start -1.11 0) (end -1.11 -0.76) (layer F.SilkS) (width 0.12))
(fp_line (start 0.563471 0.76) (end 1.11 0.76) (layer F.SilkS) (width 0.12))
(fp_line (start -1.11 0.76) (end -0.563471 0.76) (layer F.SilkS) (width 0.12))
(fp_line (start 1.11 0.76) (end 1.11 4.505) (layer F.SilkS) (width 0.12))
(fp_line (start -1.11 0.76) (end -1.11 4.505) (layer F.SilkS) (width 0.12))
(fp_line (start 0.30753 4.505) (end 1.11 4.505) (layer F.SilkS) (width 0.12))
(fp_line (start -1.11 4.505) (end -0.30753 4.505) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -0.11) (end -0.525 -0.635) (layer F.Fab) (width 0.1))
(fp_line (start -1.05 4.445) (end -1.05 -0.11) (layer F.Fab) (width 0.1))
(fp_line (start 1.05 4.445) (end -1.05 4.445) (layer F.Fab) (width 0.1))
(fp_line (start 1.05 -0.635) (end 1.05 4.445) (layer F.Fab) (width 0.1))
(fp_line (start -0.525 -0.635) (end 1.05 -0.635) (layer F.Fab) (width 0.1))
(fp_text user %R (at 0 3.81) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 4 thru_hole oval (at 0 3.81 90) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 5 GND))
(pad 3 thru_hole oval (at 0 2.54 90) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 8 5V_IN))
(pad 2 thru_hole oval (at 0 1.27 90) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 11 RX))
(pad 1 thru_hole rect (at 0 0 90) (size 1 1) (drill 0.65) (layers *.Cu *.Mask)
(net 13 TX))
(model ${KISYS3DMOD}/Connector_PinHeader_1.27mm.3dshapes/PinHeader_1x04_P1.27mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector_PinHeader_2.54mm:PinHeader_2x16_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 5F2C1803)
(at 44.53 67.45 90)
(descr "Through hole straight pin header, 2x16, 2.54mm pitch, double rows")
(tags "Through hole pin header THT 2x16 2.54mm double row")
(path /6005E38D/5F34BAA2)
(fp_text reference J4 (at 1.27 -2.33 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Conn_02x16_Odd_Even (at 1.27 40.43 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 0 -1.27) (end 3.81 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 3.81 -1.27) (end 3.81 39.37) (layer F.Fab) (width 0.1))
(fp_line (start 3.81 39.37) (end -1.27 39.37) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 39.37) (end -1.27 0) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 0) (end 0 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.33 39.43) (end 3.87 39.43) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end -1.33 39.43) (layer F.SilkS) (width 0.12))
(fp_line (start 3.87 -1.33) (end 3.87 39.43) (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 1.27 1.27) (end 1.27 -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.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 -1.8) (end -1.8 39.9) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 39.9) (end 4.35 39.9) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.35 39.9) (end 4.35 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.35 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 1.27 19.05) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 32 thru_hole oval (at 2.54 38.1 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 GND))
(pad 31 thru_hole oval (at 0 38.1 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 BOOT))
(pad 30 thru_hole oval (at 2.54 35.56 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 73 PB11))
(pad 29 thru_hole oval (at 0 35.56 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 5V_IN))
(pad 28 thru_hole oval (at 2.54 33.02 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 72 PE15))
(pad 27 thru_hole oval (at 0 33.02 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 74 PB10))
(pad 26 thru_hole oval (at 2.54 30.48 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 71 PE13))
(pad 25 thru_hole oval (at 0 30.48 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 75 PE14))
(pad 24 thru_hole oval (at 2.54 27.94 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 70 PE11))
(pad 23 thru_hole oval (at 0 27.94 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 76 PE12))
(pad 22 thru_hole oval (at 2.54 25.4 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 69 PE9))
(pad 21 thru_hole oval (at 0 25.4 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 77 PE10))
(pad 20 thru_hole oval (at 2.54 22.86 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 68 PE7))
(pad 19 thru_hole oval (at 0 22.86 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 78 PE8))
(pad 18 thru_hole oval (at 2.54 20.32 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 67 PB1))
(pad 17 thru_hole oval (at 0 20.32 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 79 PB2))
(pad 16 thru_hole oval (at 2.54 17.78 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 66 PC5))
(pad 15 thru_hole oval (at 0 17.78 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 80 PB0))
(pad 14 thru_hole oval (at 2.54 15.24 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 65 PA3))
(pad 13 thru_hole oval (at 0 15.24 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 81 PC4))
(pad 12 thru_hole oval (at 2.54 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 64 PA1))
(pad 11 thru_hole oval (at 0 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 82 PA2))
(pad 10 thru_hole oval (at 2.54 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 63 PC3))
(pad 9 thru_hole oval (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 83 PA0))
(pad 8 thru_hole oval (at 2.54 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 62 PC1))
(pad 7 thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 84 PC2))
(pad 6 thru_hole oval (at 2.54 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 61 PC15))
(pad 5 thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 85 PC0))
(pad 4 thru_hole oval (at 2.54 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 60 PE3))
(pad 3 thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 86 PC14))
(pad 2 thru_hole oval (at 2.54 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 59 PE0))
(pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 87 PE1))
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x16_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_2x16_P2.54mm_Vertical (layer F.Cu) (tedit 5F2E6061) (tstamp 5F2C17CD)
(at 44.48 35.28 90)
(descr "Through hole straight pin header, 2x16, 2.54mm pitch, double rows")
(tags "Through hole pin header THT 2x16 2.54mm double row")
(path /6005E38D/5F344F7A)
(fp_text reference J3 (at 1.27 -2.33 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Conn_02x16_Odd_Even (at 1.27 40.43 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 0 -1.27) (end 3.81 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 3.81 -1.27) (end 3.81 39.37) (layer F.Fab) (width 0.1))
(fp_line (start 3.81 39.37) (end -1.27 39.37) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 39.37) (end -1.27 0) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 0) (end 0 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.33 39.43) (end 3.87 39.43) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end -1.33 39.43) (layer F.SilkS) (width 0.12))
(fp_line (start 3.87 -1.33) (end 3.87 39.43) (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 1.27 1.27) (end 1.27 -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.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 -1.8) (end -1.8 39.9) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 39.9) (end 4.35 39.9) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.35 39.9) (end 4.35 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.35 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 1.27 19.05) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 32 thru_hole oval (at 2.54 38.1 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 42 PB13))
(pad 31 thru_hole oval (at 0 38.1 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 43 PB12))
(pad 30 thru_hole oval (at 2.54 35.56 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 41 PB15))
(pad 29 thru_hole oval (at 0 35.56 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 44 PB14))
(pad 28 thru_hole oval (at 2.54 33.02 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 40 PD9))
(pad 27 thru_hole oval (at 0 33.02 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 45 PD8))
(pad 26 thru_hole oval (at 2.54 30.48 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 39 PD11))
(pad 25 thru_hole oval (at 0 30.48 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 46 PD10))
(pad 24 thru_hole oval (at 2.54 27.94 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 38 PD13))
(pad 23 thru_hole oval (at 0 27.94 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 47 PD12))
(pad 22 thru_hole oval (at 2.54 25.4 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 31 PD3))
(pad 21 thru_hole oval (at 0 25.4 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 53 PD2))
(pad 20 thru_hole oval (at 2.54 22.86 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 30 PD5))
(pad 19 thru_hole oval (at 0 22.86 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 54 PD4))
(pad 18 thru_hole oval (at 2.54 20.32 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 35 PC9))
(pad 17 thru_hole oval (at 0 20.32 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 57 PB5))
(pad 16 thru_hole oval (at 2.54 17.78 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 34 PA8))
(pad 15 thru_hole oval (at 0 17.78 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad 14 thru_hole oval (at 2.54 15.24 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 GND))
(pad 13 thru_hole oval (at 0 15.24 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 52 PC11))
(pad 12 thru_hole oval (at 2.54 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 GND))
(pad 11 thru_hole oval (at 0 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 55 PD6))
(pad 10 thru_hole oval (at 2.54 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 GND))
(pad 9 thru_hole oval (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 GND))
(pad 8 thru_hole oval (at 2.54 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 GND))
(pad 7 thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 GND))
(pad 6 thru_hole oval (at 2.54 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 GND))
(pad 5 thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 GND))
(pad 4 thru_hole oval (at 2.54 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 BOOT))
(pad 3 thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 GND))
(pad 2 thru_hole oval (at 2.54 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 GND))
(pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 5V_IN))
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x16_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Crystal:Resonator_SMD_muRata_CSTxExxV-3Pin_3.0x1.1mm (layer F.Cu) (tedit 5AD358ED) (tstamp 5F2BC7A4)
(at 50.9 49.6 270)
(descr "SMD Resomator/Filter Murata CSTCE, https://www.murata.com/en-eu/products/productdata/8801162264606/SPEC-CSTNE16M0VH3C000R0.pdf")
(tags "SMD SMT ceramic resonator filter")
(path /5F2B2D49)
(attr smd)
(fp_text reference Y1 (at -2.35 1) (layer F.SilkS)
(effects (font (size 0.4 0.4) (thickness 0.1)))
)
(fp_text value 16Mhz (at 0 1.8 90) (layer F.Fab)
(effects (font (size 0.2 0.2) (thickness 0.03)))
)
(fp_line (start 1.8 1.2) (end 1 1.2) (layer F.SilkS) (width 0.12))
(fp_line (start 1.8 -1.2) (end 1.8 0.8) (layer F.SilkS) (width 0.12))
(fp_line (start 1 -1.2) (end 1.8 -1.2) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 -1.2) (end -0.8 -1.2) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 0.8) (end -1.8 -1.2) (layer F.SilkS) (width 0.12))
(fp_line (start -0.8 1.2) (end -1.8 1.2) (layer F.SilkS) (width 0.12))
(fp_line (start -0.8 1.2) (end -0.8 1.6) (layer F.SilkS) (width 0.12))
(fp_line (start -2 -1.2) (end -2 0.8) (layer F.SilkS) (width 0.12))
(fp_line (start 1.8 0.8) (end 1.8 1.2) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 0.8) (end -1.8 1.2) (layer F.SilkS) (width 0.12))
(fp_line (start -2 0.8) (end -2 1.2) (layer F.SilkS) (width 0.12))
(fp_line (start 1.5 0.8) (end 1.5 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1.5 -0.8) (end -1.5 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start -1 0.8) (end -1.5 0.3) (layer F.Fab) (width 0.1))
(fp_line (start -1 0.8) (end 1.5 0.8) (layer F.Fab) (width 0.1))
(fp_line (start -1.5 0.3) (end -1.5 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1.75 1.2) (end -1.75 1.2) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -1.2) (end 1.75 -1.2) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.75 -1.2) (end 1.75 1.2) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 1.2) (end -1.75 -1.2) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0.1 -0.05 90) (layer F.Fab)
(effects (font (size 0.6 0.6) (thickness 0.08)))
)
(pad 3 smd rect (at 1.2 0 270) (size 0.4 1.9) (layers F.Cu F.Paste F.Mask)
(net 101 OSC_OUT))
(pad 2 smd rect (at 0 0 270) (size 0.4 1.9) (layers F.Cu F.Paste F.Mask)
(net 5 GND))
(pad 1 smd rect (at -1.2 0 270) (size 0.4 1.9) (layers F.Cu F.Paste F.Mask)
(net 102 OSC_IN))
(model ${KISYS3DMOD}/Crystal.3dshapes/Resonator_SMD_muRata_CSTxExxV-3Pin_3.0x1.1mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Package_TO_SOT_SMD:SOT-223-3_TabPin2 (layer B.Cu) (tedit 5F2B9812) (tstamp 5F2BC788)
(at 78.71 49.85)
(descr "module CMS SOT223 4 pins")
(tags "CMS SOT")
(path /5F2B1648)
(attr smd)
(fp_text reference "3.3 VREG" (at -0.61 -4.19) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.13)) (justify mirror))
)
(fp_text value NCP1117-3.3_SOT223 (at 0 -4.5) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 1.91 -3.41) (end 1.91 -2.15) (layer B.SilkS) (width 0.12))
(fp_line (start 1.91 3.41) (end 1.91 2.15) (layer B.SilkS) (width 0.12))
(fp_line (start 4.4 3.6) (end -4.4 3.6) (layer B.CrtYd) (width 0.05))
(fp_line (start 4.4 -3.6) (end 4.4 3.6) (layer B.CrtYd) (width 0.05))
(fp_line (start -4.4 -3.6) (end 4.4 -3.6) (layer B.CrtYd) (width 0.05))
(fp_line (start -4.4 3.6) (end -4.4 -3.6) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.85 2.35) (end -0.85 3.35) (layer B.Fab) (width 0.1))
(fp_line (start -1.85 2.35) (end -1.85 -3.35) (layer B.Fab) (width 0.1))
(fp_line (start -1.85 -3.41) (end 1.91 -3.41) (layer B.SilkS) (width 0.12))
(fp_line (start -0.85 3.35) (end 1.85 3.35) (layer B.Fab) (width 0.1))
(fp_line (start -4.1 3.41) (end 1.91 3.41) (layer B.SilkS) (width 0.12))
(fp_line (start -1.85 -3.35) (end 1.85 -3.35) (layer B.Fab) (width 0.1))
(fp_line (start 1.85 3.35) (end 1.85 -3.35) (layer B.Fab) (width 0.1))
(fp_text user %R (at 0 0 -90) (layer B.Fab)
(effects (font (size 0.8 0.8) (thickness 0.12)) (justify mirror))
)
(pad 1 smd rect (at -3.15 2.3) (size 2 1.5) (layers B.Cu B.Paste B.Mask)
(net 5 GND))
(pad 3 smd rect (at -3.15 -2.3) (size 2 1.5) (layers B.Cu B.Paste B.Mask)
(net 8 5V_IN))
(pad 2 smd rect (at -3.15 0) (size 2 1.5) (layers B.Cu B.Paste B.Mask)
(net 1 BOOT))
(pad 2 smd rect (at 3.15 0) (size 2 3.8) (layers B.Cu B.Paste B.Mask)
(net 1 BOOT))
(model ${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-223.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Package_QFP:LQFP-100_14x14mm_P0.5mm (layer F.Cu) (tedit 5F2E6075) (tstamp 5F2BC772)
(at 62.4 50)
(descr "LQFP, 100 Pin (https://www.nxp.com/docs/en/package-information/SOT407-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "LQFP QFP")
(path /5F2ADC32)
(attr smd)
(fp_text reference U1 (at 0 -9.42) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value STM32F746VGTx (at 0 9.42) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 6.41 7.11) (end 7.11 7.11) (layer F.SilkS) (width 0.12))
(fp_line (start 7.11 7.11) (end 7.11 6.41) (layer F.SilkS) (width 0.12))
(fp_line (start -6.41 7.11) (end -7.11 7.11) (layer F.SilkS) (width 0.12))
(fp_line (start -7.11 7.11) (end -7.11 6.41) (layer F.SilkS) (width 0.12))
(fp_line (start 6.41 -7.11) (end 7.11 -7.11) (layer F.SilkS) (width 0.12))
(fp_line (start 7.11 -7.11) (end 7.11 -6.41) (layer F.SilkS) (width 0.12))
(fp_line (start -6.41 -7.11) (end -7.11 -7.11) (layer F.SilkS) (width 0.12))
(fp_line (start -7.11 -7.11) (end -7.11 -6.41) (layer F.SilkS) (width 0.12))
(fp_line (start -7.11 -6.41) (end -8.475 -6.41) (layer F.SilkS) (width 0.12))
(fp_line (start -6 -7) (end 7 -7) (layer F.Fab) (width 0.1))
(fp_line (start 7 -7) (end 7 7) (layer F.Fab) (width 0.1))
(fp_line (start 7 7) (end -7 7) (layer F.Fab) (width 0.1))
(fp_line (start -7 7) (end -7 -6) (layer F.Fab) (width 0.1))
(fp_line (start -7 -6) (end -6 -7) (layer F.Fab) (width 0.1))
(fp_line (start 0 -8.72) (end -6.4 -8.72) (layer F.CrtYd) (width 0.05))
(fp_line (start -6.4 -8.72) (end -6.4 -7.25) (layer F.CrtYd) (width 0.05))
(fp_line (start -6.4 -7.25) (end -7.25 -7.25) (layer F.CrtYd) (width 0.05))
(fp_line (start -7.25 -7.25) (end -7.25 -6.4) (layer F.CrtYd) (width 0.05))
(fp_line (start -7.25 -6.4) (end -8.72 -6.4) (layer F.CrtYd) (width 0.05))
(fp_line (start -8.72 -6.4) (end -8.72 0) (layer F.CrtYd) (width 0.05))
(fp_line (start 0 -8.72) (end 6.4 -8.72) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.4 -8.72) (end 6.4 -7.25) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.4 -7.25) (end 7.25 -7.25) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.25 -7.25) (end 7.25 -6.4) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.25 -6.4) (end 8.72 -6.4) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.72 -6.4) (end 8.72 0) (layer F.CrtYd) (width 0.05))
(fp_line (start 0 8.72) (end -6.4 8.72) (layer F.CrtYd) (width 0.05))
(fp_line (start -6.4 8.72) (end -6.4 7.25) (layer F.CrtYd) (width 0.05))
(fp_line (start -6.4 7.25) (end -7.25 7.25) (layer F.CrtYd) (width 0.05))
(fp_line (start -7.25 7.25) (end -7.25 6.4) (layer F.CrtYd) (width 0.05))
(fp_line (start -7.25 6.4) (end -8.72 6.4) (layer F.CrtYd) (width 0.05))
(fp_line (start -8.72 6.4) (end -8.72 0) (layer F.CrtYd) (width 0.05))
(fp_line (start 0 8.72) (end 6.4 8.72) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.4 8.72) (end 6.4 7.25) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.4 7.25) (end 7.25 7.25) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.25 7.25) (end 7.25 6.4) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.25 6.4) (end 8.72 6.4) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.72 6.4) (end 8.72 0) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 100 smd roundrect (at -6 -7.675) (size 0.3 1.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 1 BOOT))
(pad 99 smd roundrect (at -5.5 -7.675) (size 0.3 1.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 5 GND))
(pad 98 smd roundrect (at -5 -7.675) (size 0.3 1.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25))
(pad 97 smd roundrect (at -4.5 -7.675) (size 0.3 1.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25))
(pad 96 smd roundrect (at -4 -7.675) (size 0.3 1.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 27 PB9))
(pad 95 smd roundrect (at -3.5 -7.675) (size 0.3 1.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 58 PB8))
(pad 94 smd roundrect (at -3 -7.675) (size 0.3 1.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 1 BOOT))
(pad 93 connect roundrect (at -2.5 -7.675) (size 0.3 1.6) (layers F.Cu F.Mask) (roundrect_rratio 0.25)
(net 52 PC11))
(pad 92 smd roundrect (at -2 -7.675) (size 0.3 1.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 35 PC9))
(pad 91 smd roundrect (at -1.5 -7.675) (size 0.3 1.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 57 PB5))
(pad 90 smd roundrect (at -1 -7.675) (size 0.3 1.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 28 PB4))
(pad 89 smd roundrect (at -0.5 -7.675) (size 0.3 1.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 56 PB3))
(pad 88 smd roundrect (at 0 -7.675) (size 0.3 1.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 29 PD7))
(pad 87 smd roundrect (at 0.5 -7.675) (size 0.3 1.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 55 PD6))
(pad 86 smd roundrect (at 1 -7.675) (size 0.3 1.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 30 PD5))
(pad 85 smd roundrect (at 1.5 -7.675) (size 0.3 1.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 54 PD4))
(pad 84 smd roundrect (at 2 -7.675) (size 0.3 1.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 31 PD3))
(pad 83 smd roundrect (at 2.5 -7.675) (size 0.3 1.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 53 PD2))
(pad 82 smd roundrect (at 3 -7.675) (size 0.3 1.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 95 CAN_TX))
(pad 81 smd roundrect (at 3.5 -7.675) (size 0.3 1.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 94 CAN_RX))
(pad 80 smd roundrect (at 4 -7.675) (size 0.3 1.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 32 PC12))
(pad 79 smd roundrect (at 4.5 -7.675) (size 0.3 1.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25))
(pad 78 smd roundrect (at 5 -7.675) (size 0.3 1.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 33 PC10))
(pad 77 smd roundrect (at 5.5 -7.675) (size 0.3 1.6) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 51 PA15))