-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRP2040-PicoProbe.kicad_pcb
13132 lines (13080 loc) · 577 KB
/
RP2040-PicoProbe.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.6062)
)
(paper "A4")
(title_block
(title "RP2040-PicoProbe-0010")
(date "2024-01-21")
(rev "1.0")
(company "(c) 2024 Andriy Golovnya")
(comment 1 "RP2040 based double-sided Pico Debug Probe")
(comment 2 "Designed in Germany")
)
(layers
(0 "F.Cu" signal)
(1 "In1.Cu" power)
(2 "In2.Cu" mixed)
(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 "prepreg") (thickness 0.2104) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In1.Cu" (type "copper") (thickness 0.0152))
(layer "dielectric 2" (type "core") (thickness 1.065) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In2.Cu" (type "copper") (thickness 0.0152))
(layer "dielectric 3" (type "prepreg") (thickness 0.2104) (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)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(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 0)
(scaleselection 1)
(outputdirectory "cam")
)
)
(net 0 "")
(net 1 "+3V3")
(net 2 "GND")
(net 3 "+1V1")
(net 4 "VUSB")
(net 5 "XIN")
(net 6 "XOUT")
(net 7 "Net-(D1-A)")
(net 8 "Net-(D2-A)")
(net 9 "USB_DP")
(net 10 "USB_DN")
(net 11 "VBUS")
(net 12 "Net-(D4-A)")
(net 13 "Net-(D5-A)")
(net 14 "Net-(D6-A)")
(net 15 "Net-(D7-A)")
(net 16 "TARGET_TX")
(net 17 "TARGET_RX")
(net 18 "LED_RX")
(net 19 "LED_TX")
(net 20 "LED_ACT")
(net 21 "LED_CON")
(net 22 "LED_RUN")
(net 23 "Net-(R7-Pad1)")
(net 24 "DBG_DIO")
(net 25 "DBG_CLK")
(net 26 "QSPI_SS")
(net 27 "QSPI_SD1")
(net 28 "QSPI_SD2")
(net 29 "QSPI_SD0")
(net 30 "QSPI_SCLK")
(net 31 "QSPI_SD3")
(net 32 "unconnected-(U2-GPIO3-Pad5)")
(net 33 "UART_RX_BUF")
(net 34 "unconnected-(U2-GPIO9-Pad12)")
(net 35 "unconnected-(U2-GPIO11-Pad14)")
(net 36 "DBG_DIO_BUF")
(net 37 "unconnected-(U2-GPIO17-Pad28)")
(net 38 "unconnected-(U2-GPIO18-Pad29)")
(net 39 "unconnected-(U2-GPIO19-Pad30)")
(net 40 "unconnected-(U2-GPIO20-Pad31)")
(net 41 "unconnected-(U2-GPIO21-Pad32)")
(net 42 "unconnected-(U2-GPIO22-Pad34)")
(net 43 "unconnected-(U2-GPIO23-Pad35)")
(net 44 "unconnected-(U2-GPIO24-Pad36)")
(net 45 "unconnected-(U2-GPIO25-Pad37)")
(net 46 "unconnected-(U2-GPIO26_ADC0-Pad38)")
(net 47 "unconnected-(U2-GPIO27_ADC1-Pad39)")
(net 48 "unconnected-(U2-GPIO28_ADC2-Pad40)")
(net 49 "unconnected-(U2-GPIO29_ADC3-Pad41)")
(net 50 "DBG_RESET")
(net 51 "unconnected-(U2-GPIO0-Pad2)")
(net 52 "unconnected-(U2-GPIO1-Pad3)")
(net 53 "unconnected-(U2-SWCLK-Pad24)")
(net 54 "unconnected-(U2-SWD-Pad25)")
(net 55 "MCU_RESET")
(net 56 "unconnected-(U5-BP-Pad4)")
(net 57 "unconnected-(J5-ID-Pad4)")
(net 58 "unconnected-(J5-Shield-Pad6)")
(footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu")
(tstamp 0cfcc03f-9ab7-4bc7-826a-fac16fb3f837)
(at 146.558 107.188)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED")
(property "Sheetfile" "RP2040-PicoProbe.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode, small symbol")
(property "ki_keywords" "LED diode light-emitting-diode")
(path "/cfbe5c34-5f34-4222-8047-157c619d9e5c")
(attr smd)
(fp_text reference "D7" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9aa4cd74-cd2f-4f21-8cf5-3d7d6907f702)
)
(fp_text value "YELLOW" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c0ea6a16-2be0-4b76-b97c-1990d9af8dc8)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 4bda8c90-b1c3-48f9-b456-8f25ac07fe62)
)
(fp_line (start -1.485 -0.735) (end -1.485 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b5e5204b-c61d-48f9-91ca-7dd7d382901d))
(fp_line (start -1.485 0.735) (end 0.8 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2ac17830-96cf-4984-8881-707d3de9ddf3))
(fp_line (start 0.8 -0.735) (end -1.485 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 420ce0fd-3d42-43e0-95f4-e9a93d569360))
(fp_rect (start -1.485 -0.735) (end 1.524 0.735)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 32e3a8cb-3c73-4f0b-8e45-840a61402aaf))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 68a70021-b605-4b5d-a9a7-c225e4e2afe1))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b7787f0b-5dc1-4c71-b432-f4dfbda2ffe4))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 354bf76a-bce4-420f-92d0-13d71c268298))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp add42a5f-d665-4e11-8b6e-8812f089ea9a))
(fp_line (start -0.8 -0.1) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 00e14081-69e7-4c4e-9bf4-4a2de1ccd69b))
(fp_line (start -0.8 0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 78afb89c-694d-44f1-8529-caf90d987109))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 585d8b1d-36c1-4d19-8e81-b8a92e47140a))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a27cfe72-5cca-4a88-a791-196dc7cc69df))
(fp_line (start 0.8 0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a954a275-88e3-4bb6-9a9d-342bfa4f576d))
(pad "1" smd roundrect (at -0.7875 0) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "K") (pintype "passive") (tstamp c4d0af52-0f83-46c7-8388-b743831febf1))
(pad "2" smd roundrect (at 0.7875 0) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "Net-(D7-A)") (pinfunction "A") (pintype "passive") (tstamp 3bd4868f-a3fc-4b07-88b0-d063a36510b5))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Inductor_SMD:L_0805_2012Metric" (layer "F.Cu")
(tstamp 2473a580-add8-438d-b76b-ade1f0f9e189)
(at 133.604 99.18 90)
(descr "Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "inductor")
(property "Sheetfile" "RP2040-PicoProbe.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Ferrite bead, small symbol")
(property "ki_keywords" "L ferrite bead inductor filter")
(path "/8d308e26-ef0d-4667-b510-c6605d2d5a4e")
(attr smd)
(fp_text reference "FB2" (at 0 -1.55 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 40dc6661-81db-4c42-9721-292850432eee)
)
(fp_text value "100@100MHz" (at -0.635 1.55 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 65be6dfb-1b14-4350-91da-3e4722fb4d87)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 8c685a44-7195-4869-9d0f-1254aae5702b)
)
(fp_line (start -0.399622 -0.56) (end 0.399622 -0.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8b0576e3-2920-4ee3-a893-885ed82c05d2))
(fp_line (start -0.399622 0.56) (end 0.399622 0.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c250a6cc-1809-4b20-8097-b42f6b2691a6))
(fp_line (start -1.75 -0.85) (end 1.75 -0.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f9414bfe-002b-48b0-8482-04a750b5ba80))
(fp_line (start -1.75 0.85) (end -1.75 -0.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0cbde62a-2e2a-43ca-8259-07c0c1ce98f9))
(fp_line (start 1.75 -0.85) (end 1.75 0.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ed3ee8dc-a9ed-40ff-b083-2515672ed141))
(fp_line (start 1.75 0.85) (end -1.75 0.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7f740361-9920-4ac1-927c-4eaa03efdb9b))
(fp_line (start -1 -0.45) (end 1 -0.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 638ec169-df7e-43a4-b201-ee5df9d4dea4))
(fp_line (start -1 0.45) (end -1 -0.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1b1c4319-d892-44d6-8a9a-bbc35424d8b9))
(fp_line (start 1 -0.45) (end 1 0.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e73cdb00-4833-4376-b023-f18bb4da8dcf))
(fp_line (start 1 0.45) (end -1 0.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cf20e735-3df2-4d64-916c-570d7e174172))
(pad "1" smd roundrect (at -1.0625 0 90) (size 0.875 1.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "VBUS") (pintype "passive") (tstamp fac0b248-e411-41f0-99ae-7196caf5770c))
(pad "2" smd roundrect (at 1.0625 0 90) (size 0.875 1.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "VUSB") (pintype "passive") (tstamp 074c689f-9f4a-46d5-8351-fff5598199bd))
(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 "LED_SMD:LED_0603_1608Metric" (layer "F.Cu")
(tstamp 436876fb-2f08-48e1-bb09-68ab46cc0075)
(at 134.366 96.012 180)
(descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED")
(property "Sheetfile" "RP2040-PicoProbe.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode, small symbol")
(property "ki_keywords" "LED diode light-emitting-diode")
(path "/a2620920-9681-4f8c-b0a4-690a1d9664e3")
(attr smd)
(fp_text reference "D2" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ee291415-725b-49d1-b98b-c5491bc43074)
)
(fp_text value "RED" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ba3d5bca-7ec1-4068-8095-8a7b002f20df)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp e7bea4ec-3439-4c5f-80f0-da585d0b50fc)
)
(fp_line (start -1.485 -0.735) (end -1.485 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 737fa1e4-db3d-4650-8088-93feaf098c8b))
(fp_line (start -1.485 0.735) (end 0.8 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f309edc5-9c9e-4f2a-9c94-becba9c0ca9e))
(fp_line (start 0.8 -0.735) (end -1.485 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c55cd8b0-cf51-4200-b2ad-89153fd5bbf7))
(fp_rect (start -1.485 -0.735) (end 1.52 0.74)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp c9d2c388-a1e7-40fe-9e81-a142bac6892a))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ac2c065b-e571-466a-9728-5047e3e6ff4c))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2e4176df-a30e-4d21-8386-dbc0a12efecf))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1f9becdf-d8cc-41ea-ac73-1e4d1488c8f3))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1db19c33-aa69-41d3-940c-7d0785f8ba8f))
(fp_line (start -0.8 -0.1) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7b26f29e-56a3-4973-bdcf-fba0c53f03fc))
(fp_line (start -0.8 0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5b9b0b1d-ac83-4b8f-9686-c73c7e5f39dd))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bb12aa76-65d8-4964-80b7-80d1dbcb8cfe))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b09a29f8-2625-4fa2-b6d2-35cb6548ff3c))
(fp_line (start 0.8 0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 439c2e76-c74c-4fe8-9d29-0686c3866b01))
(pad "1" smd roundrect (at -0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "K") (pintype "passive") (tstamp 35ab0908-d76b-49bd-86db-8f0256c82de6))
(pad "2" smd roundrect (at 0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "Net-(D2-A)") (pinfunction "A") (pintype "passive") (tstamp 955ff5d3-5f23-4357-bb1d-ea8d70989e6d))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_Harwin:Harwin_M20-89004xx_1x04_P2.54mm_Horizontal" (layer "F.Cu")
(tstamp 4a6edf39-4410-4f7d-bb83-c8d9993a2932)
(at 154.94 101.6)
(descr "Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89004xx, 4 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator")
(tags "connector Harwin M20-890 horizontal")
(property "Sheetfile" "RP2040-PicoProbe.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x04, script generated")
(property "ki_keywords" "connector")
(path "/66545657-fc1e-4cba-a7a4-109ff2b749b0")
(attr smd)
(fp_text reference "J1" (at -0.515 -6.28) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b7cb0043-5116-403a-9854-7b5b7e8e3286)
)
(fp_text value "CONN_UART" (at -0.515 6.28) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8b88b1ba-f560-45c8-bbd5-f3b508516991)
)
(fp_text user "${REFERENCE}" (at 1.365 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8ea55973-0394-4c4b-b7f4-c94e6eb45e02)
)
(fp_line (start -2.11 -4.25) (end 0 -4.25)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 13080774-3de0-46cf-aa4c-027e57d048f1))
(fp_line (start -2.11 -3.37) (end 0 -3.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b030ab58-fce0-4ff2-8002-57a60631a6d7))
(fp_line (start -2.11 -1.71) (end 0 -1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 75167af3-f273-487b-8c53-55e63dfcbc50))
(fp_line (start -2.11 -0.83) (end 0 -0.83)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0b2e690f-8091-4e74-b9f2-5ff699e1612b))
(fp_line (start -2.11 0.83) (end 0 0.83)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 13946f9e-a7de-4c4f-a750-a9b84c7cd508))
(fp_line (start -2.11 1.71) (end 0 1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3212d257-ff09-40a6-b37c-bbe0e41885d8))
(fp_line (start -2.11 3.37) (end 0 3.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b8a0f6b8-784c-4997-927e-08de6b88498c))
(fp_line (start -2.11 4.25) (end 0 4.25)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 83c15920-78bc-4dd8-b585-8f14d372d5ee))
(fp_line (start 0 -5.2) (end 2.74 -5.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ddd0bcec-5e70-4381-a322-64894f0b318e))
(fp_line (start 0 5.2) (end 0 -5.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 059ab360-3e15-4695-85ef-a43083b42d43))
(fp_line (start 2.74 -5.2) (end 2.74 5.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3cee2ab4-d711-4577-afa1-da5a0ff8fe29))
(fp_line (start 2.74 -4.25) (end 8.74 -4.25)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 20d19fc8-f490-4582-8055-88de7497f3b7))
(fp_line (start 2.74 -1.71) (end 8.74 -1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6006740f-0dee-4e68-b4a6-d6a48a275fa3))
(fp_line (start 2.74 0.83) (end 8.74 0.83)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fab1066a-fc8b-46c4-85d9-657ff1e66500))
(fp_line (start 2.74 3.37) (end 8.74 3.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 725a738b-b977-405e-bfee-c0ce16739aa3))
(fp_line (start 2.74 5.2) (end 0 5.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b600c894-10fa-4a69-9c47-7aa1dd8b8916))
(fp_line (start 8.74 -4.25) (end 8.74 -3.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a7955451-d2ce-49b3-83a6-296be74bf48c))
(fp_line (start 8.74 -3.37) (end 2.74 -3.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f345d8c8-5d76-4cc1-bfdd-b98eea6aaf80))
(fp_line (start 8.74 -1.71) (end 8.74 -0.83)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp afe1e08d-e838-4e48-96f6-5a2862c64031))
(fp_line (start 8.74 -0.83) (end 2.74 -0.83)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 772ca469-d5f2-409d-9570-2cc77b0fd5e0))
(fp_line (start 8.74 0.83) (end 8.74 1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a8511562-26db-4ccb-abfe-efb6d4ee3631))
(fp_line (start 8.74 1.71) (end 2.74 1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3f2df038-3b93-4f28-b994-2a8a7d6cc31e))
(fp_line (start 8.74 3.37) (end 8.74 4.25)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e8c05efc-dd94-4764-b496-0c0cc6c65889))
(fp_line (start 8.74 4.25) (end 2.74 4.25)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b7afef31-68d6-4665-94a9-7957be784c25))
(fp_line (start -3.835 -5.58) (end 9.125 -5.58)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4836acb0-da9c-4a1e-b908-ad52e605f649))
(fp_line (start -3.835 5.58) (end -3.835 -5.58)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 709f25db-e0f2-4417-91b1-04effdf652a0))
(fp_line (start 9.125 -5.58) (end 9.125 5.58)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 71376a18-2b42-4a87-9ef4-b9ebe60b1bc0))
(fp_line (start 9.125 5.58) (end -3.835 5.58)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3686764d-bbfc-4450-a777-615dd51c8a4e))
(fp_line (start -3.315 -4.13) (end -3.315 -3.49)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e8886b97-2811-451f-a7fb-971422d8ae83))
(fp_line (start -3.315 -3.49) (end 0.12 -3.49)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3b9a0fb2-88f0-4569-8582-b73cfb711924))
(fp_line (start -3.305 -1.59) (end -3.305 -0.95)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 49425c5c-a336-4e74-9068-04997106262b))
(fp_line (start -3.305 -0.95) (end 0.12 -0.95)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 59b1e041-a538-4463-b05c-d618d7148a4c))
(fp_line (start -3.305 0.95) (end -3.305 1.59)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eb930715-f6e5-46a6-aa90-81bb2a8bccd8))
(fp_line (start -3.305 1.59) (end 0.12 1.59)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f09a83a1-32cd-4aea-8274-b631bd1efc0f))
(fp_line (start -3.305 3.49) (end -3.305 4.13)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4a521247-b4c0-4a36-9fb0-bbb4e1333962))
(fp_line (start -3.305 4.13) (end 0.12 4.13)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0eb0bc59-8eec-449a-8a2a-fd04548fd3ea))
(fp_line (start 0.12 -4.68) (end 0.52 -5.08)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 445aaff6-9907-48ac-824f-a291bc95407e))
(fp_line (start 0.12 -4.13) (end -3.315 -4.13)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 58ad92f6-4196-4c05-bb5a-3901a1a5498d))
(fp_line (start 0.12 -1.59) (end -3.305 -1.59)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6022b7d7-7de3-410e-bbef-92019ebdbb44))
(fp_line (start 0.12 0.95) (end -3.305 0.95)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 393ac6ab-9033-4eb5-b487-5c122d3786f3))
(fp_line (start 0.12 3.49) (end -3.305 3.49)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 82ba5162-cb29-4a3d-b95f-52ad296459f8))
(fp_line (start 0.12 5.08) (end 0.12 -4.68)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 318809d6-9e00-487e-9b11-a108eb3e8101))
(fp_line (start 0.52 -5.08) (end 2.62 -5.08)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d0784a70-de6e-46db-ae94-6a905265a212))
(fp_line (start 2.62 -5.08) (end 2.62 5.08)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 962856ff-f921-435d-bd5b-df906357ce37))
(fp_line (start 2.62 -4.13) (end 8.62 -4.13)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b0b41436-c71d-4933-bc68-271d52eda296))
(fp_line (start 2.62 -1.59) (end 8.62 -1.59)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6eb03ae3-1268-4d23-95f0-99a084e9b598))
(fp_line (start 2.62 0.95) (end 8.62 0.95)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3d947556-f239-4c5c-9668-bf034a2577c4))
(fp_line (start 2.62 3.49) (end 8.62 3.49)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0fee7325-ef57-43d9-bcca-a4cd4bb09a20))
(fp_line (start 2.62 5.08) (end 0.12 5.08)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ef5690dd-71f7-479f-9d26-fd9c7494dfd0))
(fp_line (start 8.62 -4.13) (end 8.62 -3.49)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9fc8f0ee-6336-4087-a150-dd615351e322))
(fp_line (start 8.62 -3.49) (end 2.62 -3.49)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 677c8468-9bdb-4e6c-b15f-f7002d346a25))
(fp_line (start 8.62 -1.59) (end 8.62 -0.95)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0116e566-60db-4dad-8697-7dff3707e6bf))
(fp_line (start 8.62 -0.95) (end 2.62 -0.95)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 80c38ce4-78af-49ed-bb61-a9b1c83e34a2))
(fp_line (start 8.62 0.95) (end 8.62 1.59)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 913e3354-bbdf-4bf3-8e99-7b25aebf9697))
(fp_line (start 8.62 1.59) (end 2.62 1.59)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1a4aa2e0-ec54-40a0-a495-6289109322bf))
(fp_line (start 8.62 3.49) (end 8.62 4.13)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ae4c0cc9-7b22-4336-ae48-e88e197efa6a))
(fp_line (start 8.62 4.13) (end 2.62 4.13)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fb3680c4-7c04-488b-8e09-47fbebb34a27))
(pad "" smd rect (at 5.74 -3.81) (size 6 0.76) (layers "F.SilkS") (tstamp 165df00c-0dc2-493c-8879-10ca7c12e87b))
(pad "1" smd rect (at -2.055 -3.81) (size 2.5 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "TARGET_TX") (pinfunction "Pin_1") (pintype "passive") (tstamp 1c4043df-ea90-4392-b536-0dcca942b8a2))
(pad "2" smd rect (at -2.055 -1.27) (size 2.5 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 1763ec5b-779e-408b-b9b0-30a584b3ab8d))
(pad "3" smd rect (at -2.055 1.27) (size 2.5 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "TARGET_RX") (pinfunction "Pin_3") (pintype "passive") (tstamp fa2987df-6a94-41e0-ad49-0b5cd29f8c35))
(pad "4" smd rect (at -2.055 3.81) (size 2.5 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+3V3") (pinfunction "Pin_4") (pintype "passive") (tstamp f21c57eb-d771-43d2-9b83-ad05ff561d57))
(model "${KICAD7_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x04_P2.54mm_Vertical.wrl"
(offset (xyz 0.1 3.75 0.38))
(scale (xyz 1 1 1))
(rotate (xyz 0 -90 0))
)
)
(footprint "Connector_USB:USB_Micro-B_Molex_47346-0001" (layer "F.Cu")
(tstamp 5483e944-8d62-44ce-8c7b-55bf9c550ef0)
(at 129.794 101.6 -90)
(descr "Micro USB B receptable with flange, bottom-mount, SMD, right-angle (http://www.molex.com/pdm_docs/sd/473460001_sd.pdf)")
(tags "Micro B USB SMD")
(property "Sheetfile" "RP2040-PicoProbe.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "USB Micro Type B connector")
(property "ki_keywords" "connector USB micro")
(path "/17732c83-6297-4d25-96e2-2ad2db740e6c")
(attr smd)
(fp_text reference "J5" (at 0 -3.3 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 68233913-0b62-48e1-abf0-feee7a1e4eab)
)
(fp_text value "USB_B_Micro" (at 0 4.6 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c1bc9a24-e9ff-4393-8d99-23f6c52f95ef)
)
(fp_text user "PCB Edge" (at 0 2.67 90) (layer "Dwgs.User")
(effects (font (size 0.4 0.4) (thickness 0.04)))
(tstamp d5c360aa-7987-4a30-99cf-2b14585b5e38)
)
(fp_text user "${REFERENCE}" (at 0 1.2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1eee05ad-2fd8-4289-ab69-0fd16ac7923c)
)
(fp_line (start -3.81 -1.71) (end -3.43 -1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a72840d7-2d82-4eb9-8420-8cc09ca4d336))
(fp_line (start -3.81 0.06) (end -3.81 -1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3c5de0fb-3732-4112-923d-873432f67294))
(fp_line (start -3.81 2.6) (end -3.81 2.34)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aabe0c17-2cb0-4346-8757-6132139e8a23))
(fp_line (start 3.81 -1.71) (end 3.43 -1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4fd2a018-c79e-4c4c-92d5-90c062239a9e))
(fp_line (start 3.81 -1.71) (end 3.81 0.06)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7ff15d64-def2-49e9-88bb-29124594cbbb))
(fp_line (start 3.81 2.34) (end 3.81 2.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 111a35ec-ea12-477b-9e5e-1e00f198bd12))
(fp_line (start -4.7 -2.65) (end 4.7 -2.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 60db5ab6-758c-44c3-a303-3727b7cb38ff))
(fp_line (start -4.7 3.85) (end -4.7 -2.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b13c6875-7757-489d-b958-8e61f8f44fc7))
(fp_line (start 4.7 -2.65) (end 4.7 3.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 405a8e44-a80f-444e-aab0-44ecb8ef833e))
(fp_line (start 4.7 3.85) (end -4.7 3.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9f52d887-a276-47c3-ac40-9dca5b44962f))
(fp_line (start -3.75 -1.65) (end 3.75 -1.65)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 29670514-5f8b-460f-af66-01dc9affa720))
(fp_line (start -3.75 3.35) (end -3.75 -1.65)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 834d5a7c-f1a9-4c5a-b087-2ae43d246570))
(fp_line (start -3.25 2.65) (end 3.25 2.65)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ee1b731c-826d-4480-8d28-41e072c97325))
(fp_line (start 3.75 -1.65) (end 3.75 3.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f086fcd6-a301-49d8-b9d8-6f3db1531c9a))
(fp_line (start 3.75 3.35) (end -3.75 3.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 12b1fcd0-f20a-42ba-9e3c-f9e764b886f9))
(pad "1" smd rect (at -1.3 -1.46 270) (size 0.45 1.38) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "VBUS") (pinfunction "VBUS") (pintype "power_out") (tstamp 9ff98a03-b99a-433f-8918-3943ebbbbb73))
(pad "2" smd rect (at -0.65 -1.46 270) (size 0.45 1.38) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "USB_DN") (pinfunction "D-") (pintype "bidirectional") (tstamp 8baba445-d772-4103-93ff-3949ab910d35))
(pad "3" smd rect (at 0 -1.46 270) (size 0.45 1.38) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "USB_DP") (pinfunction "D+") (pintype "bidirectional") (tstamp 85a279f7-3fe6-4959-87b8-feb3c55a7b5d))
(pad "4" smd rect (at 0.65 -1.46 270) (size 0.45 1.38) (layers "F.Cu" "F.Paste" "F.Mask")
(net 57 "unconnected-(J5-ID-Pad4)") (pinfunction "ID") (pintype "passive+no_connect") (tstamp 713928d7-aa11-46eb-a0ad-840a5fefec26))
(pad "5" smd rect (at 1.3 -1.46 270) (size 0.45 1.38) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_out") (tstamp 9fc3699d-c8ee-4aba-982d-a71868c3e75d))
(pad "6" smd rect (at -3.375 1.2 270) (size 1.65 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 58 "unconnected-(J5-Shield-Pad6)") (pinfunction "Shield") (pintype "passive+no_connect") (tstamp d28a247a-6509-40b9-885d-cc8e5a794513))
(pad "6" smd rect (at -2.4875 -1.375 270) (size 1.425 1.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 58 "unconnected-(J5-Shield-Pad6)") (pinfunction "Shield") (pintype "passive+no_connect") (tstamp b080ed3a-bc63-4dce-bd21-ea64374ff001))
(pad "6" smd rect (at -1.15 1.2 270) (size 1.8 1.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 58 "unconnected-(J5-Shield-Pad6)") (pinfunction "Shield") (pintype "passive+no_connect") (tstamp df6a7a4c-c17e-431b-948b-d8ed0f692218))
(pad "6" smd rect (at 1.55 1.2 270) (size 1 1.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 58 "unconnected-(J5-Shield-Pad6)") (pinfunction "Shield") (pintype "passive+no_connect") (tstamp 4878962f-450f-440f-9b16-da8a82c4565c))
(pad "6" smd rect (at 2.4875 -1.375 270) (size 1.425 1.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 58 "unconnected-(J5-Shield-Pad6)") (pinfunction "Shield") (pintype "passive+no_connect") (tstamp 50b49657-9644-4359-ad96-7eefd08f7b21))
(pad "6" smd rect (at 3.375 1.2 270) (size 1.65 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 58 "unconnected-(J5-Shield-Pad6)") (pinfunction "Shield") (pintype "passive+no_connect") (tstamp 76af6194-044f-49cd-9c6f-3b919968dc74))
(model "${KICAD6_3DMODEL_DIR}/Connector_USB.3dshapes/USB_Micro-B_Molex_47346-0001.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_DFN_QFN:QFN-56-1EP_7x7mm_P0.4mm_EP3.2x3.2mm" (layer "F.Cu")
(tstamp 5b12362d-db23-4933-a045-f9abc8e20a8d)
(at 140.462 99.822 90)
(descr "QFN, 56 Pin (https://datasheets.raspberrypi.com/rp2040/rp2040-datasheet.pdf#page=634), generated with kicad-footprint-generator ipc_noLead_generator.py")
(tags "QFN NoLead")
(property "Sheetfile" "RP2040-PicoProbe.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "A microcontroller by Raspberry Pi")
(property "ki_keywords" "RP2040 ARM Cortex-M0+ USB")
(path "/eb05c702-ee86-4262-82ba-9b64756a1c6d")
(attr smd)
(fp_text reference "U2" (at 0 -4.82 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d47a2bdd-e7eb-4704-8055-a0ee9750ae3c)
)
(fp_text value "RP2040" (at 0 4.82 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f29d73fc-eab4-4bac-a3e6-85f9bf502de7)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 84705dc1-dd9d-4172-9306-d097c8b35715)
)
(fp_line (start -3.61 3.61) (end -3.61 2.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f5d0f02b-b6ae-4387-84f6-d979f0d14bc2))
(fp_line (start -2.96 -3.61) (end -3.61 -3.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 20305d6a-5504-4e9c-b6fe-b7c21821b57d))
(fp_line (start -2.96 3.61) (end -3.61 3.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 585c4d85-86ae-44fc-af38-61a5d980266d))
(fp_line (start 2.96 -3.61) (end 3.61 -3.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5e49db05-86d2-4e9b-bf4b-db4e0be098e1))
(fp_line (start 2.96 3.61) (end 3.61 3.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fa9adbfb-2ebf-4527-90ea-31cb3d93bf72))
(fp_line (start 3.61 -3.61) (end 3.61 -2.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 018cd032-7f9d-4b6d-858d-53677934c19e))
(fp_line (start 3.61 3.61) (end 3.61 2.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 78cfe0bf-4db2-4d97-8b16-e322257b6cc6))
(fp_line (start -4.12 -4.12) (end -4.12 4.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7e67f980-ca3c-48e3-81bc-f7bce5036f82))
(fp_line (start -4.12 4.12) (end 4.12 4.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 162d2561-5e60-40e1-9dab-d34ecf1eb0ec))
(fp_line (start 4.12 -4.12) (end -4.12 -4.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2bba66e3-5c18-401c-bdbd-d2571f758428))
(fp_line (start 4.12 4.12) (end 4.12 -4.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e39bba4a-79a3-4844-a53c-f7296045220a))
(fp_line (start -3.5 -2.5) (end -2.5 -3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8200638f-86e9-4dd0-96dd-96f0bf310834))
(fp_line (start -3.5 3.5) (end -3.5 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cc206976-ec1c-4fcd-af41-53053d4947df))
(fp_line (start -2.5 -3.5) (end 3.5 -3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1baa9600-a716-4bfa-9c01-a5d405fb6911))
(fp_line (start 3.5 -3.5) (end 3.5 3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 55a1f881-030d-4fe0-b6db-578078c0e39e))
(fp_line (start 3.5 3.5) (end -3.5 3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f4d0b12a-dc49-4bf2-847d-f2627b994c76))
(pad "" smd roundrect (at -0.8 -0.8 90) (size 1.29 1.29) (layers "F.Paste") (roundrect_rratio 0.1937976744) (tstamp 7ea93593-7a1e-4b52-a4e5-eb92ef5f91e1))
(pad "" smd roundrect (at -0.8 0.8 90) (size 1.29 1.29) (layers "F.Paste") (roundrect_rratio 0.1937976744) (tstamp eab5babf-b780-4634-9b76-bbee83e761bc))
(pad "" smd roundrect (at 0.8 -0.8 90) (size 1.29 1.29) (layers "F.Paste") (roundrect_rratio 0.1937976744) (tstamp 2d660734-f997-4122-8980-5a5bf5d91840))
(pad "" smd roundrect (at 0.8 0.8 90) (size 1.29 1.29) (layers "F.Paste") (roundrect_rratio 0.1937976744) (tstamp 94605997-ceff-48f2-89b3-c5282e3b4386))
(pad "1" smd roundrect (at -3.4375 -2.6 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+3V3") (pinfunction "IOVDD") (pintype "power_in") (tstamp 1f941206-eada-4af5-9654-10ca0993f97e))
(pad "2" smd roundrect (at -3.4375 -2.2 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 51 "unconnected-(U2-GPIO0-Pad2)") (pinfunction "GPIO0") (pintype "bidirectional+no_connect") (tstamp 7f959e74-4d2d-46f7-9e5f-c7e0e851529f))
(pad "3" smd roundrect (at -3.4375 -1.8 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 52 "unconnected-(U2-GPIO1-Pad3)") (pinfunction "GPIO1") (pintype "bidirectional+no_connect") (tstamp 20b1072e-eb2d-480f-acad-27e1109ec58d))
(pad "4" smd roundrect (at -3.4375 -1.4 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "LED_ACT") (pinfunction "GPIO2") (pintype "bidirectional") (tstamp a5ce78b9-ca08-44a0-960e-a253ea81af44))
(pad "5" smd roundrect (at -3.4375 -1 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 32 "unconnected-(U2-GPIO3-Pad5)") (pinfunction "GPIO3") (pintype "bidirectional+no_connect") (tstamp 554cbfcc-b28b-48be-9bfa-ef64ade730cd))
(pad "6" smd roundrect (at -3.4375 -0.6 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "TARGET_TX") (pinfunction "GPIO4") (pintype "bidirectional") (tstamp 9d83dfe6-2ed1-4fe9-9e8d-0b0e9d9586ad))
(pad "7" smd roundrect (at -3.4375 -0.2 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 33 "UART_RX_BUF") (pinfunction "GPIO5") (pintype "bidirectional") (tstamp fdd1413b-230d-472b-94d6-704d565c74e4))
(pad "8" smd roundrect (at -3.4375 0.2 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "TARGET_RX") (pinfunction "GPIO6") (pintype "bidirectional") (tstamp 3b010219-bfed-46b3-9296-5087499087a3))
(pad "9" smd roundrect (at -3.4375 0.6 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "LED_RX") (pinfunction "GPIO7") (pintype "bidirectional") (tstamp a84e0417-8ad4-4307-b92d-dcb7a99dc9ce))
(pad "10" smd roundrect (at -3.4375 1 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+3V3") (pinfunction "IOVDD") (pintype "passive") (tstamp 816e8792-e63c-4233-9840-fcdaedf4d433))
(pad "11" smd roundrect (at -3.4375 1.4 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "LED_TX") (pinfunction "GPIO8") (pintype "bidirectional") (tstamp 0f5baecc-6383-4053-b7dc-f6e9c96d9276))
(pad "12" smd roundrect (at -3.4375 1.8 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 34 "unconnected-(U2-GPIO9-Pad12)") (pinfunction "GPIO9") (pintype "bidirectional+no_connect") (tstamp 84d3e659-e442-4980-870c-7f0733b9b893))
(pad "13" smd roundrect (at -3.4375 2.2 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 50 "DBG_RESET") (pinfunction "GPIO10") (pintype "bidirectional") (tstamp 0b267ce6-a414-4513-8239-c30abf4ce360))
(pad "14" smd roundrect (at -3.4375 2.6 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 35 "unconnected-(U2-GPIO11-Pad14)") (pinfunction "GPIO11") (pintype "bidirectional+no_connect") (tstamp 85dba756-2006-47e6-b56e-3920db547920))
(pad "15" smd roundrect (at -2.6 3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "DBG_CLK") (pinfunction "GPIO12") (pintype "bidirectional") (tstamp 7bbc6137-cbf1-4e20-aaf8-c14413494ff7))
(pad "16" smd roundrect (at -2.2 3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 36 "DBG_DIO_BUF") (pinfunction "GPIO13") (pintype "bidirectional") (tstamp 9eb6644e-36ab-4d55-846f-fb7101557040))
(pad "17" smd roundrect (at -1.8 3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "DBG_DIO") (pinfunction "GPIO14") (pintype "bidirectional") (tstamp b264f10b-e47e-4504-b746-6c7aea220557))
(pad "18" smd roundrect (at -1.4 3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "LED_CON") (pinfunction "GPIO15") (pintype "bidirectional") (tstamp 87b902c1-fb5f-499f-a088-2869196dc5fc))
(pad "19" smd roundrect (at -1 3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "TESTEN") (pintype "input") (tstamp 40833f1c-833d-4184-b91e-8f6d4869b489))
(pad "20" smd roundrect (at -0.6 3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "XIN") (pinfunction "XIN") (pintype "input") (tstamp df9cd2b4-3913-45a6-a4de-3f0d08d1c9b1))
(pad "21" smd roundrect (at -0.2 3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "XOUT") (pinfunction "XOUT") (pintype "passive") (tstamp 255856bb-4aae-48ca-9256-0a806cda92c4))
(pad "22" smd roundrect (at 0.2 3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+3V3") (pinfunction "IOVDD") (pintype "passive") (tstamp 153e7fca-77c6-458a-86e0-20054829ea4f))
(pad "23" smd roundrect (at 0.6 3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+1V1") (pinfunction "DVDD") (pintype "power_in") (tstamp 5e4ef217-03b9-41e5-a9f8-67bbbc7deda4))
(pad "24" smd roundrect (at 1 3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 53 "unconnected-(U2-SWCLK-Pad24)") (pinfunction "SWCLK") (pintype "input+no_connect") (tstamp bc6c7cbe-f002-4498-861c-95deede22bdf))
(pad "25" smd roundrect (at 1.4 3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 54 "unconnected-(U2-SWD-Pad25)") (pinfunction "SWD") (pintype "bidirectional+no_connect") (tstamp 223e2866-862c-43c7-a85f-99b59c0a50d2))
(pad "26" smd roundrect (at 1.8 3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 55 "MCU_RESET") (pinfunction "RUN") (pintype "input") (tstamp ce8a7667-c7b3-4093-b276-439909c317b7))
(pad "27" smd roundrect (at 2.2 3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "LED_RUN") (pinfunction "GPIO16") (pintype "bidirectional") (tstamp 6b8ef477-d3da-4bc8-866c-52e685107c39))
(pad "28" smd roundrect (at 2.6 3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 37 "unconnected-(U2-GPIO17-Pad28)") (pinfunction "GPIO17") (pintype "bidirectional+no_connect") (tstamp 9da39fc4-8ce8-4bb1-99f3-2e8dbd68c09f))
(pad "29" smd roundrect (at 3.4375 2.6 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 38 "unconnected-(U2-GPIO18-Pad29)") (pinfunction "GPIO18") (pintype "bidirectional+no_connect") (tstamp 5c7e6202-420b-45c3-a899-75af30ad1e01))
(pad "30" smd roundrect (at 3.4375 2.2 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 39 "unconnected-(U2-GPIO19-Pad30)") (pinfunction "GPIO19") (pintype "bidirectional+no_connect") (tstamp 22b60bb2-a2c9-4832-ba1d-f1f29b458173))
(pad "31" smd roundrect (at 3.4375 1.8 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 40 "unconnected-(U2-GPIO20-Pad31)") (pinfunction "GPIO20") (pintype "bidirectional+no_connect") (tstamp 3b2b851d-5b08-4ad2-8f31-7266fde8e279))
(pad "32" smd roundrect (at 3.4375 1.4 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 41 "unconnected-(U2-GPIO21-Pad32)") (pinfunction "GPIO21") (pintype "bidirectional+no_connect") (tstamp 7ca0f281-c38b-468d-9f70-7fc104322758))
(pad "33" smd roundrect (at 3.4375 1 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+3V3") (pinfunction "IOVDD") (pintype "passive") (tstamp 4bebaf87-f445-4263-ad44-b3a04a629305))
(pad "34" smd roundrect (at 3.4375 0.6 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 42 "unconnected-(U2-GPIO22-Pad34)") (pinfunction "GPIO22") (pintype "bidirectional+no_connect") (tstamp fd489df8-5eb3-465a-bc4e-389a5e68fa7d))
(pad "35" smd roundrect (at 3.4375 0.2 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 43 "unconnected-(U2-GPIO23-Pad35)") (pinfunction "GPIO23") (pintype "bidirectional+no_connect") (tstamp fda4784d-d07e-445c-8cf6-2ee0f198c6fd))
(pad "36" smd roundrect (at 3.4375 -0.2 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 44 "unconnected-(U2-GPIO24-Pad36)") (pinfunction "GPIO24") (pintype "bidirectional+no_connect") (tstamp 862231e2-8f07-4649-888f-cc279d5ccce2))
(pad "37" smd roundrect (at 3.4375 -0.6 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 45 "unconnected-(U2-GPIO25-Pad37)") (pinfunction "GPIO25") (pintype "bidirectional+no_connect") (tstamp 0ce44664-3b36-45d6-af92-eec295afc235))
(pad "38" smd roundrect (at 3.4375 -1 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 46 "unconnected-(U2-GPIO26_ADC0-Pad38)") (pinfunction "GPIO26_ADC0") (pintype "bidirectional+no_connect") (tstamp bb646045-520c-4136-be39-37832f005c9a))
(pad "39" smd roundrect (at 3.4375 -1.4 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 47 "unconnected-(U2-GPIO27_ADC1-Pad39)") (pinfunction "GPIO27_ADC1") (pintype "bidirectional+no_connect") (tstamp 1b65723a-e9a1-4b35-b7db-b68ddd9b0074))
(pad "40" smd roundrect (at 3.4375 -1.8 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 48 "unconnected-(U2-GPIO28_ADC2-Pad40)") (pinfunction "GPIO28_ADC2") (pintype "bidirectional+no_connect") (tstamp e771e8cd-1c05-44be-a777-ea23c4da51f7))
(pad "41" smd roundrect (at 3.4375 -2.2 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 49 "unconnected-(U2-GPIO29_ADC3-Pad41)") (pinfunction "GPIO29_ADC3") (pintype "bidirectional+no_connect") (tstamp 572f77aa-8c4a-42e1-b6e0-737e5c391acd))
(pad "42" smd roundrect (at 3.4375 -2.6 90) (size 0.875 0.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+3V3") (pinfunction "IOVDD") (pintype "passive") (tstamp 629da640-44ae-45d5-beee-d421cb929db1))
(pad "43" smd roundrect (at 2.6 -3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+3V3") (pinfunction "ADC_AVDD") (pintype "power_in") (tstamp 82ea7771-e5fa-4758-b728-ab6b2fd09a48))
(pad "44" smd roundrect (at 2.2 -3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+3V3") (pinfunction "VREG_IN") (pintype "power_in") (tstamp 001310e8-e103-49fd-912a-253b00a06437))
(pad "45" smd roundrect (at 1.8 -3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+1V1") (pinfunction "VREG_VOUT") (pintype "power_out") (tstamp 68ee2ec7-369f-4fd3-8eb9-6bc53ac97157))
(pad "46" smd roundrect (at 1.4 -3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "USB_DN") (pinfunction "USB_DM") (pintype "bidirectional") (tstamp 2743d9f6-93a5-41c4-8166-e04e7a8ebfa1))
(pad "47" smd roundrect (at 1 -3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "USB_DP") (pinfunction "USB_DP") (pintype "bidirectional") (tstamp 95b9ccc5-f207-444f-b556-31da240fc9c2))
(pad "48" smd roundrect (at 0.6 -3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+3V3") (pinfunction "USB_VDD") (pintype "power_in") (tstamp 13277e59-2d93-448c-89c1-65dd69393066))
(pad "49" smd roundrect (at 0.2 -3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+3V3") (pinfunction "IOVDD") (pintype "passive") (tstamp 2a2511ab-5216-4fb4-85b5-64644dbc894d))
(pad "50" smd roundrect (at -0.2 -3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+1V1") (pinfunction "DVDD") (pintype "passive") (tstamp b853c17a-dcb5-4c16-94f5-2b4e94ee1555))
(pad "51" smd roundrect (at -0.6 -3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "QSPI_SD3") (pinfunction "QSPI_SD3") (pintype "bidirectional") (tstamp 2574410a-1ee3-4df0-8a0f-f10a80b4c0db))
(pad "52" smd roundrect (at -1 -3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "QSPI_SCLK") (pinfunction "QSPI_SCLK") (pintype "output") (tstamp b8b784d8-7531-42b8-8379-62c261f7bb08))
(pad "53" smd roundrect (at -1.4 -3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 29 "QSPI_SD0") (pinfunction "QSPI_SD0") (pintype "bidirectional") (tstamp 4bec05a2-7089-4f63-8979-9da93994ee0d))
(pad "54" smd roundrect (at -1.8 -3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "QSPI_SD2") (pinfunction "QSPI_SD2") (pintype "bidirectional") (tstamp 0302e8e6-6955-4718-9ce0-88f4ed830f1b))
(pad "55" smd roundrect (at -2.2 -3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "QSPI_SD1") (pinfunction "QSPI_SD1") (pintype "bidirectional") (tstamp 6ef54399-3889-4b91-b3a6-088504b0a338))
(pad "56" smd roundrect (at -2.6 -3.4375 90) (size 0.2 0.875) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "QSPI_SS") (pinfunction "QSPI_SS") (pintype "bidirectional") (tstamp 78968fb1-de85-4dd1-a2b1-2432e7425b23))
(pad "57" smd rect (at 0 0 90) (size 3.2 3.2) (layers "F.Cu" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 64bd30ad-943c-47e4-8ab6-0035c0b6a167))
(model "${KICAD6_3DMODEL_DIR}/Package_DFN_QFN.3dshapes/QFN-56-1EP_7x7mm_P0.4mm_EP3.2x3.2mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 5e26996d-2211-4d4c-be8f-ef9230f7972a)
(at 131.826 107.188)
(descr "Resistor SMD 0402 (1005 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-PicoProbe.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/4ef35932-5cf6-40a2-9834-02a399b3d04d")
(attr smd)
(fp_text reference "R3" (at 0 -1.17) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c32bd217-363f-466b-9b2a-4e529c139d5d)
)
(fp_text value "1k" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 06b7f4dc-44ed-4b58-bf2e-248658403a52)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp a405010c-1632-4d44-a8c0-db1842ebf3eb)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d31419cf-cee4-4da9-a409-6b1f188b6da9))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1130f129-f074-419f-aed7-bac87b62037b))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 412fab7a-a19e-45a8-a5d7-175c54e4cadd))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5bbb4108-5921-4efa-9318-0b428d7b01bd))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ad455a84-cd0c-4d15-9b39-330a53e23237))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 11fafe77-5219-4ab0-82bb-92ab86987e04))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6b8e8eb2-4d2d-431f-be37-5c84ad93a667))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f41a600d-2865-47fa-9067-634c53eb4315))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 93406298-eeab-4f61-acc4-844e2b8f63ca))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c970d121-32b3-4df5-a15d-c241f77a27c7))
(pad "1" smd roundrect (at -0.51 0) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "LED_ACT") (pintype "passive") (tstamp 2e7f9b5f-97d8-4176-bca5-8090a7b0cf98))
(pad "2" smd roundrect (at 0.51 0) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "Net-(D5-A)") (pintype "passive") (tstamp 06930c50-6300-47f0-8688-efc10381f055))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 661f01ef-b202-4738-ab10-5bbeac1a8882)
(at 142.24 106.934 90)
(descr "Resistor SMD 0402 (1005 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-PicoProbe.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/c4e3de33-3fef-4031-84eb-1d53da08d357")
(attr smd)
(fp_text reference "R7" (at 0 -1.17 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 33ffa523-ca15-436f-a891-fba95b183fd4)
)
(fp_text value "1k" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6ec34d9e-fc79-4a9f-a5ab-4d4f960de651)
)
(fp_text user "${REFERENCE}" (at -0.635 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp bbc0554f-68b8-453a-a871-92d6c4ccb5b4)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6245dafb-630e-4b19-9afe-b71048d38895))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1bf02356-9c75-4ca2-a52f-be4ef44b88d5))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 297b9a55-ea99-459b-a661-b61a3b0b6e51))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 619b374b-a332-4603-aebf-bb12f5969548))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9126b934-0f1c-4a9c-b1d7-9f4423d1e6dd))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp eed7439c-2c6c-427e-8b42-ec4a29ffd327))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e17ccf5e-0b93-4ebb-8463-88905e41b943))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1a639e43-0cb2-47f0-a88c-2e626c0207f3))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ac02dfc3-1ad8-4fb4-a91e-49e91a7469cd))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d2f704ab-be3d-439d-8cc1-38bfa506389e))
(pad "1" smd roundrect (at -0.51 0 90) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "Net-(R7-Pad1)") (pintype "passive") (tstamp 432c8ee3-9d2b-4bb7-8457-9ed1ba13a65a))
(pad "2" smd roundrect (at 0.51 0 90) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 0d4bfb50-87e0-4646-b93e-0149cdeca70c))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 7f80b5b9-48e4-4404-83db-0b0b1d553106)
(at 149.098 107.188 180)
(descr "Resistor SMD 0402 (1005 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-PicoProbe.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/e7e355f9-51d6-4e58-b33c-43e7e2123bb3")
(attr smd)
(fp_text reference "R5" (at 0 -1.17) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 75938261-458b-46bc-9a57-6f4102b0a636)
)
(fp_text value "1k" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 04d00391-2bdd-4be8-bf3b-ca7ec08430e5)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 15d4fb57-10e9-435e-a625-bfb44861de34)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2f7f982f-5e13-4284-99bf-37f4e3818395))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a9dc03c0-31ba-495d-88d5-2bab35fb4797))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 572421bb-0a6e-4c37-8223-e902682dee62))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 287be542-aefd-42e8-8c18-0f421d82f51e))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8dec4349-5e42-4987-ade1-b9b458222373))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 847eb56e-1312-4ef9-b2ab-f35da2b02c3a))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cd4121a4-51cf-4de8-be9f-5f53a457ae3e))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 91187cd0-d749-440b-ac84-cc965e9709aa))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cc74cb59-86c9-4717-ac09-8a57366798bf))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b1507ff3-13d9-4593-a7ed-33dee4fa9485))
(pad "1" smd roundrect (at -0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "LED_RUN") (pintype "passive") (tstamp 71ebe488-8f42-4094-a4be-8d701d3e65d1))
(pad "2" smd roundrect (at 0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "Net-(D7-A)") (pintype "passive") (tstamp 4a9a9c08-d482-4a2f-86e5-dfa5e401b0b2))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 8b5b6372-273f-41d5-9658-67c361c0cb32)
(at 149.098 98.044 180)
(descr "Resistor SMD 0402 (1005 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-PicoProbe.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/4a849e12-9403-45cc-adb5-84049de31778")
(attr smd)
(fp_text reference "R1" (at 0 -1.17) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8c507064-0972-42b3-a761-32fd0466d204)
)
(fp_text value "1k" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e0e8a1ed-4f08-48ad-96ad-3d67585ff129)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 5cb41b82-ad60-4323-a81b-fddac9fd1645)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 521da997-c503-40cb-b547-dd4ea62be94c))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b244765b-50c3-436d-9a7b-43e2e6026876))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 404dd48b-679e-44b2-9301-427f4facac57))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aeb6f4a1-e511-4679-8c48-c082545b4559))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a06cd0ed-f1f6-4a33-b0a8-950f3f2a9003))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8304eb89-8ca1-49c7-bbb9-422786bf8089))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 156d5a33-4d2f-49d9-829e-8a90082bc059))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6f05f22e-5409-4922-bbf7-0c6e11da94ae))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8e21dc05-b138-4e65-81eb-11141fa39bda))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ca63167b-2cd9-47aa-a9f7-3460d24cf3e5))
(pad "1" smd roundrect (at -0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "LED_RX") (pintype "passive") (tstamp f4000fd4-41e3-410f-921b-ecbae8d7d815))
(pad "2" smd roundrect (at 0.51 0 180) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "Net-(D1-A)") (pintype "passive") (tstamp 0a021a2f-4034-413d-bb0b-df33e890b7e6))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 8dff4946-6793-46b2-80a0-3f4f7ff43697)
(at 131.826 96.012)
(descr "Resistor SMD 0402 (1005 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-PicoProbe.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/fb2ba8de-bd0c-4e64-bcb5-cff6176969c4")
(attr smd)
(fp_text reference "R6" (at 0 -1.17) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 95f2b299-4501-4002-855d-fe5cc3c067d0)
)
(fp_text value "1k" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2193a5fd-58b9-4ecf-b247-b60a6cca5b2f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp c2640022-37b2-4536-bd48-661780e52d3f)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4b3c4fec-1b04-4c5a-82af-0153c05aa54f))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)