-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnRF52_sandbox.kicad_pcb
11779 lines (11738 loc) · 593 KB
/
nRF52_sandbox.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)
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(aux_axis_origin 90 100)
(pcbplotparams
(layerselection 0x00010f8_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 false)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "+3.3V")
(net 2 "GND")
(net 3 "Net-(U1-XL1{slash}P0.00)")
(net 4 "Net-(U1-XL2{slash}P0.01)")
(net 5 "VBUS")
(net 6 "Net-(D1-K)")
(net 7 "/D3|LED1")
(net 8 "Net-(D2-K)")
(net 9 "/D4|LED2")
(net 10 "Net-(J1-D-)")
(net 11 "Net-(J1-D+)")
(net 12 "unconnected-(J1-ID-Pad4)")
(net 13 "/RESET")
(net 14 "/A7|AREF")
(net 15 "/A6|VDIV")
(net 16 "/A0")
(net 17 "/A1")
(net 18 "/A2")
(net 19 "/A3")
(net 20 "/A4")
(net 21 "/A5")
(net 22 "/D26|SCK")
(net 23 "/D25|MOSI")
(net 24 "/D24|MISO")
(net 25 "/RXD")
(net 26 "/TXD")
(net 27 "/D2")
(net 28 "/D22|SDA")
(net 29 "/D23|SCL")
(net 30 "/D5")
(net 31 "/D6")
(net 32 "/D9")
(net 33 "/D10")
(net 34 "/D11")
(net 35 "/D12")
(net 36 "/D13")
(net 37 "Net-(U1-DCCH)")
(net 38 "/USBD+")
(net 39 "/USBD-")
(net 40 "/D7|SWITCH")
(net 41 "unconnected-(U1-P1.11-Pad4)")
(net 42 "unconnected-(U1-P1.12-Pad5)")
(net 43 "unconnected-(U1-P1.13-Pad6)")
(net 44 "unconnected-(U1-P1.14-Pad7)")
(net 45 "/D8|NEOPIX")
(net 46 "/QSPI_DATA0")
(net 47 "/QSPI_SCK")
(net 48 "/QSPI_DATA3")
(net 49 "/QSPI_CS")
(net 50 "/QSPI_DATA2")
(net 51 "/QSPI_DATA1")
(net 52 "/SWO")
(net 53 "/SWDIO")
(net 54 "unconnected-(U1-P0.09{slash}NFC1-Pad52)")
(net 55 "/SWCLK")
(net 56 "unconnected-(U1-P1.04-Pad56)")
(net 57 "unconnected-(U1-P1.06-Pad57)")
(net 58 "unconnected-(U1-P1.07-Pad58)")
(net 59 "unconnected-(U1-P1.05-Pad59)")
(net 60 "unconnected-(U1-P1.03-Pad60)")
(net 61 "unconnected-(U1-P1.01-Pad61)")
(net 62 "unconnected-(U2-NC-Pad4)")
(net 63 "unconnected-(J2-Pad08)")
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 1b2518e3-2b16-4b70-8f38-0c5e2e2aedeb)
(at 92.9 79.6)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "nRF52_sandbox.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/23f24bd7-9f01-4b3e-bcad-2f3d4dadf388")
(attr smd)
(fp_text reference "R1" (at 2.1 0.1) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 107967f1-0cb5-4f8e-b150-8e9310280c42)
)
(fp_text value "1K" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fb9ff700-d4dd-4f46-871a-be4cdc47dfc2)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 258f52a4-73e4-4420-8d25-bc18848869b7)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 027c1b9e-09c2-41cf-90dc-a12da96493a2))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp daf6c547-fef2-4dbf-8148-5d36cf604fdb))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 58b5568b-0201-48d4-8242-5800c776defe))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d627558e-fd52-48e1-96c6-f4868aa9d616))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0efab5cc-6e1e-4eb2-9e45-b33e8d61ed6c))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ba339c0f-0c3e-4a3e-a63e-264e8eec5912))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1110313e-f6ea-4b8f-9ced-459886237659))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5413d7d1-b98d-44e5-8420-0721de767dec))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d14ecb07-862c-48db-be92-e9e993fb7613))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3c123f26-81e8-4121-bb6c-086a3a571271))
(pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "Net-(D1-K)") (pintype "passive") (tstamp e5e3c442-1ef1-45e9-853b-30e1ff077cb7))
(pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 4e100d6f-aca3-46ec-b045-39dca9854afe))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x11_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 287a983e-4186-4c9a-b74f-7af5b2526c92)
(at 134.55 78.5 -90)
(descr "Through hole straight pin header, 1x11, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x11 2.54mm single row")
(property "Sheetfile" "nRF52_sandbox.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x11, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/80c8aacb-b9f6-4e50-9716-0d2b72602fc8")
(attr through_hole)
(fp_text reference "J4" (at 0 -2.33 -90) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp d18686f5-ee16-48b5-96c3-a1fe1bc8410a)
)
(fp_text value "Conn_01x11" (at 0 27.73 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 352544da-f201-4c3b-ad41-3b287a043c65)
)
(fp_text user "${REFERENCE}" (at 0 12.7) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d4e52359-4b43-41a0-859c-adab6ea17ead)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c7afb9d2-c222-41ce-86a1-e0cb0be23c58))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f972daa5-45ab-4015-9d95-9bd3bd35d3f0))
(fp_line (start -1.33 1.27) (end -1.33 26.73)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b5e4587f-46ae-4aa0-affc-e7e635274414))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bbb7f0b1-543c-4c0c-b687-b8611a698a77))
(fp_line (start -1.33 26.73) (end 1.33 26.73)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 42487792-6b72-45cf-a4af-00bef60666a4))
(fp_line (start 1.33 1.27) (end 1.33 26.73)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 19ddcfb7-374a-4000-ab21-fa627f00e331))
(fp_line (start -1.8 -1.8) (end -1.8 27.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 03381e5f-1437-499b-afff-31e3d96f81dd))
(fp_line (start -1.8 27.2) (end 1.8 27.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8e546698-45b4-4e15-a26a-a670993edc9c))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2dd165c7-fd27-4933-b487-6cf1f71b9d9b))
(fp_line (start 1.8 27.2) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2a542487-fcb6-4887-adb0-cb8236c05f88))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d8f1f0a6-6c84-4a12-af21-7a2876d5e59f))
(fp_line (start -1.27 26.67) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5f00239b-be30-49b0-b24f-1bd01c71115a))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7e02d540-df05-4fcb-a184-2a1800d9ca92))
(fp_line (start 1.27 -1.27) (end 1.27 26.67)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d561b5d1-40d6-4686-bd48-0b40ae1a57b6))
(fp_line (start 1.27 26.67) (end -1.27 26.67)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9464fb26-3178-4307-93a0-e42f7d6a9265))
(pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 28 "/D22|SDA") (pinfunction "Pin_1") (pintype "passive") (tstamp 9304c827-a126-4816-b704-833401113ec0))
(pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 29 "/D23|SCL") (pinfunction "Pin_2") (pintype "passive") (tstamp 6a4efe9d-421f-4fae-addf-a10dfd02f8b2))
(pad "3" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 30 "/D5") (pinfunction "Pin_3") (pintype "passive") (tstamp b19f133d-5f5a-4c18-a0a9-8ad3496eb9af))
(pad "4" thru_hole oval (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 31 "/D6") (pinfunction "Pin_4") (pintype "passive") (tstamp 438b0813-8836-464d-9bce-afe8ecde6609))
(pad "5" thru_hole oval (at 0 10.16 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 32 "/D9") (pinfunction "Pin_5") (pintype "passive") (tstamp 996e351c-3ec8-4a78-864f-4a697aeb0b3b))
(pad "6" thru_hole oval (at 0 12.7 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 33 "/D10") (pinfunction "Pin_6") (pintype "passive") (tstamp 0c7611e6-cfca-43d8-9c2c-e96a0d2eae78))
(pad "7" thru_hole oval (at 0 15.24 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 34 "/D11") (pinfunction "Pin_7") (pintype "passive") (tstamp a284ca96-8e82-4387-8762-429d78dd9176))
(pad "8" thru_hole oval (at 0 17.78 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 35 "/D12") (pinfunction "Pin_8") (pintype "passive") (tstamp 56da5ef9-d7fa-4ce2-8efe-2c35d25a285a))
(pad "9" thru_hole oval (at 0 20.32 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 36 "/D13") (pinfunction "Pin_9") (pintype "passive") (tstamp 9cd67c6c-8fe2-4ced-a4d1-c77f407ddff2))
(pad "10" thru_hole oval (at 0 22.86 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "+3.3V") (pinfunction "Pin_10") (pintype "passive") (tstamp 87d0f41e-97b7-41ac-b0f3-4c64d774ec91))
(pad "11" thru_hole oval (at 0 25.4 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 5 "VBUS") (pinfunction "Pin_11") (pintype "passive") (tstamp 518509f8-84fe-4330-865f-96ef17a05287))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x11_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23-5" (layer "F.Cu")
(tstamp 2e7d9bdb-08a8-4b9f-a507-1e7fd6c778c6)
(at 100.9 82 90)
(descr "SOT, 5 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant AA), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "Sheetfile" "nRF52_sandbox.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "600mA low dropout linear regulator, with enable pin, 3.8V-6V input voltage range, 3.3V fixed positive output, SOT-23-5")
(property "ki_keywords" "linear regulator ldo fixed positive")
(path "/42032f4a-f595-408f-a2c6-71d6bc4ff427")
(attr smd)
(fp_text reference "U2" (at -1.3 -2.2 90) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 41515034-a792-4a9a-937d-2d703c30abea)
)
(fp_text value "AP2112K-3.3" (at 0 2.4 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3079e55a-a8d2-401e-9e59-e56c84198309)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp a309ef9f-3908-4bc2-b8d2-a8373947f566)
)
(fp_line (start 0 -1.56) (end -1.8 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 477a0b63-f866-40e8-9685-6db82ced9ef3))
(fp_line (start 0 -1.56) (end 0.8 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d2ab8c6d-cc61-443e-a467-a03407987159))
(fp_line (start 0 1.56) (end -0.8 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4884fd28-e1cf-4a39-91c4-a672cb0952f3))
(fp_line (start 0 1.56) (end 0.8 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ae54e7f0-90c4-4966-a1c1-2390ce3ebc6a))
(fp_line (start -2.05 -1.7) (end -2.05 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dc1a158b-d7ce-48a0-a322-ee277e9a1f88))
(fp_line (start -2.05 1.7) (end 2.05 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8e150199-7125-4c39-8428-f1a123d1d90d))
(fp_line (start 2.05 -1.7) (end -2.05 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d97e4c5f-1ee7-4ab0-b45c-75c95ce46e79))
(fp_line (start 2.05 1.7) (end 2.05 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7d80cfd8-8229-4d6b-96d8-791dd7745044))
(fp_line (start -0.8 -1.05) (end -0.4 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 30a5d8b7-e303-436c-91ad-64c582067af9))
(fp_line (start -0.8 1.45) (end -0.8 -1.05)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 09dfbb14-5305-4f26-96db-ddc23bbd3410))
(fp_line (start -0.4 -1.45) (end 0.8 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 58db4815-f892-409f-8b0e-986773b11503))
(fp_line (start 0.8 -1.45) (end 0.8 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ca5164e3-8623-4d3e-a99b-cf3bc9db7991))
(fp_line (start 0.8 1.45) (end -0.8 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4f870ed0-0b39-40b7-86b6-287f958b3971))
(pad "1" smd roundrect (at -1.1375 -0.95 90) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "VBUS") (pinfunction "VIN") (pintype "power_in") (tstamp 8c803327-72b1-4da7-8e6f-0b6a1136faa6))
(pad "2" smd roundrect (at -1.1375 0 90) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 195cf01d-3362-44f1-826c-709e8b47e425))
(pad "3" smd roundrect (at -1.1375 0.95 90) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "VBUS") (pinfunction "EN") (pintype "input") (tstamp c4757aae-52ac-4486-9471-e786e0b76900))
(pad "4" smd roundrect (at 1.1375 0.95 90) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 62 "unconnected-(U2-NC-Pad4)") (pinfunction "NC") (pintype "no_connect") (tstamp 7e7eae01-2e96-433d-a3d9-27a211f97670))
(pad "5" smd roundrect (at 1.1375 -0.95 90) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+3.3V") (pinfunction "VOUT") (pintype "power_out") (tstamp 3925c8e3-f60a-4847-b114-ac97cdc657a4))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-5.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 31d1dc93-1b25-4eaf-8cd4-e95ff2b32864)
(at 97.75 87.5)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "nRF52_sandbox.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/b99fe7b9-7ad6-4868-8edc-e0255309fa37")
(attr smd)
(fp_text reference "R4" (at -0.75 -1.25) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp cbbdf888-04d6-4eec-81e8-757cce4f77d7)
)
(fp_text value "22R" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 286c3b24-4f79-470c-b570-666e381dfd0c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 9086bdea-3844-4002-b9ff-5e161a7d880d)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8d1ba37a-61df-42c4-af82-fc8b952e1cb1))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp efb5065e-3c96-4093-b47a-929a884dde25))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ecb58584-f271-4e3b-a7b2-0b8090a5be89))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 83ea6818-f27b-4eeb-aa50-4f83f18c149b))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 79d2b7f7-dd98-4c1f-984d-bd1b2fb97ebc))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ae8ee9f1-23f0-47e1-b0ad-d046ed8bfc62))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dafccf52-e5a9-4bd6-8285-99ff483e5d9e))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e8ab8a7f-1524-410a-8a22-ca40a63e065f))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b76115a1-551f-48be-a087-a8454fd94aeb))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bc3a0ee7-189c-47e7-a684-10f36228e413))
(pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "Net-(J1-D-)") (pintype "passive") (tstamp cb8ee832-fd5e-4416-9ae6-a56cd62aff51))
(pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 39 "/USBD-") (pintype "passive") (tstamp 88ef252b-5c12-48af-9d13-7d9ea301d575))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0201_0603Metric" (layer "F.Cu")
(tstamp 42daf659-c008-40c8-abad-b1d76bbd8ccd)
(at 123.3 81.6 90)
(descr "Capacitor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "nRF52_sandbox.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/afa97a77-fd70-45b1-b86d-c36bbf918119")
(attr smd)
(fp_text reference "C2" (at 1.2 0.2 180) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 00b85d71-e394-4adf-acb5-9b5d04424d5f)
)
(fp_text value "22pF" (at 0 1.05 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0dc51960-6dad-457f-a8d3-4f7f12f1d91b)
)
(fp_text user "${REFERENCE}" (at 0 -0.68 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 1c8cac4b-ad00-4d55-bc8d-96fe40ef2db0)
)
(fp_line (start -0.7 -0.35) (end 0.7 -0.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f4266541-f91c-48c3-9bba-c81c6350dd4e))
(fp_line (start -0.7 0.35) (end -0.7 -0.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8c7e9f74-3512-459e-8120-a4be4ea579d7))
(fp_line (start 0.7 -0.35) (end 0.7 0.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b7712809-5bc1-4aa6-a04c-a28669713c2f))
(fp_line (start 0.7 0.35) (end -0.7 0.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 97b2a97b-f5a2-4784-a5ec-1efc3df1de12))
(fp_line (start -0.3 -0.15) (end 0.3 -0.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cf0b450b-65c9-49c8-87e8-3c72512c00d4))
(fp_line (start -0.3 0.15) (end -0.3 -0.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 340d4b96-61ce-4194-8f1b-cf2b78a5da4a))
(fp_line (start 0.3 -0.15) (end 0.3 0.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d81715d0-a8bd-4419-8d92-c34fea40a383))
(fp_line (start 0.3 0.15) (end -0.3 0.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c18dc969-3ab6-4e7b-823c-00e770329256))
(pad "" smd roundrect (at -0.345 0 90) (size 0.318 0.36) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp f3c4b4a3-fbf6-4a62-8345-e8c3e690572a))
(pad "" smd roundrect (at 0.345 0 90) (size 0.318 0.36) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 87eed8f1-27cf-4915-9790-277872107203))
(pad "1" smd roundrect (at -0.32 0 90) (size 0.46 0.4) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(U1-XL1{slash}P0.00)") (pintype "passive") (tstamp 1e3ea4a0-5f1e-4828-9766-4f723c066de6))
(pad "2" smd roundrect (at 0.32 0 90) (size 0.46 0.4) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 9212f88d-3dc6-4f9d-920e-774e8ce09bfd))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0201_0603Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Inductor_SMD:L_0603_1608Metric" (layer "F.Cu")
(tstamp 4ec889f8-ddc8-42cc-8790-35ef1feb4468)
(at 123.4 90.8 90)
(descr "Inductor 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 "inductor")
(property "Sheetfile" "nRF52_sandbox.kicad_sch")
(property "Sheetname" "")
(property "dnp" "")
(property "exclude_from_bom" "")
(property "ki_description" "Inductor")
(property "ki_keywords" "inductor choke coil reactor magnetic")
(path "/cb549869-e09a-4789-aa7d-a1a06dc2fbda")
(attr smd exclude_from_bom)
(fp_text reference "L1" (at 2.25 0 90) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 8862dc71-a016-4b78-9715-e0a7183818f3)
)
(fp_text value "DNP" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8002b81f-ed92-4f79-a8b6-8037588b77eb)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 0353356a-c636-4194-af79-8e15ec6547ed)
)
(fp_line (start -0.162779 -0.51) (end 0.162779 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9014b897-9864-4091-a5c8-87e300f34365))
(fp_line (start -0.162779 0.51) (end 0.162779 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b541bf4f-21c1-4f0b-8789-1968fa33999f))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a0589423-9b8d-4b37-ab3b-35c0723657a8))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 02a8e83e-0ab4-4b73-822c-c3d11d9997e6))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 92574dbe-0ea8-491b-9cc7-1e35f3cbec47))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d6c61bc8-9955-4aae-86e6-620027b8c04e))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4b2a8b8c-0802-4bde-a785-90662a38e2a6))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9b4fcdb2-e097-4757-962b-16c9e76ea0d4))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 91579c75-b3fb-44de-955b-07ac6546be46))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4102cc3e-8c64-4fd0-8ee5-62ec4fa86056))
(pad "1" smd roundrect (at -0.7875 0 90) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 37 "Net-(U1-DCCH)") (pinfunction "1") (pintype "passive") (tstamp bb2dc05a-3770-4c3c-b145-ae91b644f990))
(pad "2" smd roundrect (at 0.7875 0 90) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+3.3V") (pinfunction "2") (pintype "passive") (tstamp 0e13562d-a8cb-474f-9cfa-2eac3b11e28f))
(model "${KICAD6_3DMODEL_DIR}/Inductor_SMD.3dshapes/L_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0201_0603Metric" (layer "F.Cu")
(tstamp 62beb945-77a4-4017-820a-0e2b3187706c)
(at 100.400001 84.5)
(descr "Capacitor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "nRF52_sandbox.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/75ae40ef-a7b0-483e-9843-83f3dcdc601e")
(attr smd)
(fp_text reference "C5" (at -1.400001 0.1) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1) bold))
(tstamp 7abef2b9-785c-4f48-93ca-2611896347ca)
)
(fp_text value "10uF" (at 0 1.05) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 15023680-f98f-4055-9ced-d073f3fa9373)
)
(fp_text user "${REFERENCE}" (at 0 -0.68) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 46366d68-eece-4be6-9e94-bf0ec4ec59e1)
)
(fp_line (start -0.7 -0.35) (end 0.7 -0.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e3fbb753-0f74-4873-afd4-7af8f42e9d71))
(fp_line (start -0.7 0.35) (end -0.7 -0.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7e0d5395-a5bc-4616-95a1-8c8e1e4fe854))
(fp_line (start 0.7 -0.35) (end 0.7 0.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 21e161d7-ed96-4be9-ba1d-d881d2566003))
(fp_line (start 0.7 0.35) (end -0.7 0.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 351ed6d7-28cd-4308-becf-4b13175b9bd4))
(fp_line (start -0.3 -0.15) (end 0.3 -0.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 24f2299b-b2c1-40dc-8885-57bdf58dff1e))
(fp_line (start -0.3 0.15) (end -0.3 -0.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2aa4ba70-af5d-4d42-b628-269831e75a26))
(fp_line (start 0.3 -0.15) (end 0.3 0.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9fab4b56-a761-4adf-8775-37ea98f5472b))
(fp_line (start 0.3 0.15) (end -0.3 0.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 66f63901-756d-42f6-a8a9-998063551098))
(pad "" smd roundrect (at -0.345 0) (size 0.318 0.36) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 574ecaa2-fe68-4fdd-b695-788f3a4b2878))
(pad "" smd roundrect (at 0.345 0) (size 0.318 0.36) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp edfbf019-e77a-4438-a46e-52525c3a58ee))
(pad "1" smd roundrect (at -0.32 0) (size 0.46 0.4) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
(net 5 "VBUS") (pintype "passive") (tstamp 6dde4ddd-9997-43c6-87fe-18ee2952a65e))
(pad "2" smd roundrect (at 0.32 0) (size 0.46 0.4) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 48a9a796-ef88-4801-9eef-aefe39cc745f))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0201_0603Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Library:TL1017AABF260QG" (layer "F.Cu")
(tstamp 691b4796-f234-4011-a6c9-9a3ff5351c1e)
(at 106 94 -90)
(property "Sheetfile" "nRF52_sandbox.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/68fc5d50-7224-4d82-af58-8b50bff54ae3")
(attr through_hole)
(fp_text reference "SW2" (at 1 3) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp c03022d4-0f55-4808-b71c-64c6897d6a12)
)
(fp_text value "SW_Push" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2621085d-58a3-46e6-a3a4-177da1c187e0)
)
(fp_line (start -1.25 -2) (end 1.25 -2)
(stroke (width 0.12) (type default)) (layer "F.SilkS") (tstamp a891c90c-c462-428c-bc2a-42d5047b52b3))
(fp_line (start -1.25 1.4) (end -1.25 -2)
(stroke (width 0.12) (type default)) (layer "F.SilkS") (tstamp 9790de66-d125-416c-a7a6-7e6dd000db45))
(fp_line (start -1.25 2) (end -1.25 1.4)
(stroke (width 0.12) (type default)) (layer "F.SilkS") (tstamp 58c408c9-0317-456f-9ee5-2d1d4a8609a7))
(fp_line (start 1.25 -2) (end 1.25 2)
(stroke (width 0.12) (type default)) (layer "F.SilkS") (tstamp 7770aabe-6dc7-4403-8f11-b07c701e115c))
(fp_line (start 1.25 2) (end -1.25 2)
(stroke (width 0.12) (type default)) (layer "F.SilkS") (tstamp 90a1041f-9af5-4ee3-8ca2-23186193496d))
(fp_line (start -1.1 -1.95) (end 1.1 -1.95)
(stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp b116aea9-8f82-4df0-b926-e3f0f56a953f))
(fp_line (start -1.1 1.95) (end -1.1 -1.95)
(stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 1d215dae-1f74-45a1-ae7b-2dde61e5b076))
(fp_line (start 1.1 -1.95) (end 1.1 1.95)
(stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp c6dbb068-7829-4419-a790-8e736217f8d9))
(fp_line (start 1.1 1.95) (end -1.1 1.95)
(stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 5435d340-24e6-4a4f-aaa7-ec074f656d93))
(pad "1" smd rect (at 0 1.3 270) (size 1.7 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "1") (pintype "passive") (thermal_bridge_angle 45) (tstamp acd3a93d-a7e8-495d-b1ec-caabd7a10e88))
(pad "2" smd rect (at 0 -1.3 270) (size 1.7 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 40 "/D7|SWITCH") (pinfunction "2") (pintype "passive") (thermal_bridge_angle 45) (tstamp bf325de5-0fea-4de2-860d-632841751aa1))
)
(footprint "Library:SAMTEC_FTSH-105-01-L-DV-K" (layer "F.Cu")
(tstamp 6e3ba7c6-499f-4315-a6bc-c97b01481032)
(at 112 88.5 -90)
(descr "translated Allegro footprint")
(property "AVAILABILITY" "In Stock")
(property "DESCRIPTION" "Connector Header Surface Mount 10 position 0.050 (1.27mm)")
(property "MF" "Samtec")
(property "MP" "FTSH-105-01-L-DV-K")
(property "PACKAGE" "None")
(property "PRICE" "None")
(property "PURCHASE-URL" "https://pricing.snapeda.com/search/part/FTSH-105-01-L-DV-K/?ref=eda")
(property "Sheetfile" "nRF52_sandbox.kicad_sch")
(property "Sheetname" "")
(path "/8ee3d8ea-5f69-4393-b640-42752c89c3bf")
(attr smd)
(fp_text reference "J2" (at -0.931 -4.681 90) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 132ffed9-869b-488d-a82e-58e320a9eab5)
)
(fp_text value "FTSH-105-01-L-DV-K\n" (at 12.065 5.145 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 79fd767c-1474-46dd-8c7c-da1f744ef6e8)
)
(fp_line (start -3.26 -1.715) (end -3.26 1.715)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 7c8c02bb-1c83-4c22-9d7c-528ade05caad))
(fp_line (start 3.26 1.715) (end 3.26 -1.715)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 7f12253c-eed2-41dd-809a-a5d7376e7f1a))
(fp_circle (center -3.79 2.035) (end -3.69 2.035)
(stroke (width 0.2) (type solid)) (fill none) (layer "F.SilkS") (tstamp 5b07abc0-67a8-4b22-ac26-e9a26b9fe5c7))
(fp_line (start -3.425 -3.68) (end 3.425 -3.68)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 98b18581-88a9-413c-917f-f3ee9f2aeb3f))
(fp_line (start -3.425 3.68) (end -3.425 -3.68)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp da0e6c47-f68f-4c0d-9082-4eb3f59d4d86))
(fp_line (start 3.425 -3.68) (end 3.425 3.68)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c1034749-65ec-4377-9688-e444f78794c0))
(fp_line (start 3.425 3.68) (end -3.425 3.68)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b74c3124-7848-49ea-a84b-c13db49ceb4d))
(fp_line (start -3.175 1.715) (end -3.175 -1.715)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 260d7bfe-2f45-49f5-bcb4-367af955b58a))
(fp_line (start -3.175 1.715) (end 3.175 1.715)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d558cd0e-4518-46c4-b9ae-dd19712d228d))
(fp_line (start 3.175 -1.715) (end -3.175 -1.715)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 265c10cb-5233-47f7-b04f-e5453de570d2))
(fp_line (start 3.175 1.715) (end 3.175 -1.715)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 273436e6-2f43-441e-b520-13f9ddc8de98))
(fp_circle (center -3.79 2.035) (end -3.69 2.035)
(stroke (width 0.2) (type solid)) (fill none) (layer "F.Fab") (tstamp 7259a8f5-2d9f-4f2e-a238-4609788cd911))
(pad "01" smd rect (at -2.54 2.035 270) (size 0.74 2.79) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+3.3V") (pinfunction "01") (pintype "passive") (solder_mask_margin 0.102) (tstamp 3d4b77fe-c555-404a-8de0-a4610ce836fe))
(pad "02" smd rect (at -2.54 -2.035 270) (size 0.74 2.79) (layers "F.Cu" "F.Paste" "F.Mask")
(net 53 "/SWDIO") (pinfunction "02") (pintype "passive") (solder_mask_margin 0.102) (tstamp a17116f8-13d3-4328-b194-1fd368b078d0))
(pad "03" smd rect (at -1.27 2.035 270) (size 0.74 2.79) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "03") (pintype "passive") (solder_mask_margin 0.102) (tstamp d858a547-0c1d-45d2-bc8a-1f4accdfecc5))
(pad "04" smd rect (at -1.27 -2.035 270) (size 0.74 2.79) (layers "F.Cu" "F.Paste" "F.Mask")
(net 55 "/SWCLK") (pinfunction "04") (pintype "passive") (solder_mask_margin 0.102) (tstamp bde8e13d-2fb8-492f-a1b0-da363bc7d759))
(pad "05" smd rect (at 0 2.035 270) (size 0.74 2.79) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "05") (pintype "passive") (solder_mask_margin 0.102) (tstamp 3e0f8db9-a677-4128-b0ee-b27f45147a3f))
(pad "06" smd rect (at 0 -2.035 270) (size 0.74 2.79) (layers "F.Cu" "F.Paste" "F.Mask")
(net 52 "/SWO") (pinfunction "06") (pintype "passive") (solder_mask_margin 0.102) (tstamp 3deb9c42-67b8-479e-a10f-d1525c997123))
(pad "07" smd rect (at 1.27 2.035 270) (size 0.74 2.79) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "07") (pintype "passive") (solder_mask_margin 0.102) (tstamp 805f656c-4743-47ce-a826-36e53cde569a))
(pad "08" smd rect (at 1.27 -2.035 270) (size 0.74 2.79) (layers "F.Cu" "F.Paste" "F.Mask")
(net 63 "unconnected-(J2-Pad08)") (pinfunction "08") (pintype "passive+no_connect") (solder_mask_margin 0.102) (tstamp ff2ae166-364f-4d85-8f6f-22dc91170427))
(pad "09" smd rect (at 2.54 2.035 270) (size 0.74 2.79) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "09") (pintype "passive") (solder_mask_margin 0.102) (tstamp b550e49d-8f37-4726-80be-ae34424803f5))
(pad "10" smd rect (at 2.54 -2.035 270) (size 0.74 2.79) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "/RESET") (pinfunction "10") (pintype "passive") (solder_mask_margin 0.102) (tstamp 161887a8-a098-454d-b093-083a721fe860))
)
(footprint "Library:AMPHENOL_10118193-0001LF" (layer "F.Cu")
(tstamp 746c8258-d02c-4963-959c-503646a39ff3)
(at 91.5 88.5 -90)
(property "Sheetfile" "nRF52_sandbox.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "USB Micro Type B connector")
(property "ki_keywords" "connector USB micro")
(path "/f7b32ed3-a074-4ff8-bef9-02b778fa5b11")
(attr smd)
(fp_text reference "J1" (at 5.25 0.75 90) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 695960df-3ec8-423c-93c5-a28a9031bb13)
)
(fp_text value "USB_B_Micro" (at 10.92 -5.459 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7a8ad59e-88bd-4a6f-aa1e-12014aeb6f2b)
)
(fp_text user "PCB END" (at 4.85 1.2 90) (layer "F.Fab")
(effects (font (size 0.32 0.32) (thickness 0.08)))
(tstamp bdfe31f3-8d88-4042-9b81-0dd16c1b79f6)
)
(fp_line (start -3.8 1.45) (end -3.8 1.22)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 03783652-25f5-44e2-8063-7df503beab2b))
(fp_line (start -3.8 1.45) (end 3.8 1.45)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp b8e16380-7382-4893-9f59-7656a71e9863))
(fp_line (start 3.8 1.45) (end 3.8 1.22)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp a5ee4a4f-7271-466c-bc9d-d9b1f08eba8d))
(fp_circle (center -1.3 -4.05) (end -1.2 -4.05)
(stroke (width 0.2) (type solid)) (fill none) (layer "F.SilkS") (tstamp 57c990be-17d8-433b-b09b-390c23a0e433))
(fp_line (start -4.32 -3.6) (end -4.32 3.066)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 76a22309-dd22-47b4-8eca-96684570453f))
(fp_line (start -4.32 3.066) (end 4.32 3.066)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2d0e6b78-bd14-460f-8857-716b54d4c510))
(fp_line (start 4.32 -3.6) (end -4.32 -3.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4adcc8b3-5eca-4271-801a-b1de800ba292))
(fp_line (start 4.32 3.066) (end 4.32 -3.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9f3d5d5b-b591-4cf6-a133-971e161db795))
(fp_line (start -3.93 2.5) (end -3.75 2.75)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp ac6d23e0-283b-4d72-9adc-f7f607381ed9))
(fp_line (start -3.8 -2.9) (end 3.8 -2.9)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 55305331-9f77-43e8-a028-3ea9b86ab72f))
(fp_line (start -3.8 1.45) (end 3.8 1.45)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 18b74029-7146-4469-8890-2f732e7f29b4))
(fp_line (start -3.8 2.1) (end -3.8 -2.9)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 2533c78c-39d0-4435-b201-c2a328b4627f))
(fp_line (start -3.8 2.15) (end -3.8 2.1)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 94ca5303-068d-4511-ab11-5c92b679296b))
(fp_line (start -3.2 2.2) (end -3.2 2.75)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp d4c8aa28-808d-432f-88d5-15a0698ba00a))
(fp_line (start -3.2 2.75) (end 3.2 2.75)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 727946d5-a5d3-499e-9bcb-7c4b86994ff4))
(fp_line (start 3.2 2.75) (end 3.2 2.2)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 5a0511f0-399a-4a75-a832-fffec38546d7))
(fp_line (start 3.8 -2.9) (end 3.8 1.45)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp d8b9ba3f-059b-4f4e-ac44-fa461196bc73))
(fp_line (start 3.8 1.45) (end 3.8 2.15)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 732218f1-fa67-421d-96f4-685af980eb46))
(fp_line (start 3.8 1.45) (end 7 1.45)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 5cc39cad-3546-445e-bdb5-7e2e555cf238))
(fp_line (start 3.8 2.15) (end -3.8 2.15)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 0d45fdff-7bdc-4cb2-8d62-cdbb6c4845f0))
(fp_line (start 3.93 2.5) (end 3.75 2.8)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 399ef6c8-e7e4-4228-96f6-d6d021f8ea8c))
(fp_arc (start -3.8 2.1) (mid -3.782157 2.326924) (end -3.93 2.5)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 63bf32b7-172c-4d63-b9f8-dba5414ce7bb))
(fp_arc (start -3.4 2.2) (mid -3.461091 2.547487) (end -3.75 2.75)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp e71c5239-e4ca-4acd-8174-7565b4d95178))
(fp_arc (start 3.75 2.8) (mid 3.450736 2.572487) (end 3.4 2.2)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 469e6fd2-b812-4f88-ab25-124b488e5a39))
(fp_arc (start 3.93 2.5) (mid 3.782157 2.326924) (end 3.8 2.1)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 9e2c900a-0d7d-4c10-98d8-e956dd7e4291))
(fp_circle (center -1.3 -4.05) (end -1.2 -4.05)
(stroke (width 0.2) (type solid)) (fill none) (layer "F.Fab") (tstamp 1f969686-b097-4182-b805-01b31cad572b))
(pad "1" smd rect (at -1.3 -2.675 270) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "VBUS") (pinfunction "VBUS") (pintype "power_out") (tstamp 4c532968-bb95-4028-97ac-9005494a0236))
(pad "2" smd rect (at -0.65 -2.675 270) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "Net-(J1-D-)") (pinfunction "D-") (pintype "bidirectional") (tstamp e64c7a53-0389-426d-92ec-d57ce22295a9))
(pad "3" smd rect (at 0 -2.675 270) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "Net-(J1-D+)") (pinfunction "D+") (pintype "bidirectional") (tstamp a7462974-b783-41d1-bb06-911cdf2c82fc))
(pad "4" smd rect (at 0.65 -2.675 270) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "unconnected-(J1-ID-Pad4)") (pinfunction "ID") (pintype "passive") (tstamp 1b00f7f4-f9d3-4a76-ab43-2e0735e56c34))
(pad "5" thru_hole oval (at -3.3 0 270) (size 0.9 1.8) (drill oval 0.5 1.2) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_out") (solder_mask_margin 0.102) (tstamp cb58c0ed-15f8-4d73-bb88-a7fc6568ae71))
(pad "5" smd rect (at -3.2 -2.45 270) (size 1.6 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_out") (solder_mask_margin 0.102) (tstamp 37243b64-2c31-4748-aaf9-6287252de7ec))
(pad "5" smd rect (at -1.2 0 270) (size 1.9 1.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_out") (solder_mask_margin 0.102) (tstamp faeb4cdd-8cbb-4b95-b5a7-245cfeecc369))
(pad "5" smd rect (at 1.2 0 270) (size 1.9 1.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_out") (solder_mask_margin 0.102) (tstamp f1dda297-7d56-408c-8ee5-07b8f92b5aed))
(pad "5" smd rect (at 1.3 -2.675 270) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_out") (tstamp 0f71f0df-d180-42ee-afc6-e387c1fe04b5))
(pad "5" smd rect (at 3.2 -2.45 270) (size 1.6 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_out") (solder_mask_margin 0.102) (tstamp a8936090-997b-4267-8372-edcce857bde6))
(pad "5" thru_hole oval (at 3.3 0 270) (size 0.9 1.8) (drill oval 0.5 1.2) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_out") (solder_mask_margin 0.102) (tstamp 06c6c277-80d2-4360-99cf-bfe8b297e589))
)
(footprint "Library:TL1017AABF260QG" (layer "F.Cu")
(tstamp 7824edb9-c3bd-45c7-8af0-f9fb699aed5b)
(at 99.25 94 90)
(property "Sheetfile" "nRF52_sandbox.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/d4d35ec1-497b-4e2d-83cc-b2a2f609db59")
(attr through_hole)
(fp_text reference "SW1" (at 0.8 3.05) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 9282ac72-b2c4-410e-945a-13dfd30b0267)
)
(fp_text value "SW_Push" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 317dc5d7-9803-4fb6-98ec-78f48ef01f3e)
)
(fp_line (start -1.25 -2) (end 1.25 -2)
(stroke (width 0.12) (type default)) (layer "F.SilkS") (tstamp 3292dd18-16e6-40a5-a672-a7d4b7a5e832))
(fp_line (start -1.25 1.4) (end -1.25 -2)
(stroke (width 0.12) (type default)) (layer "F.SilkS") (tstamp 18330c37-7c40-41db-8468-2dc5531981b3))
(fp_line (start -1.25 2) (end -1.25 1.4)
(stroke (width 0.12) (type default)) (layer "F.SilkS") (tstamp 90ab9897-dba0-406f-9c18-9a15ff14c9cb))
(fp_line (start 1.25 -2) (end 1.25 2)
(stroke (width 0.12) (type default)) (layer "F.SilkS") (tstamp 9ada787e-0051-4f70-a203-053925dd8875))
(fp_line (start 1.25 2) (end -1.25 2)
(stroke (width 0.12) (type default)) (layer "F.SilkS") (tstamp f9e4aa17-9300-4c6b-9299-d87126d8458b))
(fp_line (start -1.1 -1.95) (end 1.1 -1.95)
(stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 5ff7607d-72e2-4823-9301-0fc161041883))
(fp_line (start -1.1 1.95) (end -1.1 -1.95)
(stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp e3832121-9f3b-41cc-b282-05308fcb36cc))
(fp_line (start 1.1 -1.95) (end 1.1 1.95)
(stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp c5e648bb-428d-41c8-829c-a654784d51e4))
(fp_line (start 1.1 1.95) (end -1.1 1.95)
(stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 5986e3ed-6327-4a94-8d57-57a79dca0066))
(pad "1" smd rect (at 0 1.3 90) (size 1.7 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "1") (pintype "passive") (thermal_bridge_angle 45) (tstamp 6fd78a1e-b860-4209-aaa5-0553f1b84ae4))
(pad "2" smd rect (at 0 -1.3 90) (size 1.7 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "/RESET") (pinfunction "2") (pintype "passive") (thermal_bridge_angle 45) (tstamp e4c14a69-3685-4797-805e-3209c4346f51))
)
(footprint "Package_SON:SON-8-1EP_3x2mm_P0.5mm_EP1.4x1.6mm" (layer "F.Cu")
(tstamp 87173369-4d9a-433c-b564-0be5eff4867b)
(at 131 95.5 180)
(descr "SON, 8 Pin (http://www.fujitsu.com/downloads/MICRO/fsa/pdf/products/memory/fram/MB85RS16-DS501-00014-6v0-E.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py")
(tags "SON NoLead")
(property "Sheetfile" "nRF52_sandbox.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "4Mbit Serial Flash memory, dual I/O SPI, SOIC-8")
(property "ki_keywords" "Memory Flash SPI")
(path "/70dc0d13-a60f-45ca-92d2-7282549e4f60")
(attr smd)
(fp_text reference "U3" (at -2.5 -1) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1) bold))
(tstamp 3d7005b0-96cd-465e-b087-eac685718726)
)
(fp_text value "GD25Q16ETIGR" (at 0 1.95) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2bd561b8-0459-433d-a09c-665e82587086)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.75 0.75) (thickness 0.11)))
(tstamp 61ea55d4-bf81-476b-a45d-c4d849c8061b)
)
(fp_line (start -1.5 1.11) (end 1.5 1.11)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ddbde030-a363-4023-8866-8260c2db244d))
(fp_line (start 0 -1.11) (end 1.5 -1.11)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f49967a3-bb86-49a5-848d-d95776485e1a))
(fp_line (start -1.8 -1.25) (end -1.8 1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8ca6a48d-bec6-424c-9f5d-60395dd999bf))
(fp_line (start -1.8 1.25) (end 1.8 1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cdaa7966-8778-4ab0-b46c-3848c62c357b))
(fp_line (start 1.8 -1.25) (end -1.8 -1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 958be9e8-7ad8-4ca3-a061-145de01ef6c5))
(fp_line (start 1.8 1.25) (end 1.8 -1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e61e0768-ea85-4345-ba91-5f44794c9154))
(fp_line (start -1.5 -0.5) (end -1 -1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 29da88ae-be91-4b59-ad2b-52ddc6bfe95a))
(fp_line (start -1.5 1) (end -1.5 -0.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e91b8853-b3d8-4bf0-b805-688165fadc63))
(fp_line (start -1 -1) (end 1.5 -1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 14b39a42-5369-4b04-b813-a3d8910f5737))
(fp_line (start 1.5 -1) (end 1.5 1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9b6cf192-ae63-4da3-835f-bbcdd175ab45))
(fp_line (start 1.5 1) (end -1.5 1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f221b2eb-2e1b-4eca-a68e-a501ad5b089f))
(pad "1" smd roundrect (at -1.2875 -0.75 180) (size 0.525 0.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 49 "/QSPI_CS") (pinfunction "~{CS}") (pintype "input") (tstamp 40ca34ca-91c3-447a-8741-ab0ebf4bf401))
(pad "2" smd roundrect (at -1.2875 -0.25 180) (size 0.525 0.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 51 "/QSPI_DATA1") (pinfunction "DO(IO1)") (pintype "bidirectional") (tstamp 87903818-95a6-4faf-92dd-f25a53046e86))
(pad "3" smd roundrect (at -1.2875 0.25 180) (size 0.525 0.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 50 "/QSPI_DATA2") (pinfunction "~{WP}") (pintype "bidirectional") (tstamp 8d327dd9-dd25-4c0e-9279-955edfd64c87))
(pad "4" smd roundrect (at -1.2875 0.75 180) (size 0.525 0.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 8b724185-dcdb-4a9e-8753-0c85076f688a))
(pad "5" smd roundrect (at 1.2875 0.75 180) (size 0.525 0.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 46 "/QSPI_DATA0") (pinfunction "DI(IO0)") (pintype "bidirectional") (tstamp 08c91a35-6cfd-4f62-b27a-fa263b044219))
(pad "6" smd roundrect (at 1.2875 0.25 180) (size 0.525 0.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 47 "/QSPI_SCK") (pinfunction "SCK") (pintype "input") (tstamp 91ebaac9-bf9f-4ac2-91c7-8aad446b140c))
(pad "7" smd roundrect (at 1.2875 -0.25 180) (size 0.525 0.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 48 "/QSPI_DATA3") (pinfunction "~{HOLD}") (pintype "bidirectional") (tstamp fd0eb36b-b8db-4704-916e-c6368901e71d))
(pad "8" smd roundrect (at 1.2875 -0.75 180) (size 0.525 0.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+3.3V") (pinfunction "VCC") (pintype "power_in") (tstamp b161539d-e815-4ff4-8d8d-bb2591636960))
(model "${KICAD6_3DMODEL_DIR}/Package_SON.3dshapes/SON-8-1EP_3x2mm_P0.5mm_EP1.4x1.6mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "RF_Module:Raytac_MDBT50Q" (layer "F.Cu")
(tstamp 943cc0fa-1cb8-4c04-8182-1c9baae67857)
(at 132.8 88.5 -90)
(descr "Multiprotocol radio SoC module https://www.raytac.com/download/index.php?index_id=43")
(tags "wireless 2.4 GHz Bluetooth ble zigbee 802.15.4 thread nordic raytac nrf52840 nrf52833")
(property "Sheetfile" "nRF52_sandbox.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Multiprotocol BLE/ANT/2.4 GHz/802.15.4 Cortex-M4F SoC, nRF52840 module")
(property "ki_keywords" "BLE ANT ZigBee Thread 802.15.4 nRF52840 nordic MDBT50Q")
(path "/b10d6b5d-2425-47b8-8528-3ff97c4ad8d6")
(attr smd)
(fp_text reference "U1" (at 6.5 -6.7 -180) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 9cb6cfb2-bb6c-4b31-b68a-49ac24c40f9b)
)
(fp_text value "MDBT50Q-1MV2" (at 0.2 8.95 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 94a79fa2-4329-4071-bfc4-71532a016d89)
)
(fp_text user "KEEP OUT" (at -1.5 -3.1 90) (layer "Cmts.User")
(effects (font (size 0.4 0.4) (thickness 0.04)))
(tstamp a45722d8-837a-4ed9-a9be-694c7e748e21)
)
(fp_text user "KEEP OUT ZONE" (at 0.05 -5.75 90) (layer "Cmts.User")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp f37c374b-b81d-4068-bca5-c47f7e1f0537)
)
(fp_text user "TOP LAYER" (at -1.6 -3.6 90) (layer "Cmts.User")
(effects (font (size 0.4 0.4) (thickness 0.04)))
(tstamp fd4275bb-9994-4445-b646-964f15f09980)
)
(fp_text user "${REFERENCE}" (at 0.05 1.75 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f6439e7d-0992-4a55-9ec1-80d34d27a24d)
)
(fp_line (start -5.6 -4.3) (end -5.6 -3.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 52637a43-b21e-465e-9365-3ffa6f30f6c8))
(fp_line (start -5.35 -7.85) (end -5.35 -3.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6052304e-7824-4769-97e3-29a475415309))
(fp_line (start -5.35 6.75) (end -5.35 7.85)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2fe896c2-2fd8-4e45-9821-fe824711e467))
(fp_line (start -5.35 7.85) (end -4.25 7.85)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp af41ccbe-e71d-458e-89e5-265d65944a12))
(fp_line (start -4.25 -7.85) (end -5.35 -7.85)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ea9ce5e8-750c-4318-8465-d916883956d9))
(fp_line (start 4.25 -7.85) (end 5.35 -7.85)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 34b5befb-f083-4c69-bde8-c88e91907e7d))
(fp_line (start 5.35 -7.85) (end 5.35 -6.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ac3787da-1672-4d1a-93ef-3571176e377c))
(fp_line (start 5.35 6.75) (end 5.35 7.85)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e66ff1c2-fe8c-499c-b0ec-dcab3258c293))
(fp_line (start 5.35 7.85) (end 4.25 7.85)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 150ac141-fb28-42bc-99d8-104b18fe4a78))
(fp_line (start -5.75 -8.25) (end -5.75 8.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dd774fab-a60e-42b1-aa62-331e32106469))
(fp_line (start -5.75 -8.25) (end 5.75 -8.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3e246eab-8c14-4ded-b2de-3d35a933d3e6))
(fp_line (start -5.75 8.25) (end 5.75 8.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 278006b7-eb90-43f5-b937-8b666f40d46f))
(fp_line (start 5.75 -8.25) (end 5.75 8.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b1d8a764-5362-40b5-982d-b41577e9530e))
(fp_line (start -5.25 -7.75) (end 5.25 -7.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a900496d-f5dc-453c-a156-3ba45c4578fa))
(fp_line (start -5.25 7.75) (end -5.25 -7.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 04e9b099-efce-4652-9b9b-a8ab252ee2ec))
(fp_line (start -4.25 -3.75) (end -5.25 -4.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 21c2350c-f387-45a1-8a9e-0f73a9d43dc0))
(fp_line (start -4.25 -3.75) (end -5.25 -3.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4a0a9175-08a1-4026-86dd-6a2878d355e8))
(fp_line (start 5.25 -7.75) (end 5.25 7.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a6f6db7c-48aa-4b00-bc5d-e8636c116ebe))
(fp_line (start 5.25 7.75) (end -5.25 7.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3cc91ec7-5dbe-4b96-a0aa-d764e39cf1c8))
(pad "1" smd rect (at -4.65 -3.75 270) (size 0.6 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 5b2d486a-0ebc-4611-af36-6a4ee65dc570))
(pad "2" smd rect (at -4.65 -2.65 270) (size 0.6 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp d70bc0d9-ecbd-431c-832b-60390eeb6722))
(pad "3" smd rect (at -4.65 -1.85 270) (size 0.6 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "/D4|LED2") (pinfunction "P1.10") (pintype "bidirectional") (tstamp d98fc42f-2735-4b13-a49a-ba1fc71a239a))
(pad "4" smd rect (at -4.65 -0.25 270) (size 0.6 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 41 "unconnected-(U1-P1.11-Pad4)") (pinfunction "P1.11") (pintype "bidirectional") (tstamp ec674edc-bb61-403d-9e8e-09e57269f449))
(pad "5" smd rect (at -3.75 0.15 270) (size 0.6 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 42 "unconnected-(U1-P1.12-Pad5)") (pinfunction "P1.12") (pintype "bidirectional") (tstamp 9598613e-cf8e-49a0-8cb2-3806c105d4cf))
(pad "6" smd rect (at -4.65 0.55 270) (size 0.6 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 43 "unconnected-(U1-P1.13-Pad6)") (pinfunction "P1.13") (pintype "bidirectional") (tstamp 07752c5e-811d-4484-a628-4f4833d71df5))
(pad "7" smd rect (at -3.75 0.95 270) (size 0.6 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 44 "unconnected-(U1-P1.14-Pad7)") (pinfunction "P1.14") (pintype "bidirectional") (tstamp c1698de7-ba53-408d-b164-d96d41305395))
(pad "8" smd rect (at -4.65 1.35 270) (size 0.6 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "/D3|LED1") (pinfunction "P1.15") (pintype "bidirectional") (tstamp 000cc6dd-f146-4061-8ca8-6c5b1079b1d1))
(pad "9" smd rect (at -3.75 1.75 270) (size 0.6 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "/A5") (pinfunction "P0.03/AIN1") (pintype "bidirectional") (tstamp 0786f993-c5d3-46be-a83b-7a110c6b601c))
(pad "10" smd rect (at -4.65 2.15 270) (size 0.6 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "/A6|VDIV") (pinfunction "P0.29/AIN5") (pintype "bidirectional") (tstamp 019f3109-69b7-430f-9aff-816be54d7529))
(pad "11" smd rect (at -3.75 2.55 270) (size 0.6 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "/A4") (pinfunction "P0.02/AIN0") (pintype "bidirectional") (tstamp 60d9386e-d850-48e1-b012-a40c62f6eb48))
(pad "12" smd rect (at -4.65 2.95 270) (size 0.6 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "/A7|AREF") (pinfunction "P0.31/AIN7") (pintype "bidirectional") (tstamp e3cbf814-88eb-409b-bb5e-9006551ac026))
(pad "13" smd rect (at -3.75 3.35 270) (size 0.6 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "/A3") (pinfunction "P0.28/AIN4") (pintype "bidirectional") (tstamp cced7371-6a34-415e-ba3d-42373b58d263))
(pad "14" smd rect (at -4.65 3.75 270) (size 0.6 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "/A2") (pinfunction "P0.30/AIN6") (pintype "bidirectional") (tstamp 225eb310-6139-4cd8-b45f-d8b5489f1922))
(pad "15" smd rect (at -4.8 7.15) (size 0.6 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 843d229b-daf5-4edc-a529-36acc1a78f6d))
(pad "16" smd rect (at -4 7.15) (size 0.6 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 33 "/D10") (pinfunction "P0.27") (pintype "bidirectional") (tstamp 991e87f8-c13a-4953-986a-788cf02faaf3))
(pad "17" smd rect (at -3.2 7.15) (size 0.6 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "Net-(U1-XL1{slash}P0.00)") (pinfunction "XL1/P0.00") (pintype "bidirectional") (tstamp 5e932240-cd2e-4e1f-9f7d-ae5002261662))
(pad "18" smd rect (at -2.4 7.15) (size 0.6 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "Net-(U1-XL2{slash}P0.01)") (pinfunction "XL2/P0.01") (pintype "bidirectional") (tstamp 4e0a95de-d457-46d6-912c-8c65b7865360))
(pad "19" smd rect (at -2 6.25) (size 0.6 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 32 "/D9") (pinfunction "P0.26") (pintype "bidirectional") (tstamp 8dc6c57d-ef83-4512-ae5f-9616af29201f))
(pad "20" smd rect (at -1.6 7.15) (size 0.6 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "/A0") (pinfunction "P0.04/AIN2") (pintype "bidirectional") (tstamp 7eb131e8-c642-42c5-8f56-22ad65448621))
(pad "21" smd rect (at -1.2 6.25) (size 0.6 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "/A1") (pinfunction "P0.05/AIN3") (pintype "bidirectional") (tstamp dc762d7e-33e8-4a41-97ab-c9df86595e59))
(pad "22" smd rect (at -0.8 7.15) (size 0.6 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 34 "/D11") (pinfunction "P0.06") (pintype "bidirectional") (tstamp da2bd619-3a67-4e2f-bb93-00de835571d4))
(pad "23" smd rect (at -0.4 6.25) (size 0.6 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 31 "/D6") (pinfunction "TRACECLK/P0.07") (pintype "bidirectional") (tstamp 34caf37e-a77d-447a-9304-8522bafcb1d6))
(pad "24" smd rect (at 0 7.15) (size 0.6 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 35 "/D12") (pinfunction "P0.08") (pintype "bidirectional") (tstamp 88e958af-001e-4867-8916-798f71317505))
(pad "25" smd rect (at 0.4 6.25) (size 0.6 0.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 30 "/D5") (pinfunction "P1.08") (pintype "bidirectional") (tstamp ddb948bf-8573-4ad8-adf6-077f63f80a96))