-
Notifications
You must be signed in to change notification settings - Fork 0
/
dongle.kicad_pcb
4832 lines (4796 loc) · 247 KB
/
dongle.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(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
(pad_to_mask_clearance 0)
(grid_origin 134.144 71.169)
(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 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "Net-(U2-XC1)")
(net 2 "VSS_PA")
(net 3 "Net-(U2-XC2)")
(net 4 "Net-(U2-ANT)")
(net 5 "Net-(U2-DEC5)")
(net 6 "Net-(U2-DEC3)")
(net 7 "Net-(U2-DEC4)")
(net 8 "Net-(U2-DEC1)")
(net 9 "VBUS")
(net 10 "Net-(U2-VBUS)")
(net 11 "Net-(U2-DECUSB)")
(net 12 "CC1")
(net 13 "DATA+")
(net 14 "DATA-")
(net 15 "CC2")
(net 16 "SWD")
(net 17 "SWC")
(net 18 "DATA-F")
(net 19 "DATA+F")
(net 20 "unconnected-(U2-AIN7{slash}P0.31-PadA8)")
(net 21 "unconnected-(U2-AIN5{slash}P0.29-PadA10)")
(net 22 "unconnected-(U2-AIN0{slash}P0.02-PadA12)")
(net 23 "unconnected-(U2-P1.15-PadA14)")
(net 24 "unconnected-(U2-P1.13-PadA16)")
(net 25 "unconnected-(U2-DEC2-PadA18)")
(net 26 "unconnected-(U2-P1.10-PadA20)")
(net 27 "unconnected-(U2-DCCH-PadAB2)")
(net 28 "unconnected-(U2-P0.14-PadAC9)")
(net 29 "unconnected-(U2-P0.16-PadAC11)")
(net 30 "RESET")
(net 31 "unconnected-(U2-P0.19-PadAC15)")
(net 32 "unconnected-(U2-P0.21-PadAC17)")
(net 33 "unconnected-(U2-P0.23-PadAC19)")
(net 34 "unconnected-(U2-P0.25-PadAC21)")
(net 35 "unconnected-(U2-P0.13-PadAD8)")
(net 36 "unconnected-(U2-P0.15-PadAD10)")
(net 37 "unconnected-(U2-P0.17-PadAD12)")
(net 38 "unconnected-(U2-P0.20-PadAD16)")
(net 39 "unconnected-(U2-P0.22-PadAD18)")
(net 40 "unconnected-(U2-P0.24-PadAD20)")
(net 41 "unconnected-(U2-TRACEDATA0{slash}P1.00-PadAD22)")
(net 42 "unconnected-(U2-DCC-PadB3)")
(net 43 "unconnected-(U2-AIN6{slash}P0.30-PadB9)")
(net 44 "unconnected-(U2-AIN4{slash}P0.28-PadB11)")
(net 45 "unconnected-(U2-AIN1{slash}P0.03-PadB13)")
(net 46 "unconnected-(U2-P1.14-PadB15)")
(net 47 "unconnected-(U2-P1.12-PadB17)")
(net 48 "unconnected-(U2-P1.11-PadB19)")
(net 49 "unconnected-(U2-XL1{slash}P0.00-PadD2)")
(net 50 "unconnected-(U2-XL2{slash}P0.01-PadF2)")
(net 51 "unconnected-(U2-P0.26-PadG1)")
(net 52 "unconnected-(U2-P0.27-PadH2)")
(net 53 "unconnected-(U2-AIN2{slash}P0.04-PadJ1)")
(net 54 "unconnected-(U2-NFC2{slash}P0.10-PadJ24)")
(net 55 "unconnected-(U2-AIN3{slash}P0.05-PadK2)")
(net 56 "unconnected-(U2-P0.06-PadL1)")
(net 57 "unconnected-(U2-NFC1{slash}P0.09-PadL24)")
(net 58 "unconnected-(U2-TRACECLK{slash}P0.07-PadM2)")
(net 59 "unconnected-(U2-P0.08-PadN1)")
(net 60 "unconnected-(U2-P1.08-PadP2)")
(net 61 "unconnected-(U2-P1.07-PadP23)")
(net 62 "unconnected-(U2-TRACEDATA3{slash}P1.09-PadR1)")
(net 63 "unconnected-(U2-P1.06-PadR24)")
(net 64 "unconnected-(U2-TRACEDATA2{slash}P0.11-PadT2)")
(net 65 "unconnected-(U2-P1.05-PadT23)")
(net 66 "unconnected-(U2-TRACEDATA1{slash}P0.12-PadU1)")
(net 67 "unconnected-(U2-P1.04-PadU24)")
(net 68 "unconnected-(U2-P1.03-PadV23)")
(net 69 "unconnected-(U2-P1.02-PadW24)")
(net 70 "unconnected-(U2-P1.01-PadY23)")
(net 71 "Net-(C12-Pad2)")
(net 72 "/Ant")
(net 73 "Net-(C30-Pad1)")
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 068649ef-a073-4756-8154-5dcc7c9bfcb7)
(at 136.24 85.92 -90)
(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 "JLC Part" "C1548")
(property "LCSC Part" "C1548")
(property "Manufacturer Part" "CL05C150JB51PNC")
(property "Sheetfile" "dongle.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/6d0eeab5-dafe-4074-b51d-a4e88fefe76c")
(attr smd)
(fp_text reference "C1" (at 0 -1.16 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 53d26a27-8019-43a6-82be-136a1cd61b4c)
)
(fp_text value "15pF" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5834f895-e1a9-4ee7-b9ee-3b7c60605c10)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp cfeb81e0-abe1-408a-aa10-7b68fd33b80d)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9efdcd82-54d5-4874-8b03-694228afdda9))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 53e866a7-e713-4144-aefd-2e1db1aa0e4d))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 617b51a3-3b74-4167-89f7-8689696bde37))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dae4cb87-fe64-43c4-99d1-5b7f0db8299e))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 74d66115-06ad-43f4-abdd-0c263356ebb8))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 81015eb8-10d4-4aa9-a10e-d8dcc7722cbd))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5a69e977-faac-49a8-ba9a-7d9bddad4759))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8d49db9d-4412-42cb-b2b8-fcf109e90561))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7fb7e283-37b2-43ed-966d-fb2ac283d380))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 97241078-7c21-4108-949b-cfbfdefc1c36))
(pad "1" smd roundrect (at -0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "Net-(U2-XC1)") (pintype "passive") (tstamp 4bd684d3-0fdb-4331-985d-5cba74bae607))
(pad "2" smd roundrect (at 0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "VSS_PA") (pintype "passive") (tstamp e475f631-0bb3-4bc2-b59e-b896952d8a23))
(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_0402_1005Metric" (layer "F.Cu")
(tstamp 1231ca40-400e-40bf-b22f-8cb898903411)
(at 141.144 85.969 90)
(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 "Digikey" "1276-1595-1-ND")
(property "JLC Part" "C1550")
(property "LCSC Part" "C1550")
(property "Manufacturer Part" "CL05C010CB5NNNC")
(property "Sheetfile" "dongle.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/ac3b1d03-1ec8-4c99-8302-a7815ed07d21")
(attr smd)
(fp_text reference "C30" (at 0 -1.16 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 177dcd97-9e90-4220-9768-2afb6fd5d7c5)
)
(fp_text value "0.8pF" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4f42f850-6030-4c32-93c5-845d0d880f6f)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 9032b8f5-4636-4610-aca6-39812051af7b)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cbc8a185-854d-4fd2-ba66-8556457e41c3))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9a02212f-6cf8-4abd-a46d-1f4585ef0b3d))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0ee99841-b829-4bdc-8e40-af9d2aaa56e5))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 10dbc67c-f5cd-48da-ad12-f76cba98b08c))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0fc6a6eb-9d2b-41f3-a3b7-5606aa9f0f7f))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 560c27ce-719e-4ecf-b02c-6ec8fde16d7a))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp df4302f4-91b2-4599-a8e4-cdb2fdcbe296))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1053e252-f8db-4d26-adf3-e7d992fa5b01))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f24950eb-5353-45c8-9567-a6a4978249e7))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c58ca630-c4e7-4bbd-aa3f-c2c772945639))
(pad "1" smd roundrect (at -0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 73 "Net-(C30-Pad1)") (pintype "passive") (tstamp 5ddc5b11-f484-4ed2-b4b0-674928a35161))
(pad "2" smd roundrect (at 0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "VSS_PA") (pintype "passive") (tstamp b01f0f04-270e-445d-9ffe-5e9042c7ab2b))
(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_0402_1005Metric" (layer "F.Cu")
(tstamp 1a5cce91-372b-4a77-a056-d0041fd29a34)
(at 141.6775 78.6725 90)
(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 "Digikey" "1276-1784-1-ND")
(property "JLC Part" "C23733")
(property "LCSC Part" "C23733")
(property "Manufacturer Part" "CL05A475KP5NRNC")
(property "Sheetfile" "dongle.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/7d2c8277-ad2a-4364-8c94-f6b07b861080")
(attr smd)
(fp_text reference "C15" (at 0 -1.16 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp febf260c-66d2-453f-979a-61cb9d4c5a73)
)
(fp_text value "1uF" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7d2a114c-5f74-4391-889c-406edce7a9e2)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 28021761-ab3d-439a-8550-7b65c38b9696)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b5b5f633-a27f-4690-8646-e1ceec7c56ed))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e2231d9b-9114-41d9-a5f4-68d09ab9807e))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5e42eb33-a2cb-456f-a2a0-5fd2029fc336))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 43ffe192-28a9-4728-af81-a0e6f0afdfba))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9efa6c78-f368-43f0-a5bc-58fa70ed1f96))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 65694df5-bbe8-4e8c-9f23-40780346c916))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d1db63b0-3673-4afd-9969-b70389512ce8))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6970c0c7-0093-4fe6-91ea-d3560bc0a020))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d4967aab-6b1f-45a7-8e9e-cc77d8cbdd82))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 63f3c8e4-dc05-4748-9952-e6429f79bbb8))
(pad "1" smd roundrect (at -0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "VSS_PA") (pintype "passive") (tstamp 5ca6188b-ca84-424c-bd4b-29376b1ac538))
(pad "2" smd roundrect (at 0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "Net-(U2-DEC4)") (pintype "passive") (tstamp 4f8feec2-b784-4234-a0ff-e7944a6d15fc))
(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_0402_1005Metric" (layer "F.Cu")
(tstamp 1f545ca9-13da-4784-adcf-bd48f0c2164e)
(at 138.93 86.42)
(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 "Digikey" "1276-1595-1-ND")
(property "JLC Part" "C1550")
(property "LCSC Part" "C1550")
(property "Manufacturer Part" "CL05C010CB5NNNC")
(property "Sheetfile" "dongle.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/f3111744-9188-408c-9c5a-d293ec1003fb")
(attr smd)
(fp_text reference "C4" (at 0 -1.16) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 00bd8c0d-5b24-4d52-a13f-a62b9c8c900d)
)
(fp_text value "0.5pF" (at 0 1.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d277e744-f096-4a15-ba9d-c3bbde84f834)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp bbe332b5-89b9-4d47-b29f-db78419ab4a5)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e61a30c9-f9dd-4eb3-9539-8506468e789a))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 961aaa5a-1b5e-4532-b341-8d55a4c53ede))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8fd917a4-c84b-468f-8427-01d1b3afb363))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2a77d603-130f-4f13-b5a4-b92a00185947))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ec9ab581-0d2b-48e5-b737-26f90bebfd35))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1ac159d5-93c4-4f3d-b1b8-0702af3fe258))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3622196f-d1df-4591-8dc4-121775b7a47e))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f211461e-275a-4813-9cb8-dc1c773bbc6f))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9433d072-e7f7-4d2b-9ca1-764e6a704c06))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 95ca9349-b0c8-42e4-9f73-559945552fb1))
(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 2 "VSS_PA") (pintype "passive") (tstamp a2fa6128-bdcb-4fb3-874d-ccc287c616ca))
(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 73 "Net-(C30-Pad1)") (pintype "passive") (tstamp 261954a2-1cd0-4df1-8cae-1b8f5d45ce95))
(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_0402_1005Metric" (layer "F.Cu")
(tstamp 24e975eb-54ea-4a4b-b499-9cd482d109ba)
(at 139.21 75.54 90)
(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 "Digikey" "1276-1784-1-ND")
(property "JLC Part" "C23733")
(property "LCSC Part" "C23733")
(property "Manufacturer Part" "CL05A475KP5NRNC")
(property "Sheetfile" "dongle.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/4b936b2a-844c-46f0-a55e-f9478fad6e93")
(attr smd)
(fp_text reference "C31" (at 0 -1.16 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2f6c3598-7b8b-4f94-bc5e-9d3f829e92e8)
)
(fp_text value "100nF" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fffce098-8ae1-455f-855a-17461bb6d108)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp e21f3967-6726-4821-bfb2-54aa6e123811)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8956f4b5-f69c-4bc7-a42a-b5b6d036339c))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 50491dda-de76-40c4-9618-4e1d491d7327))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 323e6aba-a4f7-48fc-9ee0-cb949e19109f))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 36ec4875-ad84-4f3c-b9fe-e62e246acc16))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp eb3ac0b8-5e65-4c83-b32e-ea58f5e3e959))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7e4a5f21-d42a-4a7c-9ddf-05bbaf53efd2))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 68db0003-a569-4635-93f9-ff544a723174))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9505b6a3-7e24-42b1-a3cc-505b94512c46))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cff687b6-20ae-4c68-b63f-64bcd04a43f0))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 91b2ee67-ea9f-4320-b07b-57ab6cfcd637))
(pad "1" smd roundrect (at -0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "VSS_PA") (pintype "passive") (tstamp 7c854825-8027-4f7e-965f-0ce7353cd0f0))
(pad "2" smd roundrect (at 0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "VBUS") (pintype "passive") (tstamp 4a873ce3-f47e-45a5-ae49-d34ac9f2a522))
(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 "Crystal:Crystal_SMD_2016-4Pin_2.0x1.6mm" (layer "F.Cu")
(tstamp 33a03434-c5a7-43c9-95b3-1cc578578196)
(at 134.36 85.51 180)
(descr "SMD Crystal SERIES SMD2016/4 http://www.q-crystal.com/upload/5/2015552223166229.pdf, 2.0x1.6mm^2 package")
(tags "SMD SMT crystal")
(property "Digikey" "490-XRCGB32M000F1S1DR0CT-ND")
(property "JLC Part" "C255896")
(property "LCSC Part" "C255896")
(property "Manufacturer Part" "Q22FA1280001800")
(property "Sheetfile" "dongle.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Four pin crystal, GND on pins 2 and 4, small symbol")
(property "ki_keywords" "quartz ceramic resonator oscillator")
(path "/39c377cc-a262-4b41-a0c9-94b9fc607170")
(attr smd)
(fp_text reference "Y1" (at 0 -2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 11a5b872-2dfd-4381-bd37-d5c0309d3c37)
)
(fp_text value "32MHz" (at 0 2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1f7c7329-dc7a-47b3-b5d0-0c98d30a0dfa)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 680eb1bd-1319-4754-adf3-a189e6919b68)
)
(fp_line (start -1.35 -1.15) (end -1.35 1.15)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b77cd050-e0af-47ee-9566-a8f78834fda5))
(fp_line (start -1.35 1.15) (end 1.35 1.15)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a607a589-2812-4e30-bfe3-5c54ed4d4063))
(fp_line (start -1.4 -1.3) (end -1.4 1.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f37c267c-ca68-4255-8fa9-c2149a9cd1ae))
(fp_line (start -1.4 1.3) (end 1.4 1.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9c729c48-098a-4196-a835-125348dec1ff))
(fp_line (start 1.4 -1.3) (end -1.4 -1.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e0921b7d-c2b5-4abc-81a4-5ecb702b7740))
(fp_line (start 1.4 1.3) (end 1.4 -1.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2dfc57d5-4f63-41a5-8140-53c7e7e87aec))
(fp_line (start -1 -0.7) (end -0.9 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 90239d59-745d-4811-acbb-87bbd045b90c))
(fp_line (start -1 0.3) (end -0.5 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6fd37d4a-8a68-4822-ac7c-ffd460ae173d))
(fp_line (start -1 0.7) (end -1 -0.7)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e07caf58-06a5-4846-839e-544a0cddb9fa))
(fp_line (start -0.9 -0.8) (end 0.9 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 406cd8de-ccee-4aa6-adc4-45dfbd6e35b5))
(fp_line (start -0.9 0.8) (end -1 0.7)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5fd5ed69-1f06-4d2a-b950-daae860ea558))
(fp_line (start 0.9 -0.8) (end 1 -0.7)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 122a98bf-0715-43a5-b55b-2ef8f1736476))
(fp_line (start 0.9 0.8) (end -0.9 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 95526cd6-57a0-4d08-9128-1a110d41c95d))
(fp_line (start 1 -0.7) (end 1 0.7)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b5a4b4d7-8ac0-4a05-af37-b257126d2553))
(fp_line (start 1 0.7) (end 0.9 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 86d4c75d-328b-41e9-9651-883ad9fd17e4))
(pad "1" smd rect (at -0.7 0.55 180) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "Net-(U2-XC1)") (pinfunction "1") (pintype "passive") (tstamp aa555395-bb14-41bc-a17e-5836f71d9c19))
(pad "2" smd rect (at 0.7 0.55 180) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "VSS_PA") (pinfunction "2") (pintype "passive") (tstamp c21077af-8f09-4222-ae12-cf7d4453be9b))
(pad "3" smd rect (at 0.7 -0.55 180) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "Net-(U2-XC2)") (pinfunction "3") (pintype "passive") (tstamp ae6224f3-373f-4b4a-8f44-5af03f2f8584))
(pad "4" smd rect (at -0.7 -0.55 180) (size 0.9 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "VSS_PA") (pinfunction "4") (pintype "passive") (tstamp ff28ca3a-901c-4679-bae1-6eb9dbb7dba6))
(model "${KICAD6_3DMODEL_DIR}/Crystal.3dshapes/Crystal_SMD_2016-4Pin_2.0x1.6mm.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 44a640e7-e988-4af6-b7b6-08c78948b81c)
(at 139.4 73.9)
(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" "dongle.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/ccf4a742-45aa-4614-ac80-47868605ec8b")
(attr smd)
(fp_text reference "R4" (at 0 -1.17) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 926e9f1f-f507-4247-97f5-bf5e854070bf)
)
(fp_text value "5.1K" (at 0 1.17) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 217fb153-1c9c-4d7c-b1a9-24de70c22316)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 1cc198e2-c1ef-4af7-961f-e6f18b197303)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 28758427-69c2-4e1a-8948-2455b43d1c02))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1d6254f8-9214-4441-9eb5-c6ddb49bfc76))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 214477bf-4bef-41da-b9a2-b3d55380ac75))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 46472f38-bb94-45eb-82c8-0caf6e067fcf))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 60161fac-ba37-41cf-a575-7edc2100dfd1))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b7dfb260-f07b-4ea3-abdb-a49c8ecf0e16))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 694beac3-6ee6-41d4-a760-ca52ec045d63))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8cbdb6c4-a9be-4968-a07b-61620dbf82ed))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4ed85397-5dd7-4042-bb77-cbafb2f4b36a))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a85bf35e-6184-4350-b65d-3a3bcb1588e0))
(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 15 "CC2") (pintype "passive") (tstamp db756b1e-deb1-4e8e-a8ca-deb696642280))
(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 2 "VSS_PA") (pintype "passive") (tstamp 2f7abb3a-80be-4cf9-adb1-2b317f3d3e16))
(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 "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 47eac89c-57a6-41f7-9a59-b33b0155b58c)
(at 135.23 75.55 -90)
(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 "Digikey" "1276-1784-1-ND")
(property "JLC Part" "C23733")
(property "LCSC Part" "C23733")
(property "Manufacturer Part" "CL05A475KP5NRNC")
(property "Sheetfile" "dongle.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/2973fa9d-0df9-45d2-979d-32e507608f1f")
(attr smd)
(fp_text reference "C6" (at 0 -1.16 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f2ff24f3-c1cd-4624-98a5-f917a31d4f2f)
)
(fp_text value "4.7uF" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 820e34ba-7e7c-48e4-bcd0-d050f9050bc7)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp bc016eb0-b9b7-40f7-b09b-d5cbf0438177)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1a987fe4-deaf-4fb6-93da-b7d6dacb9843))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 530bf86f-6414-495e-93ce-0ab25a3bf3e5))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e106732c-a63a-4a00-a433-4d60c355ff78))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c121fbe6-2864-4e2a-99f8-610a29716fbc))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8e2e098a-ca55-4556-be1b-4a9ea79a010e))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1bb48596-d1a7-4b80-8381-b2b64ca06ce2))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4741cb74-3a9e-4c33-8068-e16c6f734139))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 80e8b574-4a7b-49b6-9a15-a322cf4e22fc))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fb00bcea-a644-4c0a-82dc-dc6acb470e75))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e63064a8-bbd8-44f9-9b82-5255a62bd80c))
(pad "1" smd roundrect (at -0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "VSS_PA") (pintype "passive") (tstamp 42997487-b03a-4835-bb86-e3d034e2c0a5))
(pad "2" smd roundrect (at 0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 71 "Net-(C12-Pad2)") (pintype "passive") (tstamp 4b4e5b38-819d-4da0-b4f0-f0da4f00830b))
(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_0402_1005Metric" (layer "F.Cu")
(tstamp 566f36fc-5392-4a35-9a33-bd514ca4393b)
(at 140.13 75.54 -90)
(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 "Digikey" "1276-1784-1-ND")
(property "JLC Part" "C23733")
(property "LCSC Part" "C23733")
(property "Manufacturer Part" "CL05A475KP5NRNC")
(property "Sheetfile" "dongle.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/c6d15f37-60f8-4d7c-853b-fe1b9b6c885d")
(attr smd)
(fp_text reference "C5" (at 0 -1.16 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5c17f08a-6e8b-448c-b392-0121edbfc5a2)
)
(fp_text value "100nF" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 15e4d71d-ab9a-409c-bd3f-409ab1e0c06c)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp bfc5ed68-db0a-453f-a937-b69c25b7c23c)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dd7c2ac3-c745-4db7-a4fb-b49a7143caf8))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 51d07e87-5fb5-4d98-bb28-8faaad303111))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e159d495-e2af-48fc-a0d7-9c7352629f33))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 39b20505-dd65-4ae9-9f0e-2aab8d5eb5b4))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c7cd2071-8bb7-44e5-a1e6-f9a7fc9d3308))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4fa55934-ec7e-4960-b8ce-6436319d6e2c))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cb27e9f1-5472-4fe9-8a94-01f1a14180fd))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 12a1606d-60c8-40fc-8e64-182cdfa610b0))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0db7ff56-81df-410d-8c1e-fa5285751e23))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 60d6ee32-da37-430f-a33a-70021973a343))
(pad "1" smd roundrect (at -0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "VSS_PA") (pintype "passive") (tstamp 1233ee53-d1ff-4dba-815c-f027bd3baf4d))
(pad "2" smd roundrect (at 0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "Net-(U2-DEC1)") (pintype "passive") (tstamp 28206d9c-2716-4ad8-b93d-296f1f845d42))
(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_0402_1005Metric" (layer "F.Cu")
(tstamp 5918c672-ffb8-4221-9fe9-3eaba76fe82c)
(at 133.1275 82.5425 -90)
(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 "Digikey" "1276-1784-1-ND")
(property "JLC Part" "C23733")
(property "LCSC Part" "C23733")
(property "Manufacturer Part" "CL05A475KP5NRNC")
(property "Sheetfile" "dongle.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/f54fa9e4-12b2-4439-b9b6-ac4f4ab100bf")
(attr smd)
(fp_text reference "C8" (at 0 -1.16 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d937a6b2-82f0-4333-aeef-1ec5bb6a7b4d)
)
(fp_text value "100nF" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9ea0661d-695b-4517-a5ba-018ddac449c7)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 66ebde85-9255-4182-92e0-9c5e6504ee32)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4ba36f6d-41ab-46c2-b8fd-11c7c498123f))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ed4ec377-4840-403b-a730-0e882360bdd0))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f6aa3a05-fe4a-4f08-8455-a16ed646af64))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c3bc4ea4-b216-4392-8486-3ed6d5bfb57f))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1ae877cc-4413-4ffd-8964-aebca2e5ac51))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 58796cfb-1ac8-4a00-88bb-68832ab987d0))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6acb19b4-a31d-4556-8ae3-87ec63143473))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c56135da-609e-4372-925b-e0e1d6c3a6e2))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b8cc188c-02f0-4503-abba-b1b36348eda1))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e5851d3a-612b-4dce-97da-3812d538e349))
(pad "1" smd roundrect (at -0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "VSS_PA") (pintype "passive") (tstamp 16374cba-72ad-47f1-86c2-6ac5434e6f63))
(pad "2" smd roundrect (at 0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 71 "Net-(C12-Pad2)") (pintype "passive") (tstamp 2f1ad3c3-d6fa-436a-b756-e1a475e056e5))
(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_0402_1005Metric" (layer "F.Cu")
(tstamp 59193c1f-d093-4f4e-a8d6-d27bc1df0478)
(at 134.3 75.54 -90)
(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 "Digikey" "1276-1784-1-ND")
(property "JLC Part" "C23733")
(property "LCSC Part" "C23733")
(property "Manufacturer Part" "CL05A475KP5NRNC")
(property "Sheetfile" "dongle.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/495f4287-e72c-4ec1-8ee4-07ef29109a43")
(attr smd)
(fp_text reference "C20" (at 0 -1.16 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 94c9a604-5894-482f-80be-137044dabed3)
)
(fp_text value "4.7uF" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e81a1ed2-aae8-4d5f-b929-615421b80868)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp f11a050c-60ba-4b52-a308-92494e3946fe)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 011eb6ea-1f26-4cc9-8ede-93f734f5a049))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 53bea8d8-5367-414e-b447-6aba2c4c7239))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 55ea5631-5c1f-4f82-9656-ce4b4926571b))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ae4e0357-0904-41f3-be95-c6b9a5408791))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 635740e3-f225-423f-85fd-be4ac350530a))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 82ec9858-c660-4f34-bb0c-2acc0dc77e89))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f3d86fb3-4f87-4fd5-a8dc-0934731b383d))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c0bea078-5b14-4311-af09-61b6edf9b01d))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 42369457-0cd5-4b52-b643-344204b9fbc4))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 485322bd-091c-414f-9df9-34c1a939ab9c))
(pad "1" smd roundrect (at -0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "VSS_PA") (pintype "passive") (tstamp 3bdaa9f5-705c-4b04-a8b2-b4cf6a4a8b74))
(pad "2" smd roundrect (at 0.48 0 270) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "Net-(U2-DECUSB)") (pintype "passive") (tstamp eb03581e-affb-42fa-a728-6a7c4bb6ce45))
(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_0402_1005Metric" (layer "F.Cu")
(tstamp 5b05269d-b774-4451-8d79-46cb063f26f7)
(at 132.49 85.91 90)
(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 "JLC Part" "C1548")
(property "LCSC Part" "C1548")
(property "Manufacturer Part" "CL05C150JB51PNC")
(property "Sheetfile" "dongle.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/af6b6d76-a866-42fb-a2b1-e35c994048e5")
(attr smd)
(fp_text reference "C2" (at 0 -1.16 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7b0cf3b2-a15c-4e15-b2fb-66d68357324e)
)
(fp_text value "15pF" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bf36355c-db82-4f2f-84f5-bcfdff59d123)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 63557daa-bc7d-4bab-b519-a1c539252349)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8cc0e652-fdba-4221-a090-b75af3a78271))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ff97ad36-c57a-4cc5-9c3b-7a4359b937d2))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7968fcdc-8e86-4275-8bc1-75c15c5e8ed0))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0ce4a590-a196-4c04-bcfd-1633e80c5b9f))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 65459082-8ba0-4018-b111-3f241ea8912f))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c14379b7-6ae9-4beb-9b3d-84799f78026c))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b110a3f6-ef60-420e-a66e-bbb23ef9ea4b))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 926d1c68-1c22-4244-bc21-fbcee110c688))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f78291df-d5c7-44d2-9199-8801a20ef067))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3917a3b3-81d3-4168-b79e-5eb608c7c3f1))
(pad "1" smd roundrect (at -0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(U2-XC2)") (pintype "passive") (tstamp 86ee9fe3-e49c-4ac7-8e3f-1d83de48b257))
(pad "2" smd roundrect (at 0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "VSS_PA") (pintype "passive") (tstamp d4852fd1-c606-4a7d-a377-13cb960c27fc))
(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_DFN_QFN:Nordic_AQFN-73-1EP_7x7mm_P0.5mm" (layer "F.Cu")
(tstamp 5b604b44-b017-47d5-a07d-9f0cdf2d12e9)
(at 137.4075 80.2725 -90)
(descr "http://infocenter.nordicsemi.com/index.jsp?topic=%2Fcom.nordic.infocenter.nrf52%2Fdita%2Fnrf52%2Fchips%2Fnrf52840.html")
(tags "AQFN 7mm ")
(property "Digikey" "1490-1071-1-ND")
(property "JLC Part" "C1851953")
(property "LCSC Part" "C190794")
(property "Manufacturer Part" "NRF52840-QIAA-R")
(property "Sheetfile" "dongle.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Multiprotocol BLE/ANT/2.4 GHz/802.15.4 Cortex-M4F SoC, AQFN-73")
(property "ki_keywords" "MCU, ARM, BLE, ANT, 2.4GHz, 802.15.4")
(path "/50539074-efe6-4210-8134-5eb52c350b8a")
(attr smd)
(fp_text reference "U2" (at 0 -4.5 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 408d7401-e8df-4603-8fcc-7ddd7219101a)
)
(fp_text value "nRF52840" (at 0.03 5.72 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4dceace0-ee8b-4d3f-b075-f14b5d99e6f8)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 02cfbc0b-3d9c-4b51-b8a6-7f35b6f7940c)
)
(fp_line (start -3.61 -3.61) (end -3.05 -3.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 36dbf8a5-b0c7-4934-97d8-8691eef64b11))
(fp_line (start -3.61 3.61) (end -3.61 3.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4265cfdc-e545-4e6d-b7f8-7bd71b22e59e))
(fp_line (start -3.61 3.61) (end -3.05 3.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ed7737c9-98de-4d43-a6bc-8b67f620dcc7))
(fp_line (start 3.61 -3.61) (end 3.05 -3.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 121d9dca-2649-4bd9-914d-2c9caefa78da))
(fp_line (start 3.61 -3.61) (end 3.61 -3.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6c56b2a8-bee1-4ce9-a131-feab34ea8428))
(fp_line (start 3.61 3.61) (end 3.05 3.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp be743dcc-924a-4704-9fa1-2cd17ae7c7f1))
(fp_line (start 3.61 3.61) (end 3.61 3.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fe5884c4-3b68-4fc1-90d7-61f2fe63c2bc))
(fp_line (start -3.81 -3.81) (end 3.81 -3.81)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0f7208d9-943e-4182-b31a-5f4316e853ea))
(fp_line (start -3.81 3.81) (end -3.81 -3.81)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7086696b-5034-4736-b93e-1c0f61b59df2))
(fp_line (start 3.81 -3.81) (end 3.81 3.81)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4e1e9c29-2ca0-469b-8898-449710e345cb))
(fp_line (start 3.81 3.81) (end -3.81 3.81)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 43414803-738e-4142-8e61-b51f77b501d6))
(fp_line (start -3.5 -3) (end -3.5 3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c38513bc-af78-4c3d-8687-29441cf42294))
(fp_line (start -3.5 -3) (end -3 -3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 67be642a-76a2-42b0-a324-7967825daf0f))
(fp_line (start -3.5 3.5) (end 3.5 3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4f018e38-c7dc-4714-b07c-c5980a841598))
(fp_line (start -3 -3.5) (end 3.5 -3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 570a99de-eae4-4c94-ac99-dcb6d064fc8a))
(fp_line (start 3.5 -3.5) (end 3.5 3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dad66139-c8f3-44d3-a2b9-24603d69a04e))
(pad "" smd rect (at -1.2125 -1.2125 90) (size 2 2) (layers "F.Paste") (tstamp 11aa33a9-78cf-4cf6-a27a-8ffd962057ba))
(pad "" smd rect (at -1.2125 1.2125 90) (size 2 2) (layers "F.Paste") (tstamp 112736f6-5283-4111-b625-f6514eac6aeb))
(pad "" smd rect (at 1.2125 -1.2125 90) (size 2 2) (layers "F.Paste") (tstamp 4e20c686-0879-4dd4-9403-3b75c3d6e3fe))
(pad "" smd rect (at 1.2125 1.2125 90) (size 2 2) (layers "F.Paste") (tstamp ee27d185-848c-47b3-972a-52a0c19adbfe))
(pad "A8" smd circle (at -1.25 -3.25 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "unconnected-(U2-AIN7{slash}P0.31-PadA8)") (pinfunction "AIN7/P0.31") (pintype "bidirectional+no_connect") (tstamp 194fb1eb-6c12-47a1-acee-afdadd9026bb))
(pad "A10" smd circle (at -0.75 -3.25 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "unconnected-(U2-AIN5{slash}P0.29-PadA10)") (pinfunction "AIN5/P0.29") (pintype "bidirectional+no_connect") (tstamp e967471c-a2dd-4931-b153-946e3581c062))
(pad "A12" smd circle (at -0.25 -3.25 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "unconnected-(U2-AIN0{slash}P0.02-PadA12)") (pinfunction "AIN0/P0.02") (pintype "bidirectional+no_connect") (tstamp 8f7a3757-d521-4674-8265-34e52132f015))
(pad "A14" smd circle (at 0.25 -3.25 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "unconnected-(U2-P1.15-PadA14)") (pinfunction "P1.15") (pintype "bidirectional+no_connect") (tstamp 3a54f579-0471-496d-a958-7624f2943709))
(pad "A16" smd circle (at 0.75 -3.25 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "unconnected-(U2-P1.13-PadA16)") (pinfunction "P1.13") (pintype "bidirectional+no_connect") (tstamp be03cc1c-d20b-4fbe-9cf4-a4bf155737db))
(pad "A18" smd circle (at 1.25 -3.25 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "unconnected-(U2-DEC2-PadA18)") (pinfunction "DEC2") (pintype "passive+no_connect") (tstamp 2d49fae7-6482-4af6-bfdf-9fb8d280c1c5))
(pad "A20" smd circle (at 1.75 -3.25 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 26 "unconnected-(U2-P1.10-PadA20)") (pinfunction "P1.10") (pintype "bidirectional+no_connect") (tstamp a4a0c74c-3592-4477-a011-aab75f86a728))
(pad "A22" smd circle (at 2.25 -3.25 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 71 "Net-(C12-Pad2)") (pinfunction "VDD") (pintype "passive") (tstamp fee3babd-7af2-4c3d-9bcc-ab009e6e3029))
(pad "A23" smd circle (at 2.75 -3.25 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "Net-(U2-XC2)") (pinfunction "XC2") (pintype "input") (tstamp 7288ce6c-b8f5-4735-9871-12bce8d522e4))
(pad "AA24" smd circle (at 3.25 2.25 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "SWC") (pinfunction "SWDCLK") (pintype "input") (tstamp 89d10513-574b-4b8e-bbc5-7d9f45e3ffa5))
(pad "AB2" smd circle (at -2.75 2.5 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 27 "unconnected-(U2-DCCH-PadAB2)") (pinfunction "DCCH") (pintype "power_out+no_connect") (tstamp 040da532-d532-4f1c-a188-a9321fd3e2b1))
(pad "AC5" smd circle (at -2 2.75 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "Net-(U2-DECUSB)") (pinfunction "DECUSB") (pintype "passive") (tstamp 38d27483-ec95-42fb-8a39-ec574aa6fa96))
(pad "AC9" smd circle (at -1 2.75 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 28 "unconnected-(U2-P0.14-PadAC9)") (pinfunction "P0.14") (pintype "bidirectional+no_connect") (tstamp 24880c7f-3db7-48bd-b53e-f9286d46f223))
(pad "AC11" smd circle (at -0.5 2.75 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 29 "unconnected-(U2-P0.16-PadAC11)") (pinfunction "P0.16") (pintype "bidirectional+no_connect") (tstamp da322448-67a8-4ae6-bef9-8745b61ef4c3))
(pad "AC13" smd circle (at 0 2.75 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 30 "RESET") (pinfunction "P0.18/~{RESET}") (pintype "bidirectional") (tstamp 9fe92c6f-93ce-4291-9e98-d2b09cc1a968))
(pad "AC15" smd circle (at 0.5 2.75 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 31 "unconnected-(U2-P0.19-PadAC15)") (pinfunction "P0.19") (pintype "bidirectional+no_connect") (tstamp 4ff71afe-f877-4cc3-ae9d-c890418ba498))
(pad "AC17" smd circle (at 1 2.75 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 32 "unconnected-(U2-P0.21-PadAC17)") (pinfunction "P0.21") (pintype "bidirectional+no_connect") (tstamp 4009b9bf-a9ff-4aca-ac05-ab64ab8e6679))
(pad "AC19" smd circle (at 1.5 2.75 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 33 "unconnected-(U2-P0.23-PadAC19)") (pinfunction "P0.23") (pintype "bidirectional+no_connect") (tstamp 173923c5-e0b9-4a7d-87cb-4dffc7c5bc5e))
(pad "AC21" smd circle (at 2 2.75 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 34 "unconnected-(U2-P0.25-PadAC21)") (pinfunction "P0.25") (pintype "bidirectional+no_connect") (tstamp 3ba5c9ee-0eba-4db8-97fb-e44b5da0da89))
(pad "AC24" smd circle (at 3.25 2.75 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "SWD") (pinfunction "SWDIO") (pintype "bidirectional") (tstamp 5e1de0d7-987e-46ce-a943-7c4d7275155a))
(pad "AD2" smd circle (at -2.75 3.25 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "Net-(U2-VBUS)") (pinfunction "VBUS") (pintype "power_in") (tstamp 670af269-c6ff-45c8-b55a-a87fa51b76a8))
(pad "AD4" smd circle (at -2.25 3.25 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "DATA-F") (pinfunction "D-") (pintype "bidirectional") (tstamp a351cb30-a046-4685-8c1a-17efcaf93ac6))
(pad "AD6" smd circle (at -1.75 3.25 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "DATA+F") (pinfunction "D+") (pintype "bidirectional") (tstamp f8f9e470-e9a3-4992-b355-b632117ed57d))
(pad "AD8" smd circle (at -1.25 3.25 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 35 "unconnected-(U2-P0.13-PadAD8)") (pinfunction "P0.13") (pintype "bidirectional+no_connect") (tstamp 596f2909-644b-48fc-b13d-adf0561fcdaa))
(pad "AD10" smd circle (at -0.75 3.25 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 36 "unconnected-(U2-P0.15-PadAD10)") (pinfunction "P0.15") (pintype "bidirectional+no_connect") (tstamp 27bb5ff9-dbf9-455b-9d09-d9e6eecd6b78))
(pad "AD12" smd circle (at -0.25 3.25 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 37 "unconnected-(U2-P0.17-PadAD12)") (pinfunction "P0.17") (pintype "bidirectional+no_connect") (tstamp 29434599-75dc-4951-9a43-6a887cf1ae01))
(pad "AD14" smd circle (at 0.25 3.25 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 71 "Net-(C12-Pad2)") (pinfunction "VDD") (pintype "passive") (tstamp 0afdc9b1-29fc-4845-bfbb-120b4a9be14a))
(pad "AD16" smd circle (at 0.75 3.25 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 38 "unconnected-(U2-P0.20-PadAD16)") (pinfunction "P0.20") (pintype "bidirectional+no_connect") (tstamp 29e45a4c-7359-4f80-93ed-f6c549adb5e5))
(pad "AD18" smd circle (at 1.25 3.25 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 39 "unconnected-(U2-P0.22-PadAD18)") (pinfunction "P0.22") (pintype "bidirectional+no_connect") (tstamp f98b84a4-942b-43a3-b99b-9805a4e163d2))
(pad "AD20" smd circle (at 1.75 3.25 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 40 "unconnected-(U2-P0.24-PadAD20)") (pinfunction "P0.24") (pintype "bidirectional+no_connect") (tstamp eb28bfa7-7be2-446a-af38-299c8544715a))
(pad "AD22" smd circle (at 2.25 3.25 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 41 "unconnected-(U2-TRACEDATA0{slash}P1.00-PadAD22)") (pinfunction "TRACEDATA0/P1.00") (pintype "bidirectional+no_connect") (tstamp 9e31cf09-f862-4eb9-aa8f-53606a27c43d))
(pad "AD23" smd circle (at 2.75 3.25 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 71 "Net-(C12-Pad2)") (pinfunction "VDD") (pintype "passive") (tstamp c9e71f93-540f-4bb6-9322-059d341f5ea0))
(pad "B1" smd circle (at -3.25 -2.75 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 71 "Net-(C12-Pad2)") (pinfunction "VDD") (pintype "power_in") (tstamp 3a3a2c29-4859-4a5e-8eac-6ffb5cba8dbb))
(pad "B3" smd circle (at -2.5 -2.75 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 42 "unconnected-(U2-DCC-PadB3)") (pinfunction "DCC") (pintype "power_out+no_connect") (tstamp e36854bc-a77c-4d68-ae51-9bf58e2d1aee))
(pad "B5" smd circle (at -2 -2.75 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "Net-(U2-DEC4)") (pinfunction "DEC4") (pintype "passive") (tstamp f300fec2-fb44-46ba-98dc-2d4ffb7ecb25))
(pad "B7" smd circle (at -1.5 -2.75 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "VSS_PA") (pinfunction "VSS") (pintype "power_in") (tstamp 3c8926a4-df88-4a27-ba49-5d9e6007f356))
(pad "B9" smd circle (at -1 -2.75 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 43 "unconnected-(U2-AIN6{slash}P0.30-PadB9)") (pinfunction "AIN6/P0.30") (pintype "bidirectional+no_connect") (tstamp 842baa14-604e-44b8-b83f-da7cd9145e3c))
(pad "B11" smd circle (at -0.5 -2.75 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 44 "unconnected-(U2-AIN4{slash}P0.28-PadB11)") (pinfunction "AIN4/P0.28") (pintype "bidirectional+no_connect") (tstamp b1fa2efa-fb60-421a-ae06-7e6f7f1f9292))
(pad "B13" smd circle (at 0 -2.75 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 45 "unconnected-(U2-AIN1{slash}P0.03-PadB13)") (pinfunction "AIN1/P0.03") (pintype "bidirectional+no_connect") (tstamp 7329a34d-c05c-45b9-805b-c0642b6477ec))
(pad "B15" smd circle (at 0.5 -2.75 90) (size 0.25 0.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 46 "unconnected-(U2-P1.14-PadB15)") (pinfunction "P1.14") (pintype "bidirectional+no_connect") (tstamp a4a67e24-8a63-477e-a8b8-2b023f352479))