-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathXR819.kicad_pcb
7831 lines (7799 loc) · 331 KB
/
XR819.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.03)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(1 "In1.Cu" signal)
(2 "In2.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.015))
(layer "dielectric 1" (type "core") (thickness 0.31) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In1.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 2" (type "prepreg") (thickness 0.31) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In2.Cu" (type "copper") (thickness 0.015))
(layer "dielectric 3" (type "core") (thickness 0.31) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.015))
(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 116.061626 90.424)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "+1V8")
(net 3 "/XTAL1")
(net 4 "/XTAL2")
(net 5 "Net-(C4-Pad2)")
(net 6 "Net-(C6-Pad2)")
(net 7 "Net-(C7-Pad2)")
(net 8 "+3V3")
(net 9 "/ANT")
(net 10 "Net-(C13-Pad2)")
(net 11 "/SDIO_DATA2")
(net 12 "/SDIO_DATA1")
(net 13 "/SDIO_DATA0")
(net 14 "/SDIO_CLK")
(net 15 "/SDIO_CMD")
(net 16 "/SDIO_DATA3")
(net 17 "/WIRQ")
(net 18 "unconnected-(U1-Pad29)")
(net 19 "unconnected-(U1-Pad30)")
(net 20 "unconnected-(U1-Pad37)")
(net 21 "unconnected-(U1-Pad36)")
(net 22 "unconnected-(U1-Pad35)")
(net 23 "unconnected-(U1-Pad34)")
(net 24 "unconnected-(U1-Pad33)")
(net 25 "unconnected-(U1-Pad32)")
(net 26 "unconnected-(U1-Pad31)")
(net 27 "unconnected-(U1-Pad20)")
(net 28 "/RST")
(net 29 "unconnected-(U1-Pad16)")
(net 30 "unconnected-(U1-Pad15)")
(net 31 "unconnected-(U1-Pad14)")
(net 32 "unconnected-(U1-Pad13)")
(net 33 "unconnected-(U1-Pad12)")
(net 34 "unconnected-(U1-Pad11)")
(net 35 "Net-(C15-Pad2)")
(net 36 "unconnected-(J2-Pad4)")
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 0c9bbc06-f1c0-4359-8448-9c515b32a886)
(at 123.19 77.2685)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "XR819.kicad_sch")
(property "Sheetname" "")
(path "/243a3c1a-0717-40ec-a223-dc842be21ed1")
(attr smd)
(fp_text reference "C13" (at -2.032 0.2015 unlocked) (layer "F.SilkS")
(effects (font (size 0.762 0.762) (thickness 0.127)))
(tstamp 6ba19f6c-fa3a-4bf3-8c57-119de0f02b65)
)
(fp_text value "NC" (at 0 1.16 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9f95f1fc-aa31-4ce6-996a-4b385731d8eb)
)
(fp_text user "${REFERENCE}" (at 0 0 unlocked) (layer "F.SilkS") hide
(effects (font (size 0.762 0.762) (thickness 0.127)))
(tstamp aa288a22-ea1d-474d-8dae-efe971580843)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36) (layer "F.SilkS") (width 0.15) (tstamp d372e2ac-d81e-48b7-8c55-9bbe58eeffc3))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36) (layer "F.SilkS") (width 0.15) (tstamp e9a9fba3-7cfa-45ca-926c-a5a8ecd7e3a4))
(fp_line (start -0.91 0.46) (end -0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 0ff398d7-e6e2-4972-a7a4-438407886f34))
(fp_line (start 0.91 -0.46) (end 0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 18dee026-9999-4f10-8c36-736131349406))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 9e427954-2486-4c91-89b5-6af73a073442))
(fp_line (start 0.91 0.46) (end -0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp db532ed2-914c-41b4-b389-de2bf235d0a7))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 153169ce-9fac-4868-bc4e-e1381c5bb726))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 2276ec6c-cdcc-4369-86b4-8267d991001e))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 29987966-1d19-4068-93f6-a61cdfb40ffa))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp b121f1ff-8472-460b-ab2d-5110ddd1ca28))
(pad "1" smd roundrect (at -0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 58a87288-e2bf-4c88-9871-a753efc69e9d))
(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 10 "Net-(C13-Pad2)") (pintype "passive") (tstamp 1527299a-08b3-47c3-929f-a75c83be365e))
(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 "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 0d095387-710d-4633-a6c3-04eab60b585a)
(at 129.54 87.884)
(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" "XR819.kicad_sch")
(property "Sheetname" "")
(path "/6e143793-c009-4b12-aafa-0139e8d29657")
(attr smd)
(fp_text reference "R1" (at -1.524 0 unlocked) (layer "F.SilkS")
(effects (font (size 0.762 0.762) (thickness 0.127)))
(tstamp f879c0e8-5893-4eb4-8e59-2292a632100f)
)
(fp_text value "33K" (at 0 1.17 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7114de55-86d9-46c1-a412-07f5eb895435)
)
(fp_text user "${REFERENCE}" (at 0 0 unlocked) (layer "F.SilkS") hide
(effects (font (size 0.762 0.762) (thickness 0.127)))
(tstamp 5099f397-6fe7-454f-899c-34e2b5f22ca7)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.15) (tstamp 6474aa6c-825c-4f0f-9938-759b68df02a5))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.15) (tstamp f48f1d12-9008-4743-81e2-bdec45db64a1))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 19515fa4-c166-4b6e-837d-c01a89e98000))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 43f341b3-06e9-4e7a-a26e-5365b89d76bf))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 4d51bc15-1f84-46be-8e16-e836b10f854e))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp cd48b13f-c989-4ac1-a7f0-053afcd77527))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 10fa1a8c-62cb-4b8f-b916-b18d737ff71b))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 750e60a2-e808-4253-8275-b79930fb2714))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 9e18f8b3-9e1a-4022-9224-10c12ca8a28d))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp e7376da1-2f59-4570-81e8-46fca0289df0))
(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 11 "/SDIO_DATA2") (pintype "passive") (tstamp ea7c53f9-3aa8-4198-9879-de95a5257915))
(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 8 "+3V3") (pintype "passive") (tstamp a12b751e-ae7a-468c-af3d-31ed4d501b01))
(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 "kicad_lceda:QFN-40_L5.0-W5.0-P0.40-TL-EP3.4" (layer "F.Cu")
(tedit 62AC9D9E) (tstamp 2bbd6c26-4114-4518-8f4a-c6fdadc046b6)
(at 125.476 84.328)
(property "Sheetfile" "XR819.kicad_sch")
(property "Sheetname" "")
(property "SuppliersPartNumber" "C9900000026")
(property "uuid" "std:970cf4f533334f2b9c7c9e1669a7a8cb")
(path "/cff34251-839c-4da9-a0ad-85d0fc4e32af")
(attr through_hole)
(fp_text reference "U1" (at 0 -3.207 unlocked) (layer "F.SilkS")
(effects (font (size 0.762 0.762) (thickness 0.127)) (justify left))
(tstamp 100847e3-630c-4c13-ba45-180e92370805)
)
(fp_text value "XR819" (at 0 -0.667 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify left))
(tstamp a43f2e19-4e11-4e86-a12a-58a691d6df28)
)
(fp_line (start 2.7 -2.7) (end 2.2 -2.7) (layer "F.SilkS") (width 0.15) (tstamp 094dc71e-7ea9-4e30-8ba7-749216ec2a8b))
(fp_line (start 2.7 -2.2) (end 2.7 -2.7) (layer "F.SilkS") (width 0.15) (tstamp 186c3f1e-1c94-498e-abf2-1069980f6633))
(fp_line (start -2.7 -2.7) (end -2.2 -2.7) (layer "F.SilkS") (width 0.15) (tstamp 28d267fd-6d61-43bb-9705-8d59d7a44e81))
(fp_line (start -2.7 -2.2) (end -2.7 -2.7) (layer "F.SilkS") (width 0.15) (tstamp 583b0bf3-0699-44db-b975-a241ad040fa4))
(fp_line (start 2.7 2.7) (end 2.7 2.2) (layer "F.SilkS") (width 0.15) (tstamp 761492e2-a989-4596-80c3-fcd6943df072))
(fp_line (start -2.7 2.7) (end -2.7 2.2) (layer "F.SilkS") (width 0.15) (tstamp 92d17eb0-c75d-48d9-ae9e-ea0c7f723be4))
(fp_line (start -2.2 2.7) (end -2.7 2.7) (layer "F.SilkS") (width 0.15) (tstamp ef400389-7e37-4c93-8647-76318089d59f))
(fp_line (start 2.2 2.7) (end 2.7 2.7) (layer "F.SilkS") (width 0.15) (tstamp fc12372f-6e31-40f9-8043-b00b861f0171))
(fp_arc (start -3.051 -2.497) (mid -3.351003 -2.49768) (end -3.051005 -2.49954) (layer "F.SilkS") (width 0.15) (tstamp ffb86135-b43f-4a42-9aa6-73aa7ba972a9))
(fp_circle (center -2.802 -1.82) (end -2.652 -1.82) (layer "Dwgs.User") (width 0.3) (fill none) (tstamp 3273ec61-4a33-41c2-82bf-cde7c8587c1b))
(fp_circle (center -2.5 -2.5) (end -2.47 -2.5) (layer "Eco2.User") (width 0.06) (fill none) (tstamp 4f3dc5bc-04e8-4dcc-91dd-8782e84f321d))
(fp_poly (pts
(xy 1.7 -2.5)
(xy 1.9 -2.5)
(xy 1.9 -2.1)
(xy 1.7 -2.1)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp 1d1a7683-c090-4798-9b40-7ed0d9f3ce3b))
(fp_poly (pts
(xy -2.5 -1.5)
(xy -2.1 -1.5)
(xy -2.1 -1.3)
(xy -2.5 -1.3)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp 25625d99-d45f-4b2f-9e62-009a122611f4))
(fp_poly (pts
(xy 1.7 -1.7)
(xy 1.7 1.7)
(xy -1.7 1.7)
(xy -1.7 -1.7)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp 2edc487e-09a5-4e4e-9675-a7b323f56380))
(fp_poly (pts
(xy 2.1 0.1)
(xy 2.5 0.1)
(xy 2.5 0.3)
(xy 2.1 0.3)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp 312474c5-a081-4cd1-b2e6-730f0718514a))
(fp_poly (pts
(xy -0.3 2.1)
(xy -0.1 2.1)
(xy -0.1 2.5)
(xy -0.3 2.5)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp 3d2a15cb-c492-4d9a-b1dd-7d5f099d2d31))
(fp_poly (pts
(xy 1.7 2.1)
(xy 1.9 2.1)
(xy 1.9 2.5)
(xy 1.7 2.5)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp 3d70e675-48ae-4edd-b95d-3ca51e634018))
(fp_poly (pts
(xy -2.5 -0.3)
(xy -2.1 -0.3)
(xy -2.1 -0.1)
(xy -2.5 -0.1)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp 44e77d57-d16f-4723-a95f-1ac45276c458))
(fp_poly (pts
(xy 0.1 -2.5)
(xy 0.3 -2.5)
(xy 0.3 -2.1)
(xy 0.1 -2.1)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp 54d76293-1ce2-46f8-9be7-a3d7f9f28112))
(fp_poly (pts
(xy -2.5 0.1)
(xy -2.1 0.1)
(xy -2.1 0.3)
(xy -2.5 0.3)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp 5626e5e1-59f4-4773-828e-16057ddc3518))
(fp_poly (pts
(xy -1.9 -2.5)
(xy -1.7 -2.5)
(xy -1.7 -2.1)
(xy -1.9 -2.1)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp 5a010660-4a0b-4680-b361-32d4c3b60537))
(fp_poly (pts
(xy 2.1 1.3)
(xy 2.5 1.3)
(xy 2.5 1.5)
(xy 2.1 1.5)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp 61a18b62-4111-4a9d-8fca-04c4c6f90cc3))
(fp_poly (pts
(xy -1.9 2.1)
(xy -1.7 2.1)
(xy -1.7 2.5)
(xy -1.9 2.5)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp 6d1e2df9-cc89-4e18-a541-699f0d20dd45))
(fp_poly (pts
(xy 2.1 1.7)
(xy 2.5 1.7)
(xy 2.5 1.9)
(xy 2.1 1.9)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp 717b25a7-c9c2-4f6f-b744-a96113325c99))
(fp_poly (pts
(xy 0.9 -2.5)
(xy 1.1 -2.5)
(xy 1.1 -2.1)
(xy 0.9 -2.1)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp 7247fe96-7885-4063-8282-ea2fd2b28b0d))
(fp_poly (pts
(xy 2.1 -0.7)
(xy 2.5 -0.7)
(xy 2.5 -0.5)
(xy 2.1 -0.5)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp 72f9157b-77da-4a6d-9880-0711b21f6e23))
(fp_poly (pts
(xy -2.5 0.5)
(xy -2.1 0.5)
(xy -2.1 0.7)
(xy -2.5 0.7)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp 7700fef1-de5b-4197-be2d-18385e1e18f9))
(fp_poly (pts
(xy -1.1 -2.5)
(xy -0.9 -2.5)
(xy -0.9 -2.1)
(xy -1.1 -2.1)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp 771cb5c1-62ba-4cca-999e-cdcbe417213c))
(fp_poly (pts
(xy 2.1 -1.9)
(xy 2.5 -1.9)
(xy 2.5 -1.7)
(xy 2.1 -1.7)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp 81ab7ed7-7160-4650-b711-4daa2902dc8b))
(fp_poly (pts
(xy -0.3 -2.5)
(xy -0.1 -2.5)
(xy -0.1 -2.1)
(xy -0.3 -2.1)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp 830aee7f-dfce-42cd-85ef-6370f6dc02f5))
(fp_poly (pts
(xy 0.1 2.1)
(xy 0.3 2.1)
(xy 0.3 2.5)
(xy 0.1 2.5)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp 848901d5-fdee-4920-a04d-fbc03c912e79))
(fp_poly (pts
(xy -0.7 2.1)
(xy -0.5 2.1)
(xy -0.5 2.5)
(xy -0.7 2.5)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp 868b5d0d-f911-4724-9580-d9e69eb9f709))
(fp_poly (pts
(xy -1.5 -2.5)
(xy -1.3 -2.5)
(xy -1.3 -2.1)
(xy -1.5 -2.1)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp 8e75264b-b45e-45ec-b230-7e1dce7d68b3))
(fp_poly (pts
(xy 0.5 2.1)
(xy 0.7 2.1)
(xy 0.7 2.5)
(xy 0.5 2.5)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp 926b329f-cd0d-410a-bc4a-e36446f8965a))
(fp_poly (pts
(xy -2.5 1.7)
(xy -2.1 1.7)
(xy -2.1 1.9)
(xy -2.5 1.9)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp 9404ce4c-2ce6-4f88-8062-13577800d257))
(fp_poly (pts
(xy 2.1 0.5)
(xy 2.5 0.5)
(xy 2.5 0.7)
(xy 2.1 0.7)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp 97693043-81ba-44a2-b87b-aca6193e0970))
(fp_poly (pts
(xy 2.1 0.9)
(xy 2.5 0.9)
(xy 2.5 1.1)
(xy 2.1 1.1)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp a6dd3322-fcf5-4e4f-88bb-77a3d82a4d05))
(fp_poly (pts
(xy 1.3 -2.5)
(xy 1.5 -2.5)
(xy 1.5 -2.1)
(xy 1.3 -2.1)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp b5ffe018-0d06-4a1b-95ee-b5763a35798d))
(fp_poly (pts
(xy 2.1 -1.1)
(xy 2.5 -1.1)
(xy 2.5 -0.9)
(xy 2.1 -0.9)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp b7dfd91c-6180-48d0-832a-f6a5a032a686))
(fp_poly (pts
(xy -2.5 -0.7)
(xy -2.1 -0.7)
(xy -2.1 -0.5)
(xy -2.5 -0.5)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp bcfbc157-43ce-49f7-bd18-6a9e2f2f30a3))
(fp_poly (pts
(xy 2.1 -0.3)
(xy 2.5 -0.3)
(xy 2.5 -0.1)
(xy 2.1 -0.1)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp ce55d4e5-cb2b-4927-9979-4a7fc840f632))
(fp_poly (pts
(xy -2.5 -1.9)
(xy -2.1 -1.9)
(xy -2.1 -1.7)
(xy -2.5 -1.7)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp d23840a6-3c61-45ca-968a-bc57332fd7a4))
(fp_poly (pts
(xy 2.1 -1.5)
(xy 2.5 -1.5)
(xy 2.5 -1.3)
(xy 2.1 -1.3)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp dbbbcbf5-ed09-4c20-902c-70f108158aba))
(fp_poly (pts
(xy 1.3 2.1)
(xy 1.5 2.1)
(xy 1.5 2.5)
(xy 1.3 2.5)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp ed247857-b2a3-4b23-90ad-758c01ae5e8e))
(fp_poly (pts
(xy -0.7 -2.5)
(xy -0.5 -2.5)
(xy -0.5 -2.1)
(xy -0.7 -2.1)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp ee9a2826-2513-480e-a552-3d07af5bf8a5))
(fp_poly (pts
(xy -1.5 2.1)
(xy -1.3 2.1)
(xy -1.3 2.5)
(xy -1.5 2.5)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp f2044410-03ac-4994-9652-9e5f480320f0))
(fp_poly (pts
(xy -2.5 1.3)
(xy -2.1 1.3)
(xy -2.1 1.5)
(xy -2.5 1.5)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp f2c43eeb-76da-49f4-b8e6-cd74ebb3190b))
(fp_poly (pts
(xy 0.5 -2.5)
(xy 0.7 -2.5)
(xy 0.7 -2.1)
(xy 0.5 -2.1)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp f321809c-ab7a-4356-9b11-4c0d46c421ba))
(fp_poly (pts
(xy 0.9 2.1)
(xy 1.1 2.1)
(xy 1.1 2.5)
(xy 0.9 2.5)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp f5a3f95b-1a53-41b4-b208-bf168c9d9c6d))
(fp_poly (pts
(xy -1.1 2.1)
(xy -0.9 2.1)
(xy -0.9 2.5)
(xy -1.1 2.5)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp f7758f2a-e5c9-405c-960a-353b36eaf72d))
(fp_poly (pts
(xy -2.5 0.9)
(xy -2.1 0.9)
(xy -2.1 1.1)
(xy -2.5 1.1)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp f87a4771-a0a7-489f-9d85-4574dbea71cc))
(fp_poly (pts
(xy -2.5 -1.1)
(xy -2.1 -1.1)
(xy -2.1 -0.9)
(xy -2.5 -0.9)
) (layer "Eco2.User") (width 0.12) (fill solid) (tstamp f931f973-5615-451c-bb04-9a02aede6e6f))
(fp_line (start 2.5 2.5) (end -2.5 2.5) (layer "F.CrtYd") (width 0.12) (tstamp 009b0d62-e9ea-4825-9fdf-befd291c76ce))
(fp_line (start -2.5 2.5) (end -2.5 -2.5) (layer "F.CrtYd") (width 0.12) (tstamp 45836d49-cd5f-417d-b0f6-c8b43d196a36))
(fp_line (start 2.5 -2.5) (end 2.5 2.5) (layer "F.CrtYd") (width 0.12) (tstamp 62cbcc21-2cec-41ab-be06-499e1a78d7e7))
(fp_line (start -2.5 -2.5) (end 2.5 -2.5) (layer "F.CrtYd") (width 0.12) (tstamp c2211bf7-6ed0-4800-9f21-d6a078bedba2))
(pad "1" smd oval locked (at -2.499 -1.8) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "+1V8") (pinfunction "RX_V18") (pintype "input") (tstamp fe4068b9-89da-4c59-ba51-b5949772f5d8))
(pad "2" smd oval locked (at -2.499 -1.4) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "+1V8") (pinfunction "PLL_V18") (pintype "input") (tstamp 92574e8a-729f-48de-afcb-97b4f5e826f8))
(pad "3" smd oval locked (at -2.499 -1) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "+1V8") (pinfunction "ANA_V18") (pintype "input") (tstamp b6924901-677d-424a-a3f4-52c8dd1fa5f5))
(pad "4" smd oval locked (at -2.499 -0.6) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "Net-(C4-Pad2)") (pinfunction "LDO_OUT") (pintype "input") (tstamp 41ab46ed-40f5-461d-81aa-1f02dc069a49))
(pad "5" smd oval locked (at -2.499 -0.2) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "/XTAL2") (pinfunction "XTAL2") (pintype "input") (tstamp d8d71ad3-6fd1-4a98-9c1f-70c4fbf3d1d1))
(pad "6" smd oval locked (at -2.499 0.2) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "/XTAL1") (pinfunction "XTAL1") (pintype "input") (tstamp 105d44ff-63b9-4299-9078-473af583971a))
(pad "7" smd oval locked (at -2.499 0.6) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "Net-(C6-Pad2)") (pinfunction "VDD_ON") (pintype "input") (tstamp 341e67eb-d5e1-4cb7-9d11-5aa4ab832a2a))
(pad "8" smd oval locked (at -2.499 1) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "Net-(C7-Pad2)") (pinfunction "VDD_SW") (pintype "input") (tstamp 7043f61a-4f1e-4cab-9031-a6449e41a893))
(pad "9" smd oval locked (at -2.499 1.4) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "+1V8") (pinfunction "DIG_V18") (pintype "input") (tstamp de438bc3-2eba-4b9f-95e9-35ce5db157f6))
(pad "10" smd oval locked (at -2.499 1.8) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "EGND") (pintype "input") (tstamp 1053b01a-057e-4e79-a21c-42780a737ea9))
(pad "11" smd oval locked (at -1.8 2.499) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 34 "unconnected-(U1-Pad11)") (pinfunction "NC") (pintype "input+no_connect") (tstamp f565cf54-67ba-4424-8d47-087433645499))
(pad "12" smd oval locked (at -1.4 2.499) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 33 "unconnected-(U1-Pad12)") (pinfunction "NC") (pintype "input+no_connect") (tstamp dfba7148-cad3-4f40-9835-b1394bd30a2c))
(pad "13" smd oval locked (at -1 2.499) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 32 "unconnected-(U1-Pad13)") (pinfunction "NC") (pintype "input+no_connect") (tstamp 778b0e81-d70b-4705-ae45-b4c475c88dab))
(pad "14" smd oval locked (at -0.6 2.499) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 31 "unconnected-(U1-Pad14)") (pinfunction "NC") (pintype "input+no_connect") (tstamp 905b154b-e92b-469d-b2e2-340d67daddb7))
(pad "15" smd oval locked (at -0.2 2.499) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 30 "unconnected-(U1-Pad15)") (pinfunction "NC") (pintype "input+no_connect") (tstamp fab985e9-e679-4dd8-a59c-e3195d08506a))
(pad "16" smd oval locked (at 0.2 2.499) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 29 "unconnected-(U1-Pad16)") (pinfunction "NC") (pintype "input+no_connect") (tstamp 92d938cc-f8b1-437d-8914-3d97a0938f67))
(pad "17" smd oval locked (at 0.6 2.499) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 28 "/RST") (pinfunction "RSTN") (pintype "input") (tstamp d04eabf5-018b-4006-a739-ce16277681b7))
(pad "18" smd oval locked (at 1 2.499) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "LPCLK") (pintype "input") (tstamp 3382bf79-b686-4aeb-9419-c8ab591662bb))
(pad "19" smd oval locked (at 1.4 2.499) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "TEN") (pintype "input") (tstamp bc204c79-0619-4b16-889d-335bfdd71ce0))
(pad "20" smd oval locked (at 1.8 2.499) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 27 "unconnected-(U1-Pad20)") (pinfunction "NC") (pintype "input+no_connect") (tstamp 017667a9-f5de-49c7-af53-4f9af2f3a311))
(pad "21" smd oval locked (at 2.499 1.8) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "/SDIO_DATA2") (pinfunction "SDIO_DATA2") (pintype "input") (tstamp a1701438-3c8b-4b49-8695-36ec7f9ae4d2))
(pad "22" smd oval locked (at 2.499 1.4) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "+3V3") (pinfunction "VDD_IO") (pintype "input") (tstamp f8a90052-1a8b-4ce5-a1fd-87db944dceac))
(pad "23" smd oval locked (at 2.499 1) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "/SDIO_DATA1") (pinfunction "SDIO_DATA1") (pintype "input") (tstamp a04f8542-6c38-4d5c-bdbb-c8e0311a0936))
(pad "24" smd oval locked (at 2.499 0.6) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "/SDIO_DATA0") (pinfunction "SDIO_DATA0") (pintype "input") (tstamp 784e3230-2053-4bc9-a786-5ac2bd0df0f5))
(pad "25" smd oval locked (at 2.499 0.2) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "/SDIO_CLK") (pinfunction "SDIO_CLK") (pintype "input") (tstamp 21ca1c08-b8a3-4bdc-9356-70a4d86ee444))
(pad "26" smd oval locked (at 2.499 -0.2) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "/SDIO_CMD") (pinfunction "SDIO_CMD") (pintype "input") (tstamp b1731e91-7698-42fa-ad60-5c60fdd0e1fc))
(pad "27" smd oval locked (at 2.499 -0.6) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "/SDIO_DATA3") (pinfunction "SDO_DATA3") (pintype "input") (tstamp 08926936-9ea4-4894-afca-caca47f3c238))
(pad "28" smd oval locked (at 2.499 -1) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "/WIRQ") (pinfunction "WIRQ") (pintype "input") (tstamp a7c83b25-afbd-4974-8870-387db8f81a5c))
(pad "29" smd oval locked (at 2.499 -1.4) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "unconnected-(U1-Pad29)") (pinfunction "NC") (pintype "input+no_connect") (tstamp c7db4903-f95a-49f5-bcce-c52f0ca8defc))
(pad "30" smd oval locked (at 2.499 -1.8) (size 0.8 0.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "unconnected-(U1-Pad30)") (pinfunction "NC") (pintype "input+no_connect") (tstamp 2c10387c-3cac-4a7c-bbfb-95d69f41a890))
(pad "31" smd oval locked (at 1.8 -2.499) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 26 "unconnected-(U1-Pad31)") (pinfunction "NC") (pintype "input+no_connect") (tstamp 4c144ffa-02d0-42da-aef1-f5175cbde9c0))
(pad "32" smd oval locked (at 1.4 -2.499) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "unconnected-(U1-Pad32)") (pinfunction "NC") (pintype "input+no_connect") (tstamp 7d2422a2-6679-4b2f-b253-47eef0da2414))
(pad "33" smd oval locked (at 1 -2.499) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "unconnected-(U1-Pad33)") (pinfunction "NC") (pintype "input+no_connect") (tstamp 1ae3634a-f90f-4c6a-8ba7-b38f98d4ccb2))
(pad "34" smd oval locked (at 0.6 -2.499) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "unconnected-(U1-Pad34)") (pinfunction "NC") (pintype "input+no_connect") (tstamp ed612f6d-67c1-4198-976d-84139f8d99bc))
(pad "35" smd oval locked (at 0.2 -2.499) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "unconnected-(U1-Pad35)") (pinfunction "NC") (pintype "input+no_connect") (tstamp 80b9a57f-3326-43ca-b6ca-5e911992b3c4))
(pad "36" smd oval locked (at -0.2 -2.499) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "unconnected-(U1-Pad36)") (pinfunction "TOUTP") (pintype "input") (tstamp 897277a3-b7ce-4d18-8c5f-1c984a246298))
(pad "37" smd oval locked (at -0.6 -2.499) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "unconnected-(U1-Pad37)") (pinfunction "TOUTN") (pintype "input") (tstamp 1d9dc91c-3457-4ca5-8e42-43be60ae0831))
(pad "38" smd oval locked (at -1 -2.499) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "+1V8") (pinfunction "YX_V18") (pintype "input") (tstamp e6bf257d-5112-423c-b70a-adf8446f29da))
(pad "39" smd oval locked (at -1.4 -2.499) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "+3V3") (pinfunction "TX_V33") (pintype "input") (tstamp f1c2e9b0-6f9f-485b-b482-d408df476d0f))
(pad "40" smd oval locked (at -1.8 -2.499) (size 0.2 0.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "/ANT") (pinfunction "ANT") (pintype "input") (tstamp 2a4f1c24-6486-4fd8-8092-72bb07a81274))
(pad "41" smd rect locked (at 0 0 270) (size 3.4 3.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "EP") (pintype "input") (tstamp 51f5536d-48d2-4807-be44-93f427952b0e))
(model "${KIPRJMOD}/kicad_lceda.3dshapes/QFN-40_L5.0-W5.0-H0.9-P0.4-TL-EP.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KIPRJMOD}/kicad_lceda.3dshapes/QFN-40_L5.0-W5.0-H0.9-P0.4-TL-EP.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")
(tedit 5F68FEEE) (tstamp 2d16cb66-2809-411d-912c-d3db0f48bd04)
(at 125.476 79.248)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "XR819.kicad_sch")
(property "Sheetname" "")
(path "/3d8ec6aa-c026-4281-9184-842b309845f8")
(attr smd)
(fp_text reference "C8" (at -0.127 -2.159 unlocked) (layer "F.SilkS")
(effects (font (size 0.762 0.762) (thickness 0.127)))
(tstamp 6742a066-6a5f-4185-90ae-b7fe8c6eda52)
)
(fp_text value "4.7uF" (at 0 1.16 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e3c3d042-f4c5-4fb1-a6b8-52aa1c14cc0e)
)
(fp_text user "${REFERENCE}" (at 0 0 unlocked) (layer "F.SilkS") hide
(effects (font (size 0.762 0.762) (thickness 0.127)))
(tstamp 2d4d8c24-5b38-445b-8733-2a81ba21d33e)
)
(fp_line (start -0.107836 0.36) (end 0.107836 0.36) (layer "F.SilkS") (width 0.15) (tstamp a10b569c-d672-485d-9c05-2cb4795deeca))
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36) (layer "F.SilkS") (width 0.15) (tstamp db902262-2864-4997-aeff-8abaa132424a))
(fp_line (start 0.91 -0.46) (end 0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 64256223-cf3b-4a78-97d3-f1dca769968f))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 7e498af5-a41b-4f8f-8a13-10c00a9160aa))
(fp_line (start -0.91 0.46) (end -0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp b21625e3-a75b-41d7-9f13-4c0e12ba16cb))
(fp_line (start 0.91 0.46) (end -0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp df93f76b-86da-45ae-87e2-4b691af12b00))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 2151a218-87ec-4d43-b5fa-736242c52602))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 4c8704fa-310a-4c01-8dc1-2b7e2727fea0))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 6aa022fb-09ce-49d9-86b1-c73b3ee817e2))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp a6dc1180-19c4-432b-af49-fc9179bb4519))
(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 8 "+3V3") (pintype "passive") (tstamp 5fe7a4eb-9f04-4df6-a1fa-36c071e280d7))
(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 1 "GND") (pintype "passive") (tstamp a6891c49-3648-41ce-811e-fccb4c4653af))
(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")
(tedit 5F68FEEE) (tstamp 2e6b1f7e-e4c3-43a1-ae90-c85aa40696d5)
(at 123.19 80.3165)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "XR819.kicad_sch")
(property "Sheetname" "")
(path "/563e54e1-c7f0-474e-94d7-7ba5734bac61")
(attr smd)
(fp_text reference "C12" (at 0 0.8365 unlocked) (layer "F.SilkS")
(effects (font (size 0.762 0.762) (thickness 0.127)))
(tstamp f030cfe8-f922-4a12-a58d-2ff6e60a9bb9)
)
(fp_text value "NC" (at 0 1.16 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6fd21292-6577-40e1-bbda-18906b5e9f6f)
)
(fp_text user "${REFERENCE}" (at 0 0 unlocked) (layer "F.SilkS") hide
(effects (font (size 0.762 0.762) (thickness 0.127)))
(tstamp 046ca2d8-3ca1-4c64-8090-c45e9adcf30e)
)
(fp_line (start -0.107836 0.36) (end 0.107836 0.36) (layer "F.SilkS") (width 0.15) (tstamp a4541b62-7a39-4707-9c6f-80dce1be9cee))
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36) (layer "F.SilkS") (width 0.15) (tstamp b9c0c276-e6f1-47dd-b072-0f92904248ca))
(fp_line (start -0.91 0.46) (end -0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 87a0ffb1-5477-4b20-a3ac-fef5af129a33))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 89bd1fdd-6a91-474e-8495-7a2ba7eb6260))
(fp_line (start 0.91 0.46) (end -0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 8b022692-69b7-4bd6-bf38-57edecf356fa))
(fp_line (start 0.91 -0.46) (end 0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp c62adb8b-b306-48da-b0ae-f6a287e54f62))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 0f62e92c-dce6-45dc-a560-b9db10f66ff3))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 2938bf2d-2d32-4cb0-9d4d-563ea28ffffa))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 53fda1fb-12bd-4536-80e1-aab5c0e3fc58))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 929c74c0-78bf-4efe-a778-fa328e951865))
(pad "1" smd roundrect (at -0.48 0) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 36696ac6-2db1-4b52-ae3d-9f3c89d2042f))
(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 9 "/ANT") (pintype "passive") (tstamp 460147d8-e4b6-4910-88e9-07d1ddd6c2df))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.00mm:PinHeader_1x06_P2.00mm_Vertical" (layer "F.Cu")
(tedit 59FED667) (tstamp 37c7cf75-124a-4e2d-bed6-5b83f924d40b)
(at 130.81 74.756)
(descr "Through hole straight pin header, 1x06, 2.00mm pitch, single row")
(tags "Through hole pin header THT 1x06 2.00mm single row")
(property "Sheetfile" "XR819.kicad_sch")
(property "Sheetname" "")
(path "/b965ba76-0868-43cc-9403-6606d2f08bba")
(attr through_hole)
(fp_text reference "J2" (at 0 -2.06 unlocked) (layer "F.SilkS")
(effects (font (size 0.762 0.762) (thickness 0.127)))
(tstamp 7fde1a5e-0f57-4c76-b6ae-f79bf2566f31)
)
(fp_text value "Conn_01x06" (at 4.4196 12.2136 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3c035c50-b631-4268-9f85-2cc5c489630c)
)
(fp_text user "${REFERENCE}" (at 0 5 90 unlocked) (layer "F.SilkS") hide
(effects (font (size 0.762 0.762) (thickness 0.127)))
(tstamp 6b781faf-1826-4f47-9251-61950d1fd39a)
)
(fp_line (start -1.06 11.06) (end 1.06 11.06) (layer "F.SilkS") (width 0.15) (tstamp 03728d2b-f537-477b-bd2e-69a6eec428cb))
(fp_line (start -1.06 1) (end -1.06 11.06) (layer "F.SilkS") (width 0.15) (tstamp 4fe0abfb-e66a-42ef-a9f1-7165cd655847))
(fp_line (start 1.06 1) (end 1.06 11.06) (layer "F.SilkS") (width 0.15) (tstamp 574602ee-0008-46e2-a148-bdfec2e83b76))
(fp_line (start -1.06 1) (end 1.06 1) (layer "F.SilkS") (width 0.15) (tstamp 727c8cf0-e700-4d7c-bd4a-23dee9846b4e))
(fp_line (start -1.06 -1.06) (end 0 -1.06) (layer "F.SilkS") (width 0.15) (tstamp a7643931-b93f-4d60-b83a-91b40bd72920))
(fp_line (start -1.06 0) (end -1.06 -1.06) (layer "F.SilkS") (width 0.15) (tstamp e6946372-c096-43f9-b205-ab57db20a6b5))
(fp_line (start 1.5 -1.5) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 25741f5a-16fc-44eb-87a3-c21b70107ac1))
(fp_line (start 1.5 11.5) (end 1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 78474c30-2439-4435-934e-3b4f8c229462))
(fp_line (start -1.5 11.5) (end 1.5 11.5) (layer "F.CrtYd") (width 0.05) (tstamp 8d5e5d6f-0a3d-4cc1-8ca2-99117c4046f7))
(fp_line (start -1.5 -1.5) (end -1.5 11.5) (layer "F.CrtYd") (width 0.05) (tstamp a091ce5d-4794-4521-8a1a-5b035f3f63f9))
(fp_line (start 1 -1) (end 1 11) (layer "F.Fab") (width 0.1) (tstamp 563d2273-c0de-40b3-8aa8-c0b27171a348))
(fp_line (start -1 -0.5) (end -0.5 -1) (layer "F.Fab") (width 0.1) (tstamp 59eec92d-f394-4b57-bce8-25dd2de46d43))
(fp_line (start -1 11) (end -1 -0.5) (layer "F.Fab") (width 0.1) (tstamp 71ac0761-e35f-4982-a617-c67ffde7418c))
(fp_line (start -0.5 -1) (end 1 -1) (layer "F.Fab") (width 0.1) (tstamp c55c33f1-36be-43d9-8c30-842eb4f3b20d))
(fp_line (start 1 11) (end -1 11) (layer "F.Fab") (width 0.1) (tstamp c84baec6-a6ed-44cd-b8dd-e94fb4139b0c))
(pad "1" thru_hole rect (at 0 0) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "+1V8") (pinfunction "Pin_1") (pintype "passive") (tstamp a3f7ba3d-9d1a-4e52-b277-8f98f6da5bd9))
(pad "2" thru_hole oval (at 0 2) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 16 "/SDIO_DATA3") (pinfunction "Pin_2") (pintype "passive") (tstamp aa109ab9-39e9-4991-b350-850fa897cae2))
(pad "3" thru_hole oval (at 0 4) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 17 "/WIRQ") (pinfunction "Pin_3") (pintype "passive") (tstamp a55b8e33-fd8a-4b53-8a36-b65012f88038))
(pad "4" thru_hole oval (at 0 6) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 36 "unconnected-(J2-Pad4)") (pinfunction "Pin_4") (pintype "passive") (tstamp 6396b30d-54c3-4379-a6fb-622f20e8fb4d))
(pad "5" thru_hole oval (at 0 8) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 15 "/SDIO_CMD") (pinfunction "Pin_5") (pintype "passive") (tstamp 8ad979e3-ab4b-4c91-8ec4-e34515f5fdf5))
(pad "6" thru_hole oval (at 0 10) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 14 "/SDIO_CLK") (pinfunction "Pin_6") (pintype "passive") (tstamp b16fc5fc-6d41-4793-ab25-347d0d5fa5a0))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.00mm.3dshapes/PinHeader_1x06_P2.00mm_Vertical.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")
(tedit 5F68FEEE) (tstamp 414f80f7-b2d5-43c3-a018-819efe44fe30)
(at 127.48 80.264 180)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "XR819.kicad_sch")
(property "Sheetname" "")
(path "/38e3081e-a3c1-4de9-b2e9-dd6b64bd9d57")
(attr smd)
(fp_text reference "C10" (at 0.099 1.143 unlocked) (layer "F.SilkS")
(effects (font (size 0.762 0.762) (thickness 0.127)))
(tstamp e0b36e60-bb2b-489c-a764-1b81e551ce62)
)
(fp_text value "22pF" (at 0 1.16 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f47374c3-cb2a-4769-880f-830c9b19222e)
)
(fp_text user "${REFERENCE}" (at 0 0 unlocked) (layer "F.SilkS") hide
(effects (font (size 0.762 0.762) (thickness 0.127)))
(tstamp bc1d5740-b0c7-4566-95b0-470ac47a1fb3)
)
(fp_line (start -0.107836 0.36) (end 0.107836 0.36) (layer "F.SilkS") (width 0.15) (tstamp a67dbe3b-ec7d-4ea5-b0e5-715c5263d8da))
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36) (layer "F.SilkS") (width 0.15) (tstamp eb1b2aa2-a3cc-4a96-87ec-70fcae365f0f))
(fp_line (start 0.91 -0.46) (end 0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 3c66e6e2-f12d-4b23-910e-e478d272dfd5))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 6b69fc79-c78f-4df1-9a05-c51d4173705f))
(fp_line (start 0.91 0.46) (end -0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 9c8eae28-a7c3-4e6a-bd81-98cf70031070))
(fp_line (start -0.91 0.46) (end -0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp d8370835-89ad-4b62-9f40-d0c10470788a))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 0fc912fd-5036-4a55-b598-a9af40810824))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 2a6ee718-8cdf-4fa6-be7c-8fe885d98fd7))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 55cff608-ab38-48d9-ac09-2d0a877ceca1))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp f2392fe0-54af-4e02-8793-9ba2471944b5))
(pad "1" smd roundrect (at -0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp a419542a-0c78-421e-9ac7-81d3afba6186))
(pad "2" smd roundrect (at 0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+1V8") (pintype "passive") (tstamp c480dba7-51ff-4a4f-9251-e48b2784c64a))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23-5" (layer "F.Cu")
(tedit 5F6F9B37) (tstamp 432d0ad5-6453-4dc4-8db5-ca3f3f0ca0db)
(at 118.11 76.8295 -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" "XR819.kicad_sch")
(property "Sheetname" "")
(path "/3c0c2359-cafd-489e-ba35-d6e87992af55")
(attr smd)
(fp_text reference "U2" (at 0 -0.127 unlocked) (layer "F.SilkS")
(effects (font (size 0.762 0.762) (thickness 0.127)))
(tstamp 65c69df0-e2ff-41fa-a602-e13214c57638)
)
(fp_text value "NC" (at 0 2.4 90 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1e2c927e-d064-48c5-b070-59def2480ba0)
)
(fp_text user "${REFERENCE}" (at 0 0 90 unlocked) (layer "F.SilkS") hide
(effects (font (size 0.762 0.762) (thickness 0.127)))
(tstamp d3955578-984d-49ff-86b7-15cb925e6913)
)
(fp_line (start 0 -1.56) (end 0.8 -1.56) (layer "F.SilkS") (width 0.15) (tstamp 322039e7-1a1e-4b93-86f6-1e3e6ae9efea))
(fp_line (start 0 1.56) (end -0.8 1.56) (layer "F.SilkS") (width 0.15) (tstamp 3e358d57-c4c0-46ac-9996-cdc5e26557fa))
(fp_line (start 0 -1.56) (end -1.8 -1.56) (layer "F.SilkS") (width 0.15) (tstamp 5b2ba27d-61a7-43cb-8251-32333e25a49d))
(fp_line (start 0 1.56) (end 0.8 1.56) (layer "F.SilkS") (width 0.15) (tstamp c9df2da8-610a-4d51-a46b-296c71ec2889))
(fp_line (start -2.05 1.7) (end 2.05 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 1a6ab929-3145-4163-9422-349a02d9a89b))
(fp_line (start 2.05 1.7) (end 2.05 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 373991a8-0ba9-4b0b-b6f3-635d09ab1c5d))
(fp_line (start -2.05 -1.7) (end -2.05 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 471bac00-253d-47d3-9b64-12d443997da4))
(fp_line (start 2.05 -1.7) (end -2.05 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp f6d63f26-74db-413e-b91d-dc4856fa089d))
(fp_line (start -0.8 1.45) (end -0.8 -1.05) (layer "F.Fab") (width 0.1) (tstamp 143dd9f9-62fc-434d-8f1c-9119a2979368))
(fp_line (start 0.8 1.45) (end -0.8 1.45) (layer "F.Fab") (width 0.1) (tstamp 291f94f0-e338-4034-a6ca-b405e74fad0f))
(fp_line (start -0.8 -1.05) (end -0.4 -1.45) (layer "F.Fab") (width 0.1) (tstamp 50ab98b5-4b29-415b-b2b6-039fa814c77e))
(fp_line (start -0.4 -1.45) (end 0.8 -1.45) (layer "F.Fab") (width 0.1) (tstamp 59ff9167-f60a-49b8-9ce6-672a0e6fea9f))
(fp_line (start 0.8 -1.45) (end 0.8 1.45) (layer "F.Fab") (width 0.1) (tstamp e3765f67-8897-4642-9bb9-a6ac739868b9))
(pad "1" smd roundrect (at -1.1375 -0.95 270) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "+3V3") (pinfunction "IN") (pintype "power_in") (tstamp d6a96943-e4cb-4893-8b86-fabc4b236324))
(pad "2" smd roundrect (at -1.1375 0 270) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 72fba40b-cb24-4c5a-8e76-44deeb2760c7))
(pad "3" smd roundrect (at -1.1375 0.95 270) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "+3V3") (pinfunction "EN") (pintype "input") (tstamp 66efb0ee-0ceb-4a5f-86f2-829c3694a867))
(pad "4" smd roundrect (at 1.1375 0.95 270) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 35 "Net-(C15-Pad2)") (pinfunction "BP") (pintype "input") (tstamp cad07378-ff8a-47c8-83a2-2705453c78b3))
(pad "5" smd roundrect (at 1.1375 -0.95 270) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+1V8") (pinfunction "OUT") (pintype "power_out") (tstamp 28c6764f-ca50-4ca0-9d12-cac9eb706296))
(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 "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 46491a9d-8b3d-4c74-b09a-70c876f162e5)
(at 120.424 86.868 180)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "XR819.kicad_sch")
(property "Sheetname" "")
(path "/bbd59462-1b35-4863-8cf4-92231f4f37b4")
(attr smd)
(fp_text reference "C2" (at 1.7044 -0.0508 unlocked) (layer "F.SilkS")
(effects (font (size 0.762 0.762) (thickness 0.127)))
(tstamp 70cda344-73be-4466-a097-1fd56f3b19e2)
)
(fp_text value "10pF" (at 0 1.16 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 64d1d0fe-4fd6-4a55-8314-56a651e1ccab)
)
(fp_text user "${REFERENCE}" (at 0 0 unlocked) (layer "F.SilkS") hide
(effects (font (size 0.762 0.762) (thickness 0.127)))
(tstamp e77c17df-b20e-4e7d-b937-f281c75a0014)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36) (layer "F.SilkS") (width 0.15) (tstamp 0e592cd4-1950-44ef-9727-8e526f4c4e12))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36) (layer "F.SilkS") (width 0.15) (tstamp a150f0c9-1a23-4200-b489-18791f6d5ce5))
(fp_line (start 0.91 0.46) (end -0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 11c7c8d4-4c4b-4330-bb59-1eec2e98b255))
(fp_line (start 0.91 -0.46) (end 0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 300aa512-2f66-4c26-a530-50c091b3a099))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 34ddb753-e57c-4ca8-a67b-d7cdf62cae93))
(fp_line (start -0.91 0.46) (end -0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 5bbde4f9-fcdb-4d27-a2d6-3847fcdd87ba))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 09c6ca89-863f-42d4-867e-9a769c316610))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 28b01cd2-da3a-46ec-8825-b0f31a0b8987))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp a323243c-4cab-4689-aa04-1e663cf86177))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp a49e8613-3cd2-48ed-8977-6bb5023f7722))
(pad "1" smd roundrect (at -0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp e80b0e91-f15f-4e36-9a9c-b2cfd5a01d2a))
(pad "2" smd roundrect (at 0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "/XTAL1") (pintype "passive") (tstamp 2295a793-dfca-4b86-a3e5-abf1834e2790))
(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")
(tedit 5F68FEEE) (tstamp 4f4bd227-fa4c-47f4-ad05-ee16ad4c58c2)
(at 120.904 80.01 180)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "XR819.kicad_sch")
(property "Sheetname" "")
(path "/ede28e5e-4ae9-4f41-bfa9-dc3b4df323f1")
(attr smd)
(fp_text reference "C5" (at 1.27 0.254 90 unlocked) (layer "F.SilkS")
(effects (font (size 0.762 0.762) (thickness 0.127)))
(tstamp b24c67bf-acb7-486e-9d7b-fb513b8c7fc6)
)
(fp_text value "4.7uF" (at 0 1.16 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8ef1307e-4e79-474d-a93c-be38f714571c)
)
(fp_text user "${REFERENCE}" (at 0 0 unlocked) (layer "F.SilkS") hide
(effects (font (size 0.762 0.762) (thickness 0.127)))
(tstamp 003974b6-cb8f-491b-a226-fc7891eb9a62)
)
(fp_line (start -0.107836 0.36) (end 0.107836 0.36) (layer "F.SilkS") (width 0.15) (tstamp 7c0866b5-b180-4be6-9e62-43f5b191d6d4))
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36) (layer "F.SilkS") (width 0.15) (tstamp d1817a81-d444-4cd9-95f6-174ec9e2a60e))
(fp_line (start 0.91 0.46) (end -0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 2522909e-6f5c-4f36-9c3a-869dca14e50f))
(fp_line (start 0.91 -0.46) (end 0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 3a45fb3b-7899-44f2-a78a-f676359df67b))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp a647641f-bf16-4177-91ee-b01f347ff91c))
(fp_line (start -0.91 0.46) (end -0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp c81031ca-cd56-4ea3-b0db-833cbbdd7b2e))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 81b95d0d-8967-4ed1-8d40-39925d015ae8))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 83a363ef-2850-4113-853b-2966af02d72d))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp e07c4b69-e0b4-4217-9b28-38d44f166b31))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp fd4dd248-3e78-4985-a4fc-58bc05b74cbf))
(pad "1" smd roundrect (at -0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "+1V8") (pintype "passive") (tstamp 122b5574-57fe-4d2d-80bf-3cabd28e7128))
(pad "2" smd roundrect (at 0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp e42fd0d4-9927-4308-81d9-4cca814c8ea9))
(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 "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 5206328f-de7d-41ba-bad8-f1768b7701cb)
(at 123.698 78.7925 90)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "XR819.kicad_sch")
(property "Sheetname" "")
(path "/529728a6-f15f-4ca3-b43c-9d81254ee962")
(attr smd)
(fp_text reference "R2" (at 0 -1.17 90 unlocked) (layer "F.SilkS")
(effects (font (size 0.762 0.762) (thickness 0.127)))
(tstamp 82907d2e-4560-49c2-9cfc-01b127317195)
)
(fp_text value "0R" (at 0 1.17 90 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ab34b936-8ca5-4be1-8599-504cb86609fc)
)
(fp_text user "${REFERENCE}" (at 0 0 90 unlocked) (layer "F.SilkS") hide
(effects (font (size 0.762 0.762) (thickness 0.127)))
(tstamp 71aa3829-956e-4ff9-af3f-b06e50ab2b5a)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.15) (tstamp 41524d81-a7f7-45af-a8c6-15609b68d1fd))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.15) (tstamp bcacf97a-a49b-480c-96ed-a857f56faeb2))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 188eabba-12a3-47b7-9be1-03f0c5a948eb))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp a311f3c6-42e3-4584-9725-4a62ff91b6e3))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp c38f28b6-5bd4-4cf9-b273-1e7b230f6b42))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp d5c86a84-6c8b-48b5-b583-2fe7052421ab))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 0a79db37-f1d9-40b1-a24d-8bdfb8f637e2))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 315d2b15-cfe6-4672-b3ad-24773f3df12c))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 5a319d05-1a85-43fe-a179-ebcee7212a03))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 80ace02d-cb21-4f08-bc25-572a9e56ff99))
(pad "1" smd roundrect (at -0.51 0 90) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "/ANT") (pintype "passive") (tstamp 2f33286e-7553-4442-acf0-23c61fcd6ab0))
(pad "2" smd roundrect (at 0.51 0 90) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "Net-(C13-Pad2)") (pintype "passive") (tstamp 2f5467a7-bd49-433c-92f2-60a842e66f7b))
(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")
(tedit 5F68FEEE) (tstamp 67b37027-dc9c-420f-a0cc-11fc7d771704)
(at 118.364 81.788 180)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "XR819.kicad_sch")
(property "Sheetname" "")
(path "/bc15c3d2-b268-4dd4-91aa-46e741a20e6f")
(attr smd)
(fp_text reference "C15" (at 1.651 -0.762 90 unlocked) (layer "F.SilkS")
(effects (font (size 0.762 0.762) (thickness 0.127)))
(tstamp 1dd9f732-7dab-4397-9208-7babfb093483)
)
(fp_text value "NC" (at 0 1.16 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 03d7575a-a523-4566-8ba3-5c41edc37a93)
)
(fp_text user "${REFERENCE}" (at 0 0 unlocked) (layer "F.SilkS") hide
(effects (font (size 0.762 0.762) (thickness 0.127)))
(tstamp 4d9072c5-71bc-4bdc-bc8f-8872f3e83e89)
)
(fp_line (start -0.107836 0.36) (end 0.107836 0.36) (layer "F.SilkS") (width 0.15) (tstamp 02bced4b-02ed-4aec-b0ba-10310e4c8990))
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36) (layer "F.SilkS") (width 0.15) (tstamp d75f1129-bee5-4ab7-81cd-7c7bcd3583a9))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 440980d6-e5d4-433e-a45b-fa8f80db7e14))
(fp_line (start 0.91 0.46) (end -0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp 496713b2-a642-4344-aa90-9c91c58a45af))
(fp_line (start -0.91 0.46) (end -0.91 -0.46) (layer "F.CrtYd") (width 0.05) (tstamp 4e2d44c4-2606-477f-bb48-d145485be406))
(fp_line (start 0.91 -0.46) (end 0.91 0.46) (layer "F.CrtYd") (width 0.05) (tstamp b570c828-a6a5-4986-9e40-abe9718ea43a))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 379a17bf-cca3-4fd5-86d1-59affdab579e))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 502904a0-e31f-4519-80db-66f203eb6a66))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp a60f84fb-ce17-45ba-8850-f2b2fab1eb83))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp e159a268-c157-4ae0-ac3e-38a0a150e83d))
(pad "1" smd roundrect (at -0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 4611acef-5151-48fe-83d6-67dc7dc8dd35))
(pad "2" smd roundrect (at 0.48 0 180) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 35 "Net-(C15-Pad2)") (pintype "passive") (tstamp 0ace8d4b-1205-4a3a-a6bf-b310b95b355d))
(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")
(tedit 5F68FEEE) (tstamp 7255cbd1-8d38-4545-be9a-7fc5488ef942)
(at 120.396 87.884)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "XR819.kicad_sch")
(property "Sheetname" "")
(path "/fd8bc94f-f0ff-4111-a229-9a1b659b452e")
(attr smd)
(fp_text reference "C6" (at -1.6764 0.1016 unlocked) (layer "F.SilkS")