-
Notifications
You must be signed in to change notification settings - Fork 0
/
CoralWave.kicad_pcb
5474 lines (5421 loc) · 296 KB
/
CoralWave.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(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)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(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 "Outputs/Fab/")
)
)
(net 0 "")
(net 1 "Net-(U1-DCOUPL)")
(net 2 "Earth")
(net 3 "Net-(U1-XOSC_Q1)")
(net 4 "Net-(U1-XOSC_Q2)")
(net 5 "Net-(U1-RF_N)")
(net 6 "Net-(C5-Pad1)")
(net 7 "Net-(C5-Pad2)")
(net 8 "Net-(C6-Pad2)")
(net 9 "Net-(U1-RF_P)")
(net 10 "Net-(C7-Pad2)")
(net 11 "Net-(C8-Pad2)")
(net 12 "Net-(U1-RBIAS)")
(net 13 "SCLK")
(net 14 "GDO2")
(net 15 "GDO0")
(net 16 "unconnected-(Y1-NC_1-Pad2)")
(net 17 "unconnected-(Y1-NC_2-Pad4)")
(net 18 "+3V3")
(net 19 "Net-(IC1-EN)")
(net 20 "Net-(IC2-FB)")
(net 21 "+5V")
(net 22 "USB_DP")
(net 23 "USB_DN")
(net 24 "Net-(D3-A1)")
(net 25 "MOSI")
(net 26 "Net-(IC1-IO8)")
(net 27 "unconnected-(IC1-IO9-Pad8)")
(net 28 "CSN")
(net 29 "unconnected-(IC1-GPIO20{slash}U0RXD-Pad11)")
(net 30 "unconnected-(IC1-GPIO21{slash}U0TXD-Pad12)")
(net 31 "unconnected-(IC1-IO3-Pad15)")
(net 32 "MISO")
(net 33 "unconnected-(IC1-GPIO1{slash}XTALN-Pad17)")
(net 34 "unconnected-(IC1-GPIO0{slash}XTALP-Pad18)")
(net 35 "Net-(IC2-SW)")
(net 36 "Net-(J2-CC1)")
(net 37 "unconnected-(J2-SBU1-PadA8)")
(net 38 "Net-(J2-CC2)")
(net 39 "unconnected-(J2-SBU2-PadB8)")
(footprint "PCBLib:NX3225GA16000MSTDCRG1" (layer "F.Cu")
(tstamp 05fd2037-17fc-4741-8048-99446ce5dcf6)
(at 133.7 64.66)
(descr "NX3225GA-16.000M-STD-CRG-1-2")
(tags "Crystal or Oscillator")
(property "Description" "Crystals CRYSTAL 26MHZ 10PF SMD")
(property "Height" "0.9")
(property "Manufacturer_Name" "NDK")
(property "Manufacturer_Part_Number" "NX3225GA-26.000MHZ-EXS00A-CG01972")
(property "Mouser Part Number" "344-NX3225GA26MHZEXS")
(property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/NDK/NX3225GA-26.000MHZ-EXS00A-CG01972?qs=55YtniHzbhDzlu7sK5skMA%3D%3D")
(property "Sheetfile" "CoralWave.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "CRYSTAL 26MHZ 10PF SMD")
(path "/68210567-6709-43e5-965e-037d573d972a")
(attr smd)
(fp_text reference "Y1" (at 0 3.34) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.153)))
(tstamp bffea4eb-4210-4cc3-b4e8-db2981d18b83)
)
(fp_text value "NX3225GA-26MHZ" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp 599c72d7-da4b-4f6a-a0e3-c3305805533d)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp 5c56e100-0ae8-4b14-b47f-247c7653347a)
)
(fp_line (start -1.2 1.9) (end -1.2 1.9)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 94d9caf2-49fe-4afe-bb5b-74d46c2b1264))
(fp_line (start -1 1.9) (end -1 1.9)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 1b1f18c6-20eb-4a4d-bb62-67de94daa905))
(fp_arc (start -1.2 1.9) (mid -1.1 1.8) (end -1 1.9)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp f22cc149-2e78-4dc1-b238-f429083bc076))
(fp_arc (start -1 1.9) (mid -1.1 2) (end -1.2 1.9)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp e1d249ee-f55d-4196-bde9-f6bf96462e8d))
(fp_line (start -2.8 -2.4) (end 2.8 -2.4)
(stroke (width 0.1) (type solid)) (layer "F.CrtYd") (tstamp 32c46c88-a31f-4e52-ae7d-62fc2f614528))
(fp_line (start -2.8 2.4) (end -2.8 -2.4)
(stroke (width 0.1) (type solid)) (layer "F.CrtYd") (tstamp f002e17f-48eb-4311-b499-72942d7bd773))
(fp_line (start 2.8 -2.4) (end 2.8 2.4)
(stroke (width 0.1) (type solid)) (layer "F.CrtYd") (tstamp 3e62fc45-83e9-4387-aa0d-81a58056f01f))
(fp_line (start 2.8 2.4) (end -2.8 2.4)
(stroke (width 0.1) (type solid)) (layer "F.CrtYd") (tstamp b6702430-4660-4e74-9ead-9ccd73ead120))
(fp_line (start -1.6 -1.25) (end 1.6 -1.25)
(stroke (width 0.2) (type solid)) (layer "F.Fab") (tstamp 50cea28f-4550-496c-ab04-622e97f85e48))
(fp_line (start -1.6 1.25) (end -1.6 -1.25)
(stroke (width 0.2) (type solid)) (layer "F.Fab") (tstamp fe73978d-32ce-453d-8ba6-6afd268295d3))
(fp_line (start 1.6 -1.25) (end 1.6 1.25)
(stroke (width 0.2) (type solid)) (layer "F.Fab") (tstamp d8ebdd48-fe12-47b0-a440-cb4d99547766))
(fp_line (start 1.6 1.25) (end -1.6 1.25)
(stroke (width 0.2) (type solid)) (layer "F.Fab") (tstamp 9e8ee85b-d20d-4553-a64c-10c40f4b5e4b))
(pad "1" smd rect (at -1.1 0.8 90) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "Net-(U1-XOSC_Q1)") (pinfunction "X'TAL_1") (pintype "passive") (tstamp 40824cf0-6956-413f-8640-144ab3cbee80))
(pad "2" smd rect (at 1.1 0.8 90) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "unconnected-(Y1-NC_1-Pad2)") (pinfunction "NC_1") (pintype "passive+no_connect") (tstamp e0d4d41b-031e-4741-b3aa-9338994fb5b4))
(pad "3" smd rect (at 1.1 -0.8 90) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "Net-(U1-XOSC_Q2)") (pinfunction "X'TAL_2") (pintype "passive") (tstamp e849bb36-2d9e-44ea-9f8c-874932513168))
(pad "4" smd rect (at -1.1 -0.8 90) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "unconnected-(Y1-NC_2-Pad4)") (pinfunction "NC_2") (pintype "passive+no_connect") (tstamp d8ee9c8f-4837-48a5-ba98-6ed35abf771c))
(model "${KIPRJMOD}/PCBLib/3d/NX3225GA16000MSTDCRG1.stp"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "PCBLib:Cap_Murata_GRM_0402" (layer "F.Cu")
(tstamp 0a2fb5c8-4f3e-4477-ad76-ce8b3cdad08b)
(at 115.23 67.6)
(descr "GRM15_0.10 L=1.0mm W=0.5mm T=0.5mm")
(tags "Capacitor")
(property "Sheetfile" "CoralWave.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/c3081bf2-c130-4790-8daf-fdb879e1cf06")
(attr smd)
(fp_text reference "C16" (at 2.39 0.218) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.153)))
(tstamp 5d0e037d-da3c-49a7-a18e-a37fdd4e46fb)
)
(fp_text value "100nF" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp 33c80649-744d-454a-99b0-4b31418aa491)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp ca9f108e-fe4a-4f98-a4f2-5181cc65d914)
)
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5ebe88b6-7bed-43a4-a9fe-727262282129))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 410e3e4e-f2e0-4922-a092-f38d17e89916))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2f4a8ea6-415d-4c3c-b77a-911a7b2eb921))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp db3bf91d-c021-4fd5-8274-a53e61c6b1c7))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp be50bb5c-e335-4f43-82b1-432879cd1537))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3c04afac-4154-4af4-b349-e2b85eb1ec2e))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e2938279-9f4d-4a16-9495-658deaec856d))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ad2b086e-2189-476c-a846-25dd0051ce8c))
(pad "1" smd rect (at -0.46 0) (size 0.6 0.62) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "Earth") (pintype "passive") (tstamp 28770446-a617-422d-acc1-01935aef297f))
(pad "2" smd rect (at 0.46 0) (size 0.6 0.62) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "+3V3") (pintype "passive") (tstamp ef982875-641d-4cfc-99b6-2167bcd152aa))
(model "${KIPRJMOD}/PCBLib/3d/Cap_Murata_GRM_0402.stp"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "PCBLib:Cap_Murata_GRM_0402" (layer "F.Cu")
(tstamp 0f48aa34-1656-4ffa-84d8-59247f34f23d)
(at 130.34 65.92 -90)
(descr "GRM15_0.10 L=1.0mm W=0.5mm T=0.5mm")
(tags "Capacitor")
(property "Sheetfile" "CoralWave.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/f9615164-2723-4fc5-8772-cfd898827e9f")
(attr smd)
(fp_text reference "C2" (at 2.152 0 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.153)))
(tstamp 0393725d-7782-4701-868c-07e75d9ca7b1)
)
(fp_text value "27pF" (at 0 0 -90) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp 41622a95-7a62-4ade-921b-41cff3c5837e)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp 1cab4d47-7522-4567-b1a3-e365fe219fd3)
)
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 60bb3145-9689-4d2c-a75a-ce9d91132897))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f82a13ab-edb1-43df-85d4-f386548fb2b0))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0220d7cf-fc39-47a5-ac5d-72daec0789bf))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6c32b7ba-c3da-44b7-832b-60cdaf820cc9))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 17807c09-bf5f-4e44-97bd-9d74a4beb0af))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 17610e08-ee04-4ce2-a04d-162f5095f89b))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6e61c887-38a8-451f-b9ee-120f115d8e9e))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1217dfc3-d84c-4a90-844e-c543a0546289))
(pad "1" smd rect (at -0.46 0 270) (size 0.6 0.62) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "Net-(U1-XOSC_Q1)") (pintype "passive") (tstamp 2252acb0-9f40-4ba6-8cce-f633a717f326))
(pad "2" smd rect (at 0.46 0 270) (size 0.6 0.62) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "Earth") (pintype "passive") (tstamp 32979845-c5ed-46c5-869a-2642c513a09a))
(model "${KIPRJMOD}/PCBLib/3d/Cap_Murata_GRM_0402.stp"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "PCBLib:Cap_Murata_GRM_0402" (layer "F.Cu")
(tstamp 1191fd5e-c0b7-4e6e-b7bb-ece2a0889be7)
(at 144.85 58.34)
(descr "GRM15_0.10 L=1.0mm W=0.5mm T=0.5mm")
(tags "Capacitor")
(property "Sheetfile" "CoralWave.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/5c3a28c9-4237-47fb-9d15-7a4d978b020e")
(attr smd)
(fp_text reference "C5" (at 0 -1.444) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.153)))
(tstamp ecac2c31-5d34-47eb-93d0-294847faa200)
)
(fp_text value "220pF" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp 9c2f06f9-b18a-4d38-a344-11db9c40f99f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp 8b3296b0-b136-4eac-8a8d-c8e9490e58ab)
)
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 01f2a381-3da7-43cb-aec4-1a64bfbd9d7c))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 58b3c6b7-e729-49f3-91ba-726b8f36ea6a))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 48122f3d-f746-4ded-9cd8-a4cf47a3f985))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 927f22c9-6bd7-4d86-9122-9052cf12ca71))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 32e11865-318c-464e-b5ea-d009aeacc767))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7b774820-ff3d-4604-b95a-52dc156ba450))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 41e7f59d-aa52-4cbf-a454-0f32e6b9c6bc))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 842b71fc-f4d2-464a-abcf-db8e33e9fe90))
(pad "1" smd rect (at -0.46 0) (size 0.6 0.62) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "Net-(C5-Pad1)") (pintype "passive") (tstamp fb1ff2d6-3b56-47f3-9521-fa45e6498bf9))
(pad "2" smd rect (at 0.46 0) (size 0.6 0.62) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "Net-(C5-Pad2)") (pintype "passive") (tstamp f4945ccf-f677-41aa-97d1-fd323c314731))
(model "${KIPRJMOD}/PCBLib/3d/Cap_Murata_GRM_0402.stp"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "PCBLib:CC1101RGP" (layer "F.Cu")
(tstamp 158707cb-1640-4c45-9fd2-ef8e0c734d77)
(at 133.8326 58.42)
(tags "CC1101RGPR ")
(property "Sheetfile" "CoralWave.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "TI Low-Power Sub-1 GHz RF Transceiver")
(property "ki_keywords" "CC1101RGP")
(path "/5385e31b-d212-4c95-88a0-eb5484682a65")
(attr smd)
(fp_text reference "U1" (at -2.5146 -3.048 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.153)))
(tstamp d7998741-bf89-4679-9a71-6382639b0747)
)
(fp_text value "CC1101RGP" (at 0 0 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bf37aaf5-1e9b-47f3-90b8-af3bad634b2e)
)
(fp_line (start -2.8 -1.73) (end -2.8 -1.73)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 557a4c7c-92c1-4987-b8ea-31b53c7b5ada))
(fp_line (start -2.6 -1.73) (end -2.6 -1.73)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 9ab1c8dc-5b1d-4acd-a15a-dc64009791d8))
(fp_arc (start -2.8 -1.73) (mid -2.7 -1.83) (end -2.6 -1.73)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 3224fc51-04f3-4e5d-9642-903671c4b348))
(fp_arc (start -2.6 -1.73) (mid -2.7 -1.63) (end -2.8 -1.73)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 9338f6ed-6ce9-4b45-a040-e0c17f786f35))
(fp_line (start -2.624099 -1.3814) (end -2.3241 -1.3814)
(stroke (width 0.1524) (type solid)) (layer "F.CrtYd") (tstamp 466972e4-2a2f-4252-8820-e0e4f62a2e2a))
(fp_line (start -2.624099 1.3814) (end -2.624099 -1.3814)
(stroke (width 0.1524) (type solid)) (layer "F.CrtYd") (tstamp 388630b2-6bbe-4c4c-9894-04fcaa437b5d))
(fp_line (start -2.3241 -2.3241) (end -1.3814 -2.3241)
(stroke (width 0.1524) (type solid)) (layer "F.CrtYd") (tstamp 7324c260-8166-486a-83ea-b84346ba7d81))
(fp_line (start -2.3241 -1.3814) (end -2.3241 -2.3241)
(stroke (width 0.1524) (type solid)) (layer "F.CrtYd") (tstamp cd2c8026-bd76-4e2a-91b8-5d1d79771ce0))
(fp_line (start -2.3241 1.3814) (end -2.624099 1.3814)
(stroke (width 0.1524) (type solid)) (layer "F.CrtYd") (tstamp 462b22d0-3ee2-4352-8214-51a903719754))
(fp_line (start -2.3241 2.3241) (end -2.3241 1.3814)
(stroke (width 0.1524) (type solid)) (layer "F.CrtYd") (tstamp aa32cec5-d9cb-4ea6-86f1-307ae5820c69))
(fp_line (start -1.3814 -2.624099) (end 1.3814 -2.624099)
(stroke (width 0.1524) (type solid)) (layer "F.CrtYd") (tstamp 24c84adc-34bf-4d20-9188-dda32dbc979b))
(fp_line (start -1.3814 -2.3241) (end -1.3814 -2.624099)
(stroke (width 0.1524) (type solid)) (layer "F.CrtYd") (tstamp c85f3d2f-8bfe-4fc7-98e0-c9c5cfa41e5a))
(fp_line (start -1.3814 2.3241) (end -2.3241 2.3241)
(stroke (width 0.1524) (type solid)) (layer "F.CrtYd") (tstamp 9be04222-d806-45ca-ab40-cbb0c7b3e317))
(fp_line (start -1.3814 2.624099) (end -1.3814 2.3241)
(stroke (width 0.1524) (type solid)) (layer "F.CrtYd") (tstamp d8a3caf9-c5a9-4457-a481-b6ca6a1ba09f))
(fp_line (start 1.3814 -2.624099) (end 1.3814 -2.3241)
(stroke (width 0.1524) (type solid)) (layer "F.CrtYd") (tstamp 88edbdae-0e25-4674-849c-7ce81646d4b3))
(fp_line (start 1.3814 -2.3241) (end 2.3241 -2.3241)
(stroke (width 0.1524) (type solid)) (layer "F.CrtYd") (tstamp e26c24b3-9b31-482e-b70e-1f0de434362e))
(fp_line (start 1.3814 2.3241) (end 1.3814 2.624099)
(stroke (width 0.1524) (type solid)) (layer "F.CrtYd") (tstamp 683f63dd-5c86-41bd-83dd-dbedc9b70335))
(fp_line (start 1.3814 2.624099) (end -1.3814 2.624099)
(stroke (width 0.1524) (type solid)) (layer "F.CrtYd") (tstamp 8f3cd49a-c6af-4582-9ff2-61780f35eb9f))
(fp_line (start 2.3241 -2.3241) (end 2.3241 -1.3814)
(stroke (width 0.1524) (type solid)) (layer "F.CrtYd") (tstamp 53e2ca24-380c-4691-a20b-cbd708d61896))
(fp_line (start 2.3241 -1.3814) (end 2.624099 -1.3814)
(stroke (width 0.1524) (type solid)) (layer "F.CrtYd") (tstamp abe45b4b-d6cd-4192-a170-eab7e53d1df1))
(fp_line (start 2.3241 1.3814) (end 2.3241 2.3241)
(stroke (width 0.1524) (type solid)) (layer "F.CrtYd") (tstamp 24782f59-18f7-43a0-afc6-a1d197435568))
(fp_line (start 2.3241 2.3241) (end 1.3814 2.3241)
(stroke (width 0.1524) (type solid)) (layer "F.CrtYd") (tstamp 8a8eee00-636c-47ca-b10d-83dbcba8dc9a))
(fp_line (start 2.624099 -1.3814) (end 2.624099 1.3814)
(stroke (width 0.1524) (type solid)) (layer "F.CrtYd") (tstamp 2da2b8df-d4ee-447f-9da4-051b9be7e870))
(fp_line (start 2.624099 1.3814) (end 2.3241 1.3814)
(stroke (width 0.1524) (type solid)) (layer "F.CrtYd") (tstamp 95fd859b-a126-4480-b38b-e2fe5b90b119))
(fp_line (start -2.0701 -2.0701) (end -2.0701 -2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp a402e2e8-01cb-450c-9f18-9de5e9c8badf))
(fp_line (start -2.0701 -2.0701) (end -2.0701 2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp daabc6e7-4bf7-4c23-9d11-cc45d235c4dc))
(fp_line (start -2.0701 -1.1524) (end -2.0701 -1.1524)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 8f3ed90d-2bdb-4206-aaf0-b2244079a9fa))
(fp_line (start -2.0701 -1.1524) (end -2.0701 -0.8476)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 7540202b-3557-4ec1-bb6c-c23e4157d40f))
(fp_line (start -2.0701 -0.8476) (end -2.0701 -1.1524)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp ecd46ae3-1f39-4e9c-9984-26238d7fbbad))
(fp_line (start -2.0701 -0.8476) (end -2.0701 -0.8476)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 9111f3fc-fc2b-4d5d-9fd7-83235c0aa283))
(fp_line (start -2.0701 -0.8001) (end -0.8001 -2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 662955b5-8c86-4453-9e4b-42d7e7e2bedb))
(fp_line (start -2.0701 -0.6524) (end -2.0701 -0.6524)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp cf8a4bee-6fe4-445f-86ef-26fff5e34df8))
(fp_line (start -2.0701 -0.6524) (end -2.0701 -0.3476)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 6a2d5e39-5d72-4f48-a39d-d67a552024cb))
(fp_line (start -2.0701 -0.3476) (end -2.0701 -0.6524)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp d2f62df5-c355-4474-9608-cd5ac502e63a))
(fp_line (start -2.0701 -0.3476) (end -2.0701 -0.3476)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp ff2475fe-3299-427e-b865-214ff0269c5a))
(fp_line (start -2.0701 -0.1524) (end -2.0701 -0.1524)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp b4903eb1-ac82-4ba5-8436-339c659a2275))
(fp_line (start -2.0701 -0.1524) (end -2.0701 0.1524)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 815ec073-f44c-49e8-b94a-5c4d5d5487d5))
(fp_line (start -2.0701 0.1524) (end -2.0701 -0.1524)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 1b84f42f-f92c-4d40-8449-fa16400a933d))
(fp_line (start -2.0701 0.1524) (end -2.0701 0.1524)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 32907d01-49e1-4188-8257-2840656cd401))
(fp_line (start -2.0701 0.3476) (end -2.0701 0.3476)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp d44c68c4-4f86-41ed-9ce3-4de5a3591f3a))
(fp_line (start -2.0701 0.3476) (end -2.0701 0.6524)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 928be6bf-4641-4d9d-ba78-0da1b22dff04))
(fp_line (start -2.0701 0.6524) (end -2.0701 0.3476)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp d9ccb3bc-92e2-4af8-922c-69242c427548))
(fp_line (start -2.0701 0.6524) (end -2.0701 0.6524)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 6125e059-7e23-47b0-8adf-175959e878ef))
(fp_line (start -2.0701 0.8476) (end -2.0701 0.8476)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 950b6f8a-4da5-460e-b223-2035c967b335))
(fp_line (start -2.0701 0.8476) (end -2.0701 1.1524)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 12f253d1-d639-4a50-9c3a-451809a831ef))
(fp_line (start -2.0701 1.1524) (end -2.0701 0.8476)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 3f65444b-0838-41dc-84eb-1883b6b87966))
(fp_line (start -2.0701 1.1524) (end -2.0701 1.1524)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 155d9fbd-e2d9-4914-9bcc-19e27de7d01a))
(fp_line (start -2.0701 2.0701) (end -2.0701 2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 190646e9-8c6b-4286-9fd1-b7659c8e7441))
(fp_line (start -2.0701 2.0701) (end 2.0701 2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp b48e057d-6585-470e-996a-c749b0faa352))
(fp_line (start -1.1524 -2.0701) (end -1.1524 -2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 1102eb9e-a11d-46d3-8894-932333967ec9))
(fp_line (start -1.1524 -2.0701) (end -0.8476 -2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 4ef4b464-824c-416b-8d61-9a757f17d44d))
(fp_line (start -1.1524 2.0701) (end -1.1524 2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 6056560a-83b3-4a45-b7b0-e9571fc86dc4))
(fp_line (start -1.1524 2.0701) (end -0.8476 2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 5aa257bd-1895-4e76-82c1-a22fac63e51e))
(fp_line (start -0.8476 -2.0701) (end -1.1524 -2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 11c34831-026d-400a-9a6d-1535fd757442))
(fp_line (start -0.8476 -2.0701) (end -0.8476 -2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp a3af0a19-1efc-4a6d-ab05-8a9380deb281))
(fp_line (start -0.8476 2.0701) (end -1.1524 2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 35d38253-769a-4401-bad0-ce8b728df2b2))
(fp_line (start -0.8476 2.0701) (end -0.8476 2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp f648d52f-d85e-4e19-8d0e-6bb6f22d1736))
(fp_line (start -0.6524 -2.0701) (end -0.6524 -2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp cde326bc-c623-4a00-9b04-a904b307702f))
(fp_line (start -0.6524 -2.0701) (end -0.3476 -2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 52c4e806-9692-4f56-8e81-3f90807761f7))
(fp_line (start -0.6524 2.0701) (end -0.6524 2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 2c1495c9-8645-4f16-9d5f-61e2a440c810))
(fp_line (start -0.6524 2.0701) (end -0.3476 2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 894898c1-5856-4363-af14-e19c2e9bfb94))
(fp_line (start -0.3476 -2.0701) (end -0.6524 -2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 75c4bcef-cea6-4bee-be1c-026b4a841876))
(fp_line (start -0.3476 -2.0701) (end -0.3476 -2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 1db6e106-0c08-4a0a-b97c-c96a33899529))
(fp_line (start -0.3476 2.0701) (end -0.6524 2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 11eb86c8-8d2e-4c6e-8b58-143facd339f7))
(fp_line (start -0.3476 2.0701) (end -0.3476 2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 9ed9e57a-6ae6-4770-af38-2bc07c5717bc))
(fp_line (start -0.1524 -2.0701) (end -0.1524 -2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp f8992e2f-bec2-48cb-8622-86bed5e47359))
(fp_line (start -0.1524 -2.0701) (end 0.1524 -2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp d96d28ca-4831-443d-bb65-f18758bf53af))
(fp_line (start -0.1524 2.0701) (end -0.1524 2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 39912944-806b-4145-90dc-9a34f6ce383c))
(fp_line (start -0.1524 2.0701) (end 0.1524 2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp e0a5c919-3222-40e3-b7b6-d67a704eb1e8))
(fp_line (start 0.1524 -2.0701) (end -0.1524 -2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp f227b22d-ac31-4a65-9b02-388d82805967))
(fp_line (start 0.1524 -2.0701) (end 0.1524 -2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp fedf5ee3-e2e2-4714-abd9-d5df720a146f))
(fp_line (start 0.1524 2.0701) (end -0.1524 2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 6d2b8696-d1e1-463d-91ca-0340822be5b8))
(fp_line (start 0.1524 2.0701) (end 0.1524 2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 3733cdd4-3ba9-4e4e-9a18-b7ee62b43605))
(fp_line (start 0.3476 -2.0701) (end 0.3476 -2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 06934f8a-30d1-4d8f-ae56-761cf9474ed1))
(fp_line (start 0.3476 -2.0701) (end 0.6524 -2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 516804af-a1d9-4aff-bae4-731dbae5f76f))
(fp_line (start 0.3476 2.0701) (end 0.3476 2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 7ce84216-8012-454e-a0a2-386a0e37a904))
(fp_line (start 0.3476 2.0701) (end 0.6524 2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 779be8fc-212f-44d4-8d90-6dc32a4934c6))
(fp_line (start 0.6524 -2.0701) (end 0.3476 -2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 9132003a-c75b-4873-bf72-521c00a3dfe1))
(fp_line (start 0.6524 -2.0701) (end 0.6524 -2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 4a9e67c7-9a67-406a-a16b-761b90be5830))
(fp_line (start 0.6524 2.0701) (end 0.3476 2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp adc77e54-fd63-4ab3-b5fb-7b7d7083d23f))
(fp_line (start 0.6524 2.0701) (end 0.6524 2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 011eb1f1-4590-4e47-b710-032bf2a99b8c))
(fp_line (start 0.8476 -2.0701) (end 0.8476 -2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 9a11ed1d-0715-4467-afc3-36e88b4ada1a))
(fp_line (start 0.8476 -2.0701) (end 1.1524 -2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp e9d30cf0-6751-4d86-9cdd-f17bd1723376))
(fp_line (start 0.8476 2.0701) (end 0.8476 2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 3c6b7084-abdf-45d1-9e78-3d12ad34142c))
(fp_line (start 0.8476 2.0701) (end 1.1524 2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 035aa8b5-6d61-4f60-ad23-3d592fc5c209))
(fp_line (start 1.1524 -2.0701) (end 0.8476 -2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 6146cfe4-10f9-4ec8-968c-e03880a2e592))
(fp_line (start 1.1524 -2.0701) (end 1.1524 -2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 444b7ded-ed8c-4c85-99ea-31a12dac980d))
(fp_line (start 1.1524 2.0701) (end 0.8476 2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 0dfcb24e-86c7-44eb-bec9-e6ff732614f6))
(fp_line (start 1.1524 2.0701) (end 1.1524 2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 3d8844eb-7c9c-453c-b0c3-b20cd75c449e))
(fp_line (start 2.0701 -2.0701) (end -2.0701 -2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 873a7b35-7397-4958-9f5f-28b8e995fb2b))
(fp_line (start 2.0701 -2.0701) (end 2.0701 -2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 867371c1-cf73-4321-9192-20716b8e086f))
(fp_line (start 2.0701 -1.1524) (end 2.0701 -1.1524)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 316840a0-2b1a-4208-81ac-986726443465))
(fp_line (start 2.0701 -1.1524) (end 2.0701 -0.8476)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 916b1303-7a43-4f29-85d3-7eaf4495f8f9))
(fp_line (start 2.0701 -0.8476) (end 2.0701 -1.1524)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp c188ef74-8f4a-4185-9a9b-6fa2f7d98291))
(fp_line (start 2.0701 -0.8476) (end 2.0701 -0.8476)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp b16a0994-5975-49bf-8e54-de1fa2ce1595))
(fp_line (start 2.0701 -0.6524) (end 2.0701 -0.6524)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 54f1a600-97d4-4fa4-86e5-c08f2a443149))
(fp_line (start 2.0701 -0.6524) (end 2.0701 -0.3476)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 5808fda1-c1f5-4b61-b4c4-2637a711febd))
(fp_line (start 2.0701 -0.3476) (end 2.0701 -0.6524)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 90507154-eaff-4d5e-93e6-8fcafbd5636d))
(fp_line (start 2.0701 -0.3476) (end 2.0701 -0.3476)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp a25ad346-a984-4fcb-a74d-3820b989b23f))
(fp_line (start 2.0701 -0.1524) (end 2.0701 -0.1524)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 38ce2c61-6dd1-403b-b654-888f9102fa93))
(fp_line (start 2.0701 -0.1524) (end 2.0701 0.1524)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 2a75ba8b-1115-4a4a-ab93-b516803f1ac2))
(fp_line (start 2.0701 0.1524) (end 2.0701 -0.1524)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp b75cbb1b-72d9-4300-8cc4-30d03179a446))
(fp_line (start 2.0701 0.1524) (end 2.0701 0.1524)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp a2f06d26-6dfc-4dc6-82b5-a7164b8d4046))
(fp_line (start 2.0701 0.3476) (end 2.0701 0.3476)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp d58aed3c-6264-4cb0-9971-8cc7786f1f7b))
(fp_line (start 2.0701 0.3476) (end 2.0701 0.6524)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp ea0803fd-ef47-4c81-a461-31737e2cab3b))
(fp_line (start 2.0701 0.6524) (end 2.0701 0.3476)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 1005e07f-c0d9-4e9c-833e-2e5ec0b56b09))
(fp_line (start 2.0701 0.6524) (end 2.0701 0.6524)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp b8d2219d-6642-4511-b4fa-4dc38176430d))
(fp_line (start 2.0701 0.8476) (end 2.0701 0.8476)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp ce57f781-770e-43a9-89b6-9bf906e952ca))
(fp_line (start 2.0701 0.8476) (end 2.0701 1.1524)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp d46e86b5-0bf2-4878-af24-b18dc5d89fe7))
(fp_line (start 2.0701 1.1524) (end 2.0701 0.8476)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp dcb63739-38d1-4af4-b806-edfabc02b742))
(fp_line (start 2.0701 1.1524) (end 2.0701 1.1524)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 1c5dde67-a720-4cae-bbcd-c2d5cd6f82a7))
(fp_line (start 2.0701 2.0701) (end 2.0701 -2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 96293500-bf74-4e6d-a0e2-35b677a15ec5))
(fp_line (start 2.0701 2.0701) (end 2.0701 2.0701)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 17450ee4-c1a5-441b-b8db-8677f4791479))
(pad "1" smd rect (at -1.89625 -1.000001 90) (size 0.2548 0.947699) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "SCLK") (pinfunction "SCLK") (pintype "unspecified") (tstamp 3da00859-8ea8-4e49-8aec-d4d5f04b5443))
(pad "2" smd rect (at -1.89625 -0.499999 90) (size 0.2548 0.947699) (layers "F.Cu" "F.Paste" "F.Mask")
(net 32 "MISO") (pinfunction "SO") (pintype "output") (tstamp 3d168036-1667-4fe1-8661-01d98f630bc4))
(pad "3" smd rect (at -1.89625 0 90) (size 0.2548 0.947699) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "GDO2") (pinfunction "GDO2") (pintype "output") (tstamp 445bec30-8045-4b25-a038-45e37cedccad))
(pad "4" smd rect (at -1.89625 0.499999 90) (size 0.2548 0.947699) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "+3V3") (pinfunction "DVDD") (pintype "power_in") (tstamp 254e716f-e42b-4732-ad8c-eb2e5944f38c))
(pad "5" smd rect (at -1.89625 1.000001 90) (size 0.2548 0.947699) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "Net-(U1-DCOUPL)") (pinfunction "DCOUPL") (pintype "power_in") (tstamp eb1286cb-0940-4a44-9dda-d1ef67f93be4))
(pad "6" smd rect (at -1.000001 1.89625) (size 0.2548 0.947699) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "GDO0") (pinfunction "GDO0") (pintype "bidirectional") (tstamp 04ed10de-26aa-45ac-b0e5-0b4ebd418c93))
(pad "7" smd rect (at -0.499999 1.89625) (size 0.2548 0.947699) (layers "F.Cu" "F.Paste" "F.Mask")
(net 28 "CSN") (pinfunction "CSN") (pintype "input") (tstamp a09af46b-90b1-46d0-a093-830be41c1b27))
(pad "8" smd rect (at 0 1.89625) (size 0.2548 0.947699) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "Net-(U1-XOSC_Q1)") (pinfunction "XOSC_Q1") (pintype "bidirectional") (tstamp b0a9a937-162d-4b04-8f27-6fe7284d8341))
(pad "9" smd rect (at 0.499999 1.89625) (size 0.2548 0.947699) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "+3V3") (pinfunction "AVDD") (pintype "power_in") (tstamp 9ed48408-9b63-4c24-a98b-98af625c974b))
(pad "10" smd rect (at 1.000001 1.89625) (size 0.2548 0.947699) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "Net-(U1-XOSC_Q2)") (pinfunction "XOSC_Q2") (pintype "bidirectional") (tstamp 6929481a-76ff-408b-94b4-4ad32720abe6))
(pad "11" smd rect (at 1.89625 1.000001 90) (size 0.2548 0.947699) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "+3V3") (pinfunction "AVDD") (pintype "power_in") (tstamp 2d6fa4af-4984-44c8-8e49-8b045fd8cd14))
(pad "12" smd rect (at 1.89625 0.499999 90) (size 0.2548 0.947699) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "Net-(U1-RF_P)") (pinfunction "RF_P") (pintype "bidirectional") (tstamp 974f12a9-a459-4648-85c6-b193beb28235))
(pad "13" smd rect (at 1.89625 0 90) (size 0.2548 0.947699) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "Net-(U1-RF_N)") (pinfunction "RF_N") (pintype "bidirectional") (tstamp d97946d9-e6d0-4482-b84c-163393bea9c3))
(pad "14" smd rect (at 1.89625 -0.499999 90) (size 0.2548 0.947699) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "+3V3") (pinfunction "AVDD") (pintype "power_in") (tstamp b9a7f02f-6113-4aef-bad4-b35d64e382ee))
(pad "15" smd rect (at 1.89625 -1.000001 90) (size 0.2548 0.947699) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "+3V3") (pinfunction "AVDD") (pintype "power_in") (tstamp 98d5cb46-9c25-4677-bc0d-1a4110ce73e1))
(pad "16" smd rect (at 1.000001 -1.89625) (size 0.2548 0.947699) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "Earth") (pinfunction "GND") (pintype "power_in") (tstamp 61c5b815-81c7-4d74-9b95-45e16b5a2172))
(pad "17" smd rect (at 0.499999 -1.89625) (size 0.2548 0.947699) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "Net-(U1-RBIAS)") (pinfunction "RBIAS") (pintype "bidirectional") (tstamp 99f1b028-f673-4c54-8b19-4679446c4d77))
(pad "18" smd rect (at 0 -1.89625) (size 0.2548 0.947699) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "+3V3") (pinfunction "DGUARD") (pintype "power_in") (tstamp 44290d1b-ea27-488a-bd02-5e043fa212f2))
(pad "19" smd rect (at -0.499999 -1.89625) (size 0.2548 0.947699) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "Earth") (pinfunction "GND") (pintype "power_in") (tstamp 7b05c812-e986-4151-84d3-23902ed88515))
(pad "20" smd rect (at -1.000001 -1.89625) (size 0.2548 0.947699) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "MOSI") (pinfunction "SI") (pintype "input") (tstamp a51d73a3-985c-439c-9798-b098ec1ba211))
(pad "21" smd rect (at -0.805 0) (size 0.65 0.72) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "Earth") (pinfunction "EPAD") (pintype "power_in") (tstamp c683566f-9412-4889-a779-32eeca813a3e))
(pad "21" smd rect (at 0 -0.805 90) (size 0.65 0.72) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "Earth") (pinfunction "EPAD") (pintype "power_in") (tstamp 25bad11d-9078-48bd-8502-b144e3903bd5))
(pad "21" smd rect (at 0 0.805 90) (size 0.65 0.72) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "Earth") (pinfunction "EPAD") (pintype "power_in") (tstamp b700ab69-e72d-4b61-a856-8cd68494d1ae))
(pad "21" smd rect (at 0.805 0) (size 0.65 0.72) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "Earth") (pinfunction "EPAD") (pintype "power_in") (tstamp 0b21a987-e5c9-4328-a258-cf778801c769))
(model "${KIPRJMOD}/PCBLib/3d/CC1101RGP.stp"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "PCBLib:R_Bourns_CR_0603" (layer "F.Cu")
(tstamp 15f512af-b607-4f0a-bdc9-030097844567)
(at 118.2 64.83)
(descr "CR0603")
(tags "Resistor")
(property "Sheetfile" "CoralWave.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/8f267703-a2be-43b1-93b6-e810b503a324")
(attr smd)
(fp_text reference "R6" (at 2.55 2.25) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.153)))
(tstamp 423ee334-a991-4f08-893c-a6e697e8438f)
)
(fp_text value "442k" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp 9d4f03a5-ccfc-45ee-b773-bfe30861bf26)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp d6848dc6-9b5c-4609-9648-7657c1948744)
)
(fp_line (start -1.5 -0.75) (end 1.5 -0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5280a774-7aa1-4b51-846d-01819625e6ee))
(fp_line (start -1.5 0.75) (end -1.5 -0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp af4dedde-18f7-4c08-8111-428e83ada4cf))
(fp_line (start 1.5 -0.75) (end 1.5 0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4f497fbf-4280-4a4a-ab0d-ed559fc0d50e))
(fp_line (start 1.5 0.75) (end -1.5 0.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6843e1be-cfa2-43c4-8a32-8b725a05ed0d))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8503a018-0e1e-4fe9-9256-5e217f6c5ca6))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp be91c58a-50a4-4d85-9cfb-45baec3a3c18))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7e5f9111-6d95-4b06-958e-527bde49833d))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8957b154-3866-4889-adc5-7ed3d81ea3cd))
(pad "1" smd rect (at -0.8 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "+3V3") (pintype "passive") (tstamp e8fa9c5e-67b2-46bb-b384-c4a0b9cd7439))
(pad "2" smd rect (at 0.8 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "Net-(IC2-FB)") (pintype "passive") (tstamp 593f5864-bec6-4b71-a17e-36279399a811))
(model "${KIPRJMOD}/PCBLib/3d/R_Bourns_CR_0603.stp"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "PCBLib:Cap_Murata_GRM_0402" (layer "F.Cu")
(tstamp 178f72a0-4663-4f01-8d04-de5cf73f0f02)
(at 129.01 63.68 90)
(descr "GRM15_0.10 L=1.0mm W=0.5mm T=0.5mm")
(tags "Capacitor")
(property "Sheetfile" "CoralWave.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/ea3d38d4-682f-4c01-af1b-4176da16cb32")
(attr smd)
(fp_text reference "C19" (at -2.614 0.022 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.153)))
(tstamp d52ac98c-b797-4c83-bcb1-61a9422a4dc4)
)
(fp_text value "6.8pF" (at 0 0 90) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp 4cf7c77d-4ef0-4446-9cda-51138450c557)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp 2a28e1bd-925e-4210-af5d-f64f0bbf7d17)
)
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 31555867-d17a-4cf8-a6bd-72afa512313e))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c247c619-c0d5-4c09-a733-e56d8bf71968))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4b7fabe4-37b9-478d-883a-40d81e08c46c))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6d5b281a-488e-4726-8ae4-df4517d3632f))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7e86b95a-3c99-4f55-9785-504861356da3))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d05cba17-ad00-4948-975f-4c067e55ba52))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1641a37e-2859-4a7b-9559-67ca280ac055))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dbe277ef-1b74-4075-842e-0617373fbf01))
(pad "1" smd rect (at -0.46 0 90) (size 0.6 0.62) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "Net-(IC2-FB)") (pintype "passive") (tstamp 76058f66-3238-4fdb-a352-ad25d52350e1))
(pad "2" smd rect (at 0.46 0 90) (size 0.6 0.62) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "+3V3") (pintype "passive") (tstamp 89bbf41e-f375-4ec9-92a6-f7ea64cf3f05))
(model "${KIPRJMOD}/PCBLib/3d/Cap_Murata_GRM_0402.stp"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "PCBLib:Cap_Murata_GRM_0402" (layer "F.Cu")
(tstamp 18104ff7-970c-456e-af53-636833e2056e)
(at 139.53 60.92 90)
(descr "GRM15_0.10 L=1.0mm W=0.5mm T=0.5mm")
(tags "Capacitor")
(property "Sheetfile" "CoralWave.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/9e0618f3-696f-4242-b609-1594376988e6")
(attr smd)
(fp_text reference "C6" (at -0.802 1.186 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.153)))
(tstamp 4ece95ab-cd89-4010-8de6-8cd7638495ec)
)
(fp_text value "220pF" (at 0 0 90) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp 22810f83-ff09-4a76-9970-00dc61a10c1d)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp 51354eed-b98d-4b71-a527-ba83acadb1d9)
)
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 136c9530-5724-4017-a74f-edd83a31eacd))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 838b2522-761a-44ca-af4a-b21351608a68))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 063775ba-d070-4743-aa08-8bfb8f41396b))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c54cf1cc-9b24-4d12-a198-a55f2ffbb62e))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0e66b5a9-ac7e-46fb-ba6a-c4337247e3af))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 96143e53-9316-4fc6-8230-b871fc6924f9))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fc2b069d-fce6-4afa-839c-4bda35e1460c))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ece520f1-d98c-45cd-848b-9d1f7e6b152b))
(pad "1" smd rect (at -0.46 0 90) (size 0.6 0.62) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "Earth") (pintype "passive") (tstamp 5d46c28b-349d-4a91-8f6c-357c2adc9e1a))
(pad "2" smd rect (at 0.46 0 90) (size 0.6 0.62) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "Net-(C6-Pad2)") (pintype "passive") (tstamp f1e41ee3-dc97-49e5-bcf8-0841b34dd40a))
(model "${KIPRJMOD}/PCBLib/3d/Cap_Murata_GRM_0402.stp"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "PCBLib:Cap_Murata_GRM_0402" (layer "F.Cu")
(tstamp 2f7d4fd2-f1d9-4969-96cd-436520ff16a6)
(at 135.73 53.89 -90)
(descr "GRM15_0.10 L=1.0mm W=0.5mm T=0.5mm")
(tags "Capacitor")
(property "Sheetfile" "CoralWave.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/b9cc2930-8a0f-415b-b600-cd9fab927894")
(attr smd)
(fp_text reference "C13" (at 0 -2.446 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.153)))
(tstamp a33da06e-1066-4d43-a85a-0787880c9209)
)
(fp_text value "220pF" (at 0 0 -90) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp 3b5305a8-624b-451e-b9ff-d7202deae2c0)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp 93ffcfe4-1b34-43db-8311-e0110a9d1990)
)
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0f6985f0-3047-4ec7-b6e2-5f1e6f8463c1))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b44baad8-7f18-4556-95db-3aa9d05d1991))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 442c9020-8985-43c0-8fad-1f8d263838f3))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d4a1d890-da64-40c9-b2f2-806b309cd4e7))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1ddd702d-908d-48ab-9f3c-758aca0b3acd))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3c81223e-0996-4f6c-9868-fee74b79f768))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7b3e7d76-eeb7-4d86-bec3-06030cb45ed5))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b323a3be-a924-4a59-90ec-4b45156469cc))
(pad "1" smd rect (at -0.46 0 270) (size 0.6 0.62) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "Earth") (pintype "passive") (tstamp d06914c1-fbed-4961-a5e9-f4ecead42233))
(pad "2" smd rect (at 0.46 0 270) (size 0.6 0.62) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "+3V3") (pintype "passive") (tstamp 1b7b3d82-d9e3-43a2-848d-8e31a4cef870))
(model "${KIPRJMOD}/PCBLib/3d/Cap_Murata_GRM_0402.stp"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "PCBLib:R_Vishay_CRCW_0402" (layer "F.Cu")
(tstamp 32ec114a-1e9e-4c99-a1af-3aaddae3a88a)
(at 114.57 56.55 -90)
(descr "0402 (1005 Metric)-ren1")
(tags "Resistor")
(property "Sheetfile" "CoralWave.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/6b6c723e-782c-421a-9382-a416ec769066")
(attr smd)
(fp_text reference "R8" (at -2.4 -0.01 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.153)))
(tstamp b84b1bca-d5fb-4193-9016-079a828dc836)
)
(fp_text value "10k" (at 0 0 90) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp 0dc93739-8117-4ea6-b28b-bd838c876197)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp 33b6ce3e-f89e-44e5-aa6e-f2e983b4cbaf)
)
(fp_line (start -1.175 -0.55) (end 1.175 -0.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3281bd95-d354-42ad-a7c1-2502e32bc7bd))
(fp_line (start -1.175 0.55) (end -1.175 -0.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 14dd29f3-51c1-4c1a-9ee3-56215d1fe400))
(fp_line (start 1.175 -0.55) (end 1.175 0.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 659c9df2-dd49-4f8a-98bc-c6f035349594))
(fp_line (start 1.175 0.55) (end -1.175 0.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f311ec79-d529-4669-855d-cc3f03e6e3d9))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f234532a-e1a1-4a35-97a0-10da77964d51))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e65ad6d7-9114-4377-ae79-98fd1413074b))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cc33b32c-5038-480e-9fa0-33120703fa47))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 18c8bb03-eecf-49aa-bb10-a2cc5bf962b2))
(pad "1" smd rect (at -0.55 0) (size 0.6 0.75) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "+3V3") (pintype "passive") (tstamp 6d456996-48f4-44ff-bb35-8b47d008d0b4))
(pad "2" smd rect (at 0.55 0) (size 0.6 0.75) (layers "F.Cu" "F.Paste" "F.Mask")
(net 32 "MISO") (pintype "passive") (tstamp 293b2a81-c3a6-4507-a90f-0b1743286aaa))
(model "${KIPRJMOD}/PCBLib/3d/R_Vishay_CRCW_0402.stp"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "PCBLib:R_Vishay_CRCW_0402" (layer "F.Cu")
(tstamp 3841325a-ef3f-49f6-84dc-9278644f80b4)
(at 115.08 63)
(descr "0402 (1005 Metric)-ren1")
(tags "Resistor")
(property "Sheetfile" "CoralWave.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/10b36a66-0b1f-4b03-8cb4-2bd3f255b125")
(attr smd)
(fp_text reference "R2" (at 0.05 -3.82) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.153)))
(tstamp d46e48fc-2aae-423f-9b4b-186fdf0e2b8a)
)
(fp_text value "10k" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp 7641a3bf-60c6-4e9e-9e9a-e47483a063de)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp fd5a36e0-ac7e-4c2c-98fd-4c2e98976a84)
)
(fp_line (start -1.175 -0.55) (end 1.175 -0.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4c9f72b7-3ddb-45b2-a550-8a8ea385fd4b))
(fp_line (start -1.175 0.55) (end -1.175 -0.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 912affdd-c4bc-4b5b-a85d-f5a141e3ff2f))
(fp_line (start 1.175 -0.55) (end 1.175 0.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 16bcb693-2b7b-4115-bfe2-a44e0a6f3694))
(fp_line (start 1.175 0.55) (end -1.175 0.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a7723095-5ffa-4138-9b22-e0f62e9322a9))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8a19bf1e-ec1c-4a31-a5f5-07f6c9c33a7c))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 12e14b52-0e0c-4208-bc1b-d727e5fad7ba))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ae8904ca-cbea-4e0e-9a86-d64bc29aae1d))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e37d1d56-3ba9-4db7-b0d7-5f39505a58f8))
(pad "1" smd rect (at -0.55 0 90) (size 0.6 0.75) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "Net-(IC1-EN)") (pintype "passive") (tstamp d15ea7e7-fe86-4afd-98bd-302b2bc44d0f))
(pad "2" smd rect (at 0.55 0 90) (size 0.6 0.75) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "+3V3") (pintype "passive") (tstamp 4ef7bcef-0a86-42a9-95af-d104ffd264b1))
(model "${KIPRJMOD}/PCBLib/3d/R_Vishay_CRCW_0402.stp"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "PCBLib:Cap_Murata_GRM_0603" (layer "F.Cu")
(tstamp 3db35793-a3d2-485f-833d-3413fad21703)
(at 118.45 63.34 180)
(descr "GRM18_0.10 L=1.6mm W=0.8mm T=0.8mm")
(tags "Capacitor")
(property "Sheetfile" "CoralWave.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/60218cac-b167-4075-8c11-85f21e702198")
(attr smd)
(fp_text reference "C22" (at 0.35 1.31 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.153)))
(tstamp da672996-9ccd-4462-9896-f531ceea6018)
)
(fp_text value "4.7uF" (at 0 0 180) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp ba39df72-2f16-4e56-ae3a-62e52d2b9c62)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab")
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp 62b4b24c-c384-4e6d-bb43-ed922b56a1be)
)
(fp_line (start -1.225 -0.62) (end 1.225 -0.62)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e7ce2142-2857-49d5-8e6a-ecd7ab70823c))
(fp_line (start -1.225 0.62) (end -1.225 -0.62)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c89636e3-fdf1-4430-b9fb-ff405c356d01))
(fp_line (start 1.225 -0.62) (end 1.225 0.62)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ebbd89a1-1f21-41a4-8c1c-42590bf8f485))
(fp_line (start 1.225 0.62) (end -1.225 0.62)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b4bf13f3-dee4-4e4c-842b-fcebb0701622))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 254d8d73-3fc1-4f27-a34c-b8413f5d5b12))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f65ce441-a076-4cf9-ba52-271962112b22))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2a7c1561-e9a4-4665-b10c-928edcd3bd02))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cf3f0db5-886d-4c10-847f-6ad9afb75ffc))
(pad "1" smd rect (at -0.7 0 180) (size 0.75 0.94) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "+5V") (pintype "passive") (tstamp 367cb9bd-75dd-494c-83c4-42dc1021c591))
(pad "2" smd rect (at 0.7 0 180) (size 0.75 0.94) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "Earth") (pintype "passive") (tstamp 5c923eaf-3444-410b-af5f-af5778776f34))
(model "${KIPRJMOD}/PCBLib/3d/Cap_Murata_GRM_0603.stp"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "PCBLib:R_Bourns_CR_0603" (layer "F.Cu")
(tstamp 497578d3-dc04-4abe-915b-d8aad3fba4fe)
(at 118.2 66.44 180)