-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrp2040-control-board.kicad_pcb
12787 lines (12743 loc) · 639 KB
/
rp2040-control-board.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 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A5")
(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)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(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 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "/XIN")
(net 2 "GND")
(net 3 "Net-(C3-Pad1)")
(net 4 "/+3.3v")
(net 5 "/VIN")
(net 6 "Net-(C16-Pad1)")
(net 7 "Net-(C16-Pad2)")
(net 8 "Net-(J1-Pad2)")
(net 9 "Net-(J2-Pad1)")
(net 10 "Net-(J2-Pad2)")
(net 11 "/USB_DM")
(net 12 "/USB_DP")
(net 13 "/GPIO0")
(net 14 "/GPIO1")
(net 15 "/GPIO2")
(net 16 "/GPIO3")
(net 17 "/GPIO4")
(net 18 "/GPIO5")
(net 19 "/GPIO6")
(net 20 "/GPIO7")
(net 21 "/GPIO8")
(net 22 "/GPIO9")
(net 23 "/GPIO10")
(net 24 "/GPIO11")
(net 25 "/GPIO12")
(net 26 "/GPIO13")
(net 27 "/GPIO14")
(net 28 "/GPIO15")
(net 29 "/GPIO16")
(net 30 "/GPIO17")
(net 31 "/GPIO18")
(net 32 "/GPIO19")
(net 33 "/GPIO20")
(net 34 "/GPIO21")
(net 35 "/GPIO22")
(net 36 "/GPIO23")
(net 37 "/GPIO24")
(net 38 "/GPIO25")
(net 39 "/GPIO26")
(net 40 "/GPIO27")
(net 41 "/GPIO28")
(net 42 "/GPIO29")
(net 43 "/QSPI_SS")
(net 44 "/XOUT")
(net 45 "Net-(R4-Pad2)")
(net 46 "Net-(R5-Pad1)")
(net 47 "Net-(R6-Pad1)")
(net 48 "Net-(R7-Pad2)")
(net 49 "/QSPI_SD1")
(net 50 "/QSPI_SD2")
(net 51 "/QSPI_SD0")
(net 52 "/QSPI_SCLK")
(net 53 "/QSPI_SD3")
(net 54 "Net-(C2-Pad2)")
(net 55 "unconnected-(J3-Pad4)")
(footprint "rp2040-control-board:RP2040-QFN-56" (layer "F.Cu")
(tedit 5EF32B43) (tstamp 0700f9b0-7ffc-4bbe-92d5-92c9a763cdcc)
(at 93.98 61.976 -90)
(descr "QFN, 56 Pin (http://www.cypress.com/file/416486/download#page=40), generated with kicad-footprint-generator ipc_dfn_qfn_generator.py")
(tags "QFN DFN_QFN")
(property "Sheetfile" "rp2040-control-board.kicad_sch")
(property "Sheetname" "")
(path "/920bb161-3b28-4503-b083-28a9db9293e0")
(attr smd)
(fp_text reference "U2" (at -4.826 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b6412e58-f619-4808-aaaf-e60ca9120817)
)
(fp_text value "RP2040" (at 0 4.82 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6f44f517-da48-4cfd-86fc-e629ca7208ab)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d77a1475-670e-4996-82de-b92a9e0b9b9d)
)
(fp_line (start -3.61 3.61) (end -3.61 2.96) (layer "F.SilkS") (width 0.12) (tstamp 1a50378e-37c7-4e15-ae02-467873319cf4))
(fp_line (start 3.61 -3.61) (end 3.61 -2.96) (layer "F.SilkS") (width 0.12) (tstamp 2d33ac20-0cca-470c-aba8-3155761bcf8c))
(fp_line (start 2.96 3.61) (end 3.61 3.61) (layer "F.SilkS") (width 0.12) (tstamp 535aba43-dbb5-4f90-b80e-7eeff0326627))
(fp_line (start 3.61 3.61) (end 3.61 2.96) (layer "F.SilkS") (width 0.12) (tstamp 54d608f8-0aaf-49f7-8ca3-39378bd8d950))
(fp_line (start -2.96 3.61) (end -3.61 3.61) (layer "F.SilkS") (width 0.12) (tstamp 991f0149-2129-43f5-b512-8a3a239e334e))
(fp_line (start -2.96 -3.61) (end -3.61 -3.61) (layer "F.SilkS") (width 0.12) (tstamp b7fa7329-69d9-4543-b748-c2744eb82983))
(fp_line (start 2.96 -3.61) (end 3.61 -3.61) (layer "F.SilkS") (width 0.12) (tstamp e62272b5-ad53-4637-95f3-e8e18f2f9732))
(fp_line (start -4.12 4.12) (end 4.12 4.12) (layer "F.CrtYd") (width 0.05) (tstamp 14507bca-4484-41d9-8d39-6f25bec1afb8))
(fp_line (start 4.12 4.12) (end 4.12 -4.12) (layer "F.CrtYd") (width 0.05) (tstamp 185f41c2-7510-4470-948e-4d681cbfb31d))
(fp_line (start 4.12 -4.12) (end -4.12 -4.12) (layer "F.CrtYd") (width 0.05) (tstamp 5e31b75c-7539-48bc-9313-3ce6611e0cb9))
(fp_line (start -4.12 -4.12) (end -4.12 4.12) (layer "F.CrtYd") (width 0.05) (tstamp c37e73af-a004-4ecb-b3aa-cdf0022347e1))
(fp_line (start -3.5 3.5) (end -3.5 -2.5) (layer "F.Fab") (width 0.1) (tstamp 005d423c-affc-44b9-b969-fcb91820399b))
(fp_line (start -3.5 -2.5) (end -2.5 -3.5) (layer "F.Fab") (width 0.1) (tstamp 40fa4023-a0c8-402d-a858-ca969f49d733))
(fp_line (start 3.5 3.5) (end -3.5 3.5) (layer "F.Fab") (width 0.1) (tstamp 4ede09d9-8009-41c1-b58a-70533f585dea))
(fp_line (start 3.5 -3.5) (end 3.5 3.5) (layer "F.Fab") (width 0.1) (tstamp 98dca4fd-439b-4c0e-8b38-1f8f05f5f53a))
(fp_line (start -2.5 -3.5) (end 3.5 -3.5) (layer "F.Fab") (width 0.1) (tstamp ecf73b41-8985-4317-9d2f-144439cb6be7))
(pad "" smd roundrect locked (at 0.6375 0.6375 270) (size 1.084435 1.084435) (layers "F.Paste") (roundrect_rratio 0.230535) (tstamp 08af9312-9ab6-44ac-842f-519f01c9903b))
(pad "" smd roundrect locked (at 0.6375 -0.6375 270) (size 1.084435 1.084435) (layers "F.Paste") (roundrect_rratio 0.230535) (tstamp 84c10181-d98d-48b4-a559-aa9af1eeba01))
(pad "" smd roundrect locked (at -0.6375 -0.6375 270) (size 1.084435 1.084435) (layers "F.Paste") (roundrect_rratio 0.230535) (tstamp a489b8a7-f95a-45a4-8feb-2aae7ec7230b))
(pad "" smd roundrect locked (at -0.6375 0.6375 270) (size 1.084435 1.084435) (layers "F.Paste") (roundrect_rratio 0.230535) (tstamp ed74b311-30b7-4cec-a1ae-cf1be8e2d822))
(pad "1" smd roundrect locked (at -3.4375 -2.6 270) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/+3.3v") (pinfunction "IOVDD") (pintype "power_in") (tstamp 2d33eb49-0725-4756-9567-f309c19b06ab))
(pad "2" smd roundrect locked (at -3.4375 -2.2 270) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "/GPIO0") (pinfunction "GPIO0") (pintype "bidirectional") (tstamp d7604f6f-4d3e-400c-99ea-602a1f32571c))
(pad "3" smd roundrect locked (at -3.4375 -1.8 270) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "/GPIO1") (pinfunction "GPIO1") (pintype "bidirectional") (tstamp 1fe11836-3c95-4b12-9c26-c8ac7814b898))
(pad "4" smd roundrect locked (at -3.4375 -1.4 270) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "/GPIO2") (pinfunction "GPIO2") (pintype "bidirectional") (tstamp 57e99aa8-bbbf-4d2f-a6b6-388a6619365c))
(pad "5" smd roundrect locked (at -3.4375 -1 270) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "/GPIO3") (pinfunction "GPIO3") (pintype "bidirectional") (tstamp bf58bd7d-dce3-4c32-adc9-090503cb33c3))
(pad "6" smd roundrect locked (at -3.4375 -0.6 270) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "/GPIO4") (pinfunction "GPIO4") (pintype "bidirectional") (tstamp c783c1e1-2a32-4db3-8b0f-49522b837631))
(pad "7" smd roundrect locked (at -3.4375 -0.2 270) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "/GPIO5") (pinfunction "GPIO5") (pintype "bidirectional") (tstamp 4e381ca6-c334-4cdf-a8b0-57cfa7c1f652))
(pad "8" smd roundrect locked (at -3.4375 0.2 270) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "/GPIO6") (pinfunction "GPIO6") (pintype "bidirectional") (tstamp bbf4e6eb-a71b-4f11-8567-3dcd30e29c2b))
(pad "9" smd roundrect locked (at -3.4375 0.6 270) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "/GPIO7") (pinfunction "GPIO7") (pintype "bidirectional") (tstamp 0ca5cf60-7746-4e16-ab08-11cf02f2a5e6))
(pad "10" smd roundrect locked (at -3.4375 1 270) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/+3.3v") (pinfunction "IOVDD") (pintype "power_in") (tstamp abb0070a-8655-41c3-9695-6e3402c68208))
(pad "11" smd roundrect locked (at -3.4375 1.4 270) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "/GPIO8") (pinfunction "GPIO8") (pintype "bidirectional") (tstamp a07d71ae-0734-4baa-b37f-d89e86890e35))
(pad "12" smd roundrect locked (at -3.4375 1.8 270) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "/GPIO9") (pinfunction "GPIO9") (pintype "bidirectional") (tstamp 067fcbdc-a037-45c7-a11e-fa748d280ce6))
(pad "13" smd roundrect locked (at -3.4375 2.2 270) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "/GPIO10") (pinfunction "GPIO10") (pintype "bidirectional") (tstamp 886df3e6-421d-4890-863e-2722cf5a1571))
(pad "14" smd roundrect locked (at -3.4375 2.6 270) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "/GPIO11") (pinfunction "GPIO11") (pintype "bidirectional") (tstamp 587d4e34-31b7-4fbc-8984-31e3a8724818))
(pad "15" smd roundrect locked (at -2.6 3.4375 270) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "/GPIO12") (pinfunction "GPIO12") (pintype "bidirectional") (tstamp 2028ce53-67dc-48ce-adce-c332fdb36d75))
(pad "16" smd roundrect locked (at -2.2 3.4375 270) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "/GPIO13") (pinfunction "GPIO13") (pintype "bidirectional") (tstamp 3888ef44-68e2-4b79-bf20-988ad2144095))
(pad "17" smd roundrect locked (at -1.8 3.4375 270) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "/GPIO14") (pinfunction "GPIO14") (pintype "bidirectional") (tstamp 4f88d612-25de-4047-9b39-7eb2980ac70e))
(pad "18" smd roundrect locked (at -1.4 3.4375 270) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "/GPIO15") (pinfunction "GPIO15") (pintype "bidirectional") (tstamp c60496a3-4214-4715-b3e0-a9aaa5890314))
(pad "19" smd roundrect locked (at -1 3.4375 270) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "TESTEN") (pintype "passive") (tstamp 2c64799a-cda3-4f19-9eb1-c35e016f48ac))
(pad "20" smd roundrect locked (at -0.6 3.4375 270) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "/XIN") (pinfunction "XIN") (pintype "input") (tstamp aa4f7188-6c8b-4537-aaf8-ce4f48418825))
(pad "21" smd roundrect locked (at -0.2 3.4375 270) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 44 "/XOUT") (pinfunction "XOUT") (pintype "passive") (tstamp 47213530-5816-42da-b258-ffdb890158f8))
(pad "22" smd roundrect locked (at 0.2 3.4375 270) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/+3.3v") (pinfunction "IOVDD") (pintype "power_in") (tstamp f0b1b173-0a1d-4f3b-96bf-598f9db07919))
(pad "23" smd roundrect locked (at 0.6 3.4375 270) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(C3-Pad1)") (pinfunction "DVDD") (pintype "power_in") (tstamp 82d553b0-aca7-43ac-9320-93c9eb56322b))
(pad "24" smd roundrect locked (at 1 3.4375 270) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "Net-(J2-Pad2)") (pinfunction "SWCLK") (pintype "output") (tstamp 53d7abcc-e4a0-452b-adc0-1fef0c892a9b))
(pad "25" smd roundrect locked (at 1.4 3.4375 270) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "Net-(J2-Pad1)") (pinfunction "SWD") (pintype "bidirectional") (tstamp 51e464b3-897a-4955-af80-63b9421a6f9d))
(pad "26" smd roundrect locked (at 1.8 3.4375 270) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 45 "Net-(R4-Pad2)") (pinfunction "RUN") (pintype "input") (tstamp a48fcc31-4081-4256-bfee-e4e2825b8a2e))
(pad "27" smd roundrect locked (at 2.2 3.4375 270) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 29 "/GPIO16") (pinfunction "GPIO16") (pintype "bidirectional") (tstamp d1c42978-0f02-42db-9a13-4ce87c50be2a))
(pad "28" smd roundrect locked (at 2.6 3.4375 270) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "/GPIO17") (pinfunction "GPIO17") (pintype "bidirectional") (tstamp fa33938a-7194-4189-9805-2e2648399ea3))
(pad "29" smd roundrect locked (at 3.4375 2.6 270) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "/GPIO18") (pinfunction "GPIO18") (pintype "bidirectional") (tstamp df1b28de-d73c-4328-9f7f-55bf26651bdf))
(pad "30" smd roundrect locked (at 3.4375 2.2 270) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 32 "/GPIO19") (pinfunction "GPIO19") (pintype "bidirectional") (tstamp 43842bc5-eb5d-4b1b-b855-863d38ab71ed))
(pad "31" smd roundrect locked (at 3.4375 1.8 270) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 33 "/GPIO20") (pinfunction "GPIO20") (pintype "bidirectional") (tstamp de04ed22-8bf6-4aa8-b9aa-bac93e62329f))
(pad "32" smd roundrect locked (at 3.4375 1.4 270) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 34 "/GPIO21") (pinfunction "GPIO21") (pintype "bidirectional") (tstamp c10836e3-7f96-402e-a4fc-765ae419f0e1))
(pad "33" smd roundrect locked (at 3.4375 1 270) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/+3.3v") (pinfunction "IOVDD") (pintype "power_in") (tstamp eb0aba89-2a8c-48c7-bfb3-d9665cf0f875))
(pad "34" smd roundrect locked (at 3.4375 0.6 270) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 35 "/GPIO22") (pinfunction "GPIO22") (pintype "bidirectional") (tstamp 4eaa0c19-20d0-4a63-809b-b4ca2a01a3d7))
(pad "35" smd roundrect locked (at 3.4375 0.2 270) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 36 "/GPIO23") (pinfunction "GPIO23") (pintype "bidirectional") (tstamp 8d12963f-ba87-4425-9f8f-437662278e72))
(pad "36" smd roundrect locked (at 3.4375 -0.2 270) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 37 "/GPIO24") (pinfunction "GPIO24") (pintype "bidirectional") (tstamp 2f011149-03f4-40e4-9b35-ac19d5c6054f))
(pad "37" smd roundrect locked (at 3.4375 -0.6 270) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 38 "/GPIO25") (pinfunction "GPIO25") (pintype "bidirectional") (tstamp 2826ff95-9ad9-4206-9c8a-66019c48ab44))
(pad "38" smd roundrect locked (at 3.4375 -1 270) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 39 "/GPIO26") (pinfunction "GPIO26_ADC0") (pintype "bidirectional") (tstamp 5fc0c83c-d5ba-486c-becb-4dfeff9996e6))
(pad "39" smd roundrect locked (at 3.4375 -1.4 270) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 40 "/GPIO27") (pinfunction "GPIO27_ADC1") (pintype "bidirectional") (tstamp 877348bf-6cf6-43c4-9303-cd1658e2cafa))
(pad "40" smd roundrect locked (at 3.4375 -1.8 270) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 41 "/GPIO28") (pinfunction "GPIO28_ADC2") (pintype "bidirectional") (tstamp 0abbae11-70ea-4944-b291-1bcb2d5ecad7))
(pad "41" smd roundrect locked (at 3.4375 -2.2 270) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 42 "/GPIO29") (pinfunction "GPIO29_ADC3") (pintype "bidirectional") (tstamp c0922501-0f93-431c-96ba-0a37735dd7cd))
(pad "42" smd roundrect locked (at 3.4375 -2.6 270) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/+3.3v") (pinfunction "IOVDD") (pintype "power_in") (tstamp df0c0646-03dd-416b-aed1-1fb4d4b339aa))
(pad "43" smd roundrect locked (at 2.6 -3.4375 270) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/+3.3v") (pinfunction "ADC_AVDD") (pintype "power_in") (tstamp db505cce-b508-4036-854e-dda89b3dd72c))
(pad "44" smd roundrect locked (at 2.2 -3.4375 270) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/+3.3v") (pinfunction "VREG_IN") (pintype "power_in") (tstamp e0ee2b78-a7d5-4d4c-a1fc-68c32aabe149))
(pad "45" smd roundrect locked (at 1.8 -3.4375 270) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(C3-Pad1)") (pinfunction "VREG_VOUT") (pintype "power_out") (tstamp ad29f296-911e-4869-9e80-14be0f51c409))
(pad "46" smd roundrect locked (at 1.4 -3.4375 270) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 47 "Net-(R6-Pad1)") (pinfunction "USB_DM") (pintype "bidirectional") (tstamp 54c19e9d-a3f7-4b53-b8ac-ff4830ed3a4c))
(pad "47" smd roundrect locked (at 1 -3.4375 270) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 46 "Net-(R5-Pad1)") (pinfunction "USB_DP") (pintype "bidirectional") (tstamp bc77661f-397b-4c19-a24f-937a410ec559))
(pad "48" smd roundrect locked (at 0.6 -3.4375 270) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/+3.3v") (pinfunction "USB_VDD") (pintype "power_in") (tstamp 1c9edd80-85d9-4c0d-9cc6-2c3a113885ca))
(pad "49" smd roundrect locked (at 0.2 -3.4375 270) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/+3.3v") (pinfunction "IOVDD") (pintype "power_in") (tstamp 956c6a94-8caa-405e-a287-d042fc6619ea))
(pad "50" smd roundrect locked (at -0.2 -3.4375 270) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(C3-Pad1)") (pinfunction "DVDD") (pintype "power_in") (tstamp a51a620d-094b-4382-ad5b-e94776e053bd))
(pad "51" smd roundrect locked (at -0.6 -3.4375 270) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 53 "/QSPI_SD3") (pinfunction "QSPI_SD3") (pintype "bidirectional") (tstamp 74dd16c4-ca66-498b-a14c-e55dfff54709))
(pad "52" smd roundrect locked (at -1 -3.4375 270) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 52 "/QSPI_SCLK") (pinfunction "QSPI_SCLK") (pintype "output") (tstamp 5579072c-f9d9-448e-b0c2-147f20cc58c8))
(pad "53" smd roundrect locked (at -1.4 -3.4375 270) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 51 "/QSPI_SD0") (pinfunction "QSPI_SD0") (pintype "bidirectional") (tstamp 817a41a3-105e-40aa-855b-af56cbf4aa1f))
(pad "54" smd roundrect locked (at -1.8 -3.4375 270) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 50 "/QSPI_SD2") (pinfunction "QSPI_SD2") (pintype "bidirectional") (tstamp b50a57ff-20dd-412f-afa2-2fe2bd76e71c))
(pad "55" smd roundrect locked (at -2.2 -3.4375 270) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 49 "/QSPI_SD1") (pinfunction "QSPI_SD1") (pintype "bidirectional") (tstamp 22910cf2-891c-44a9-9f43-8ef3fc9e8206))
(pad "56" smd roundrect locked (at -2.6 -3.4375 270) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 43 "/QSPI_SS") (pinfunction "QSPI_SS") (pintype "bidirectional") (tstamp d2ebea05-c9c5-4615-b2ab-567641f26035))
(pad "57" thru_hole circle locked (at 1.275 -1.275 270) (size 0.6 0.6) (drill 0.35) (layers *.Cu)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 09e61c8b-6820-4dcd-b5c6-919981daab19))
(pad "57" thru_hole circle locked (at 0 0 270) (size 0.6 0.6) (drill 0.35) (layers *.Cu)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 0ae7389c-dc44-49f9-838a-71c25ab7202d))
(pad "57" thru_hole circle locked (at 1.275 1.275 270) (size 0.6 0.6) (drill 0.35) (layers *.Cu)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 3726e2ad-a951-4ca2-9ca8-3c3804620f48))
(pad "57" thru_hole circle locked (at 1.275 0 270) (size 0.6 0.6) (drill 0.35) (layers *.Cu)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 4a47bc59-3d4b-4b33-b46f-3bf020b4d9be))
(pad "57" thru_hole circle locked (at 0 -1.275 270) (size 0.6 0.6) (drill 0.35) (layers *.Cu)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 851478f1-0081-4e9e-8856-5d9b6501f3c8))
(pad "57" smd roundrect locked (at 0 0 270) (size 3.2 3.2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.045)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp a2aa815a-8dc4-43b6-bc32-bb35c0f3d442))
(pad "57" thru_hole circle locked (at -1.275 1.275 270) (size 0.6 0.6) (drill 0.35) (layers *.Cu)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp ac537724-722f-45ea-9509-055a6194d6e4))
(pad "57" thru_hole circle locked (at 0 1.275 270) (size 0.6 0.6) (drill 0.35) (layers *.Cu)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp b6a3aa8d-c6cc-4815-a7b5-09f3f0dc9b60))
(pad "57" thru_hole circle locked (at -1.275 0 270) (size 0.6 0.6) (drill 0.35) (layers *.Cu)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp d1c47f4a-c594-42e0-8254-4c7964b12ed5))
(pad "57" thru_hole circle locked (at -1.275 -1.275 270) (size 0.6 0.6) (drill 0.35) (layers *.Cu)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp ed0bd7aa-6ea2-4337-bbeb-55a7ed4c623d))
(model "${KISYS3DMOD}/Package_DFN_QFN.3dshapes/QFN-56-1EP_7x7mm_P0.4mm_EP5.6x5.6mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 0c98a2e9-2d4e-4344-b88b-089b05583d5f)
(at 121.857 65.659 90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "rp2040-control-board.kicad_sch")
(property "Sheetname" "")
(path "/0e149788-2433-4378-b41f-fa28a745c94a")
(attr smd)
(fp_text reference "C16" (at 0 1.524 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9140caae-c9d3-4d6b-b6f1-80fed3ad7ccf)
)
(fp_text value "100nF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e5617538-8520-4e0a-95ec-47eb41ed16dd)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp cd31d24f-2539-4e45-bae0-2bcf3b69fee6)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 9eeb9ba3-fcbe-4512-be0d-ab3150c61247))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp f0625f86-6b6f-4701-bae8-155df6c5a4b2))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3a0b55bb-3e7d-4bdf-b3a9-4b43d04ae9d0))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4b538ba0-8484-4041-a896-1e2e6185831e))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp bf2939cf-e36c-4811-9abc-4f6cf613d402))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp ef79f53c-b25e-41d5-b612-b9852b0826d1))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 37903ffd-3069-4ee3-8d15-4173446c93e3))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 599933e2-df6e-401d-9ecb-f6cfacedd087))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 770cf459-91ff-42ec-86ea-bf95b593d092))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp bb7251a8-9c6f-490e-a604-fe4b34be3d98))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "Net-(C16-Pad1)") (pintype "passive") (tstamp 1e0821e1-9167-41db-a48a-b5528409c695))
(pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "Net-(C16-Pad2)") (pintype "passive") (tstamp 3338a2c5-067c-47fe-9cba-1b5a40c37bf5))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 10462b04-fbbf-48c0-9377-7042f2677f34)
(at 98.298 68.961 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "rp2040-control-board.kicad_sch")
(property "Sheetname" "")
(path "/8ba948e1-5a90-47ef-9a1c-9553ad875e0a")
(attr smd)
(fp_text reference "C7" (at 2.413 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3034e429-f9f9-44a2-8240-03a24b63e1fb)
)
(fp_text value "100nF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 893925c2-1ab8-47db-9b31-6f7c1392d4b2)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp adb76a2a-bf68-4549-b705-c85f6ebc67ff)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 39f40aaa-21ba-483e-bd0b-4ebb5d156b94))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp f1588d22-76aa-429a-a1f8-983ff509ccce))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0b15f4f9-1505-417c-9138-2fb4322440c7))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2bdb6275-447c-48c2-a84b-aa998dd2916b))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 86af766d-6b15-4b5b-88af-d0249ebdfc4e))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp ea2c0fc1-2833-4b4e-b574-ad2fc842bfc0))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 5409cc31-4322-4031-ade5-4014b3199ad7))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 84afeae7-d3ce-4bad-bd47-1af44e760c0d))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 8f776380-fcbf-4da6-96c0-055517925d40))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp cc72aed2-4aae-4bd8-a39d-953a894a4e46))
(pad "1" smd roundrect (at -0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/+3.3v") (pintype "passive") (tstamp 432159f1-6ae4-4ef4-a946-9e666d388f88))
(pad "2" smd roundrect (at 0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp e4c46226-7b35-4875-ac0e-124e67d7599d))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 16730711-7f10-43a4-bfc6-446fa858de0e)
(at 100.965 64.643)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "rp2040-control-board.kicad_sch")
(property "Sheetname" "")
(path "/d6071cb3-0d36-45ab-ab25-1d2e01e1ce35")
(attr smd)
(fp_text reference "C12" (at 2.921 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3946475f-a80b-4ec5-9c58-c925a1c63762)
)
(fp_text value "100nF" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f22e1e5b-b975-4acf-87e7-697bc2e6cf6c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 8c0e3242-6a45-4fa8-812f-f80c75857091)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 707902af-a5f3-48ec-a51f-a0c2442c9b0c))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp db69fae9-7767-478c-832a-6db5f206105f))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0847b7d3-501a-4c52-b4e0-7f51a1d59aa6))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 08584984-41e2-4306-a11a-2c92beeab496))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9d93e407-fc35-4e86-a215-c19eb08948f0))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b9997694-493b-4213-8468-c035595461bc))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 3cad4871-f357-423c-bb38-142f118d87a8))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp a3d9e0bf-98f1-4a23-b70b-146421eebf6c))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp c15faa43-69fa-498e-864f-c612ce90dcf8))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp e1ab8f9f-19cc-4c98-a11e-6925638e1584))
(pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/+3.3v") (pintype "passive") (tstamp a862cf8b-c453-47c1-8c6a-76db59b415bd))
(pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 62176864-d0cf-476b-8cca-51d4d8c36c5c))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 241d45c3-e292-4286-88e2-648d09936352)
(at 109.093 54.102 180)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "rp2040-control-board.kicad_sch")
(property "Sheetname" "")
(path "/b7076e72-67fd-446e-9ae0-38596a570b36")
(attr smd)
(fp_text reference "R3" (at 0 1.524) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c7878c4f-2f8a-4bbb-adbc-833e5b6f7423)
)
(fp_text value "1k" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5ca1b4f0-e4cd-4f1a-9bfa-ba57d20cfd00)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp c93092f3-ad93-4616-a7d6-461e3ba02b31)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp d0466e0e-cadf-4a3c-8fd2-67cf9aa3b05b))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp e6d0f6f7-a433-4f2e-800a-52dc37d80119))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5d68a8ff-55d9-4830-83f9-f4b7757ac472))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b4ea3746-4064-4172-90ab-a704cbf264c0))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d2f1a85c-c11c-4951-ac13-658331a3afc4))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp db38bc5a-c975-4c86-99b8-efa197a86809))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 18c97c17-4686-4762-ac2f-547b5b999ca9))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 519527ee-f2dc-482d-94bb-75721ed8aafb))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 796bef76-e3f5-4a70-97dd-552267ab0501))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp dc0df9df-93f9-4d9c-91e5-306d7bb1b24c))
(pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "Net-(J1-Pad2)") (pintype "passive") (tstamp 207c4811-314a-47bb-ae18-2f9379831b81))
(pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 43 "/QSPI_SS") (pintype "passive") (tstamp cc4f0b33-ccfd-419b-9659-a88488fda9d5))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 2ff20828-bd59-4b9f-96ee-57d97ba845ab)
(at 86.995 60.071 180)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "rp2040-control-board.kicad_sch")
(property "Sheetname" "")
(path "/aaee4bf0-29ec-40a6-a4fa-eb03422450c4")
(attr smd)
(fp_text reference "R2" (at 2.54 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 524dfc74-a6ca-4f47-b1c4-8c830a3897c9)
)
(fp_text value "1k" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3825ef5a-9c20-4da1-b237-0d7cce88677d)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp dddee525-5a91-4e7c-9753-319ed47ddcc0)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 008d03ef-d971-462c-bfb3-7aa302eab0fd))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 7ac680eb-02c3-488d-9052-a4bda05e99dd))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 209b39ed-1521-46f3-985b-6f682af8a636))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 23b01e04-7511-4c52-80ed-871675300ee9))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 42f5b5b4-dd5c-4778-98da-3fe6b6b36b6c))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4770ef60-21bb-4d72-93b1-855cef6e8fb9))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp a001f9b3-d55c-45e5-82b3-54c3c57f50f4))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp a12176d4-cccd-4936-bd41-2b7cdce20b70))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp cef8d6fd-fad1-4b1e-bfe8-44b8b9fd4ec5))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp d5ed5e46-d54a-447d-9f4b-f0768c1fbc9a))
(pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 44 "/XOUT") (pintype "passive") (tstamp 756c320d-1757-4c24-8d25-eea4479fc01c))
(pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 54 "Net-(C2-Pad2)") (pintype "passive") (tstamp 35301f71-3327-4814-addd-6803f155857b))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Inductor_SMD:L_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEF0) (tstamp 389d9729-de06-4c29-ba18-f1238edaa5ea)
(at 114.228 65.913 180)
(descr "Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "inductor handsolder")
(property "Sheetfile" "rp2040-control-board.kicad_sch")
(property "Sheetname" "")
(path "/2050691a-9c49-4888-b13a-1e5fa4f8aba0")
(attr smd)
(fp_text reference "L1" (at 0.055 1.651) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 56086fe7-0902-4658-b0a4-79735d2ffe07)
)
(fp_text value "15uH" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 05c22087-f0be-4bf7-8f3e-adf8b92618f3)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 6f5f2808-7569-4f25-a31d-4cad79f12aa5)
)
(fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer "F.SilkS") (width 0.12) (tstamp 423003da-2228-4a7b-8146-f8c48f6599ae))
(fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer "F.SilkS") (width 0.12) (tstamp e2099293-451c-44e4-a9f8-cf4488cdfcfc))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 235f67bf-0f50-4ac6-b7c0-564c2d019217))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 2ffab9c3-5c7a-4d55-af94-9f9bd8be80ab))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 90b329ee-5b84-4045-8310-ebe2c622371c))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp f0c486ea-8fdb-49cc-877f-2ed6f80e037d))
(fp_line (start -1 0.6) (end -1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 0921480b-e7e1-4782-984d-ad572d0bd06d))
(fp_line (start 1 0.6) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 67d3073d-728e-4b1f-baea-18126e875c69))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp ce23cc72-5707-44ff-8a4f-1512c28ca602))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp d094a4b8-0876-42a4-af18-c6e644dd1dc4))
(pad "1" smd roundrect (at -1.025 0 180) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 7 "Net-(C16-Pad2)") (pinfunction "1") (pintype "passive") (tstamp 31a67758-bbb4-4e87-9887-0fd058e08392))
(pad "2" smd roundrect (at 1.025 0 180) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 4 "/+3.3v") (pinfunction "2") (pintype "passive") (tstamp 9d204501-9bc1-49d3-901e-dc3cce70c8f8))
(model "${KICAD6_3DMODEL_DIR}/Inductor_SMD.3dshapes/L_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 39145082-825f-48b4-964e-958e59a83d09)
(at 100.965 62.992)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "rp2040-control-board.kicad_sch")
(property "Sheetname" "")
(path "/8bdb10f4-ad50-4d28-b8b0-412e0c7187bc")
(attr smd)
(fp_text reference "C8" (at 2.413 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 53e279a4-b5b3-499f-8110-968401aa2145)
)
(fp_text value "100nF" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6707b221-21a1-482b-a9e0-e56d0908d37f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 8e2f2bec-6702-4270-8919-51904da9c633)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 5ff8b22f-1347-41d2-a81f-35ad79604a9b))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp e412785b-4527-40b0-a133-202e6c25d7ad))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2e924d2d-94f7-4a0f-8528-9d6e8f6bb0eb))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 47c2d869-3b61-41cb-b7da-0bcda9d848a9))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp b4ac8718-0185-4931-9448-0b4d31607c34))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp b6195440-02a8-48ee-b1aa-3caabc4545a9))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 1efa2a2c-3448-4385-898c-4c1577e22b00))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 82b43a70-cb19-4531-8dd9-530241cf5458))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp a57ab6a7-0401-4f24-a727-566f19f6bf8f))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp f67f3eb8-4f81-49e3-b2b7-2f620cf92995))
(pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/+3.3v") (pintype "passive") (tstamp 94ebab51-a200-451b-80c5-4a6910538d4b))
(pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 60108ae7-ffef-4936-bf39-c8dd84762005))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_SMD:SW_SPST_B3U-1000P" (layer "F.Cu")
(tedit 5A02FC95) (tstamp 4001bfeb-6931-41ed-964c-6ab4ad04afff)
(at 117.602 50.165 180)
(descr "Ultra-small-sized Tactile Switch with High Contact Reliability, Top-actuated Model, without Ground Terminal, without Boss")
(tags "Tactile Switch")
(property "Sheetfile" "rp2040-control-board.kicad_sch")
(property "Sheetname" "")
(path "/eb71f96f-e9cd-42f5-b5a9-06c9ff25bee5")
(attr smd)
(fp_text reference "SW1" (at 0 -2.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e6ac1aeb-a88f-44d3-a4fe-18586fc4d39d)
)
(fp_text value "SW_Push" (at 0 2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ffcdfa39-bc4e-49d0-acb0-8b5d14b3a0df)
)
(fp_text user "${REFERENCE}" (at 0 -2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3869cd68-2179-440e-8615-471bacbde811)
)
(fp_line (start 1.65 1.4) (end 1.65 1.1) (layer "F.SilkS") (width 0.12) (tstamp 27055ad6-6684-4866-bba8-c00e3e482fe4))
(fp_line (start -1.65 1.4) (end 1.65 1.4) (layer "F.SilkS") (width 0.12) (tstamp 6b09e1b4-d83d-4f64-9052-a3be881114a4))
(fp_line (start 1.65 -1.4) (end 1.65 -1.1) (layer "F.SilkS") (width 0.12) (tstamp 71f18bbc-30c3-4a1b-b186-2a032053c781))
(fp_line (start -1.65 -1.4) (end 1.65 -1.4) (layer "F.SilkS") (width 0.12) (tstamp 901557b7-758d-4a62-b40d-83d5ef94fecf))
(fp_line (start -1.65 -1.1) (end -1.65 -1.4) (layer "F.SilkS") (width 0.12) (tstamp b69a6995-6356-4485-856f-1cb28a53a02a))
(fp_line (start -1.65 1.1) (end -1.65 1.4) (layer "F.SilkS") (width 0.12) (tstamp efa18901-dd65-4597-9399-7e85f1015b89))
(fp_line (start 2.4 1.65) (end 2.4 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp 068e0483-275b-46cc-982a-0ff1786c3d41))
(fp_line (start -2.4 -1.65) (end -2.4 1.65) (layer "F.CrtYd") (width 0.05) (tstamp a837f2d3-1377-423d-9e05-10ed8bfdd4d3))
(fp_line (start 2.4 -1.65) (end -2.4 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp a9690b8a-291c-4e4b-9507-2678d734eb14))
(fp_line (start -2.4 1.65) (end 2.4 1.65) (layer "F.CrtYd") (width 0.05) (tstamp e9a4ad61-c16f-4a36-9385-12858092576f))
(fp_line (start 1.5 -1.25) (end 1.5 1.25) (layer "F.Fab") (width 0.1) (tstamp 7aa2d8b6-a41e-484e-8fae-6eaf3c9b50e2))
(fp_line (start 1.5 1.25) (end -1.5 1.25) (layer "F.Fab") (width 0.1) (tstamp 9189e55c-3f50-4101-8ec0-b008b5a37edd))
(fp_line (start -1.5 -1.25) (end 1.5 -1.25) (layer "F.Fab") (width 0.1) (tstamp 919e5111-ffb0-46f0-a366-92294657ae48))
(fp_line (start -1.5 1.25) (end -1.5 -1.25) (layer "F.Fab") (width 0.1) (tstamp 9dd515c6-dfd3-4fc5-abe2-a9b8d2b98a2f))
(fp_circle (center 0 0) (end 0.75 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 1503e9e5-3d34-42eb-8dd9-49004567dd85))
(pad "1" smd rect (at -1.7 0 180) (size 0.9 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "1") (pintype "passive") (tstamp 702a88a3-43ee-4616-860f-1d168f9ca33a))
(pad "2" smd rect (at 1.7 0 180) (size 0.9 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 45 "Net-(R4-Pad2)") (pinfunction "2") (pintype "passive") (tstamp 08c9fb3a-987c-44fb-95be-3a52bb335067))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_SMD.3dshapes/SW_SPST_B3U-1000P.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 41459947-67dc-49bd-ad93-861dea5ef306)
(at 109.665 68.707 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "rp2040-control-board.kicad_sch")
(property "Sheetname" "")
(path "/882f3ed1-6cf4-4baf-9f62-1bb0c77d2a07")
(attr smd)
(fp_text reference "C17" (at 2.921 -0.127 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 87167cdd-cfab-4814-a3b0-d049553a15cb)
)
(fp_text value "56pF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 88f42f1f-5b79-4315-a039-7bbb84228026)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 093e9e63-fe1e-4feb-bbbe-9d5002218a03)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 93d3b745-2356-49e1-8638-bdda7117a797))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp a6cf71dc-c7e4-40ab-83eb-49ea01eef86d))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6178f510-4299-4af5-9cf4-5da2f76b462b))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp c563890b-e6db-4f82-a201-e3086b67b284))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp ca1af6e0-b911-4719-a936-e41d586110b5))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ea55eceb-d87d-40c7-bc6a-d89a536ccedc))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 10692a86-88cb-4f0b-922d-2b307367527d))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 6e79c319-6479-4032-b19e-29e4ce34a245))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 76e95515-ec02-475e-aae9-d14666efcdd3))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp dd937b20-e452-4904-9f06-88dd90424feb))
(pad "1" smd roundrect (at -0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/+3.3v") (pintype "passive") (tstamp 85ef8bdf-deb4-4e9c-b8e7-4fab903e486a))
(pad "2" smd roundrect (at 0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 40d6e624-bf54-49eb-9aa2-bbc747013036))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 42765826-837e-4375-ad5d-c11d8588d303)
(at 97.409 55.245 90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "rp2040-control-board.kicad_sch")
(property "Sheetname" "")
(path "/8c948694-2fcf-4a71-ad0e-36263bd2b582")
(attr smd)
(fp_text reference "C14" (at 0 1.524 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 030b8db5-a857-4477-86bd-aa043049706b)
)
(fp_text value "100nF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ee82b68e-edcf-4d9a-8c83-5f8c4dfcb9b7)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp c4557704-a1cf-416d-9a78-6f17fe01b7f4)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 7402bf76-87d0-4f8c-82ce-6ff55227f4b5))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp fdc41eae-4b30-43fe-aa73-4ef1b20eb03d))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2f3f5b11-727e-43bc-a8ae-a4a5ff1e54ca))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 53d68171-f530-440f-8ccc-6d26b222dfaf))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 888310ab-a564-4e9b-96e0-ff5f6046bc87))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ac58a97f-c6a4-48b8-a535-98c8a0992524))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 3e123b38-e187-4f51-b7b2-5272f0190b64))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 4793bb92-bc24-454d-a22f-efa2e7fd5618))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 973e8b12-0022-4818-94f2-acc42275a911))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp b284832d-7ebb-45ab-a1bb-1c3767c33b6a))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/+3.3v") (pintype "passive") (tstamp 7f4cfeae-964a-4567-879b-03dbbac6ee65))
(pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 1f1a0825-264a-47ce-bd3c-7671b1bef242))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 495fbf89-b2c6-4363-a38a-f5ea705c56f2)
(at 86.995 52.451)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "rp2040-control-board.kicad_sch")
(property "Sheetname" "")
(path "/7a3acd0c-a858-44d1-b03e-a438a3246f2d")
(attr smd)
(fp_text reference "C1" (at -2.54 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e8f54bcd-4cc0-4e1a-9ba9-e52e415a5e0a)
)
(fp_text value "27pF" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f84edbfc-03d4-45b1-af86-25dcd07558c9)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 745426e3-e0e8-456a-8219-3ff990cba810)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp a349d333-1a5f-4436-9e07-9dd43b13bf92))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp fd5299da-3099-4934-9d33-520c8e829f28))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 53a70198-fbdf-4642-baa6-d8e70c3152d4))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 683ace21-d451-4a3b-9c6a-2ff48233eccb))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7398263b-8990-41fb-907f-d10d18bfa2f0))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp fe25c852-9aa1-4448-b215-65e3e40376bb))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 42dfcfdc-f5fb-40d3-80dc-3b68897fd0c1))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 784f2ed4-8f1b-4283-9869-b3ecce1e695e))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 9f0d3469-bad0-4554-bd2d-fa8f3ee34b83))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp a21e67a9-d827-4127-8487-8028a72e1ca5))
(pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp db15dec2-e9aa-4788-9a08-8bfa72d20665))
(pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "/XIN") (pintype "passive") (tstamp 5fe54f6b-77ca-46f4-afd8-492fe85cc5d6))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 52918ef2-91b9-47db-a382-a681af54382c)
(at 106.934 64.008)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "rp2040-control-board.kicad_sch")
(property "Sheetname" "")
(path "/9d28c3dd-720f-4590-ac53-e58520dcdd49")
(attr smd)
(fp_text reference "R5" (at 0 -1.397) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 94bb63c4-d35e-4601-b883-f7f070257a08)
)
(fp_text value "27" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2d87fda9-b766-4b9a-9472-7abc69d9d09d)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 5390b569-f063-47f4-893b-9a990f4ea824)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp aa8a3016-cc3c-4bf9-b17e-081ebb67afcf))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp b350d1fd-5926-40fc-99a9-64a77595c793))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 394e1e13-28f8-4ced-a2d9-0b0e847e2ba7))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 838bdca2-c766-4985-8e01-dddd310da0af))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp b747b346-728a-4375-a6c4-7daa541af23d))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp ee3af1dd-9b9e-4e2f-8f7d-58e38c690410))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 13cc3ed0-5d6e-432e-a920-2485183a707f))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 25f53bfb-74b6-4ac1-a9b3-f0e5fcfb2acb))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 7dc8b720-4317-4265-bb3f-b22702c49c37))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 8051ceca-6044-4f1a-b5de-bf9bbf8bbab0))
(pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 46 "Net-(R5-Pad1)") (pintype "passive") (tstamp a2a27871-3ee2-4097-9614-af181c9ad560))
(pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "/USB_DP") (pintype "passive") (tstamp cb23a772-674b-40e7-8726-28d1430be33f))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 53910c11-b2ed-4412-98e6-b0f2bb4eb76c)
(at 100.965 61.341)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "rp2040-control-board.kicad_sch")
(property "Sheetname" "")
(path "/fa714f9d-be89-4671-9f6d-d77d78394597")
(attr smd)
(fp_text reference "C4" (at 2.413 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bed3e9d8-4e84-4615-9d2f-00dc784cd9bf)
)
(fp_text value "100nF" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 58823427-58af-44e5-80d5-48bc77238358)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 5d29caa1-4557-44fa-bb85-0f450d3fb07f)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 16d376bd-db5d-4a59-8025-ae5f4549ee66))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 4fb8e1c5-2997-4564-bced-23be0ae296b9))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8959787f-6134-42a9-bd2d-e7f7a1af74c6))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8d8b2706-9915-4c1b-a96c-fb7f84829922))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b56ea8f1-42c1-49cc-979b-0919a293b73f))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp f013c151-ac7e-4593-b00a-2800549138e9))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 15e78e6a-8c84-4259-bcfc-c1d391a2ae95))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 19b6fdb7-c2da-4e40-b2bb-be0a937611f0))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 69479798-8209-4114-83e4-7a990d07ac93))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp edbfbac3-6e34-49e2-bde2-da2e644df2d6))
(pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(C3-Pad1)") (pintype "passive") (tstamp 1cf656a7-4e83-4083-b55b-6e1a17d2a42e))
(pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 5fef7766-d31c-4e0a-b637-f991dc7e201b))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_2x17_P2.54mm_Horizontal" (layer "F.Cu")
(tedit 59FED5CB) (tstamp 5a5c6dfc-600b-47d4-aecd-43acaa6e33ba)
(at 124.841 76.581 -90)
(descr "Through hole angled pin header, 2x17, 2.54mm pitch, 6mm pin length, double rows")
(tags "Through hole angled pin header THT 2x17 2.54mm double row")
(property "Sheetfile" "rp2040-control-board.kicad_sch")
(property "Sheetname" "")
(attr through_hole)
(fp_text reference "J4" (at -2.667 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 89c2d918-efba-4d1b-84c4-45bdd1d2856d)
)
(fp_text value "Conn_02x17_Odd_Even" (at 5.655 42.91 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2b1fe2f9-5f6e-4294-8dd7-e4c1886b9022)
)
(fp_text user "${REFERENCE}" (at 5.31 20.32) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cfda341f-96d1-4c17-862a-547f7b32dd8a)
)
(fp_line (start 1.042929 33.4) (end 1.497071 33.4) (layer "F.SilkS") (width 0.12) (tstamp 00933cba-ec0d-4aa1-abc9-1cfc51f01a16))
(fp_line (start 3.582929 35.18) (end 3.98 35.18) (layer "F.SilkS") (width 0.12) (tstamp 02b7b349-66c5-48c5-9dff-d4bd2ab5754e))
(fp_line (start 1.042929 7.24) (end 1.497071 7.24) (layer "F.SilkS") (width 0.12) (tstamp 03ef7221-9fdd-4d00-b6be-e31f84ede9bb))
(fp_line (start 12.64 35.18) (end 12.64 35.94) (layer "F.SilkS") (width 0.12) (tstamp 05cb81f5-327c-4838-803b-41ae5ca80737))
(fp_line (start 3.582929 5.46) (end 3.98 5.46) (layer "F.SilkS") (width 0.12) (tstamp 07ffbaad-8e7b-438d-94db-f42b8695db20))
(fp_line (start 12.64 25.78) (end 6.64 25.78) (layer "F.SilkS") (width 0.12) (tstamp 088528ed-9597-4a2f-884e-b077d4d99f3c))
(fp_line (start 6.64 19.94) (end 12.64 19.94) (layer "F.SilkS") (width 0.12) (tstamp 09940018-3fa9-4a88-b3b9-be0e55e01f98))
(fp_line (start 1.042929 5.46) (end 1.497071 5.46) (layer "F.SilkS") (width 0.12) (tstamp 0a37d534-7811-4ccd-b7c7-11cb3f115732))
(fp_line (start 1.042929 32.64) (end 1.497071 32.64) (layer "F.SilkS") (width 0.12) (tstamp 0a588191-ca91-48f0-9112-a50f1595c31c))
(fp_line (start 6.64 12.32) (end 12.64 12.32) (layer "F.SilkS") (width 0.12) (tstamp 0a89e4ab-f990-4287-96d0-85310b2aa55a))
(fp_line (start -1.27 -1.27) (end 0 -1.27) (layer "F.SilkS") (width 0.12) (tstamp 109c6eb3-f539-4af6-b725-b5526e7d4f77))
(fp_line (start 3.582929 10.54) (end 3.98 10.54) (layer "F.SilkS") (width 0.12) (tstamp 126ce113-cb27-45a9-b6cc-8f485a625bdb))
(fp_line (start 6.64 -0.32) (end 12.64 -0.32) (layer "F.SilkS") (width 0.12) (tstamp 13f15df1-85d9-427e-adf4-63f682b8c906))
(fp_line (start 1.042929 25.78) (end 1.497071 25.78) (layer "F.SilkS") (width 0.12) (tstamp 16595c5e-947e-4356-a721-4de7af140f24))
(fp_line (start 3.582929 13.08) (end 3.98 13.08) (layer "F.SilkS") (width 0.12) (tstamp 168b849d-a11f-4345-8475-a8c5dc9976f6))
(fp_line (start 3.582929 32.64) (end 3.98 32.64) (layer "F.SilkS") (width 0.12) (tstamp 191f42b3-4d25-45d5-a764-a0fd795e322b))
(fp_line (start 3.582929 41.02) (end 3.98 41.02) (layer "F.SilkS") (width 0.12) (tstamp 1b0c8f08-284d-4341-b01b-d852beef6156))
(fp_line (start 3.582929 15.62) (end 3.98 15.62) (layer "F.SilkS") (width 0.12) (tstamp 1c26b2a1-6180-4d81-82a0-b957aec51ced))
(fp_line (start 1.042929 30.86) (end 1.497071 30.86) (layer "F.SilkS") (width 0.12) (tstamp 21556fb3-4545-4e9b-b34b-561306b93e8b))
(fp_line (start 6.64 27.56) (end 12.64 27.56) (layer "F.SilkS") (width 0.12) (tstamp 237896ea-253b-4ba6-8e17-7580b9ab2494))
(fp_line (start 3.582929 18.16) (end 3.98 18.16) (layer "F.SilkS") (width 0.12) (tstamp 25c97741-d0da-4efc-a99f-bd32e98fef10))
(fp_line (start 1.042929 9.78) (end 1.497071 9.78) (layer "F.SilkS") (width 0.12) (tstamp 280efeff-3fbf-41c9-8761-bfb42a8b675f))
(fp_line (start 12.64 22.48) (end 12.64 23.24) (layer "F.SilkS") (width 0.12) (tstamp 29ea5a22-b0c8-455f-adfc-a1e4ae7ca3cd))
(fp_line (start 3.582929 25.02) (end 3.98 25.02) (layer "F.SilkS") (width 0.12) (tstamp 2af03734-769d-4be2-8727-78cbed8fec04))
(fp_line (start 12.64 19.94) (end 12.64 20.7) (layer "F.SilkS") (width 0.12) (tstamp 2ca9392d-bde0-4181-86c5-56e524a77aac))
(fp_line (start 1.042929 15.62) (end 1.497071 15.62) (layer "F.SilkS") (width 0.12) (tstamp 2fca306f-980a-4bfb-80ef-b4c23cb6606b))
(fp_line (start 1.042929 35.94) (end 1.497071 35.94) (layer "F.SilkS") (width 0.12) (tstamp 33d2cf6a-17a8-43d8-8e4d-4b0233bee5d3))
(fp_line (start 1.042929 17.4) (end 1.497071 17.4) (layer "F.SilkS") (width 0.12) (tstamp 34273e70-4108-4e5c-a028-34d21a5c1efd))
(fp_line (start 6.64 0.04) (end 12.64 0.04) (layer "F.SilkS") (width 0.12) (tstamp 36fb4ee6-56ec-4072-9a5a-e587ffbd1405))
(fp_line (start 1.042929 40.26) (end 1.497071 40.26) (layer "F.SilkS") (width 0.12) (tstamp 381122a5-61de-477a-a31e-93953cb280d7))
(fp_line (start 6.64 0.16) (end 12.64 0.16) (layer "F.SilkS") (width 0.12) (tstamp 392ad4e5-a898-42b1-b069-9568d5fef0f5))
(fp_line (start 6.64 7.24) (end 12.64 7.24) (layer "F.SilkS") (width 0.12) (tstamp 3f4c9a38-1487-4f3f-8f2a-cc23293e5969))
(fp_line (start 12.64 5.46) (end 6.64 5.46) (layer "F.SilkS") (width 0.12) (tstamp 41609430-bac5-4e0d-a94e-1c7a6a92ed5d))
(fp_line (start 12.64 33.4) (end 6.64 33.4) (layer "F.SilkS") (width 0.12) (tstamp 44aa47bd-365c-4577-80d5-7553d9d014dc))
(fp_line (start 6.64 -0.38) (end 12.64 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 44effc68-1ba3-4d29-bfb4-844239496cee))
(fp_line (start 3.98 29.21) (end 6.64 29.21) (layer "F.SilkS") (width 0.12) (tstamp 456cd388-95f0-4163-bd52-a6c7f4e1aa1c))
(fp_line (start 3.582929 22.48) (end 3.98 22.48) (layer "F.SilkS") (width 0.12) (tstamp 4978a171-a407-46ca-af53-8ee0deb5d339))
(fp_line (start 12.64 28.32) (end 6.64 28.32) (layer "F.SilkS") (width 0.12) (tstamp 4a21d358-49d2-4752-862b-bf1c32cf9341))
(fp_line (start 1.042929 18.16) (end 1.497071 18.16) (layer "F.SilkS") (width 0.12) (tstamp 4a6940d3-5f4c-4f89-8907-3e172e6612ac))
(fp_line (start 1.042929 23.24) (end 1.497071 23.24) (layer "F.SilkS") (width 0.12) (tstamp 4e33add5-8994-4bfc-b11b-4ed7b1094c2b))
(fp_line (start 3.98 3.81) (end 6.64 3.81) (layer "F.SilkS") (width 0.12) (tstamp 4f5c7825-f151-475a-994f-314420c1d9e4))
(fp_line (start 3.98 34.29) (end 6.64 34.29) (layer "F.SilkS") (width 0.12) (tstamp 4fdb285e-eeb6-4771-90b6-c7689b4ef4bc))
(fp_line (start 3.98 31.75) (end 6.64 31.75) (layer "F.SilkS") (width 0.12) (tstamp 5083ae27-40f3-48c8-b21d-d01446c16b35))
(fp_line (start 3.98 11.43) (end 6.64 11.43) (layer "F.SilkS") (width 0.12) (tstamp 520536b8-173a-4330-a5d3-1ea2b3d01cc1))
(fp_line (start 3.582929 19.94) (end 3.98 19.94) (layer "F.SilkS") (width 0.12) (tstamp 56ae7ec6-fe23-44e9-ba90-5f368a6a9156))
(fp_line (start 12.64 8) (end 6.64 8) (layer "F.SilkS") (width 0.12) (tstamp 57976132-cdd3-4187-8fe7-5ed48bfa0c27))
(fp_line (start 3.582929 37.72) (end 3.98 37.72) (layer "F.SilkS") (width 0.12) (tstamp 59e9c694-e689-43d6-a9c2-7bdb38b4386d))
(fp_line (start 3.582929 8) (end 3.98 8) (layer "F.SilkS") (width 0.12) (tstamp 5d1c7aa0-6170-4264-866d-7db5e62fedd5))
(fp_line (start 1.042929 8) (end 1.497071 8) (layer "F.SilkS") (width 0.12) (tstamp 5d6a8fee-0f28-4bb9-866f-abcc0089d992))
(fp_line (start 3.98 39.37) (end 6.64 39.37) (layer "F.SilkS") (width 0.12) (tstamp 5db4c5c3-9e46-42dd-9b64-72e55324398b))
(fp_line (start 12.64 41.02) (end 6.64 41.02) (layer "F.SilkS") (width 0.12) (tstamp 5e20d763-c921-4d63-a858-87fb60de84b1))
(fp_line (start 12.64 10.54) (end 6.64 10.54) (layer "F.SilkS") (width 0.12) (tstamp 61f4c60b-bf77-42f5-84b4-fda320eaf3e7))
(fp_line (start 3.98 19.05) (end 6.64 19.05) (layer "F.SilkS") (width 0.12) (tstamp 627acdfd-3512-473a-b188-1aec9c8bfe60))
(fp_line (start 3.582929 0.38) (end 3.98 0.38) (layer "F.SilkS") (width 0.12) (tstamp 628ad3a2-194f-414b-94eb-3ce970ebd5dc))
(fp_line (start 12.64 25.02) (end 12.64 25.78) (layer "F.SilkS") (width 0.12) (tstamp 62ca13ac-9249-49d8-88a7-edca7cb8d779))
(fp_line (start 12.64 23.24) (end 6.64 23.24) (layer "F.SilkS") (width 0.12) (tstamp 65e36f4d-8b19-4c5b-b17c-e48567fa1d25))
(fp_line (start 6.64 40.26) (end 12.64 40.26) (layer "F.SilkS") (width 0.12) (tstamp 6729d992-881d-49eb-bf82-7ed0b3e17c26))
(fp_line (start 6.64 4.7) (end 12.64 4.7) (layer "F.SilkS") (width 0.12) (tstamp 6e07fda6-6908-4f4b-80a7-95fe1231aada))
(fp_line (start 3.582929 17.4) (end 3.98 17.4) (layer "F.SilkS") (width 0.12) (tstamp 6eaea755-9b7d-4dde-a2b7-732ecc73818f))
(fp_line (start 12.64 4.7) (end 12.64 5.46) (layer "F.SilkS") (width 0.12) (tstamp 6f566def-ccf5-4f24-8c95-5a152fda8ef8))
(fp_line (start 1.042929 37.72) (end 1.497071 37.72) (layer "F.SilkS") (width 0.12) (tstamp 7030eb79-dc96-459b-8c83-5cdc3077b868))
(fp_line (start 1.042929 2.16) (end 1.497071 2.16) (layer "F.SilkS") (width 0.12) (tstamp 73d050ef-f762-4ee7-9a74-1bdbcc45a8b9))
(fp_line (start 12.64 38.48) (end 6.64 38.48) (layer "F.SilkS") (width 0.12) (tstamp 7bd5faee-e4b9-458a-949c-5399f7441628))
(fp_line (start 6.64 -0.2) (end 12.64 -0.2) (layer "F.SilkS") (width 0.12) (tstamp 7cc8ef94-7a5e-4faa-aeb4-3bb1548223bc))
(fp_line (start 3.98 36.83) (end 6.64 36.83) (layer "F.SilkS") (width 0.12) (tstamp 7d19444d-d1c3-48fb-aa26-90b94c129f4f))
(fp_line (start 1.042929 27.56) (end 1.497071 27.56) (layer "F.SilkS") (width 0.12) (tstamp 7f5d4b80-85fa-41b4-8798-8171f9f34da2))
(fp_line (start 3.98 1.27) (end 6.64 1.27) (layer "F.SilkS") (width 0.12) (tstamp 800e4b03-3f41-427c-8741-99a61b567cb8))
(fp_line (start 1.042929 10.54) (end 1.497071 10.54) (layer "F.SilkS") (width 0.12) (tstamp 85dbff05-be6f-4fea-93ec-8f920eff8644))
(fp_line (start 6.64 37.72) (end 12.64 37.72) (layer "F.SilkS") (width 0.12) (tstamp 86f585ae-7fec-451b-9f4d-5178606c3d7d))
(fp_line (start 3.98 41.97) (end 6.64 41.97) (layer "F.SilkS") (width 0.12) (tstamp 8a65df5e-ec08-483c-afca-b88724ed42af))
(fp_line (start 3.582929 38.48) (end 3.98 38.48) (layer "F.SilkS") (width 0.12) (tstamp 8b918202-59dd-40dd-8d25-5ade1176d40d))
(fp_line (start 6.64 30.1) (end 12.64 30.1) (layer "F.SilkS") (width 0.12) (tstamp 8be8d604-5f9c-4c81-a719-cae6d25dfadc))
(fp_line (start 3.98 13.97) (end 6.64 13.97) (layer "F.SilkS") (width 0.12) (tstamp 8cd199ca-f2b1-4e76-8df7-cc75b8672d85))
(fp_line (start 12.64 2.16) (end 12.64 2.92) (layer "F.SilkS") (width 0.12) (tstamp 8d65618c-ded0-46c8-bc19-937388a5135f))
(fp_line (start 1.042929 25.02) (end 1.497071 25.02) (layer "F.SilkS") (width 0.12) (tstamp 8d65c9ab-d01f-47b9-9a50-b30639aa215d))
(fp_line (start 6.64 -1.33) (end 3.98 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 8e299ddc-1f56-4137-a8ec-cd5521d55593))
(fp_line (start 3.98 8.89) (end 6.64 8.89) (layer "F.SilkS") (width 0.12) (tstamp 8f600e15-43ff-418a-b10d-266b258e7e96))
(fp_line (start 3.98 6.35) (end 6.64 6.35) (layer "F.SilkS") (width 0.12) (tstamp 91f4375e-13a6-4343-9f53-7b08366312cb))
(fp_line (start 1.042929 22.48) (end 1.497071 22.48) (layer "F.SilkS") (width 0.12) (tstamp 92a25898-49c8-4de4-8b88-e267422fab0f))
(fp_line (start 12.64 35.94) (end 6.64 35.94) (layer "F.SilkS") (width 0.12) (tstamp 92eaba14-1ba6-49d7-8a55-64129d195b8b))
(fp_line (start 3.98 21.59) (end 6.64 21.59) (layer "F.SilkS") (width 0.12) (tstamp 936bfc53-c96b-4a2a-919d-38082ae3a191))
(fp_line (start 3.582929 27.56) (end 3.98 27.56) (layer "F.SilkS") (width 0.12) (tstamp 96146dfa-bf7c-437d-9aba-b0962b1d455d))
(fp_line (start 3.582929 9.78) (end 3.98 9.78) (layer "F.SilkS") (width 0.12) (tstamp 9620f79f-8766-4e5b-8c5f-3701fb2e966b))
(fp_line (start 3.98 -1.33) (end 3.98 41.97) (layer "F.SilkS") (width 0.12) (tstamp 971f6f2b-78bc-4de0-9bca-4a8b5b2e3953))
(fp_line (start 12.64 27.56) (end 12.64 28.32) (layer "F.SilkS") (width 0.12) (tstamp 975a1184-f1c1-4cf7-b6a2-a9dc132d0411))
(fp_line (start 6.64 9.78) (end 12.64 9.78) (layer "F.SilkS") (width 0.12) (tstamp 97afb878-d10c-4fc4-9b00-d3b0fb4faef5))
(fp_line (start 1.042929 38.48) (end 1.497071 38.48) (layer "F.SilkS") (width 0.12) (tstamp 99a989eb-2d20-47d8-b213-ff3e9d3babc0))
(fp_line (start 12.64 37.72) (end 12.64 38.48) (layer "F.SilkS") (width 0.12) (tstamp 9df6f9ef-cb34-4f37-ab2b-899e9268ad06))
(fp_line (start 12.64 20.7) (end 6.64 20.7) (layer "F.SilkS") (width 0.12) (tstamp a02685dd-d915-4b16-805e-6e2e51bcfd93))
(fp_line (start 6.64 41.97) (end 6.64 -1.33) (layer "F.SilkS") (width 0.12) (tstamp a4d9ec5d-543c-4022-8925-71ec507d5921))
(fp_line (start 3.582929 12.32) (end 3.98 12.32) (layer "F.SilkS") (width 0.12) (tstamp a5c13482-e4bd-416e-bff7-1f8569a0e102))
(fp_line (start 3.98 24.13) (end 6.64 24.13) (layer "F.SilkS") (width 0.12) (tstamp a7956c98-3751-48f8-9cf9-52e42f508bcd))
(fp_line (start 12.64 13.08) (end 6.64 13.08) (layer "F.SilkS") (width 0.12) (tstamp a9a4e7f4-65c4-4f5d-ac14-565557d2140d))
(fp_line (start 12.64 2.92) (end 6.64 2.92) (layer "F.SilkS") (width 0.12) (tstamp adc99d30-654f-450a-bbee-2e855bf37d09))
(fp_line (start 6.64 -0.08) (end 12.64 -0.08) (layer "F.SilkS") (width 0.12) (tstamp add34c53-8568-4486-87b8-6086759ffdfc))
(fp_line (start 3.582929 25.78) (end 3.98 25.78) (layer "F.SilkS") (width 0.12) (tstamp af222ede-15a1-480a-a68f-046c5727ab62))
(fp_line (start 12.64 14.86) (end 12.64 15.62) (layer "F.SilkS") (width 0.12) (tstamp b00fd2c3-987a-4ede-9abf-dbf812950399))
(fp_line (start -1.27 0) (end -1.27 -1.27) (layer "F.SilkS") (width 0.12) (tstamp b40d0d48-a69b-4c05-9623-c1adbdeff36d))
(fp_line (start 6.64 14.86) (end 12.64 14.86) (layer "F.SilkS") (width 0.12) (tstamp b5e64a30-3fcb-4f45-b4f8-6baca1e754b9))
(fp_line (start 1.042929 30.1) (end 1.497071 30.1) (layer "F.SilkS") (width 0.12) (tstamp b842f545-f8c4-496e-ae71-639a8f14f124))
(fp_line (start 12.64 17.4) (end 12.64 18.16) (layer "F.SilkS") (width 0.12) (tstamp ba6de366-936b-404f-9d48-15a12c188700))
(fp_line (start 12.64 18.16) (end 6.64 18.16) (layer "F.SilkS") (width 0.12) (tstamp bacbe3d3-6f50-4a71-b037-4286caca8a01))
(fp_line (start 1.042929 41.02) (end 1.497071 41.02) (layer "F.SilkS") (width 0.12) (tstamp bb949b82-fec6-420a-abfc-d18fb4547420))