This repository was archived by the owner on Dec 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrrc_pcb.kicad_pcb
21976 lines (21927 loc) · 787 KB
/
rrc_pcb.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 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x003d0f0_ffffffff)
(plot_on_all_layers_selection 0x0001000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 6)
(plotframeref true)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber/")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "VCC")
(net 3 "T_VCC")
(net 4 "Net-(BZ1--)")
(net 5 "Net-(J1-Pin_1)")
(net 6 "SCL1")
(net 7 "SDA1")
(net 8 "TX2")
(net 9 "RX2")
(net 10 "SCL")
(net 11 "Net-(J1-Pin_2)")
(net 12 "Net-(J2-Pin_2)")
(net 13 "unconnected-(RF1-P2.6-Pad15)")
(net 14 "unconnected-(RF1-GND-Pad16)")
(net 15 "unconnected-(RF1-SICTS-Pad3)")
(net 16 "unconnected-(RF1-P2.0-Pad14)")
(net 17 "T_GND")
(net 18 "unconnected-(RF1-P0.1-Pad13)")
(net 19 "unconnected-(RF1-P2.1-Pad12)")
(net 20 "unconnected-(RF1-+5VUSB-Pad5)")
(net 21 "unconnected-(RF1-P2.3-Pad8)")
(net 22 "unconnected-(RF1-GND-Pad1)")
(net 23 "unconnected-(RF1-SIRTS-Pad11)")
(net 24 "unconnected-(RF1-P2.2-Pad10)")
(net 25 "unconnected-(RF1-+5VUSB-Pad6)")
(net 26 "unconnected-(U2-GND-Pad1)")
(net 27 "unconnected-(U2-0_RX1_CRX2_CS1-Pad2)")
(net 28 "unconnected-(U2-1_TX1_CTX2_MISO1-Pad3)")
(net 29 "SDA")
(net 30 "unconnected-(U2-2_OUT2-Pad4)")
(net 31 "unconnected-(U2-3_LRCLK2-Pad5)")
(net 32 "unconnected-(U2-4_BCLK2-Pad6)")
(net 33 "unconnected-(U2-5_IN2-Pad7)")
(net 34 "unconnected-(U2-6_OUT1D-Pad8)")
(net 35 "unconnected-(U2-9_OUT1C-Pad11)")
(net 36 "unconnected-(U2-10_CS_MQSR-Pad12)")
(net 37 "unconnected-(U2-11_MOSI_CTX1-Pad13)")
(net 38 "unconnected-(U2-12_MISO_MQSL-Pad14)")
(net 39 "INT1")
(net 40 "FSYNC")
(net 41 "unconnected-(U2-24_A10_TX6_SCL2-Pad16)")
(net 42 "unconnected-(U2-30_CRX3-Pad22)")
(net 43 "unconnected-(U2-31_CTX3-Pad23)")
(net 44 "unconnected-(U2-32_OUT1B-Pad24)")
(net 45 "unconnected-(U2-33_MCLK2-Pad25)")
(net 46 "unconnected-(U2-34_RX8-Pad26)")
(net 47 "unconnected-(U2-35_TX8-Pad27)")
(net 48 "unconnected-(U2-36_CS-Pad28)")
(net 49 "unconnected-(U2-37_CS-Pad29)")
(net 50 "unconnected-(U2-39_MISO1_OUT1A-Pad31)")
(net 51 "unconnected-(U2-41_A17-Pad33)")
(net 52 "unconnected-(U2-13_SCK_LED-Pad35)")
(net 53 "unconnected-(U2-14_A0_TX3_SPDIF_OUT-Pad36)")
(net 54 "unconnected-(U2-15_A1_RX3_SPDIF_IN-Pad37)")
(net 55 "unconnected-(U2-20_A6_TX5_LRCLK1-Pad42)")
(net 56 "unconnected-(U2-21_A7_RX5_BCLK1-Pad43)")
(net 57 "unconnected-(U2-22_A8_CTX1-Pad44)")
(net 58 "unconnected-(U2-23_A9_CRX1_MCLK1-Pad45)")
(net 59 "unconnected-(U2-3V3-Pad46)")
(net 60 "unconnected-(U2-VUSB-Pad49)")
(net 61 "unconnected-(U2-VBAT-Pad50)")
(net 62 "unconnected-(U2-3V3-Pad51)")
(net 63 "unconnected-(U2-GND-Pad52)")
(net 64 "unconnected-(U2-PROGRAM-Pad53)")
(net 65 "unconnected-(U2-ON_OFF-Pad54)")
(net 66 "unconnected-(U2-5V-Pad55)")
(net 67 "unconnected-(U2-D--Pad56)")
(net 68 "unconnected-(U2-D+-Pad57)")
(net 69 "unconnected-(U2-GND-Pad58)")
(net 70 "unconnected-(U2-GND-Pad59)")
(net 71 "unconnected-(U2-R+-Pad60)")
(net 72 "unconnected-(U2-LED-Pad61)")
(net 73 "unconnected-(U2-T--Pad62)")
(net 74 "unconnected-(U2-T+-Pad63)")
(net 75 "unconnected-(U2-GND-Pad64)")
(net 76 "unconnected-(U2-R--Pad65)")
(net 77 "unconnected-(U2-D--Pad66)")
(net 78 "unconnected-(U2-D+-Pad67)")
(net 79 "unconnected-(U4-AUX_DA-Pad1)")
(net 80 "unconnected-(U4-NC-Pad2)")
(net 81 "unconnected-(U4-AUX_CL-Pad3)")
(net 82 "unconnected-(U4-NC-Pad4)")
(net 83 "unconnected-(U4-1V8-Pad5)")
(net 84 "unconnected-(U4-DRDY-Pad6)")
(net 85 "RX7")
(net 86 "TX7")
(net 87 "unconnected-(U4-~{CS}-Pad8)")
(net 88 "unconnected-(U4-NC-Pad9)")
(net 89 "unconnected-(U4-DRDY-CMP-Pad10)")
(net 90 "unconnected-(U4-TP0-Pad11)")
(net 91 "unconnected-(U4-NC-Pad12)")
(net 92 "unconnected-(U4-Vpp-Pad13)")
(net 93 "unconnected-(U4-NC-Pad14)")
(net 94 "unconnected-(U4-NC-Pad16)")
(net 95 "unconnected-(U4-REGOUT-Pad18)")
(net 96 "unconnected-(U4-NC-Pad19)")
(net 97 "unconnected-(U5-CSB-Pad5)")
(net 98 "unconnected-(U5-SDD-Pad6)")
(net 99 "unconnected-(U5-PS-Pad7)")
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000060f5e13d)
(at 126.56495 53.950936)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "rrc_pcb.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060f4361a")
(attr through_hole)
(fp_text reference "R2" (at 5.08 -2.37) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d65c7322-d5b4-49b8-8332-b38b77a63f42)
)
(fp_text value "R-Device" (at 5.08 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 026eb44f-3e79-4216-9438-941d0429ba88)
)
(fp_text user "${REFERENCE}" (at 5.08 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0efec98e-6949-4bb6-90ce-bec3f1fe752a)
)
(fp_line (start 1.04 0) (end 1.81 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a5a6ad71-418b-4ecd-8a35-c7b7d0f60dcd))
(fp_line (start 1.81 -1.37) (end 1.81 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 983751f9-2510-4ba0-8f8c-c114c3e9966e))
(fp_line (start 1.81 1.37) (end 8.35 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6225b1e2-4f43-4521-9b26-399989cfa5d8))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 42069c92-27bc-4236-999b-25bf98f511b3))
(fp_line (start 8.35 1.37) (end 8.35 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6dbac1a7-67f2-4050-b1ad-4dbe6e13757f))
(fp_line (start 9.12 0) (end 8.35 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ec79787a-ec39-47d3-a9c3-71ff12589d29))
(fp_line (start -1.05 -1.5) (end -1.05 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3e190265-a174-461e-a7c5-85abc5673145))
(fp_line (start -1.05 1.5) (end 11.21 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b4b6ff24-3f91-493b-9d26-98219ad5b59a))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 37b1c387-6e50-4143-9c7a-eff6346205ce))
(fp_line (start 11.21 1.5) (end 11.21 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0152fc87-324d-4677-aff1-75c2232a0d10))
(fp_line (start 0 0) (end 1.93 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 68de7d9e-2f3e-4fd4-a966-08489ce69438))
(fp_line (start 1.93 -1.25) (end 1.93 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp af1002d0-46aa-4abb-96c4-f9c012f93e02))
(fp_line (start 1.93 1.25) (end 8.23 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e318f262-fe77-402e-92ed-f57667d9e40e))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 454bf40a-4ef6-4434-bf0e-67c90705e460))
(fp_line (start 8.23 1.25) (end 8.23 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c8c7a6ae-5901-4146-8afd-63ebefd956f2))
(fp_line (start 10.16 0) (end 8.23 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cf25380d-f8ba-4d79-adcc-c2aed1d0fa0f))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 29 "SDA") (pintype "passive") (tstamp c98dfbb5-d138-4eec-a388-28b106e5cf23))
(pad "2" thru_hole oval (at 10.16 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 3 "T_VCC") (pintype "passive") (tstamp ec8e2c14-c3ca-420b-b00a-26f45979c603))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000060f5e1dc)
(at 126.526764 87.069353)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "rrc_pcb.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060f426bb")
(attr through_hole)
(fp_text reference "R3" (at 5.08 -2.37) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f79a1f40-6537-43a6-a44c-013fa2f8853e)
)
(fp_text value "R-Device" (at 5.08 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ee8b0e12-1490-4cd2-9023-c032ec1a6594)
)
(fp_text user "${REFERENCE}" (at 5.08 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a4858a3c-c22b-4bce-b617-e88ca4f025c3)
)
(fp_line (start 1.04 0) (end 1.81 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 615e853e-a5aa-4814-8a30-706412e38a07))
(fp_line (start 1.81 -1.37) (end 1.81 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 00ffc224-c1a4-4dde-b32b-00fa6fc8461a))
(fp_line (start 1.81 1.37) (end 8.35 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a7ebf033-9616-4890-b0e1-f78aa4554e86))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b3f0e001-7ab1-4134-a6bb-b494d21a5da1))
(fp_line (start 8.35 1.37) (end 8.35 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9b77f524-72cd-464a-b46f-106617e77d4d))
(fp_line (start 9.12 0) (end 8.35 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 27208fef-b21f-4054-9ac5-3988a5349429))
(fp_line (start -1.05 -1.5) (end -1.05 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 040b5770-b2a5-4f77-8bb7-87516deebbf8))
(fp_line (start -1.05 1.5) (end 11.21 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 584bf8b4-8384-4596-b8f0-651914087f95))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1f5d16ce-bf15-423e-94e4-4d2743272b98))
(fp_line (start 11.21 1.5) (end 11.21 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 456371e7-2836-4d1b-83b8-968619c22e80))
(fp_line (start 0 0) (end 1.93 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ebcab288-2e7b-456d-a763-bcee5ac45003))
(fp_line (start 1.93 -1.25) (end 1.93 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1a6a2854-aabc-4ad4-9181-fbceee56c265))
(fp_line (start 1.93 1.25) (end 8.23 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9d002bea-2d3a-4445-bb09-4e7a922545cd))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6bcdece4-abca-45fc-8e0c-51a37107243d))
(fp_line (start 8.23 1.25) (end 8.23 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1eb1ced0-f440-43f9-8d0f-7599594987a0))
(fp_line (start 10.16 0) (end 8.23 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4b8767b4-4366-4053-9a9f-31b8d14b9a49))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) (zone_layer_connections)
(net 6 "SCL1") (pintype "passive") (tstamp 9a99d97b-3ac6-4f5e-aaa8-5dbe43b892f1))
(pad "2" thru_hole oval (at 10.16 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 3 "T_VCC") (pintype "passive") (tstamp c4e4be50-7c71-479d-935c-983382f4cf10))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000060f5e21e)
(at 152.440461 87.377794 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "rrc_pcb.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060f41f75")
(attr through_hole)
(fp_text reference "R4" (at 5.08 -2.37) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e86001d3-daf8-495c-9d65-0b6e963b95e7)
)
(fp_text value "R-Device" (at 5.08 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c70e1a6d-ef17-4904-a1e7-4af88003ce51)
)
(fp_text user "${REFERENCE}" (at 3.244218 1.25) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3b96970f-1c07-4bdf-a0d7-55c3946bbfb7)
)
(fp_line (start 1.04 0) (end 1.81 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4781d72f-4aab-4a64-8172-72ba8029d79b))
(fp_line (start 1.81 -1.37) (end 1.81 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 96cf1e48-3de0-42ad-b0f6-3da417584315))
(fp_line (start 1.81 1.37) (end 8.35 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cc0f1f03-e0f7-4fc9-bde7-842481171312))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6387102f-6bf8-4060-8812-1b088e578ef4))
(fp_line (start 8.35 1.37) (end 8.35 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f65054e4-e43c-4fb3-a85f-1d39dcf4dee1))
(fp_line (start 9.12 0) (end 8.35 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8f5aac6f-929e-4560-a3e7-8cae1614417f))
(fp_line (start -1.05 -1.5) (end -1.05 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aaf5af5c-d788-4926-bfe3-96421bc7a576))
(fp_line (start -1.05 1.5) (end 11.21 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9dbeca8e-47c4-4671-a8dd-9aadc090718f))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 682d2297-7141-4620-871d-98b89c450685))
(fp_line (start 11.21 1.5) (end 11.21 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3934b4c4-f61e-48fb-b5f4-3efd496a2a7a))
(fp_line (start 0 0) (end 1.93 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4a51cc1b-edbd-4fdc-a65d-b0160fda25eb))
(fp_line (start 1.93 -1.25) (end 1.93 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f70c1c2f-704a-4f2b-aaf2-eb02dab28cdd))
(fp_line (start 1.93 1.25) (end 8.23 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6361950a-6edc-421c-8931-f949cd7f3326))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fff908a6-5708-497e-9a13-d1a94825f3c4))
(fp_line (start 8.23 1.25) (end 8.23 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 14d89891-a1a0-4d74-a98a-d64aa7b8ff33))
(fp_line (start 10.16 0) (end 8.23 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 66ed491b-33c6-4da7-a1b3-451724ff5078))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 7 "SDA1") (pintype "passive") (tstamp 3aae6248-360b-4559-905c-abacd42d6b71))
(pad "2" thru_hole oval (at 10.16 0 180) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 3 "T_VCC") (pintype "passive") (tstamp 8734b6ff-bfa0-4d6e-85f4-c05e634fb249))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000060f5e3e9)
(at 126.644699 49.963495)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "rrc_pcb.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060f42e96")
(attr through_hole)
(fp_text reference "R1" (at 5.08 -2.37) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aee06b31-a29a-4ca5-a163-37e40b887dfc)
)
(fp_text value "R-Device" (at 5.08 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0631a757-d46f-4e58-9f9a-835a9deb8a06)
)
(fp_text user "${REFERENCE}" (at 5.08 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5d9ba0ab-c0d0-4e3c-a56e-6d4d8543bbbd)
)
(fp_line (start 1.04 0) (end 1.81 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 767d4127-c400-46fe-8727-a21bfc61b948))
(fp_line (start 1.81 -1.37) (end 1.81 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 91ed7caa-0f8b-45b1-8b91-305ea6adb907))
(fp_line (start 1.81 1.37) (end 8.35 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a26a99eb-9cc6-4f1a-a364-0c55875901be))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a52539f0-ba43-4a0b-a815-41ce33c9a04e))
(fp_line (start 8.35 1.37) (end 8.35 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5674a2de-2b29-4433-83c1-46ccf55b0c0b))
(fp_line (start 9.12 0) (end 8.35 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4ecf299b-1b47-4e79-82f7-d3ef73260342))
(fp_line (start -1.05 -1.5) (end -1.05 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bedccce1-54c0-4b3b-9724-3e68f715ba67))
(fp_line (start -1.05 1.5) (end 11.21 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d81c9f2b-71e5-4512-a1dc-96a387cc70c7))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8b34685a-4b59-4638-9a32-e85540368b66))
(fp_line (start 11.21 1.5) (end 11.21 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6a3b1135-5b29-484e-8993-1b8b24675756))
(fp_line (start 0 0) (end 1.93 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 76c73a77-daa2-4c56-aa1f-b48b99ad9941))
(fp_line (start 1.93 -1.25) (end 1.93 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 50ba90a4-46cb-45bb-b1e8-e190ee5b799d))
(fp_line (start 1.93 1.25) (end 8.23 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 21a9401d-e15f-40e8-82f1-9967ac5dd541))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c939cf48-2be1-449f-ae0d-3cbe43426be2))
(fp_line (start 8.23 1.25) (end 8.23 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a991cc2b-6f0b-4697-a7a9-790149c3d46d))
(fp_line (start 10.16 0) (end 8.23 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c65d18fe-35b3-4b34-8c9c-c80fb8352ab4))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 10 "SCL") (pintype "passive") (tstamp 09dfd432-f827-41c9-aff3-64860d938df6))
(pad "2" thru_hole oval (at 10.16 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 3 "T_VCC") (pintype "passive") (tstamp 77d5e2d3-0511-4dc3-b5e9-4bf226d1f811))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_AMASS:AMASS_XT30U-F_1x02_P5.0mm_Vertical" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000060f5e42f)
(at 173.355 37.385 90)
(descr "Connector XT30 Vertical Cable Female, https://www.tme.eu/en/Document/3cbfa5cfa544d79584972dd5234a409e/XT30U%20SPEC.pdf")
(tags "RC Connector XT30")
(property "Sheetfile" "rrc_pcb.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060f4b4b7")
(attr through_hole)
(fp_text reference "J1" (at 2.5 -4 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aae61eda-ada5-4c8b-99cc-18e226d9e185)
)
(fp_text value "Conn_01x02_Male-Connector" (at 31.019539 -11.522755 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 37eb7bf9-6047-419b-8d6c-e784775f793e)
)
(fp_text user "-" (at -4 0 90) (layer "F.SilkS")
(effects (font (size 1.5 1.5) (thickness 0.15)))
(tstamp 8473359e-a14f-4134-9ae0-e429f5bd2dc4)
)
(fp_text user "+" (at 9 0 90) (layer "F.SilkS")
(effects (font (size 1.5 1.5) (thickness 0.15)))
(tstamp a8cda814-f566-4f6b-bdc4-736033a63397)
)
(fp_text user "${REFERENCE}" (at 2.5 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 56010e05-bc0d-4ff7-98a8-9368ccd14bc6)
)
(fp_line (start -2.71 -1.41) (end -2.71 1.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4d59c477-3fee-4d1a-9288-1a2b18e14eb1))
(fp_line (start -2.71 -1.41) (end -1.01 -2.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 509b6322-34b7-4128-adec-26c13a547a60))
(fp_line (start -2.71 1.41) (end -1.01 2.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6b1e19a9-d24a-48c4-823f-0f0606efd971))
(fp_line (start -1.01 -2.71) (end 7.71 -2.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5a05f20a-02d9-4e32-aa8f-391cae95f33a))
(fp_line (start -1.01 2.71) (end 7.71 2.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 36ad2dba-78d0-4b04-9277-d4c019accea2))
(fp_line (start 7.71 -2.71) (end 7.71 2.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp db8222f3-d95c-4b79-856b-0bb8331e577e))
(fp_line (start -3.1 -1.8) (end -3.1 1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 60298e2e-7fed-4475-b884-e56a3d8fb245))
(fp_line (start -3.1 -1.8) (end -1.4 -3.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4a2d7ca7-626d-49c6-b9a1-a1101e6191db))
(fp_line (start -3.1 1.8) (end -1.4 3.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1c5d38d8-bde8-49b6-90c7-f6f17f431d73))
(fp_line (start -1.4 -3.1) (end 8.1 -3.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 137a623a-cba1-4137-8eb2-7640a372468b))
(fp_line (start -1.4 3.1) (end 8.1 3.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c912798a-f9e3-4290-88d3-8882eed9cce1))
(fp_line (start 8.1 -3.1) (end 8.1 3.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp de32183f-5e69-4b8f-b6b6-1edbc0a3801f))
(fp_line (start -2.6 -1.3) (end -2.6 1.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d369b4dc-8abd-4522-aa99-862d688a967f))
(fp_line (start -2.6 -1.3) (end -0.9 -2.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 760825b9-f0d3-4552-967c-35001d0e7297))
(fp_line (start -2.6 1.3) (end -0.9 2.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3f0c9e7c-cba4-49bf-a83a-5a70ea59d850))
(fp_line (start -0.9 -2.6) (end 7.6 -2.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f2cebbcf-e4fd-4bb1-a61d-0ee3da3ca7a5))
(fp_line (start -0.9 2.6) (end 7.6 2.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 18c3a391-7ffd-467d-84a8-6f6c6af8af90))
(fp_line (start 7.6 -2.6) (end 7.6 2.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 22c86e9f-7a57-4e00-9947-cab3b3fd15e7))
(pad "1" thru_hole rect (at 0 0 90) (size 3.8 3.8) (drill 2.7) (layers "*.Cu" "*.Mask")
(net 5 "Net-(J1-Pin_1)") (pinfunction "Pin_1") (pintype "passive") (tstamp fd1d6895-51f1-474e-9af7-dd4cd1588f2e))
(pad "2" thru_hole circle (at 5 0 90) (size 4 4) (drill 2.7) (layers "*.Cu" "*.Mask")
(net 11 "Net-(J1-Pin_2)") (pinfunction "Pin_2") (pintype "passive") (tstamp 833db722-bd67-4f35-aad7-64c22371d154))
(model "${KIPRJMOD}/footprints/LiPo/Tattu_6S_8000mAh_25C.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "icm20948:icm20948" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000060f5e4f0)
(at 156.205612 60.862137)
(property "MANUFACTURER" "TDK InvenSense")
(property "MAXIMUM_PACKAGE_HEIGHT" "")
(property "PARTREV" "")
(property "STANDARD" "")
(property "Sheetfile" "rrc_pcb.kicad_sch")
(property "Sheetname" "")
(path "/0447b727-4b5f-40f2-b95a-bf65178a21cf")
(attr smd)
(fp_text reference "U4" (at 0 -0.5 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 06cacdbb-0366-4271-a1d3-1f1f5a4082e9)
)
(fp_text value "ICM-20948 " (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3cb60f32-1f51-4552-8531-8dfc8f11a9aa)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 33975b99-4fbc-4458-ba48-32cc33048795)
)
(fp_text user "${REFERENCE}" (at -13.24 4.54 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 59bd5721-e91f-4ba7-8e96-6728eb495771)
)
(fp_text user "${REFERENCE}" (at -5.08 6.229289 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b11d1c09-d0b8-4114-88cc-e754d64de2c3)
)
(fp_line (start -15.84 -10.76) (end -14.51 -10.76)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eb4cef36-ccac-48e9-98c3-2b4d9a04afe9))
(fp_line (start -15.84 -9.43) (end -15.84 -10.76)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 06947639-8db1-45df-96ec-216c776471e9))
(fp_line (start -15.84 -8.16) (end -15.84 19.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bcf780d0-9408-41e1-93d5-a6217f9365b6))
(fp_line (start -15.84 -8.16) (end -13.24 -8.16)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 024162db-d9a6-4baf-a58d-4b04c6ffe609))
(fp_line (start -15.84 19.84) (end -10.64 19.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 403bf703-584c-4a5d-af70-5694725702b2))
(fp_line (start -13.24 -10.76) (end -10.64 -10.76)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3e23f790-b095-4b82-8164-99ff8fd4eb45))
(fp_line (start -13.24 -8.16) (end -13.24 -10.76)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 72a907f3-403b-47d0-aeb3-f135a9a4ac6c))
(fp_line (start -10.64 -10.76) (end -10.64 19.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 02fa196b-739b-4d6d-bf93-f81fc221344d))
(fp_rect (start 21.495 -13.875) (end -16.605 24.225)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp bd6acb96-1cde-4180-b761-b765d325c287))
(fp_line (start -16.31 -11.23) (end -16.31 20.32)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b69b57c8-1789-45c1-a0a9-ddcb5a321f9d))
(fp_line (start -16.31 20.32) (end -10.16 20.32)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4098f259-4b45-4da1-83c2-fbfe2a234ed3))
(fp_line (start -10.16 -11.23) (end -16.31 -11.23)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 85944013-9729-4bc1-b742-f209820456d9))
(fp_line (start -10.16 20.32) (end -10.16 -11.23)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ac50541f-4cd4-4e94-8ba2-5e7ab80e8341))
(fp_line (start -15.78 -9.43) (end -14.51 -10.7)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3fc6a127-8820-468d-9733-f10690f71161))
(fp_line (start -15.78 19.78) (end -15.78 -9.43)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f964cdfc-ba4f-4fc1-8822-e753527e2b35))
(fp_line (start -14.51 -10.7) (end -10.7 -10.7)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 147266cf-e06b-4a85-b73b-82485711ec90))
(fp_line (start -10.7 -10.7) (end -10.7 19.78)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp db0d4bdf-5b7b-407e-a9a5-932548d7f544))
(fp_line (start -10.7 19.78) (end -15.78 19.78)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b8fe009e-5454-4aed-ae7b-4014e8919abf))
(pad "" np_thru_hole circle (at -2.390096 -4.35 270) (size 4.1 4.1) (drill 4) (layers "F&B.Cu" "*.Mask") (tstamp 5315cc30-afbd-42e3-a5ba-e8180f269e6c))
(pad "" np_thru_hole circle (at -2.390096 14.7 270) (size 4.1 4.1) (drill 4) (layers "F&B.Cu" "*.Mask") (tstamp 4600e01b-76ad-46f8-b79f-39e9900e2876))
(pad "" np_thru_hole circle (at 17.495 -4.35 270) (size 4.1 4.1) (drill 4) (layers "F&B.Cu" "*.Mask") (tstamp 4252c5b5-b38e-4fde-b5b5-ec86ce875ac5))
(pad "" np_thru_hole circle (at 17.495 14.7 270) (size 4.1 4.1) (drill 4) (layers "F&B.Cu" "*.Mask") (tstamp 8d0279ed-87e8-4247-8fb1-08aa2220600f))
(pad "1" thru_hole rect (at -14.51 -9.43) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 79 "unconnected-(U4-AUX_DA-Pad1)") (pinfunction "AUX_DA") (pintype "bidirectional") (tstamp 0c8985f9-bd3b-49c2-926f-7b84834098ef))
(pad "2" thru_hole oval (at -11.97 -9.43) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 80 "unconnected-(U4-NC-Pad2)") (pinfunction "NC") (pintype "no_connect") (tstamp 9779e83a-e9e8-45be-a027-ebf63963e7ab))
(pad "3" thru_hole oval (at -14.51 -6.89) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 81 "unconnected-(U4-AUX_CL-Pad3)") (pinfunction "AUX_CL") (pintype "input") (tstamp 89959cc5-f9b3-4d9f-a637-8cb5598839e1))
(pad "4" thru_hole oval (at -11.97 -6.89) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 82 "unconnected-(U4-NC-Pad4)") (pinfunction "NC") (pintype "no_connect") (tstamp 97a4e563-70ab-4607-9379-a3aea20226c9))
(pad "5" thru_hole oval (at -14.51 -4.35) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 83 "unconnected-(U4-1V8-Pad5)") (pinfunction "1V8") (pintype "power_in") (tstamp 2a60851c-b631-4eea-abc8-a300da07f3e1))
(pad "6" thru_hole oval (at -11.97 -4.35) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 84 "unconnected-(U4-DRDY-Pad6)") (pinfunction "DRDY") (pintype "output") (tstamp c76d9586-438e-423d-bc39-ff37afa0b8e0))
(pad "7" thru_hole oval (at -14.51 -1.81) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 39 "INT1") (pinfunction "INT1") (pintype "output") (tstamp 579eebb7-1743-4e8d-8932-d18fb906dbaa))
(pad "8" thru_hole oval (at -11.97 -1.81) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 87 "unconnected-(U4-~{CS}-Pad8)") (pinfunction "~{CS}") (pintype "input") (tstamp 5de05c6a-cffd-4f2c-bf73-59f67d440433))
(pad "9" thru_hole oval (at -14.51 0.73) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 88 "unconnected-(U4-NC-Pad9)") (pinfunction "NC") (pintype "no_connect") (tstamp 54504e24-c844-43a6-bd70-34f0849367a7))
(pad "10" thru_hole oval (at -11.97 0.73) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 89 "unconnected-(U4-DRDY-CMP-Pad10)") (pinfunction "DRDY-CMP") (pintype "output") (tstamp 39a3bbfa-7680-4730-80ee-e99d540a5173))
(pad "11" thru_hole oval (at -14.51 3.27) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 90 "unconnected-(U4-TP0-Pad11)") (pinfunction "TP0") (pintype "power_in") (tstamp bbaf52a8-caec-4937-894c-1e47a00971bf))
(pad "12" thru_hole oval (at -11.97 3.27) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 91 "unconnected-(U4-NC-Pad12)") (pinfunction "NC") (pintype "no_connect") (tstamp 1694c338-6e82-4ce5-9613-1cc8e601a0c9))
(pad "13" thru_hole oval (at -14.51 5.81) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 92 "unconnected-(U4-Vpp-Pad13)") (pinfunction "Vpp") (pintype "power_in") (tstamp eb6e8fe8-590a-478c-9783-bead685b679d))
(pad "14" thru_hole oval (at -11.97 5.81) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 93 "unconnected-(U4-NC-Pad14)") (pinfunction "NC") (pintype "no_connect") (tstamp 336e24d6-7d87-45ba-bab9-21bce6e2f03c))
(pad "15" thru_hole oval (at -14.51 8.35) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 17 "T_GND") (pinfunction "GND") (pintype "power_in") (tstamp 22b00efe-d745-40f3-94f0-ca83473052cd))
(pad "16" thru_hole oval (at -11.97 8.35) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 94 "unconnected-(U4-NC-Pad16)") (pinfunction "NC") (pintype "no_connect") (tstamp a36eb776-0772-411f-bdb0-88fba7cc6690))
(pad "17" thru_hole oval (at -14.51 10.89) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 17 "T_GND") (pinfunction "GND") (pintype "power_in") (tstamp d06a2ef1-cac6-4eb5-9393-ebbe4be1cadb))
(pad "18" thru_hole oval (at -11.97 10.89) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 95 "unconnected-(U4-REGOUT-Pad18)") (pinfunction "REGOUT") (pintype "output") (tstamp eb3e280e-34e2-48a5-80f3-5bfb755610ef))
(pad "19" thru_hole oval (at -14.51 13.43) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 96 "unconnected-(U4-NC-Pad19)") (pinfunction "NC") (pintype "no_connect") (tstamp fe360f29-ea13-453c-9dd3-6aad5b0b7a98))
(pad "20" thru_hole oval (at -11.97 13.43) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 10 "SCL") (pinfunction "SCL/SCLK") (pintype "input") (tstamp 4812a3d4-3e66-4471-87e1-61dc3764efb8))
(pad "21" thru_hole oval (at -14.51 15.97) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 40 "FSYNC") (pinfunction "FSYNC") (pintype "input") (tstamp 32426b75-b52f-4fa9-b014-c745161a2938))
(pad "22" thru_hole oval (at -11.97 15.97) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 29 "SDA") (pinfunction "SDA/SDI") (pintype "bidirectional") (tstamp 631ac719-b7e4-400f-a5ad-98db357f8563))
(pad "23" thru_hole oval (at -14.51 18.51) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 3 "T_VCC") (pinfunction "Vin") (pintype "power_in") (tstamp eb1fb2b7-3499-4634-a223-26763f8eabbe))
(pad "24" thru_hole oval (at -11.97 18.51) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 2 "VCC") (pinfunction "AD0/SDO") (pintype "bidirectional") (tstamp cd99b46a-016c-4a7d-89f0-424ae05649c2))
)
(footprint "teensy:Teensy41" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000060f5e582)
(at 109.22 53.34 -90)
(property "Sheetfile" "rrc_pcb.kicad_sch")
(property "Sheetname" "")
(path "/e2a4979b-162a-4acf-966e-29cd5e9f5e0d")
(attr through_hole)
(fp_text reference "U2" (at 0 -10.16 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 19ccb047-670c-4901-866a-9276bea9712e)
)
(fp_text value "Teensy4.1" (at 0 10.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fd404ad0-9ae6-43da-9887-9dd2d2341a50)
)
(fp_text user "Ethernet" (at -10.16 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 59ff9b4d-532e-48fb-b114-97e2446487c5)
)
(fp_text user "MIMXRT1062" (at -1.27 0) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp 613d84ed-c50c-42bf-b6a0-be7cacc1434a)
)
(fp_text user "USB" (at -26.67 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b27a119a-091f-499a-acdd-5c6561d6ab34)
)
(fp_text user "DVJ6A" (at -2.54 -0.18) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp b50fb2ed-f843-4c72-bd82-667ab57209c1)
)
(fp_text user "Micro SD" (at 24.13 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cf1398dc-462e-4bec-a5b3-7907059e1c17)
)
(fp_text user "USB Host" (at -18.4658 2.4892 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f9da7d94-2d77-4cbd-8ef0-38ec12ccf7bb)
)
(fp_line (start -31.75 -3.81) (end -30.48 -3.81)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 315e03d3-2f72-42a0-b200-d57dd7801aa8))
(fp_line (start -31.75 3.81) (end -31.75 -3.81)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp ffaf1476-bbb1-4bb4-95af-a7cf216522bd))
(fp_line (start -30.48 -8.89) (end 30.48 -8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 3741635e-b743-497c-9876-3489d9956dff))
(fp_line (start -30.48 3.81) (end -31.75 3.81)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp d713a01d-463d-4726-acf0-9d5bf468d1d3))
(fp_line (start -30.48 8.89) (end -30.48 -8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 52653a1d-d55a-4a9b-beb4-b92486bab26a))
(fp_line (start -25.4 -3.81) (end -30.48 -3.81)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 9b017786-7297-4cea-ab21-153f7c820280))
(fp_line (start -25.4 3.81) (end -30.48 3.81)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 209c7bf1-7e41-40aa-9e39-9da6d0754cd7))
(fp_line (start -25.4 3.81) (end -25.4 -3.81)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp dc07ae6f-804b-4c87-9e13-aacc6cfc22b6))
(fp_line (start -24.1808 3.2992) (end -21.6408 3.2992)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 8c03542b-d537-4bb1-b265-f24f695377b1))
(fp_line (start -24.1808 3.2992) (end -11.4808 3.2992)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp f87868fc-eea6-4fe8-97d0-cf6d4dee55d7))
(fp_line (start -24.1808 5.8392) (end -24.1808 3.2992)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp b51ff846-16d1-4f85-affa-f02f2d6cc2e5))
(fp_line (start -21.6408 3.2992) (end -21.6408 5.8392)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 91cd4657-1bb0-4f6c-a846-eb12fc49a7c4))
(fp_line (start -17.25 -6.3516) (end -17.25 -6.1016)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 419cb6cc-2dab-4e8c-9c59-4dc81d81847b))
(fp_line (start -17.25 -6.1016) (end -17.25 -0.1016)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp fb92946e-7aaa-4b97-9ce9-7ceb7d79f499))
(fp_line (start -17.25 -0.1016) (end -13.25 -0.1016)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp fb4aca5c-657d-476b-af99-56bc77a5a78a))
(fp_line (start -13.25 -6.3516) (end -17.25 -6.3516)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp d1c61b2d-9a04-4967-a6f8-83a139f31c26))
(fp_line (start -13.25 -0.1016) (end -13.25 -6.3516)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 98012c3b-1478-4b08-9259-7723bea33a0f))
(fp_line (start -11.4808 3.2992) (end -11.4808 5.8392)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp b0ce32c0-4556-44e4-80c9-986dbf64384d))
(fp_line (start -11.4808 5.8392) (end -24.1808 5.8392)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp f2b10b28-9f7b-4f00-81ff-47bb7aab88e0))
(fp_line (start -7.62 -6.35) (end -7.62 6.35)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp cee14576-6001-4580-8de4-b5df634a2d09))
(fp_line (start -7.62 6.35) (end 5.08 6.35)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp e1f5d231-0300-48fa-8d69-2fe4a6fbfb5d))
(fp_line (start 5.08 -6.35) (end -7.62 -6.35)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 89739b21-9e17-4d85-a277-d57074e47ceb))
(fp_line (start 5.08 6.35) (end 5.08 -6.35)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp b17d01d9-c083-457d-a32e-08bb2ae949d9))
(fp_line (start 10.16 -1.27) (end 13.97 -1.27)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp afc10ac2-84f7-428f-a381-a8efab131e13))
(fp_line (start 10.16 1.27) (end 10.16 -1.27)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp f5308645-e6c3-4798-83b6-5d3cffba5e8f))
(fp_line (start 13.97 -1.27) (end 13.97 1.27)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp cae4793d-d075-4b35-a28d-2346e32f3c78))
(fp_line (start 13.97 1.27) (end 10.16 1.27)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 4693c570-9216-48f8-a887-e9593445c0dd))
(fp_line (start 17.78 -6.35) (end 17.78 6.35)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp c0aea073-3e36-4f28-ad31-03a88768442e))
(fp_line (start 17.78 6.35) (end 30.48 6.35)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp a745bdcf-5c15-4766-a1b4-829f6a147471))
(fp_line (start 29.21 -5.08) (end 29.21 5.08)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 7fb4bef7-bf1d-4c69-ab60-6a74f32a693b))
(fp_line (start 29.21 5.08) (end 30.48 5.08)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp c109a2a5-dc95-44a8-8bcd-4fb23ebb339b))
(fp_line (start 30.48 -8.89) (end 30.48 8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 1634c831-0326-4b09-8935-c785ace6f136))
(fp_line (start 30.48 -6.35) (end 17.78 -6.35)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 44ec13e4-6437-47a8-a0ce-178f9118b966))
(fp_line (start 30.48 -5.08) (end 29.21 -5.08)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 65e99d12-5da7-4876-8f99-922dbad43d0c))
(fp_line (start 30.48 8.89) (end -30.48 8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 9eaaf56b-3055-4877-b46b-1790d562a100))
(fp_circle (center 12.065 0) (end 12.7 -0.635)
(stroke (width 0.15) (type solid)) (fill none) (layer "F.SilkS") (tstamp 6d298275-8bb9-4ba3-a420-60a1b2592806))
(fp_poly
(pts
(xy 0.911 -0.688)
(xy 0.657 -0.434)
(xy 0.403 -0.815)
(xy 0.657 -1.069)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 33d2815c-63ce-4b8e-8ef4-2806c567a64a))
(fp_poly
(pts
(xy 1.292 -0.18)
(xy 1.038 0.074)
(xy 0.784 -0.307)
(xy 1.038 -0.561)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp bf3fb88c-0ba6-440c-8a0a-7e993a43f819))
(fp_poly
(pts
(xy 1.673 -0.561)
(xy 1.419 -0.307)
(xy 1.165 -0.688)
(xy 1.419 -0.942)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 3d6d8ecb-aba8-4539-ab1d-0e7b3e456ca7))
(fp_poly
(pts
(xy 1.673 0.328)
(xy 1.419 0.582)
(xy 1.165 0.201)
(xy 1.419 -0.053)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp a3fb0a13-e950-418e-a6da-eed75cba0922))
(fp_poly
(pts
(xy 2.054 -0.053)
(xy 1.8 0.201)
(xy 1.546 -0.18)
(xy 1.8 -0.434)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 67491072-afc4-4b72-b349-cd74f7723832))
(fp_poly
(pts
(xy 2.435 0.455)
(xy 2.181 0.709)
(xy 1.927 0.328)
(xy 2.181 0.074)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 1d159fdc-da30-47b2-abe5-1b8d4e470f53))
(fp_poly
(pts
(xy 2.816 0.074)
(xy 2.562 0.328)
(xy 2.308 -0.053)
(xy 2.562 -0.307)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 541f1481-8f33-4348-8ec9-9d99160aca41))
(fp_poly
(pts
(xy 3.197 -0.307)
(xy 2.943 -0.053)
(xy 2.689 -0.434)
(xy 2.943 -0.688)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 194817d3-a8b0-4793-a893-a0b5acec6b22))
(pad "1" thru_hole rect (at -29.21 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 26 "unconnected-(U2-GND-Pad1)") (pinfunction "GND") (pintype "power_in") (tstamp d23cfc3a-5656-4e65-8620-96496c8c949e))
(pad "2" thru_hole circle (at -26.67 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 27 "unconnected-(U2-0_RX1_CRX2_CS1-Pad2)") (pinfunction "0_RX1_CRX2_CS1") (pintype "bidirectional") (tstamp d61135e2-c956-4158-b32f-618f9b1b215c))
(pad "3" thru_hole circle (at -24.13 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 28 "unconnected-(U2-1_TX1_CTX2_MISO1-Pad3)") (pinfunction "1_TX1_CTX2_MISO1") (pintype "bidirectional") (tstamp f0e751cc-607f-4a89-9c57-9175e7bcf295))
(pad "4" thru_hole circle (at -21.59 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 30 "unconnected-(U2-2_OUT2-Pad4)") (pinfunction "2_OUT2") (pintype "bidirectional") (tstamp 429a4b4c-2633-4b53-a69a-21badbb0e0c1))
(pad "5" thru_hole circle (at -19.05 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 31 "unconnected-(U2-3_LRCLK2-Pad5)") (pinfunction "3_LRCLK2") (pintype "bidirectional") (tstamp 748dd21a-212b-4b94-a8fa-47ccc88e6643))
(pad "6" thru_hole circle (at -16.51 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 32 "unconnected-(U2-4_BCLK2-Pad6)") (pinfunction "4_BCLK2") (pintype "bidirectional") (tstamp ed47e7c6-8b5e-4e18-9576-bfe7ccb7600a))
(pad "7" thru_hole circle (at -13.97 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 33 "unconnected-(U2-5_IN2-Pad7)") (pinfunction "5_IN2") (pintype "bidirectional") (tstamp 245a7677-b156-402b-8a6e-3105e79b150e))
(pad "8" thru_hole circle (at -11.43 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 34 "unconnected-(U2-6_OUT1D-Pad8)") (pinfunction "6_OUT1D") (pintype "bidirectional") (tstamp 8cd55452-d572-464e-8426-b75ea93a73e8))
(pad "9" thru_hole circle (at -8.89 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 9 "RX2") (pinfunction "7_RX2_OUT1A") (pintype "bidirectional") (tstamp 20090fcd-ee0f-4c4a-ab9e-fd1937f34ca4))
(pad "10" thru_hole circle (at -6.35 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 8 "TX2") (pinfunction "8_TX2_IN1") (pintype "bidirectional") (tstamp 9d28d5d0-8d36-4d2a-a5de-89f74d5760e5))
(pad "11" thru_hole circle (at -3.81 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 35 "unconnected-(U2-9_OUT1C-Pad11)") (pinfunction "9_OUT1C") (pintype "bidirectional") (tstamp b39d32fc-79de-4eae-a95b-e87351697356))
(pad "12" thru_hole circle (at -1.27 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 36 "unconnected-(U2-10_CS_MQSR-Pad12)") (pinfunction "10_CS_MQSR") (pintype "bidirectional") (tstamp 164ed5e2-e008-4e8b-bb71-0218b75127b6))
(pad "13" thru_hole circle (at 1.27 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 37 "unconnected-(U2-11_MOSI_CTX1-Pad13)") (pinfunction "11_MOSI_CTX1") (pintype "bidirectional") (tstamp dbb1dfa8-5673-4886-80ac-ae90e72b74cf))
(pad "14" thru_hole circle (at 3.81 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 38 "unconnected-(U2-12_MISO_MQSL-Pad14)") (pinfunction "12_MISO_MQSL") (pintype "bidirectional") (tstamp 41e37c30-db82-4cb9-b1e5-d5dbf6dadee7))
(pad "15" thru_hole circle (at 6.35 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 3 "T_VCC") (pinfunction "3V3") (pintype "power_in") (tstamp cf1be125-ed1c-4d92-b85e-c2bcf03de5cd))
(pad "16" thru_hole circle (at 8.89 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 41 "unconnected-(U2-24_A10_TX6_SCL2-Pad16)") (pinfunction "24_A10_TX6_SCL2") (pintype "bidirectional") (tstamp 7ed116d1-98e6-498f-82ee-09d063361dbc))
(pad "17" thru_hole circle (at 11.43 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 7 "SDA1") (pinfunction "25_A11_RX6_SDA2") (pintype "bidirectional") (tstamp 38104720-34ce-4a29-8600-709c800751dc))
(pad "18" thru_hole circle (at 13.97 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 4 "Net-(BZ1--)") (pinfunction "26_A12_MOSI1") (pintype "bidirectional") (tstamp 65c197ee-bca4-4050-9266-e4e949b9b43d))
(pad "19" thru_hole circle (at 16.51 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 12 "Net-(J2-Pin_2)") (pinfunction "27_A13_SCK1") (pintype "bidirectional") (tstamp a7655549-1a65-4530-a498-d7fc2176c1cc))
(pad "20" thru_hole circle (at 19.05 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 85 "RX7") (pinfunction "28_RX7") (pintype "bidirectional") (tstamp fb0f711d-64df-46c8-ac81-abeb33f1a0be))
(pad "21" thru_hole circle (at 21.59 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 86 "TX7") (pinfunction "29_TX7") (pintype "bidirectional") (tstamp 06cc5dad-11ab-478d-bf06-7c851c046286))
(pad "22" thru_hole circle (at 24.13 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 42 "unconnected-(U2-30_CRX3-Pad22)") (pinfunction "30_CRX3") (pintype "bidirectional") (tstamp 7c313f51-26be-402a-81eb-d52ddaae341d))
(pad "23" thru_hole circle (at 26.67 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 43 "unconnected-(U2-31_CTX3-Pad23)") (pinfunction "31_CTX3") (pintype "bidirectional") (tstamp 33072a09-e6eb-4bc8-b7ee-b4bb2f40bbb7))
(pad "24" thru_hole circle (at 29.21 7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 44 "unconnected-(U2-32_OUT1B-Pad24)") (pinfunction "32_OUT1B") (pintype "bidirectional") (tstamp acee5e32-0702-4d89-80ba-02b7f4f9bc53))
(pad "25" thru_hole circle (at 29.21 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 45 "unconnected-(U2-33_MCLK2-Pad25)") (pinfunction "33_MCLK2") (pintype "bidirectional") (tstamp 58e9d6cf-d0b2-479b-94c2-1f3002e51101))
(pad "26" thru_hole circle (at 26.67 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 46 "unconnected-(U2-34_RX8-Pad26)") (pinfunction "34_RX8") (pintype "bidirectional") (tstamp bde97d9b-0441-418d-899b-0a1a0bfa81fe))
(pad "27" thru_hole circle (at 24.13 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 47 "unconnected-(U2-35_TX8-Pad27)") (pinfunction "35_TX8") (pintype "bidirectional") (tstamp 0343d7b8-260e-49d9-ad27-6bb8183dfb9a))
(pad "28" thru_hole circle (at 21.59 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 48 "unconnected-(U2-36_CS-Pad28)") (pinfunction "36_CS") (pintype "bidirectional") (tstamp b3d01c07-3ec6-42b9-991b-b20cb4d7544a))
(pad "29" thru_hole circle (at 19.05 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 49 "unconnected-(U2-37_CS-Pad29)") (pinfunction "37_CS") (pintype "bidirectional") (tstamp 1d6285f1-bf1a-460f-b944-8e5984d7e9ca))
(pad "30" thru_hole circle (at 16.51 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 40 "FSYNC") (pinfunction "38_CS1_IN1") (pintype "bidirectional") (tstamp c28c9e8b-75e7-4abc-b986-ee9a46c80563))
(pad "31" thru_hole circle (at 13.97 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 50 "unconnected-(U2-39_MISO1_OUT1A-Pad31)") (pinfunction "39_MISO1_OUT1A") (pintype "bidirectional") (tstamp 0dcf1846-78b4-4d7c-9fc4-51748fc4aecb))
(pad "32" thru_hole circle (at 11.43 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 39 "INT1") (pinfunction "40_A16") (pintype "bidirectional") (tstamp aea61bff-de23-4eb1-bea2-9523fb7b0174))
(pad "33" thru_hole circle (at 8.89 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 51 "unconnected-(U2-41_A17-Pad33)") (pinfunction "41_A17") (pintype "bidirectional") (tstamp f4a6a2cf-9007-4bff-98ce-f4a2524f1939))
(pad "34" thru_hole circle (at 6.35 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 17 "T_GND") (pinfunction "GND") (pintype "power_in") (tstamp 3ff93d82-f7c9-4fa8-867b-72b2e2324061))
(pad "35" thru_hole circle (at 3.81 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 52 "unconnected-(U2-13_SCK_LED-Pad35)") (pinfunction "13_SCK_LED") (pintype "bidirectional") (tstamp ef394a1b-332b-4204-8d5d-672ad62c44d4))
(pad "36" thru_hole circle (at 1.27 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 53 "unconnected-(U2-14_A0_TX3_SPDIF_OUT-Pad36)") (pinfunction "14_A0_TX3_SPDIF_OUT") (pintype "bidirectional") (tstamp b8a184f9-29b7-4ddd-966e-026411dca912))
(pad "37" thru_hole circle (at -1.27 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 54 "unconnected-(U2-15_A1_RX3_SPDIF_IN-Pad37)") (pinfunction "15_A1_RX3_SPDIF_IN") (pintype "bidirectional") (tstamp 3304a160-10a6-4bfa-a5ae-2ca3b8985b83))
(pad "38" thru_hole circle (at -3.81 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "SCL1") (pinfunction "16_A2_RX4_SCL1") (pintype "bidirectional") (tstamp 7e33d8a5-78bf-4bc7-b831-c9bf5418dcdf))
(pad "39" thru_hole circle (at -6.35 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 7 "SDA1") (pinfunction "17_A3_TX4_SDA1") (pintype "bidirectional") (tstamp 78abc623-8f0e-485c-ad28-df454b50be16))
(pad "40" thru_hole circle (at -8.89 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 29 "SDA") (pinfunction "18_A4_SDA") (pintype "bidirectional") (tstamp 2e654bc3-194c-4f3b-b7b6-26781dcce0a0))
(pad "41" thru_hole circle (at -11.43 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 10 "SCL") (pinfunction "19_A5_SCL") (pintype "bidirectional") (tstamp 0192ae8c-a244-45de-b762-32fbbfbda9a7))
(pad "42" thru_hole circle (at -13.97 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 55 "unconnected-(U2-20_A6_TX5_LRCLK1-Pad42)") (pinfunction "20_A6_TX5_LRCLK1") (pintype "bidirectional") (tstamp 9998524c-fb3f-4ac1-99e1-f0c142f44ad2))
(pad "43" thru_hole circle (at -16.51 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 56 "unconnected-(U2-21_A7_RX5_BCLK1-Pad43)") (pinfunction "21_A7_RX5_BCLK1") (pintype "bidirectional") (tstamp 3679207b-8763-4656-a15c-27f0b7a03d39))
(pad "44" thru_hole circle (at -19.05 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 57 "unconnected-(U2-22_A8_CTX1-Pad44)") (pinfunction "22_A8_CTX1") (pintype "bidirectional") (tstamp b1c4dfaf-3ecc-4060-b71b-a3544d8611d4))
(pad "45" thru_hole circle (at -21.59 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 58 "unconnected-(U2-23_A9_CRX1_MCLK1-Pad45)") (pinfunction "23_A9_CRX1_MCLK1") (pintype "bidirectional") (tstamp 68fbe7cc-b6b6-4eec-9041-73190ca8227e))
(pad "46" thru_hole circle (at -24.13 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 59 "unconnected-(U2-3V3-Pad46)") (pinfunction "3V3") (pintype "output") (tstamp 54373b33-b2d6-4552-8d4c-f31a7293a47d))
(pad "47" thru_hole circle (at -26.67 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "output") (tstamp e51236b6-31b0-4df7-bea9-ab51174ea96d))
(pad "48" thru_hole circle (at -29.21 -7.62 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 2 "VCC") (pinfunction "VIN") (pintype "power_in") (tstamp 129ab2bf-52d4-4768-abe9-21dda674a561))
(pad "49" thru_hole circle (at -26.67 -5.08 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 60 "unconnected-(U2-VUSB-Pad49)") (pinfunction "VUSB") (pintype "power_out") (tstamp e5a3a73c-33ec-4a38-ac8a-96627053147a))
(pad "50" thru_hole circle (at 16.51 5.08 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 61 "unconnected-(U2-VBAT-Pad50)") (pinfunction "VBAT") (pintype "power_in") (tstamp 1bc09b7b-2083-4d78-a7a7-5ba87e29809c))
(pad "51" thru_hole circle (at 16.51 2.54 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 62 "unconnected-(U2-3V3-Pad51)") (pinfunction "3V3") (pintype "power_in") (tstamp 5dec186a-c043-41ba-844c-b7c350f54282))
(pad "52" thru_hole circle (at 16.51 0 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 63 "unconnected-(U2-GND-Pad52)") (pinfunction "GND") (pintype "input") (tstamp 9036421d-2ab6-40af-be0f-4c808f54647a))
(pad "53" thru_hole circle (at 16.51 -2.54 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 64 "unconnected-(U2-PROGRAM-Pad53)") (pinfunction "PROGRAM") (pintype "input") (tstamp 12bd13f8-c3ef-494c-b477-4e89e873b1a3))
(pad "54" thru_hole circle (at 16.51 -5.08 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 65 "unconnected-(U2-ON_OFF-Pad54)") (pinfunction "ON_OFF") (pintype "input") (tstamp a79e24f4-1307-4802-9af9-f6361f2c7c04))
(pad "55" thru_hole rect (at -22.9108 4.5692 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 66 "unconnected-(U2-5V-Pad55)") (pinfunction "5V") (pintype "power_out") (tstamp 07fe1a49-2023-486f-bf7a-db7ecc43f28f))
(pad "56" thru_hole circle (at -20.3708 4.5692 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 67 "unconnected-(U2-D--Pad56)") (pinfunction "D-") (pintype "bidirectional") (tstamp 4d2fa981-f96a-4467-8a5c-1e33e123b372))
(pad "57" thru_hole circle (at -17.8308 4.5692 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 68 "unconnected-(U2-D+-Pad57)") (pinfunction "D+") (pintype "bidirectional") (tstamp bac28696-82cc-491c-bdff-b357cc72fad7))
(pad "58" thru_hole circle (at -15.2908 4.5692 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 69 "unconnected-(U2-GND-Pad58)") (pinfunction "GND") (pintype "power_in") (tstamp 740e3ead-2cfc-45e4-aec8-c130256c58ac))
(pad "59" thru_hole circle (at -12.7508 4.5692 270) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 70 "unconnected-(U2-GND-Pad59)") (pinfunction "GND") (pintype "power_in") (tstamp 7418a70f-c0bc-4c05-9242-daa5b3216dbc))
(pad "60" thru_hole rect (at -16.24 -5.1816 270) (size 1.3 1.3) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 71 "unconnected-(U2-R+-Pad60)") (pinfunction "R+") (pintype "bidirectional") (tstamp fd14e094-ede6-43e4-9183-6f3ab0d0d37d))
(pad "61" thru_hole circle (at -16.24 -3.1816 270) (size 1.3 1.3) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 72 "unconnected-(U2-LED-Pad61)") (pinfunction "LED") (pintype "bidirectional") (tstamp 88baf8ac-9247-4172-ae67-02b6ce87e6e4))
(pad "62" thru_hole circle (at -16.24 -1.1816 270) (size 1.3 1.3) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 73 "unconnected-(U2-T--Pad62)") (pinfunction "T-") (pintype "bidirectional") (tstamp 5cf4329b-ee4c-442f-a291-8cdd2cbdd124))
(pad "63" thru_hole circle (at -14.24 -1.1816 270) (size 1.3 1.3) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 74 "unconnected-(U2-T+-Pad63)") (pinfunction "T+") (pintype "bidirectional") (tstamp 116dacd1-1cbe-4c74-a5e4-3afe9716eed2))
(pad "64" thru_hole circle (at -14.24 -3.1816 270) (size 1.3 1.3) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 75 "unconnected-(U2-GND-Pad64)") (pinfunction "GND") (pintype "power_in") (tstamp 18012144-7a24-4085-8a97-2cb746adcfc9))
(pad "65" thru_hole circle (at -14.24 -5.1816 270) (size 1.3 1.3) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 76 "unconnected-(U2-R--Pad65)") (pinfunction "R-") (pintype "bidirectional") (tstamp 69792814-00a4-47ef-897c-02715ade9da8))
(pad "66" thru_hole circle (at -28.48 -1.27 270) (size 1.3 1.3) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 77 "unconnected-(U2-D--Pad66)") (pinfunction "D-") (pintype "bidirectional") (tstamp 48970c2f-8d6d-49d6-8f45-c7a4f3bd7bc5))
(pad "67" thru_hole circle (at -28.48 1.27 270) (size 1.3 1.3) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 78 "unconnected-(U2-D+-Pad67)") (pinfunction "D+") (pintype "bidirectional") (tstamp 91a1d0c5-ec0b-4b77-be31-98de220bb3ab))
(model "${KIPRJMOD}/footprints/teensy/Teensy_4.1_Assembly.STEP"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000060f655eb)
(at 51.435 73.025 -90)
(descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x03 2.54mm single row")
(property "Sheetfile" "rrc_pcb.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060f65d90")
(attr through_hole)
(fp_text reference "J2" (at 0 -2.33 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 92a9b508-b9a8-41e1-8589-326afc315efc)
)
(fp_text value "Conn_01x03_Male-Connector" (at -1.270001 2.8575) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 85ec630c-2c6e-4a01-bb8c-d86258c0ee54)
)
(fp_text user "${REFERENCE}" (at 0 2.54) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 54c2afb2-49f1-4479-b4d8-b4f4be7df025)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e5ec4f5e-ad94-4118-8753-ae61bd268452))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 30e81ea6-2a9d-4b89-b5c8-e1a18bcac48f))
(fp_line (start -1.33 1.27) (end -1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1e0b85a7-9bbc-4c67-a960-54cfb931208d))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 38b2dde3-f15b-4beb-abc1-e7fd2c39028c))
(fp_line (start -1.33 6.41) (end 1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f845574a-1d98-4709-bc0e-cfac001752ba))
(fp_line (start 1.33 1.27) (end 1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c1983329-8702-4a85-bfec-b2d46f6c2633))
(fp_line (start -1.8 -1.8) (end -1.8 6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 80cdd3b1-335c-480d-bfbe-57d4d5d3323a))
(fp_line (start -1.8 6.85) (end 1.8 6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a92e802f-5b1d-4284-96af-a45077c19911))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c9eda23b-12f6-4dfd-a850-37208359fb1f))
(fp_line (start 1.8 6.85) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7f028eb2-0a82-4b9e-8782-553783c7ff71))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 055da641-d934-4282-a8df-edcc81d73c33))
(fp_line (start -1.27 6.35) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 37f70e59-ecc3-4751-b48d-ef2a86a438b7))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fa064af6-4676-4070-b519-1febae69cafd))
(fp_line (start 1.27 -1.27) (end 1.27 6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2303b9d1-05f5-4de8-b0fc-2892cb75c07b))
(fp_line (start 1.27 6.35) (end -1.27 6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6d86c86f-ce1a-44ba-b844-eaa32e21c15d))
(pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 17 "T_GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 41a30a41-f944-4699-8229-42209aad8490))
(pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")