-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrf_gen.kicad_pcb
9958 lines (9900 loc) · 468 KB
/
rf_gen.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 0.955)
)
(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") (color "White"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (color "Purple") (thickness 0.0254))
(layer "F.Cu" (type "copper") (thickness 0.0711))
(layer "dielectric 1" (type "core") (thickness 0.762) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.0711))
(layer "B.Mask" (type "Bottom Solder Mask") (color "Purple") (thickness 0.0254))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen") (color "White"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(aux_axis_origin 69.04 139.7)
(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 "+12V")
(net 2 "GND")
(net 3 "Net-(C3-Pad2)")
(net 4 "Net-(C4-Pad1)")
(net 5 "Net-(C4-Pad2)")
(net 6 "/SiC_gate")
(net 7 "Net-(C7-Pad2)")
(net 8 "VDD")
(net 9 "Net-(C9-Pad2)")
(net 10 "Net-(C10-Pad1)")
(net 11 "Net-(C10-Pad2)")
(net 12 "Net-(C14-Pad1)")
(net 13 "Net-(C14-Pad2)")
(net 14 "+5V")
(net 15 "Net-(D3-Pad2)")
(net 16 "/SDA")
(net 17 "/SCL")
(net 18 "unconnected-(J1-Pad5)")
(net 19 "unconnected-(J1-Pad6)")
(net 20 "/13.56Mhz")
(net 21 "/EN")
(net 22 "/GaN_gate")
(net 23 "Net-(R1-Pad1)")
(net 24 "Net-(R2-Pad1)")
(net 25 "Net-(R3-Pad2)")
(net 26 "unconnected-(U2-Pad5)")
(net 27 "Net-(D4-Pad1)")
(net 28 "Net-(D5-Pad1)")
(footprint "rf_gen:inductor_air_15x15" (layer "F.Cu")
(tedit 0) (tstamp 011c5558-0ef9-4871-b757-413b27aa5e79)
(at 82.26 136.12 180)
(property "Sheetfile" "rf_gen.kicad_sch")
(property "Sheetname" "")
(path "/c47156a3-6b4a-4036-9b78-c505d16e9fba")
(attr smd)
(fp_text reference "L6" (at 0.26 -3.38 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d14d475a-e152-46e1-b809-4ed67f462c55)
)
(fp_text value "760n" (at 0 1 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp daf771a0-5827-484b-a582-13b300d53aac)
)
(fp_text user "${REFERENCE}" (at 0 2.5 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6a120b49-842a-4974-9912-70668c874b29)
)
(fp_rect (start -7.5 -7.5) (end 7.5 7.5) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp b787c890-4739-4551-879b-00d93b8f614e))
(pad "1" smd roundrect (at -7.5 0 180) (size 5 8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "Net-(C9-Pad2)") (pinfunction "1") (pintype "passive") (tstamp 7f8b25a5-9786-49a8-8313-d048c4a5c4a7))
(pad "2" smd roundrect (at 7.5 0 180) (size 5 8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "Net-(C10-Pad1)") (pinfunction "2") (pintype "passive") (tstamp 640f2c36-3ae2-422b-90b7-110a9e6a283d))
(model "${KIPRJMOD}/rf_gen.3dshapes/inductor_air_15x15.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_1206_3216Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 09586a57-2cf3-40c3-99d4-7346c9477530)
(at 159.235 125.62 180)
(descr "Capacitor SMD 1206 (3216 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" "rf_gen.kicad_sch")
(property "Sheetname" "")
(path "/62c07c17-b15d-49df-9f1e-91ad34b5065d")
(attr smd)
(fp_text reference "C16" (at -4.025 -0.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a3bfe6bd-f2fa-4731-9458-8c47cf51d6a7)
)
(fp_text value "10u" (at 0 2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e1b164b7-3d98-4522-a567-f1e8d50681e2)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp a8b915ed-c14c-4b5d-9c93-4addecb11869)
)
(fp_line (start -0.711252 0.91) (end 0.711252 0.91) (layer "F.SilkS") (width 0.12) (tstamp 9a7e713f-4154-42ea-9d1e-b8d058fbf996))
(fp_line (start -0.711252 -0.91) (end 0.711252 -0.91) (layer "F.SilkS") (width 0.12) (tstamp 9bc310d3-1900-42cd-a57b-19858a52c50e))
(fp_line (start -2.3 1.15) (end -2.3 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 3e62d331-b5d9-47fc-9710-7929e6c245b9))
(fp_line (start 2.3 -1.15) (end 2.3 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 60f2ff26-be94-481b-8e23-dbae7576ecca))
(fp_line (start 2.3 1.15) (end -2.3 1.15) (layer "F.CrtYd") (width 0.05) (tstamp da571733-4308-4cff-8f43-3804c1620df3))
(fp_line (start -2.3 -1.15) (end 2.3 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp df53b2ff-3988-4f90-ae75-bf1332969d35))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 2729a5f7-b110-49e9-8f64-44b0a21613cf))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 8190e630-a91f-4b58-a6c3-d13db34c1e6a))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp a5fc510b-039b-46c7-a065-8cc53dd6c564))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp fcaf1a91-a7b5-4012-a9f0-b2a50065258e))
(pad "1" smd roundrect (at -1.475 0 180) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 14 "+5V") (pintype "passive") (tstamp 0387b61e-f018-4e34-80e5-53852f9a4db0))
(pad "2" smd roundrect (at 1.475 0 180) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 2 "GND") (pintype "passive") (tstamp 44b27b06-8a58-4f56-9bdb-a086ddd58849))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (layer "F.Cu")
(tedit 56DDBCCA) (tstamp 0b17ae84-5463-4a16-8247-14be6e4c78d7)
(at 86.76 124.12 180)
(descr "Mounting Hole 3.2mm, M3")
(tags "mounting hole 3.2mm m3")
(property "Sheetfile" "rf_gen.kicad_sch")
(property "Sheetname" "")
(path "/cca8b1cd-fbee-4a38-a88c-4b562e870d19")
(attr exclude_from_pos_files)
(fp_text reference "H3" (at -4.5 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4ca5748d-132e-40a7-ba60-5848351f22d0)
)
(fp_text value "MountingHole_Pad" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3723b309-692e-43c2-899b-aaf13d1b0f0f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f0219f4a-9a7c-4235-a9d3-ccca0c5a7c7a)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 150bc981-3b5b-402c-bc27-726427b93da2))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 0fe0b4ed-cc33-47d8-95c7-39066cf7c762))
(pad "1" thru_hole circle (at 1.697056 -1.697056 180) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 1ea4deec-e46e-485a-a068-c3d09000c8cf))
(pad "1" thru_hole circle (at 2.4 0 180) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 6390adb3-6ef9-4f57-af5c-1dc700d60ce2))
(pad "1" thru_hole circle (at -2.4 0 180) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 6b475ffa-c694-468d-bcd8-b11a561186ea))
(pad "1" thru_hole circle (at 1.697056 1.697056 180) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 77cfc5fe-8cab-4bcc-a50c-2ef0fe4c087c))
(pad "1" thru_hole circle (at -1.697056 1.697056 180) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "1") (pintype "input") (tstamp 88f70910-362e-4d2e-89e0-8ca860b22cc6))
(pad "1" thru_hole circle (at 0 2.4 180) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "1") (pintype "input") (tstamp a8188bf4-41e5-4152-8540-fccc818a6e48))
(pad "1" thru_hole circle (at -1.697056 -1.697056 180) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "1") (pintype "input") (tstamp d20137fe-8bce-477a-a7a9-b9d5c505c948))
(pad "1" thru_hole circle (at 0 0 180) (size 6.4 6.4) (drill 3.2) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "1") (pintype "input") (tstamp d28db643-ed6c-4d52-94e1-707a9e69a0af))
(pad "1" thru_hole circle (at 0 -2.4 180) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "1") (pintype "input") (tstamp e9a04afe-93af-43af-b0d1-b0a608165a66))
)
(footprint "rf_gen:2929SQ-501" (layer "F.Cu")
(tedit 0) (tstamp 0c9bfe4d-811a-4d31-8158-e4c8f41e706c)
(at 136.5 116.5 -90)
(property "Sheetfile" "rf_gen.kicad_sch")
(property "Sheetname" "")
(path "/6a1137d1-c355-4245-a3a5-ebc0c4cb3a36")
(attr through_hole)
(fp_text reference "L2" (at 0 3.5 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d5d22365-ae0e-4e49-ad16-347257f23f00)
)
(fp_text value "500n" (at 0 -2 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b7a7cc69-371b-449a-a625-e9ec02617624)
)
(fp_line (start -8 -4.465) (end 8 -4.5) (layer "F.SilkS") (width 0.12) (tstamp 238ab043-426c-4a29-b3ff-60f95f7c9b95))
(fp_line (start 8 4.5) (end -8 4.5) (layer "F.SilkS") (width 0.12) (tstamp 2a4d80ef-2a92-4ca6-9725-1128e4dfcac4))
(fp_line (start -8 4.5) (end -8 -4.465) (layer "F.SilkS") (width 0.12) (tstamp b93de48b-97d9-4735-aeab-bfb462b87506))
(fp_line (start 8 -4.465) (end 8 4.5) (layer "F.SilkS") (width 0.12) (tstamp bf6c7e98-2c28-42d4-bb16-4a6572ce841d))
(fp_line (start 8 4.5) (end -8 4.5) (layer "F.CrtYd") (width 0.05) (tstamp 0d283c36-41af-43f2-9ee6-18916b8ee024))
(fp_line (start 8 -4.5) (end 8 4.5) (layer "F.CrtYd") (width 0.05) (tstamp 79f97392-1171-4c78-a5c1-b568c1e16508))
(fp_line (start -8 4.5) (end -8 -4.5) (layer "F.CrtYd") (width 0.05) (tstamp dc201d50-e249-4283-b699-0949c57ed1c3))
(fp_line (start -8 -4.5) (end 8 -4.5) (layer "F.CrtYd") (width 0.05) (tstamp fbeb91cd-72a1-4d5e-9a79-3c887fa9f6d0))
(pad "1" smd rect (at -6.6 0 270) (size 2.29 8.26) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "Net-(C3-Pad2)") (pinfunction "1") (pintype "passive") (tstamp 58735434-b3fa-4f25-b905-ef3ce8df55c8))
(pad "2" smd rect (at 6.6 0 270) (size 2.29 8.26) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "Net-(C4-Pad1)") (pinfunction "2") (pintype "passive") (tstamp 8130ce85-c934-424d-bb84-71bb2675ad18))
(model "${KIPRJMOD}/rf_gen.3dshapes/Coilcraft-2929SQ-501.wrz"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "rf_gen:C_1111_2828Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 0e11607b-318c-4c4b-8e24-715045928870)
(at 96.5 116 -90)
(descr "Capacitor SMD 0805 (2012 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, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "rf_gen.kicad_sch")
(property "Sheetname" "")
(path "/a7cccbe7-b022-491d-9f03-06ed65321108")
(attr smd)
(fp_text reference "C9" (at -3.5 0.25) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 85f6bc58-1e80-43f2-94f4-0b5ae1469ce1)
)
(fp_text value "180p" (at 0 2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bcd6b7d3-1e6c-4d02-8e54-819fa9911353)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 72fd9aed-9397-4e25-9097-e11cd295df72)
)
(fp_line (start -0.261252 -1.5) (end 0.261252 -1.5) (layer "F.SilkS") (width 0.12) (tstamp 3c85c5fb-0e93-4b68-a2da-22dc1c7b94a2))
(fp_line (start -0.261252 1.5) (end 0.261252 1.5) (layer "F.SilkS") (width 0.12) (tstamp df1e6a08-a077-4077-8043-62a38aeec086))
(fp_rect (start -1.5 -1.4) (end 1.5 1.4) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 277bdc2f-dd05-401a-8a4e-b600fc1c2ec1))
(fp_line (start 2.25 -0.625) (end 2.25 0.625) (layer "F.Fab") (width 0.1) (tstamp 6bb049a8-4910-446b-b5c8-73fe7f9ede8c))
(fp_line (start -1 -1.5) (end 1 -1.5) (layer "F.Fab") (width 0.1) (tstamp 8a93bb72-0787-4ad3-aaed-389fc63f9a10))
(fp_line (start -2.25 0.625) (end -2.25 -0.625) (layer "F.Fab") (width 0.1) (tstamp c2ed2909-0725-4bec-8038-16f29976d79b))
(fp_line (start 1 1.5) (end -1 1.5) (layer "F.Fab") (width 0.1) (tstamp e8546c18-78cb-4774-ae00-afc37f07cee3))
(pad "1" smd roundrect (at -1.73 0 270) (size 1 3.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp b4ad23fe-9487-48d6-b2ba-f026df2bb64c))
(pad "2" smd roundrect (at 1.73 0 270) (size 1 3.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "Net-(C9-Pad2)") (pintype "passive") (tstamp 021ee9c9-06cd-4c74-8d9f-0bab9899d13b))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1210_3225Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_1206_3216Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 11652916-2860-4445-beb8-cd59102e07f7)
(at 154.8475 120.5 -90)
(descr "Capacitor SMD 1206 (3216 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" "rf_gen.kicad_sch")
(property "Sheetname" "")
(path "/be646055-5f9b-4006-8850-6ea971ff69c5")
(attr smd)
(fp_text reference "C13" (at -3 -0.1525 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 61183b54-51d6-44eb-b87b-e89e9324a895)
)
(fp_text value "10u" (at -4 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f05c0776-6181-4dc2-8907-9df6863da167)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 7667e620-d5b5-4e08-b4a1-d4d485267a7e)
)
(fp_line (start -0.711252 0.91) (end 0.711252 0.91) (layer "F.SilkS") (width 0.12) (tstamp 357d10a6-bf6b-4c4b-a38d-9902eaaffa21))
(fp_line (start -0.711252 -0.91) (end 0.711252 -0.91) (layer "F.SilkS") (width 0.12) (tstamp e7d28413-0a1c-42d0-bcd6-e05afcc0e3e5))
(fp_line (start 2.3 1.15) (end -2.3 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 4ca1fa7d-a20c-4d8c-8f5b-99f397b9e4c6))
(fp_line (start -2.3 -1.15) (end 2.3 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 5af080ea-84ae-40ba-a284-2a6b8ddad12e))
(fp_line (start -2.3 1.15) (end -2.3 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp c143dee6-0089-4122-9ed6-a36afaeafb54))
(fp_line (start 2.3 -1.15) (end 2.3 1.15) (layer "F.CrtYd") (width 0.05) (tstamp f8a3e966-43ea-41f3-a5db-453b294634af))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 3e81482a-e164-4bc9-8eb0-fedc7dff61bf))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 48f4d0a7-9e08-4f5e-a604-6acf68188702))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 4d9bbc4d-17d2-4c01-8392-652ab285ee9a))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 67756767-410b-459d-956d-8a8721b04130))
(pad "1" smd roundrect (at -1.475 0 270) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 1 "+12V") (pintype "passive") (tstamp d979db3b-9066-4b83-a8c5-55bc02054cb2))
(pad "2" smd roundrect (at 1.475 0 270) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 2 "GND") (pintype "passive") (tstamp b455ad84-1fe9-480c-a433-907f47e5698c))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 1bf67424-a84d-4fea-8ca7-283fc912b707)
(at 152.9675 107.245 180)
(descr "Resistor SMD 0805 (2012 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" "rf_gen.kicad_sch")
(property "Sheetname" "")
(path "/411ca1b1-460d-47d0-8f25-30dcf722518a")
(attr smd)
(fp_text reference "R2" (at -0.227064 1.745) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9e9baf68-b239-47bb-8e0f-38228c991a2b)
)
(fp_text value "1" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eaded846-a6c3-435e-94ea-84bf45fa2ad7)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp fa0f17cf-1b55-422b-92e0-1b618b092f8e)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 16808f93-6a67-4373-8f00-3b6d69598ad2))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp 1971543a-e295-4d66-a4c7-fa73388ab521))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 1f38ba65-5512-46a8-bdb0-1569a1fd8b1d))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 38b1e549-9491-4fb4-b377-2283f52f1f3a))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 6038514d-11f9-4502-a700-615da9929235))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 9b3541dd-22e1-4536-9279-89e80b394d0d))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 1aff2f51-b712-4377-984a-14a32c4f7703))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 8478f43d-c211-47a6-90a5-6936ffc62e85))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp bf80b8ea-fd99-4953-a95b-cd9dc6b4bc98))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp f4405dd9-2ca0-462d-ac3e-4a5012c4da72))
(pad "1" smd roundrect (at -0.9125 0 180) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 24 "Net-(R2-Pad1)") (pintype "passive") (tstamp f66b80aa-0c19-4c9e-bfc5-926552137bff))
(pad "2" smd roundrect (at 0.9125 0 180) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 22 "/GaN_gate") (pintype "passive") (tstamp d4a88fb4-5ab0-4363-9051-2ecd3b9716f5))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x07_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 21d56ba2-767b-41b9-a198-67df4b88c57f)
(at 168.26 125.28 180)
(descr "Through hole straight pin header, 1x07, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x07 2.54mm single row")
(property "Sheetfile" "rf_gen.kicad_sch")
(property "Sheetname" "")
(path "/38bd7a03-00e0-41cc-9542-b0fadd1831a1")
(attr through_hole)
(fp_text reference "J1" (at 0 -2.33) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b3d9a953-70dc-4136-9398-f2714652948a)
)
(fp_text value "Conn_01x07_Male" (at 0 17.57) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1e9a1b73-bbe2-4cb8-b2c4-e3d342b51229)
)
(fp_text user "${REFERENCE}" (at 0 7.62 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ebb075a4-748e-4897-af7a-322aabda7457)
)
(fp_line (start -1.33 16.57) (end 1.33 16.57) (layer "F.SilkS") (width 0.12) (tstamp 1550b937-013f-4285-b2f3-6ae19f7b122a))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 37d03bb3-6d84-4e79-9170-2ef6b1496911))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 42dbd971-6163-4bba-82f9-d76b5477188b))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 504781d4-f0da-4913-b6a4-99440dd5aa8a))
(fp_line (start 1.33 1.27) (end 1.33 16.57) (layer "F.SilkS") (width 0.12) (tstamp 7597faab-ce48-41bf-a18b-cffea90f7fd8))
(fp_line (start -1.33 1.27) (end -1.33 16.57) (layer "F.SilkS") (width 0.12) (tstamp 9a5a6c1d-c4c1-4c21-97ce-6cef0ddf6c7b))
(fp_line (start -1.8 -1.8) (end -1.8 17.05) (layer "F.CrtYd") (width 0.05) (tstamp 185e72e5-3b30-4c97-a7c1-fcc11b611303))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 33774d59-9b03-48bd-90ac-506a955e5dbd))
(fp_line (start 1.8 17.05) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 45065040-e52e-448f-927c-1113b1a16c9b))
(fp_line (start -1.8 17.05) (end 1.8 17.05) (layer "F.CrtYd") (width 0.05) (tstamp 46a35982-c8c9-439d-85b6-c4c557c38182))
(fp_line (start 1.27 16.51) (end -1.27 16.51) (layer "F.Fab") (width 0.1) (tstamp 337b2437-6150-44a4-a95c-f202d30a1245))
(fp_line (start 1.27 -1.27) (end 1.27 16.51) (layer "F.Fab") (width 0.1) (tstamp 79baa327-8a9b-44aa-8bf9-fb81d4b057a4))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 7a7dd6fb-defe-46df-9131-02417f22d992))
(fp_line (start -1.27 16.51) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp b9088af7-07e5-47b5-b78a-06352ee17dde))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp e6ba0d9e-8b59-46cc-9030-334b891518ec))
(pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 14 "+5V") (pinfunction "Pin_1") (pintype "passive") (tstamp 34e3f2ca-7958-4321-9ae9-cb73bf1a5995))
(pad "2" thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp dd453968-c393-4f60-8f70-829254470e25))
(pad "3" thru_hole oval (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 16 "/SDA") (pinfunction "Pin_3") (pintype "passive") (tstamp 79ff2ecb-7d75-4792-8ab1-117ff42f45ec))
(pad "4" thru_hole oval (at 0 7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 17 "/SCL") (pinfunction "Pin_4") (pintype "passive") (tstamp 0f472b57-2220-430b-bb30-c7b71c106db4))
(pad "5" thru_hole oval (at 0 10.16 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 18 "unconnected-(J1-Pad5)") (pinfunction "Pin_5") (pintype "passive+no_connect") (tstamp 680fd5fc-234d-4370-9223-447011781721))
(pad "6" thru_hole oval (at 0 12.7 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 19 "unconnected-(J1-Pad6)") (pinfunction "Pin_6") (pintype "passive+no_connect") (tstamp 69eb0f75-75eb-424b-be56-981f5a557db4))
(pad "7" thru_hole oval (at 0 15.24 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 20 "/13.56Mhz") (pinfunction "Pin_7") (pintype "passive") (tstamp ef8b9d6a-36e6-49c6-b084-8ab64fd9d76e))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x07_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_SMD:D_PowerDI-123" (layer "F.Cu")
(tedit 588FC24C) (tstamp 238bdb35-8ecd-4f17-81ba-7137dc68bfe6)
(at 112.66 108.52 90)
(descr "http://www.diodes.com/_files/datasheets/ds30497.pdf")
(tags "PowerDI diode vishay")
(property "Sheetfile" "rf_gen.kicad_sch")
(property "Sheetname" "")
(path "/d35ef415-080d-4149-82c7-9c1fa7636fdc")
(attr smd)
(fp_text reference "D2" (at 3.27 0.09 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e463aae6-b58d-4120-b0db-1d6e6cd12295)
)
(fp_text value "DFLS230" (at 0 2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c5a24ef1-13cc-4e97-b06b-c3aafb3f3861)
)
(fp_text user "${REFERENCE}" (at 0 -2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 00ef4cb6-2db7-4bec-90bb-ed006a717815)
)
(fp_line (start -2.2 1) (end 1 1) (layer "F.SilkS") (width 0.12) (tstamp 5220b7e9-a73c-409d-9d5c-89f8467a1e2b))
(fp_line (start 1 -1) (end -2.2 -1) (layer "F.SilkS") (width 0.12) (tstamp 6dad259c-1a6a-43fd-8925-136856d45813))
(fp_line (start -2.2 1) (end -2.2 -1) (layer "F.SilkS") (width 0.12) (tstamp ba003f25-5099-48f9-bc80-448b71d2fb98))
(fp_line (start 2.5 -1.3) (end 2.5 1.3) (layer "F.CrtYd") (width 0.05) (tstamp 2f7fec2d-24b7-4c37-82f1-3f918a2a4a86))
(fp_line (start -2.5 -1.3) (end 2.5 -1.3) (layer "F.CrtYd") (width 0.05) (tstamp 380fe313-d820-4ddd-89ab-cebb4283087b))
(fp_line (start 2.5 1.3) (end -2.5 1.3) (layer "F.CrtYd") (width 0.05) (tstamp d01d8d74-50fe-4b09-a0d4-dffac3f499c2))
(fp_line (start -2.5 1.3) (end -2.5 -1.3) (layer "F.CrtYd") (width 0.05) (tstamp e7315435-d810-4799-b2a7-655b7005fe70))
(fp_line (start -1.4 -0.9) (end 1.4 -0.9) (layer "F.Fab") (width 0.1) (tstamp 0d6e5ae5-d3b8-421e-acd9-9cd7c8bf24d2))
(fp_line (start -1.4 0.9) (end -1.4 -0.9) (layer "F.Fab") (width 0.1) (tstamp 18379afd-5cf3-4649-aa97-a91aafbcef7b))
(fp_line (start -0.8 0) (end -0.5 0) (layer "F.Fab") (width 0.1) (tstamp 4c4422a8-871e-4a1c-8885-4d1273a1b76b))
(fp_line (start 0.3 0.5) (end 0.3 -0.5) (layer "F.Fab") (width 0.1) (tstamp 51a30fea-6a5a-4046-a995-1015010de370))
(fp_line (start 1.4 0.9) (end -1.4 0.9) (layer "F.Fab") (width 0.1) (tstamp 5a87a5fe-902b-45b3-b35c-ff538141ad2e))
(fp_line (start 1.4 -0.9) (end 1.4 0.9) (layer "F.Fab") (width 0.1) (tstamp 6c4ab0ae-1567-40a3-94dd-ac377e058f38))
(fp_line (start -0.5 0) (end -0.5 0.5) (layer "F.Fab") (width 0.1) (tstamp 7c8406f9-b8ed-49e2-8a51-c445bb830e81))
(fp_line (start -0.5 0) (end 0.3 0.5) (layer "F.Fab") (width 0.1) (tstamp 9467cd52-88e7-4308-964c-d8b00be48fe4))
(fp_line (start 0.3 -0.5) (end -0.5 0) (layer "F.Fab") (width 0.1) (tstamp 9c24d8d6-5362-4c84-9914-0d3ac210429d))
(fp_line (start -0.5 0) (end -0.5 -0.5) (layer "F.Fab") (width 0.1) (tstamp b32c3c97-1ba9-4f5a-92eb-a7b3da082183))
(fp_line (start 0.3 0) (end 0.7 0) (layer "F.Fab") (width 0.1) (tstamp cd870827-1d84-4668-8b43-977afbd3befb))
(pad "1" smd rect (at -0.85 0 270) (size 2.4 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "/SiC_gate") (pinfunction "K") (pintype "passive") (tstamp 2b909d53-6440-4e35-a443-fecf091e32d3))
(pad "2" smd rect (at 1.525 0 270) (size 1.05 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "A") (pintype "passive") (tstamp c6d2daf4-13cc-4f9a-a81f-9af7520e60f4))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_PowerDI-123.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TestPoint:TestPoint_2Pads_Pitch5.08mm_Drill1.3mm" (layer "F.Cu")
(tedit 5BD71EB4) (tstamp 29217bee-fc66-414d-9b16-214c7c3c2e79)
(at 93.04 118.5 180)
(descr "Test point with 2 pads, pitch 5.08mm, hole diameter 1.3mm, wire diameter 1.0mm")
(tags "CONN DEV")
(property "Sheetfile" "rf_gen.kicad_sch")
(property "Sheetname" "")
(path "/cb32965e-963f-4082-9e02-ff21cd91984e")
(attr exclude_from_pos_files)
(fp_text reference "TP6" (at 2.54 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 97606e55-f183-4187-80b8-415ccd3b0a28)
)
(fp_text value "test" (at 2.54 3) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 663f691f-7a82-4219-a894-2c3b0cff1151)
)
(fp_text user "${REFERENCE}" (at 2.54 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7908943a-b3af-42d7-be8a-0768648c149d)
)
(fp_line (start -1.5 -1.5) (end 6.6 -1.5) (layer "F.SilkS") (width 0.12) (tstamp 1ef3dd4b-02c8-4e88-abce-772686130425))
(fp_line (start 6.6 1.5) (end -1.5 1.5) (layer "F.SilkS") (width 0.12) (tstamp 75a5f029-db48-46d1-a990-6a0c837732bb))
(fp_line (start 6.6 1.5) (end 6.6 -1.5) (layer "F.SilkS") (width 0.12) (tstamp dd639163-b7d3-4f5a-99f3-92f2d24073a2))
(fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer "F.SilkS") (width 0.12) (tstamp f65e9725-03cb-4275-b3cd-8176afc55562))
(fp_line (start 6.88 1.8) (end 6.88 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 5722ba4b-cdd5-472b-adf8-9005a724955e))
(fp_line (start 6.88 1.8) (end -1.8 1.8) (layer "F.CrtYd") (width 0.05) (tstamp 7c188164-1db0-4939-aef9-0bdc10872a1f))
(fp_line (start -1.8 -1.8) (end 6.88 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 8089e1c8-0680-4e2b-8aac-796774ae9193))
(fp_line (start -1.8 -1.8) (end -1.8 1.8) (layer "F.CrtYd") (width 0.05) (tstamp f91566d4-86aa-45dd-83f1-5e15737a093a))
(fp_line (start 5.08 0) (end 0 0) (layer "F.Fab") (width 0.1) (tstamp bdadf5ab-ce69-4a81-8d43-443850f027e9))
(pad "1" thru_hole roundrect (at 0 0 180) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 9 "Net-(C9-Pad2)") (pinfunction "1") (pintype "passive") (tstamp eae08024-38e0-4d79-83ee-d2ab09444551))
(pad "2" thru_hole circle (at 5.08 0 180) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "2") (pintype "passive") (tstamp 1c99c3ca-cae4-4aa1-b7ae-e4531fe06b8e))
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 2c0546fe-2795-4ed6-8890-6f007ef312a9)
(at 154.35 131.665 180)
(descr "Resistor SMD 0805 (2012 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" "rf_gen.kicad_sch")
(property "Sheetname" "")
(path "/fd10aaf7-f9b4-4046-a91b-6ef0eedd1210")
(attr smd)
(fp_text reference "R8" (at 0 -1.65) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3b6097f2-7566-4668-b3bc-f47ba247b8b7)
)
(fp_text value "330" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 83f22fa2-6939-43a4-9c7f-bd0a257b872c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 02e72186-c0ff-403c-a9a3-c3aaf9a59616)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 38455301-0135-40a7-b5b6-912feffbf61f))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "F.SilkS") (width 0.12) (tstamp fc8615b9-3689-4fef-bb52-bbbfd85bd4f6))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 51d7910d-2fc4-4fd7-bc92-9777454f00a0))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 58acc05e-0fd1-4c70-905b-0cb5481379a6))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 75846df0-bac8-400a-8680-fbb6e9e4c31d))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer "F.CrtYd") (width 0.05) (tstamp de66021b-dc16-471d-b9de-15f49d2b48a8))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp a75fc6aa-2609-43ca-a212-fed7c6e39c5d))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp a7cd8b08-fc2a-4f2e-b507-820a3afb6619))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp c5d0ff87-fff8-40ca-bd10-635d756ca209))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp f1a316a8-44b3-4be6-81a6-c08d8658d2e5))
(pad "1" smd roundrect (at -0.9125 0 180) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 28 "Net-(D5-Pad1)") (pintype "passive") (tstamp c4235f92-2b53-4068-af91-886315302b42))
(pad "2" smd roundrect (at 0.9125 0 180) (size 1.025 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.243902)
(net 2 "GND") (pintype "passive") (tstamp 8fad5a12-07d1-4241-83b0-9e252160bf02))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Inductor_SMD:L_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEF0) (tstamp 3893402c-8c8a-43c1-8010-eed0600994f1)
(at 159.8475 123.12)
(descr "Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "inductor")
(property "Sheetfile" "rf_gen.kicad_sch")
(property "Sheetname" "")
(path "/12596e45-6707-4319-9f3d-fd07bfb54475")
(attr smd)
(fp_text reference "L8" (at 2.9125 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d1870088-c700-4789-9486-a5bcd07097b3)
)
(fp_text value "3.3u" (at 6 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7cc56807-b678-40dc-adb5-d4ac10b82dd9)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp c098706c-9aa0-4452-96a4-e92a544d2408)
)
(fp_line (start -0.399622 -0.56) (end 0.399622 -0.56) (layer "F.SilkS") (width 0.12) (tstamp 680b7137-a349-44b1-98ca-69f8179e50b3))
(fp_line (start -0.399622 0.56) (end 0.399622 0.56) (layer "F.SilkS") (width 0.12) (tstamp e825a03e-0963-47df-9387-81dbc993eced))
(fp_line (start 1.75 -0.85) (end 1.75 0.85) (layer "F.CrtYd") (width 0.05) (tstamp 5d323b78-c5fc-4656-85e0-f98ad7fd223a))
(fp_line (start -1.75 -0.85) (end 1.75 -0.85) (layer "F.CrtYd") (width 0.05) (tstamp 8395dd4b-8fb2-4433-a386-c0aacc41e9b6))
(fp_line (start -1.75 0.85) (end -1.75 -0.85) (layer "F.CrtYd") (width 0.05) (tstamp 8508d705-bb3e-4042-b8c8-15d5018b7b9b))
(fp_line (start 1.75 0.85) (end -1.75 0.85) (layer "F.CrtYd") (width 0.05) (tstamp f27ad0f8-7ff1-4979-8aa3-8ff5b9f2845e))
(fp_line (start -1 -0.45) (end 1 -0.45) (layer "F.Fab") (width 0.1) (tstamp 288407a6-8acf-42a3-8066-f201bf510304))
(fp_line (start -1 0.45) (end -1 -0.45) (layer "F.Fab") (width 0.1) (tstamp 2ebb58bb-1361-4cdf-9597-1fa198fdfa44))
(fp_line (start 1 0.45) (end -1 0.45) (layer "F.Fab") (width 0.1) (tstamp c0abe0cd-3cbc-4ebd-ac71-3474a87ec90d))
(fp_line (start 1 -0.45) (end 1 0.45) (layer "F.Fab") (width 0.1) (tstamp c801b790-a089-480e-8261-1189f7b2d303))
(pad "1" smd roundrect (at -1.0625 0) (size 0.875 1.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "Net-(C14-Pad2)") (pinfunction "1") (pintype "passive") (tstamp c106019b-d3b4-4de9-a701-7b11f02967c1))
(pad "2" smd roundrect (at 1.0625 0) (size 0.875 1.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "+5V") (pinfunction "2") (pintype "passive") (tstamp 67c9343d-79a6-4213-96cb-2f9d886b70c4))
(model "${KICAD6_3DMODEL_DIR}/Inductor_SMD.3dshapes/L_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_1206_3216Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 3b022fdf-0733-47c3-9c80-fa5129b4111e)
(at 113.26 114.12)
(descr "Capacitor SMD 1206 (3216 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" "rf_gen.kicad_sch")
(property "Sheetname" "")
(path "/57c38440-7714-47f2-a256-32464992cd54")
(attr smd)
(fp_text reference "C7" (at 0 -1.85) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cda9a957-d783-4b0a-a74c-29fd6f3fa9ce)
)
(fp_text value "100n" (at 0 1.85) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1b6b5f8d-fb06-45ea-8eee-b6a182da5bd4)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 7d079414-5225-40b4-a910-f5b3d710c30f)
)
(fp_line (start -0.711252 0.91) (end 0.711252 0.91) (layer "F.SilkS") (width 0.12) (tstamp 1925ee17-90d7-428c-9cb4-a6723c47a27f))
(fp_line (start -0.711252 -0.91) (end 0.711252 -0.91) (layer "F.SilkS") (width 0.12) (tstamp 9da1f74e-13e0-48a6-bafc-e20b63cb84c3))
(fp_line (start -2.3 1.15) (end -2.3 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 825292ed-1b03-46b1-80f6-5921801a7990))
(fp_line (start -2.3 -1.15) (end 2.3 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp b8492169-682c-45b5-a12a-41064af3d83d))
(fp_line (start 2.3 -1.15) (end 2.3 1.15) (layer "F.CrtYd") (width 0.05) (tstamp ecbb92cb-12b7-4be1-80a2-de1fa71b10a6))
(fp_line (start 2.3 1.15) (end -2.3 1.15) (layer "F.CrtYd") (width 0.05) (tstamp f37a850c-b62f-4b02-b83c-f61bd90595d6))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 328e23b2-82cd-4875-8b25-b8ed64366f7d))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 79ed3a2e-d1ec-4343-aa4d-25b3259b37b0))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 8b7074db-9ec9-4891-acd6-80c97637f8c5))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp cb3b62f0-f3ee-4646-8190-d511c311d0fc))
(pad "1" smd roundrect (at -1.475 0) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 6 "/SiC_gate") (pintype "passive") (tstamp 0917736d-6b8a-4802-9484-18045ff6a4cc))
(pad "2" smd roundrect (at 1.475 0) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 7 "Net-(C7-Pad2)") (pintype "passive") (tstamp 67efc96e-8050-4ecb-96aa-a4f40f51d467))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "rf_gen:inductor_air_15x15" (layer "F.Cu")
(tedit 0) (tstamp 3f85af4c-15c0-41cd-bd3a-45fc8d45f884)
(at 112.26 135.62 180)
(property "Sheetfile" "rf_gen.kicad_sch")
(property "Sheetname" "")
(path "/74f671ca-d6a5-4924-8500-84df0e47c39a")
(attr smd)
(fp_text reference "L5" (at -0.74 -3.88 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aa341fc9-0179-496f-a497-13aca484adf3)
)
(fp_text value "880n" (at 0 1 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5eeed16c-4eba-4690-bc4f-1dc28ec0646b)
)
(fp_text user "${REFERENCE}" (at 0 2.5 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 66e3891a-c69a-4fc3-b771-3a0c081c1e5e)
)
(fp_rect (start -7.5 -7.5) (end 7.5 7.5) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp bace8579-5a77-4072-b6bd-1d2170d335c3))
(pad "1" smd roundrect (at -7.5 0 180) (size 5 8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "VDD") (pinfunction "1") (pintype "passive") (tstamp a554a0f5-2fdb-47ab-bf87-7fc6bb080d0c))
(pad "2" smd roundrect (at 7.5 0 180) (size 5 8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "Net-(C9-Pad2)") (pinfunction "2") (pintype "passive") (tstamp 2566c029-7dc1-4545-8454-d0eaccd34715))
(model "${KIPRJMOD}/rf_gen.3dshapes/inductor_air_15x15.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_1206_3216Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 533673a1-7ad1-44b8-9668-6f91a18167e4)
(at 163.26 109.595 90)
(descr "Capacitor SMD 1206 (3216 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" "rf_gen.kicad_sch")
(property "Sheetname" "")
(path "/2426bb39-774b-4bbd-9958-2153f00f09cb")
(attr smd)
(fp_text reference "C15" (at 2.975 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 86b091c5-079d-4d20-9d4b-c251e8595c76)
)
(fp_text value "10u" (at 0 -2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d65557e1-a761-4bc5-b294-919b76ee9a5a)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 92db4096-3b72-410d-a754-0808ecc80084)
)
(fp_line (start -0.711252 -0.91) (end 0.711252 -0.91) (layer "F.SilkS") (width 0.12) (tstamp 14f99827-88a6-43d1-a2d0-20c93c5bdbb9))
(fp_line (start -0.711252 0.91) (end 0.711252 0.91) (layer "F.SilkS") (width 0.12) (tstamp 2872b4a0-d90f-4632-9faa-d3c9eae41bbe))
(fp_line (start 2.3 1.15) (end -2.3 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 9d54e070-cfeb-4685-bfdf-81f0ba26fd29))
(fp_line (start -2.3 -1.15) (end 2.3 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp b9801542-edc2-4a2b-b8b1-8e654c519bd5))
(fp_line (start 2.3 -1.15) (end 2.3 1.15) (layer "F.CrtYd") (width 0.05) (tstamp e6ff8785-438e-4677-9eb3-85942f494a39))
(fp_line (start -2.3 1.15) (end -2.3 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp eac7c43e-c46c-45a6-862b-5a737a90b14c))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 2af3cd58-05b5-424b-a5af-dcc16af97587))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 3647417c-45bd-4506-a5c4-a7fcc15fa27d))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp decc722a-2fa3-452c-922f-578edd8ee449))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp ff94f85f-ed6e-4c87-a706-94c3c1f5446d))
(pad "1" smd roundrect (at -1.475 0 90) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 14 "+5V") (pintype "passive") (tstamp 7eb064be-a06e-4aa2-80da-d4b51e72d89c))
(pad "2" smd roundrect (at 1.475 0 90) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 2 "GND") (pintype "passive") (tstamp 1a162c67-cc8a-4c48-a7b6-debb9caef00e))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "rf_gen:TSOT26" (layer "F.Cu")
(tedit 0) (tstamp 56507440-5fa8-45e8-af05-2783d64011ce)
(at 158.15 120.05)
(property "Sheetfile" "rf_gen.kicad_sch")
(property "Sheetname" "")
(path "/36c2802b-4185-4928-8fb2-3eeefb7ff646")
(attr through_hole)
(fp_text reference "U2" (at 0.35 -2.55) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4f884445-5d4b-4af2-8162-0e0a6fc28d2f)
)
(fp_text value "AP62150" (at -5.3 -1.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f7d183ca-cbfd-4946-85a5-76e23bbf8cea)
)
(fp_line (start -1.35 -1.8) (end 2.05 -1.8) (layer "F.SilkS") (width 0.12) (tstamp 392829b5-1bf0-44b8-92e3-40f7c9f6b7ba))
(fp_line (start 2.05 -1.8) (end 2.05 1.8) (layer "F.SilkS") (width 0.12) (tstamp 6004545d-fbed-4167-9656-b787f3095aee))
(fp_line (start -2.1 1.85) (end -2.1 -0.95) (layer "F.SilkS") (width 0.12) (tstamp 6ecfc33d-292c-4e0a-aa21-f7c3080ade52))
(fp_line (start 2.1 1.85) (end -2.1 1.85) (layer "F.SilkS") (width 0.12) (tstamp 9df10674-2852-4cf0-b2db-aa86c57978b2))
(fp_line (start -2.1 -0.95) (end -1.3 -1.75) (layer "F.SilkS") (width 0.12) (tstamp b52f9b26-397b-4cec-873e-930a60d1881e))
(fp_line (start 1.8 1.55) (end -1.9 1.55) (layer "F.CrtYd") (width 0.05) (tstamp 01331415-0253-4fcb-a3d1-79ab4ba88ecf))
(fp_line (start -1.9 -1.55) (end 1.8 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp 1852a07b-ce58-47f1-b8cc-224112bd081f))
(fp_line (start 1.8 -1.55) (end 1.8 1.55) (layer "F.CrtYd") (width 0.05) (tstamp 8fa7c286-3e96-4349-baaf-69ba7a645a11))
(fp_line (start -1.9 1.55) (end -1.9 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp a043f496-259d-4523-b4cf-e9fdb075f47f))
(pad "1" smd rect (at -1.15 -0.95 270) (size 0.7 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+12V") (pinfunction "Vin") (pintype "power_in") (tstamp 28907924-bbdd-4c88-a61a-e181212281e7))
(pad "2" smd rect (at -1.15 0 270) (size 0.7 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "Net-(C14-Pad2)") (pinfunction "SW") (pintype "power_out") (tstamp 9c5a721e-a9c5-418d-b9c8-027ace877233))
(pad "3" smd rect (at -1.15 0.95 270) (size 0.7 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 71377e0a-d504-47ad-a8cd-947309b3753f))
(pad "4" smd rect (at 1.05 0.95 270) (size 0.7 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "Net-(C14-Pad1)") (pinfunction "BST") (pintype "passive") (tstamp 1c8489dc-3baa-4ac6-852c-e516a76b80fe))
(pad "5" smd rect (at 1.05 0 270) (size 0.7 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 26 "unconnected-(U2-Pad5)") (pinfunction "EN") (pintype "input") (tstamp a2ecb5e6-2734-499f-a6cc-37d290d63511))
(pad "6" smd rect (at 1.05 -0.95 270) (size 0.7 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "Net-(R3-Pad2)") (pinfunction "FB") (pintype "input") (tstamp 24a8614c-1a5a-468c-8a66-d7c9fa796944))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-6.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 565819b6-0abe-48e7-b1b8-0b6c25669696)
(at 168.335 136.12 -90)
(descr "Through hole straight pin header, 1x05, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x05 2.54mm single row")
(property "Sheetfile" "rf_gen.kicad_sch")
(property "Sheetname" "")
(path "/57b0967f-5be4-484e-ada0-7650c8adef3d")
(attr through_hole)
(fp_text reference "J3" (at 0 12.835) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f05d4e10-e49b-4d91-94cf-7a5ba2650ef9)
)
(fp_text value "Conn_01x05_Male" (at 0 13.4275 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7cb1cf74-f8c1-4db1-9916-ea1ee7ee305d)
)
(fp_text user "${REFERENCE}" (at 0 5.08) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp af528a1a-5d19-4152-8692-1ac432193537)
)
(fp_line (start 1.33 1.27) (end 1.33 11.49) (layer "F.SilkS") (width 0.12) (tstamp 542db944-6aad-46ee-b57b-015561f926e3))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 5544f50c-d056-4a2d-8c3c-cfb7f6af1199))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 59cdf284-0c78-4e44-9520-ceffbad6cede))
(fp_line (start -1.33 1.27) (end -1.33 11.49) (layer "F.SilkS") (width 0.12) (tstamp 8bb5549a-0703-4f7a-a351-7d143b0cdbee))
(fp_line (start -1.33 11.49) (end 1.33 11.49) (layer "F.SilkS") (width 0.12) (tstamp dbb790da-5318-4de9-b199-0d68a2081c5a))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp f76f6b5a-9141-47aa-8dd1-031ef92aca6a))
(fp_line (start -1.8 -1.8) (end -1.8 11.95) (layer "F.CrtYd") (width 0.05) (tstamp 335ec8ca-f053-40d7-96b5-aa13b2ec0434))
(fp_line (start -1.8 11.95) (end 1.8 11.95) (layer "F.CrtYd") (width 0.05) (tstamp 8df60e29-b7b1-4059-b410-08aaf3267ca2))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 9c3e5ac2-d2c8-4947-9b28-f85a5905def2))
(fp_line (start 1.8 11.95) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 9c595f7f-50fa-425a-9995-4a1471525cc9))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 13c8cee8-cac6-43b6-9984-0600f62610e2))
(fp_line (start 1.27 -1.27) (end 1.27 11.43) (layer "F.Fab") (width 0.1) (tstamp 5def6438-5529-4c7a-8cbf-311024ec6552))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 9aa9fb18-163c-405d-9190-6a4f7a885041))
(fp_line (start -1.27 11.43) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp a346d470-cca1-4c8e-88f8-cc9e4a1968e1))
(fp_line (start 1.27 11.43) (end -1.27 11.43) (layer "F.Fab") (width 0.1) (tstamp ac6e7c37-9d3c-4d6d-98c5-25fa2038780d))
(pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 14 "+5V") (pinfunction "Pin_1") (pintype "passive") (tstamp 122bf9cd-84ba-4d93-9869-fd4ce510d8e9))
(pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp d5ca767d-ccd4-4916-9472-fdf53693af95))
(pad "3" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 16 "/SDA") (pinfunction "Pin_3") (pintype "passive") (tstamp 63838d26-a8db-42c7-aae3-1ac4a1d0322d))
(pad "4" thru_hole oval (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 17 "/SCL") (pinfunction "Pin_4") (pintype "passive") (tstamp 4a2d69aa-e213-4472-b476-82748b2a3c49))
(pad "5" thru_hole oval (at 0 10.16 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 21 "/EN") (pinfunction "Pin_5") (pintype "passive") (tstamp 34447a65-1d52-4cc5-90ca-62303fe9c105))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x05_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "rf_gen:C_1111_2828Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 5a06cb25-bfac-4484-b07e-2779f49eaae0)
(at 76 124.12)
(descr "Capacitor SMD 0805 (2012 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, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "rf_gen.kicad_sch")
(property "Sheetname" "")
(path "/c9c38eb7-16cd-4173-b19b-432d1d961844")
(attr smd)
(fp_text reference "C10" (at 0 -2.62) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7732af5e-6fcc-4a20-9655-1f2c33922fb6)
)
(fp_text value "180p" (at 0 2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9c7f079d-db74-4a91-ad66-f1c4a0c3ef48)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 7676b1d9-1cea-492b-9ef2-023be8c00152)
)
(fp_line (start -0.261252 -1.5) (end 0.261252 -1.5) (layer "F.SilkS") (width 0.12) (tstamp 03ad0678-d360-4854-baf2-c271825fcb77))
(fp_line (start -0.261252 1.5) (end 0.261252 1.5) (layer "F.SilkS") (width 0.12) (tstamp 33fe2390-92a8-4e5d-9c6f-c9c455dd950b))
(fp_rect (start -1.5 -1.4) (end 1.5 1.4) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 8bea44c3-53a6-4d78-bd58-70b5103d1a09))
(fp_line (start 1 1.5) (end -1 1.5) (layer "F.Fab") (width 0.1) (tstamp 238cc9b5-8c4c-4185-ab28-ac220c389b6d))
(fp_line (start -1 -1.5) (end 1 -1.5) (layer "F.Fab") (width 0.1) (tstamp 3774a360-2134-4d56-84f0-cc2a37762f5c))
(fp_line (start 2.25 -0.625) (end 2.25 0.625) (layer "F.Fab") (width 0.1) (tstamp 4970fd80-5c30-4aeb-8234-bf28bf6ff7d1))
(fp_line (start -2.25 0.625) (end -2.25 -0.625) (layer "F.Fab") (width 0.1) (tstamp 62bece56-b6af-42bd-b980-aa67f2c7eec1))
(pad "1" smd roundrect (at -1.73 0) (size 1 3.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "Net-(C10-Pad1)") (pintype "passive") (tstamp 9e5ace21-158f-4a99-ab5e-982c4936e175))
(pad "2" smd roundrect (at 1.73 0) (size 1 3.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "Net-(C10-Pad2)") (pintype "passive") (tstamp 469cdb2f-ed4c-4e07-8edf-fde999c96c28))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1210_3225Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_1206_3216Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 5f58a05f-0781-4866-9469-9274d599a4ff)
(at 138.735 126.5 180)
(descr "Capacitor SMD 1206 (3216 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" "rf_gen.kicad_sch")
(property "Sheetname" "")
(path "/72bde8fe-8109-49ae-94b1-d1954a54d08c")
(attr smd)
(fp_text reference "C1" (at 3.45 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3cb1f465-6fdd-4840-9790-071d7113c3ea)
)
(fp_text value "100n" (at 0 1.85) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2ce99c9a-77c6-4f61-a4b9-570475ed95ef)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 3e1dcb50-ba99-435f-8ec3-ff31d4138385)
)
(fp_line (start -0.711252 -0.91) (end 0.711252 -0.91) (layer "F.SilkS") (width 0.12) (tstamp 3ca0c63c-b4e0-4c42-a5fb-c858853c1162))
(fp_line (start -0.711252 0.91) (end 0.711252 0.91) (layer "F.SilkS") (width 0.12) (tstamp 5ea2c7e0-f8dd-41d5-80a4-8f641e28424b))
(fp_line (start -2.3 -1.15) (end 2.3 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 313b4526-81fe-4d52-b50e-0b39b2f36d15))
(fp_line (start -2.3 1.15) (end -2.3 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 51c443ad-0c45-453e-ab3b-4a7105555324))
(fp_line (start 2.3 -1.15) (end 2.3 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 870393c4-86fb-4641-ac90-0e0def7a97c1))
(fp_line (start 2.3 1.15) (end -2.3 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 9bfafa28-7aa1-47c3-82b0-7e90dd6561cd))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 82fe553c-55fb-453c-b52e-0be87f359604))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp ada04393-0bfc-4d83-abc8-0f7bcd3e3b97))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp d4649ba9-9511-4efd-b1b1-3640ff06400c))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp ee070f5c-2f73-4a2f-b7c8-eca074f315a4))
(pad "1" smd roundrect (at -1.475 0 180) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 1 "+12V") (pintype "passive") (tstamp f15197b7-f90c-4196-a9e3-fe59b9f7c052))
(pad "2" smd roundrect (at 1.475 0 180) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 2 "GND") (pintype "passive") (tstamp aa0e111b-52d0-4a91-a659-3a0843504048))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "rf_gen:C_1111_2828Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 61cd5ee2-9475-4aa4-8b82-eb4e40b126aa)
(at 126.26 130.71 -90)
(descr "Capacitor SMD 0805 (2012 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, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "rf_gen.kicad_sch")
(property "Sheetname" "")
(path "/174a2ad3-34b9-4b14-959e-2348b19986ae")
(attr smd)
(fp_text reference "C8" (at -0.261252 2.5 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b63d37d8-6e38-41bc-96bd-30dd06104021)
)
(fp_text value "270p" (at 0 2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 914af7f6-3c60-49f0-a759-debb40458c43)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 813ba622-8b70-4c99-8e16-7f37efa4e09e)
)
(fp_line (start -0.261252 -1.5) (end 0.261252 -1.5) (layer "F.SilkS") (width 0.12) (tstamp 9a7caccd-4419-43f5-bcad-b588bb5254b7))
(fp_line (start -0.261252 1.5) (end 0.261252 1.5) (layer "F.SilkS") (width 0.12) (tstamp efda4506-9987-4269-b6de-060ed1e75f09))
(fp_rect (start -1.5 -1.4) (end 1.5 1.4) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp d15f8939-9c12-4181-a357-7f9ed3281012))
(fp_line (start 2.25 -0.625) (end 2.25 0.625) (layer "F.Fab") (width 0.1) (tstamp 8b278883-2d90-42e4-a521-b3aa4b719314))
(fp_line (start -1 -1.5) (end 1 -1.5) (layer "F.Fab") (width 0.1) (tstamp c3129713-4a2b-43f9-86f0-59418fc34788))
(fp_line (start 1 1.5) (end -1 1.5) (layer "F.Fab") (width 0.1) (tstamp c3af991b-412b-404d-95cc-a223aaa249b2))
(fp_line (start -2.25 0.625) (end -2.25 -0.625) (layer "F.Fab") (width 0.1) (tstamp dd79b462-c1cf-4340-bdf3-6e6e3a2898b9))
(pad "1" smd roundrect (at -1.73 0 270) (size 1 3.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 245db445-2418-49d7-9431-e5e574b47d1a))
(pad "2" smd roundrect (at 1.73 0 270) (size 1 3.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "VDD") (pintype "passive") (tstamp 477f0743-ea66-4f70-ac74-bb571ecf4576))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1210_3225Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "rf_gen:C_1111_2828Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 61d57fba-01c3-43d7-a518-c3ebb42379fb)
(at 129 118.5 180)
(descr "Capacitor SMD 0805 (2012 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, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "rf_gen.kicad_sch")
(property "Sheetname" "")
(path "/12cb9ac9-829b-4ad9-bdf1-997a5f9b4c93")
(attr smd)
(fp_text reference "C4" (at 3.09 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1b8757c7-97e8-4090-a310-e5222f2d3769)
)
(fp_text value "270p" (at 0 2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 69ec3d2f-cd80-4515-b0f8-026b3083644a)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp dfcd39a8-3b3d-4202-b13d-7217fb8cce3d)
)
(fp_line (start -0.261252 -1.5) (end 0.261252 -1.5) (layer "F.SilkS") (width 0.12) (tstamp 36484f24-b401-4402-bce7-77971cfdb654))
(fp_line (start -0.261252 1.5) (end 0.261252 1.5) (layer "F.SilkS") (width 0.12) (tstamp c1a6e610-9fff-4512-a345-2beb5c3922e2))
(fp_rect (start -1.5 -1.4) (end 1.5 1.4) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp e3337222-74c2-4dc6-a1ce-a2bd6cb1d966))
(fp_line (start 1 1.5) (end -1 1.5) (layer "F.Fab") (width 0.1) (tstamp 0b52071f-ad0b-44a5-a83f-b71d30c8b9a5))
(fp_line (start 2.25 -0.625) (end 2.25 0.625) (layer "F.Fab") (width 0.1) (tstamp 5fb1e843-d57d-4fe6-9867-2cd434d77a72))
(fp_line (start -2.25 0.625) (end -2.25 -0.625) (layer "F.Fab") (width 0.1) (tstamp 697cf971-1efe-4c6d-a377-f555b46eb182))
(fp_line (start -1 -1.5) (end 1 -1.5) (layer "F.Fab") (width 0.1) (tstamp dd3501c6-e240-47e6-9e36-d622aee7bf83))
(pad "1" smd roundrect (at -1.73 0 180) (size 1 3.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(C4-Pad1)") (pintype "passive") (tstamp c80da3c4-823e-4cd9-accd-8ad388dcc877))
(pad "2" smd roundrect (at 1.73 0 180) (size 1 3.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "Net-(C4-Pad2)") (pintype "passive") (tstamp 059941ca-e7e2-4118-abf0-dc6d994bbc41))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1210_3225Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 6229fa0b-8d9a-41b9-b053-af71095932aa)
(at 161.26 120 -90)
(descr "Capacitor SMD 0805 (2012 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, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "rf_gen.kicad_sch")
(property "Sheetname" "")
(path "/eec6f36a-db27-4a71-850f-c3b5a7fb9563")
(attr smd)
(fp_text reference "C14" (at 0.05 -2 90) (layer "F.SilkS")