-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRP2040-MicroProbe.kicad_pcb
20098 lines (20039 loc) · 837 KB
/
RP2040-MicroProbe.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-MicroProbe-0010")
(date "2024-01-08")
(rev "1.0")
(company "(c) 2023-2024 Andriy Golovnya")
(comment 1 "RP2040 based Micro 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 "TARGET_3V3")
(net 19 "unconnected-(J7-SWO{slash}TDO-Pad6)")
(net 20 "unconnected-(J7-KEY-Pad7)")
(net 21 "unconnected-(J7-NC{slash}TDI-Pad8)")
(net 22 "TARGET_RESET")
(net 23 "LED_RX")
(net 24 "LED_TX")
(net 25 "LED_ACT")
(net 26 "LED_CON")
(net 27 "LED_RUN")
(net 28 "Net-(R7-Pad1)")
(net 29 "DBG_DIO")
(net 30 "DBG_CLK")
(net 31 "QSPI_SS")
(net 32 "QSPI_SD1")
(net 33 "QSPI_SD2")
(net 34 "QSPI_SD0")
(net 35 "QSPI_SCLK")
(net 36 "QSPI_SD3")
(net 37 "unconnected-(U2-GPIO3-Pad5)")
(net 38 "UART_RX_BUF")
(net 39 "unconnected-(U2-GPIO9-Pad12)")
(net 40 "unconnected-(U2-GPIO11-Pad14)")
(net 41 "DBG_DIO_BUF")
(net 42 "unconnected-(U2-GPIO17-Pad28)")
(net 43 "unconnected-(U2-GPIO18-Pad29)")
(net 44 "unconnected-(U2-GPIO19-Pad30)")
(net 45 "unconnected-(U2-GPIO20-Pad31)")
(net 46 "unconnected-(U2-GPIO21-Pad32)")
(net 47 "unconnected-(U2-GPIO22-Pad34)")
(net 48 "unconnected-(U2-GPIO23-Pad35)")
(net 49 "unconnected-(U2-GPIO24-Pad36)")
(net 50 "unconnected-(U2-GPIO25-Pad37)")
(net 51 "unconnected-(U2-GPIO26_ADC0-Pad38)")
(net 52 "unconnected-(U2-GPIO27_ADC1-Pad39)")
(net 53 "unconnected-(U2-GPIO28_ADC2-Pad40)")
(net 54 "unconnected-(U2-GPIO29_ADC3-Pad41)")
(net 55 "DBG_RESET")
(net 56 "HOST_DIO")
(net 57 "HOST_CLK")
(net 58 "HOST_RESET")
(net 59 "HOST_TX")
(net 60 "HOST_RX")
(net 61 "unconnected-(U5-BP-Pad4)")
(net 62 "unconnected-(J5-ID-Pad4)")
(net 63 "unconnected-(J5-Shield-Pad6)")
(footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu")
(tstamp 0cfcc03f-9ab7-4bc7-826a-fac16fb3f837)
(at 161.29 108.966)
(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-MicroProbe.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 0.8 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 "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 0efc25ad-bd9c-43bc-a512-d495ac6420ae)
(at 148.336 93.726)
(descr "Capacitor SMD 0402 (1005 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-MicroProbe.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/5efc3357-6279-4dd9-b9c7-b93c32f902c7")
(attr smd)
(fp_text reference "C4" (at 0 -1.16) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bc5bc3b5-d610-45dd-adea-2ce101fcdf0c)
)
(fp_text value "100nF" (at 0 1.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e998a4ef-79be-44f4-bb36-27b64ed5696e)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a26ad99c-0e4e-4f1a-9f8a-dff5f2f9c00d))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 03726c25-fd05-4566-bd7d-4dc4790d9651))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 22345f5a-37a1-40ef-92c3-773548367180))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ae6208fd-1f5b-41d0-b38c-fd05d5ffcb10))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ee12ffd3-05ad-4307-ae77-9d608f4381ad))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 798a058a-fe07-4d1b-9c68-de16bdf0a4af))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e0cd6bf9-2d4c-45e4-ae10-a3fc187ddfa2))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d2c56b5a-fa61-4980-adf2-614a37ed869c))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4781e0d8-36ca-429f-8705-c8323aa229a6))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e7b808ae-98cf-40f7-8d95-f73bf5c08882))
(pad "1" smd roundrect (at -0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+3V3") (pintype "passive") (tstamp 45841338-0857-4a99-a11a-dc8dbf04de76))
(pad "2" smd roundrect (at 0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp bdfc7321-dc31-416b-9d94-ecdbf6636d9d))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.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")
(tstamp 17de06c4-ae33-4ef7-8f8e-c716e3b514a8)
(at 137.795 97.536 180)
(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-MicroProbe.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/ab9c018e-a4d7-4f91-b5c4-20609685ae2f")
(attr smd)
(fp_text reference "C5" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c489eae5-3455-4780-ac20-dd4b2ea5f13f)
)
(fp_text value "2.2uF" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d7f52732-e0ec-4e7c-9ecf-24a513f98afd)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 2c26ae22-bd55-4745-9cb1-71c9af90fe70)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3b218df0-020c-4f86-9186-77cae9cbbd1a))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5e4637ee-89ee-4a9d-84e8-5f3e2bad2aa8))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 00a5e2c9-8390-48fd-998f-134909dbcafd))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 76c639d7-6508-457c-a910-be494c6cbc05))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e41fd4d4-b5d2-4da6-bde3-3494836d9042))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 95002431-9320-4d62-aadd-6b88624dd0cc))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e76a0e20-cf91-4eae-92af-8444bcc2d7d9))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4c8c4a7f-ef8f-4bd7-963e-a0150a83cc47))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cdd85c5b-1ddc-4cad-b0a5-1a724fcebf22))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 99beb90f-db22-488e-abfc-4c94ba4db5c8))
(pad "1" smd roundrect (at -0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+1V1") (pintype "passive") (tstamp c44c0aba-cf36-4dc4-8aa4-32921b610388))
(pad "2" smd roundrect (at 0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 52e5023e-dcce-4922-a4d8-4fb77c4f2b50))
(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_0402_1005Metric" (layer "F.Cu")
(tstamp 1dd8a533-ba66-47be-864d-4dfc5d7045a7)
(at 153.035 97.536)
(descr "Capacitor SMD 0402 (1005 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-MicroProbe.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/2bf312b1-9d4f-4465-af9d-82ad959364f1")
(attr smd)
(fp_text reference "C11" (at 0 -1.16) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 582d23f2-a89d-47a8-bc90-b7927d391802)
)
(fp_text value "100nF" (at 0 1.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 749a5a70-9ad3-4ad7-9b49-ff99ebefdd16)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 0fdefb12-4a4a-40aa-a552-43d181f159f6)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a39e55a9-d0d1-4cb1-80c2-34c79b43d289))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5e3cb3e5-8652-4ead-a133-866fffff10b5))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 43026083-e078-4f49-8bcc-0139bc172294))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a49a5b54-bc44-47bb-81a7-8b4d2cd1506c))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp eab4fee3-e9cd-4cdb-ab9c-a964dc6381bb))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 511a0716-789d-48f2-a731-3ca75212da84))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5b4b407c-bf9f-438d-b9f7-107e0e5494b7))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp df92668e-ea66-4a0b-bbf0-06ab0d55c485))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6db07c3e-3c24-43af-b704-a96e8041bfd4))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 349331f8-09b8-465f-bb39-eb3fe44e8ec5))
(pad "1" smd roundrect (at -0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+3V3") (pintype "passive") (tstamp 8cbdc354-9d48-4290-aa3c-268daa67bd10))
(pad "2" smd roundrect (at 0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 3c35b4e7-d4ff-453f-a2fe-5dc94cb5cdb0))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.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.35 98.806 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-MicroProbe.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 "Package_TO_SOT_SMD:SOT-353_SC-70-5" (layer "F.Cu")
(tstamp 255b715c-0818-4e83-aa3e-3fb9e70bccb8)
(at 157.48 94.361 180)
(descr "SOT-353, SC-70-5")
(tags "SOT-353 SC-70-5")
(property "Availability" "In Stock")
(property "Check_prices" "https://www.snapeda.com/parts/SN74AUP1T17DCKR/Texas+Instruments/view-part/?ref=eda")
(property "Description" "\nLow Power, 1.8/2.5/3.3-V In, 3.3-V CMOS Out, Single Schmitt-Trigger Buffer Gate\n")
(property "MF" "Texas Instruments")
(property "MP" "SN74AUP1T17DCKR")
(property "Package" "SC70-5 Texas Instruments")
(property "Price" "None")
(property "Purchase-URL" "https://www.snapeda.com/api/url_track_click_mouser/?unipart_id=301583&manufacturer=Texas Instruments&part_name=SN74AUP1T17DCKR&search_term=sn74aup1t17")
(property "Sheetfile" "RP2040-MicroProbe.kicad_sch")
(property "Sheetname" "")
(property "SnapEDA_Link" "https://www.snapeda.com/parts/SN74AUP1T17DCKR/Texas+Instruments/view-part/?ref=snap")
(path "/7e055435-8dc2-49bb-b39c-f55b7b39d4e2")
(attr smd)
(fp_text reference "U3" (at 0 -2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 109df51b-902d-48c3-8ccc-f268d324b4ac)
)
(fp_text value "74AUP1T17" (at 0 2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0d31a711-4dec-4285-8d73-d212d2e52c50)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 1aeaabd2-1f22-49a8-81f3-5339851379a4)
)
(fp_line (start -0.7 1.16) (end 0.7 1.16)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 917bb96d-6d92-4694-881b-f9b711f34050))
(fp_line (start 0.7 -1.16) (end -1.2 -1.16)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aca20df5-486a-4447-be6c-525ddda5873f))
(fp_line (start -1.6 -1.4) (end -1.6 1.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 37f0ff01-d49f-48ee-b7b1-8276bf7222e1))
(fp_line (start -1.6 -1.4) (end 1.6 -1.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 56a6704d-452b-4659-b63e-da9c2219894f))
(fp_line (start -1.6 1.4) (end 1.6 1.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b45ed015-7f0e-4c8d-ad12-d92636d40c3d))
(fp_line (start 1.6 1.4) (end 1.6 -1.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp afb6330c-2f20-48ac-bbda-6322b9a70b48))
(fp_line (start -0.675 -0.6) (end -0.675 1.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4f3d8bee-1d56-4c57-800a-62ad9d192021))
(fp_line (start -0.175 -1.1) (end -0.675 -0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e1adf411-f72d-456e-a723-3a59c225dd23))
(fp_line (start 0.675 -1.1) (end -0.175 -1.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 765ccac3-9dae-4909-b210-f8512756935e))
(fp_line (start 0.675 -1.1) (end 0.675 1.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a9a29acd-ca5f-4452-9b80-e66a874d8303))
(fp_line (start 0.675 1.1) (end -0.675 1.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fb834818-06c6-46a7-a2f0-6f35a81f7542))
(pad "1" smd rect (at -0.95 -0.65 180) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 0624c3f0-afe6-4279-a81e-93d2f4fc58e8))
(pad "2" smd rect (at -0.95 0 180) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "TARGET_RX") (pinfunction "A") (pintype "input") (tstamp 4e81f249-63a7-47a6-9ee1-548275823add))
(pad "3" smd rect (at -0.95 0.65 180) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 4444870b-2fbf-4198-b5d0-f2105f2f6a72))
(pad "4" smd rect (at 0.95 0.65 180) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 38 "UART_RX_BUF") (pinfunction "Y") (pintype "output") (tstamp 3d18c8a9-79ce-4906-8914-899d7b85eca9))
(pad "5" smd rect (at 0.95 -0.65 180) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+3V3") (pinfunction "VCC") (pintype "power_in") (tstamp 0b9e9e43-b67e-4c8f-afad-d6e0e9f776da))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-353_SC-70-5.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 2d3ee25b-9f06-429f-a0ea-f2b4606bb794)
(at 137.795 101.981 180)
(descr "Capacitor SMD 0402 (1005 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-MicroProbe.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/c49d5c8a-bd24-4659-a7dd-2423d5081cbc")
(attr smd)
(fp_text reference "C9" (at 0 -1.16) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d7488082-9639-4581-afa7-f8239789f5c7)
)
(fp_text value "100nF" (at 0 1.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 74e6838b-703d-48f1-ae59-2aca7caa4494)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 376ee155-256a-4f3f-b180-32f24c52b914)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4caa7c28-8976-443e-b1ce-1f074f9f6369))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 84b32bf8-0031-40fa-b442-5a299c1beb02))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d0b6d2f5-e526-44e4-ad46-72da7ff18e69))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8250f4bc-f14e-4e85-b905-9a5945f4ef54))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2b3c0a79-d878-4039-92b4-ee193bb336c7))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 94eda0af-5b1d-411c-ab3c-7233cf31d88f))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7816691e-462f-434a-b8fe-86ed9696a55e))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 867d183d-a123-4e28-a844-9c283652aaf8))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2337c7e3-802f-4848-8a40-8e355a715bf4))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 74b85726-e569-4fa2-88f4-6cf99011c88d))
(pad "1" smd roundrect (at -0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "+1V1") (pintype "passive") (tstamp e1ad9298-ee9b-4bbb-9c94-63c8b92e1ec0))
(pad "2" smd roundrect (at 0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 01ac120a-d5ce-49db-aaf4-7e9110cee02a))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-353_SC-70-5" (layer "F.Cu")
(tstamp 38893232-ec20-4210-a569-2cc7eaeb195d)
(at 157.48 108.331 180)
(descr "SOT-353, SC-70-5")
(tags "SOT-353 SC-70-5")
(property "Availability" "In Stock")
(property "Check_prices" "https://www.snapeda.com/parts/SN74AUP1T17DCKR/Texas+Instruments/view-part/?ref=eda")
(property "Description" "\nLow Power, 1.8/2.5/3.3-V In, 3.3-V CMOS Out, Single Schmitt-Trigger Buffer Gate\n")
(property "MF" "Texas Instruments")
(property "MP" "SN74AUP1T17DCKR")
(property "Package" "SC70-5 Texas Instruments")
(property "Price" "None")
(property "Purchase-URL" "https://www.snapeda.com/api/url_track_click_mouser/?unipart_id=301583&manufacturer=Texas Instruments&part_name=SN74AUP1T17DCKR&search_term=sn74aup1t17")
(property "Sheetfile" "RP2040-MicroProbe.kicad_sch")
(property "Sheetname" "")
(property "SnapEDA_Link" "https://www.snapeda.com/parts/SN74AUP1T17DCKR/Texas+Instruments/view-part/?ref=snap")
(path "/7d539497-b1ed-4336-add5-63991524a6c9")
(attr smd)
(fp_text reference "U6" (at 0 -2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 60840e52-6282-4af7-8a23-ff0fbf508d21)
)
(fp_text value "74AUP1T17" (at 0 2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 25abba21-4261-425e-9112-7b9888ee00c6)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 077c9c4b-20e2-43ac-ba86-42b254cfea0f)
)
(fp_line (start -0.7 1.16) (end 0.7 1.16)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 70e81121-7265-4767-af3f-39612572c47d))
(fp_line (start 0.7 -1.16) (end -1.2 -1.16)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 73b84371-a23e-4016-83f1-71658ff524a5))
(fp_line (start -1.6 -1.4) (end -1.6 1.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 779f101b-2684-4838-bc7e-ee2170b36e34))
(fp_line (start -1.6 -1.4) (end 1.6 -1.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 73e0c58d-b8cd-4064-88ae-aa4230b7c0ab))
(fp_line (start -1.6 1.4) (end 1.6 1.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6a9f5823-a0a1-4ff8-b9bb-85da9f1abbcd))
(fp_line (start 1.6 1.4) (end 1.6 -1.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 51c2380e-0ace-4224-ab52-bab95173e4e2))
(fp_line (start -0.675 -0.6) (end -0.675 1.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7722a3a5-e2b7-4a11-9d9a-9ac9cfeade77))
(fp_line (start -0.175 -1.1) (end -0.675 -0.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1a7da1e4-3e87-480c-8689-9c8392b904ae))
(fp_line (start 0.675 -1.1) (end -0.175 -1.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3a0e4c97-f231-484f-9615-1587fb47cc8b))
(fp_line (start 0.675 -1.1) (end 0.675 1.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ff898138-fcb2-49bb-a7f8-5f74670a8f53))
(fp_line (start 0.675 1.1) (end -0.675 1.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7ded1b06-f018-4298-8878-a1126d7d3ce5))
(pad "1" smd rect (at -0.95 -0.65 180) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 04cf240b-5528-42cb-9431-4736eae0c2bf))
(pad "2" smd rect (at -0.95 0 180) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 29 "DBG_DIO") (pinfunction "A") (pintype "input") (tstamp 1dfdc685-fda6-4a3d-b800-133434e54b55))
(pad "3" smd rect (at -0.95 0.65 180) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 8adc272a-cd30-4671-ae7f-97e13a43ced2))
(pad "4" smd rect (at 0.95 0.65 180) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 41 "DBG_DIO_BUF") (pinfunction "Y") (pintype "output") (tstamp b7c3f6af-8be1-4609-941f-2718d0d182ac))
(pad "5" smd rect (at 0.95 -0.65 180) (size 0.65 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+3V3") (pinfunction "VCC") (pintype "power_in") (tstamp 93a27477-058f-4624-8d8f-d17a9edcaee3))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-353_SC-70-5.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 130.175 94.361 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-MicroProbe.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 0.8 0.735)
(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 "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 43da466c-f94c-4a7d-897c-a91cf6e352f0)
(at 155.956 96.266 180)
(descr "Capacitor SMD 0402 (1005 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-MicroProbe.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/69db71b1-34b5-4a3e-8485-413ae9d7b2d3")
(attr smd)
(fp_text reference "C17" (at 0 -1.16) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1ccdcd3a-7ccc-4b85-af0f-eb1684c62a66)
)
(fp_text value "100nF" (at 0 1.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dbd8e527-d912-4cf8-ab29-d46f42c042d7)
)
(fp_text user "${REFERENCE}" (at 0 -0.635) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 849e85de-e11b-440d-bc06-8d454b085084)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7af816a7-1213-4a4c-8ee7-fd23bacb75cd))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a0488b1a-6660-45e6-aecb-8eb05b805d06))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fd333abc-7784-473b-a25c-6ff51de738d4))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bc98d3bb-f1c3-4a72-81f8-0b80f8cc0dfe))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7884d537-c9a1-45eb-a77b-7adb0a220a59))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c8eb94f1-3ac5-4ae2-83e3-2e97487970ba))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0cb94825-aefb-4c94-b545-598994b5c363))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 08e94bba-7b38-4047-8009-faac07ca91df))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b45d842a-5729-452f-8d0e-94de8c61e0d0))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b680c2f1-8702-474e-8781-72829fa7e9f1))
(pad "1" smd roundrect (at -0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+3V3") (pintype "passive") (tstamp 6bdfc4e1-1394-4eab-a083-d780be82e02d))
(pad "2" smd roundrect (at 0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 2e60b4d4-2fa6-4247-9c04-98001353069b))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 4b941b92-9771-49ee-835f-91ae6f29984a)
(at 147.32 110.236 -90)
(descr "Through hole straight pin header, 1x06, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x06 2.54mm single row")
(property "Sheetfile" "RP2040-MicroProbe.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/1cf51770-828c-49e1-a3b7-8850f0c4318e")
(attr through_hole)
(fp_text reference "J1" (at 0 -2.33 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f8279ad0-d894-4225-a1e0-a602b6386ac0)
)
(fp_text value "CONN_MCU_DEBUG" (at 0 15.03 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d672082d-fef1-432c-889d-5adf8bc33d35)
)
(fp_text user "${REFERENCE}" (at 0 6.35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6010fc5d-b847-4ffa-b83e-88487567bef9)
)
(fp_line (start -1.8 -1.8) (end -1.8 14.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b3782545-7457-4674-9195-a8321a82f90f))
(fp_line (start -1.8 14.5) (end 1.8 14.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 66bc0e66-e6cc-4818-8a6f-a6093319d908))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bfa867a2-59b2-47e8-bed3-d48f6763baa1))
(fp_line (start 1.8 14.5) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 510f8f66-3b65-401e-be66-2cd8b2672de8))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a08bba39-2f01-46d5-8dad-74e794db9b5d))
(fp_line (start -1.27 13.97) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5f0cde14-94f2-4559-9d39-7194dc8e6daa))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6113f28b-ecc1-493f-b7b2-2f3222f107cf))
(fp_line (start 1.27 -1.27) (end 1.27 13.97)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 87b7c0f5-56d4-40af-b43d-43345b84faa8))
(fp_line (start 1.27 13.97) (end -1.27 13.97)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b268c8ad-c724-41b8-ace6-81bd1175f64a))
(pad "1" thru_hole oval (at 0 0 270) (size 2.5 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 59 "HOST_TX") (pinfunction "Pin_1") (pintype "passive") (tstamp 947ac69a-56be-43e3-85c1-8c6c39d2a2cd))
(pad "2" thru_hole trapezoid (at 0 2.54 270) (size 2.5 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 187203d2-5994-4d3b-9912-09fbe166b85d))
(pad "3" thru_hole oval (at 0 5.08 270) (size 2.5 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 60 "HOST_RX") (pinfunction "Pin_3") (pintype "passive") (tstamp 07bb9de5-341b-45cf-8ccb-277e9f73f38b))
(pad "4" thru_hole oval (at 0 7.62 270) (size 2.5 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 58 "HOST_RESET") (pinfunction "Pin_4") (pintype "passive") (tstamp 5edb4481-7a8c-4e18-8558-93f140fb39e5))
(pad "5" thru_hole oval (at 0 10.16 270) (size 2.5 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 57 "HOST_CLK") (pinfunction "Pin_5") (pintype "passive") (tstamp 79cda5ab-b1e5-4c2b-b95a-64ce5525e07b))
(pad "6" thru_hole oval (at 0 12.7 270) (size 2.5 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 56 "HOST_DIO") (pinfunction "Pin_6") (pintype "passive") (tstamp 7b3b2bfd-cde5-4761-83ed-f521784da73b))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x06_P2.54mm_Vertical.wrl" hide
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 520e9c9f-752e-4ba4-9e25-214fa00f550b)
(at 145.796 93.726 180)
(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-MicroProbe.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/d0fcec04-3d6f-4edd-be88-4aac331ab56a")
(attr smd)
(fp_text reference "C1" (at 0 -1.43) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1f8458c6-43c9-4a5c-b565-e8ea26d62fd5)
)
(fp_text value "2.2uF" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp afdd42e8-33a5-4b4c-a1ad-a83234f7068c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 4b25a846-f4e3-482b-b110-9711e31a5987)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 232ccacf-86d9-4998-8934-6a87304d2420))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7d672502-1aae-4f6b-b62e-a92f29a73374))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 38b590b0-cecd-486d-92db-7f1ae9482ee0))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bde6cb44-2113-45da-94b7-f31d5d6065cf))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 99261465-b9eb-4bd2-9ae0-0f5f2b660d4f))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 293af89a-4dc8-4824-be26-ee6d7761ab49))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ebe2954d-fd5e-42c6-bd06-c595708c2247))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6a741453-395e-4e44-b4f9-02500a0380b0))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 32908e66-6229-4067-83fc-fec441bb5f8c))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 302aee56-5bff-47e9-b60e-1bc13d7a6bcf))
(pad "1" smd roundrect (at -0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+3V3") (pintype "passive") (tstamp 39900fcb-9897-4417-b072-90f4e3da66da))
(pad "2" smd roundrect (at 0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp e6bdf73c-87c7-4f7d-a860-4cc60cab8d31))
(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_USB:USB_Micro-B_Molex_47346-0001" (layer "F.Cu")
(tstamp 5483e944-8d62-44ce-8c7b-55bf9c550ef0)
(at 129.54 101.226 -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-MicroProbe.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 62 "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 63 "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 63 "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 63 "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 63 "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 63 "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 63 "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 "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 5685131a-2632-4b60-81cc-f0f1c6bb2ee7)
(at 153.035 98.806)
(descr "Capacitor SMD 0402 (1005 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-MicroProbe.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/2a06e12c-7eac-4a0e-a44d-62e08fca9663")
(attr smd)
(fp_text reference "C20" (at 0 -1.16) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 16fe0e87-11ef-4dd0-b58b-5c10e129588b)
)
(fp_text value "12pF" (at 0 1.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c0878e34-4573-4268-bc44-ca79feaeb21f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 0c65df32-7058-4907-ba87-cdf82602b9d3)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 465a9291-5bf6-466b-ac5b-51572ef15821))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 98a768fb-b439-41cd-8324-73659826df4f))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4ed6c866-09d8-45d8-876c-a0174c739caf))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0e01c528-a7aa-47ef-8c98-58a012df32ca))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 152bd8a6-6286-48eb-89a9-e4c21b5d9f2b))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 23879f3b-aad2-46a2-a2ea-c48e2dfdfbd6))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2ba60674-916c-4b7b-b3ce-9c8229451d4e))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 581a9280-94ab-4b10-a7f2-fb294a80d325))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp df5d84ff-aeeb-4389-b09d-076affc2f56e))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1098be86-80c5-43f9-94de-20259fd9c1e0))
(pad "1" smd roundrect (at -0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "XOUT") (pintype "passive") (tstamp 8ffcadc7-6b15-403a-83fc-1409452f2d05))
(pad "2" smd roundrect (at 0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 016950e1-d57c-4c62-b8b2-fa36cf1d3bdb))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)