-
Notifications
You must be signed in to change notification settings - Fork 0
/
PM6666-10MHz.kicad_pcb
13903 lines (13848 loc) · 570 KB
/
PM6666-10MHz.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")
(title_block
(title "PM6666-10MHz")
(date "2024-04-04")
(rev "0.4")
(company "Gomtuu Net")
(comment 1 "- usable OCXO: CTI OSC5A2B02 / NDK ENE3311B")
(comment 3 "programmable timer/counter")
(comment 4 "Alternative oscillator for Fluke/Philips PM6666 ")
)
(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)
)
(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 false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 6)
(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 0)
(scaleselection 1)
(outputdirectory "gerbers-PM6666-10MHz/")
)
)
(net 0 "")
(net 1 "+5Vr")
(net 2 "GND")
(net 3 "Net-(U4-Vref)")
(net 4 "Vref")
(net 5 "+12V")
(net 6 "Net-(U2-Vin)")
(net 7 "unconnected-(J1-Pin_2-Pad2)")
(net 8 "unconnected-(J1-Pin_3-Pad3)")
(net 9 "unconnected-(J1-Pin_4-Pad4)")
(net 10 "XOSC")
(net 11 "unconnected-(J1-Pin_6-Pad6)")
(net 12 "unconnected-(J1-Pin_7-Pad7)")
(net 13 "+5V")
(net 14 "unconnected-(J1-Pin_9-Pad9)")
(net 15 "unconnected-(J1-Pin_10-Pad10)")
(net 16 "Net-(J4-In)")
(net 17 "Net-(JP1-B)")
(net 18 "10MHz")
(net 19 "Net-(U2-EN)")
(net 20 "Net-(D1-A)")
(net 21 "Net-(J2-Pin_4)")
(net 22 "Net-(R7-Pad1)")
(net 23 "Net-(R8-Pad1)")
(net 24 "Net-(R9-Pad1)")
(net 25 "Net-(R10-Pad1)")
(net 26 "unconnected-(U1-nc-Pad4)")
(net 27 "Net-(U3-Pad2)")
(net 28 "Net-(U3-Pad11)")
(net 29 "unconnected-(U4-NC-Pad5)")
(net 30 "Net-(R6-Pad2)")
(net 31 "Net-(J2-Pin_2)")
(net 32 "Net-(J2-Pin_3)")
(net 33 "Net-(R11-Pad1)")
(footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" (layer "F.Cu")
(tstamp 04b3bcde-fd4e-4f54-bdd3-508e5911ca99)
(at 150.876 83.566 -90)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "PM6666-10MHz.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/94cc61c4-5818-4ae9-b9ab-01ac92566d6a")
(attr smd)
(fp_text reference "R5" (at 3.302 0 -180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4fdf4075-ca9e-4524-9090-fe1ecff5d50f)
)
(fp_text value "470" (at 0 1.82 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1c5da5cb-3c81-4624-9443-67b6203aea87)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 399d82a9-3a72-4dff-9502-a1b43fad3d5b)
)
(fp_line (start -0.727064 -0.91) (end 0.727064 -0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 80f4a3f3-a072-4be5-a6b9-350ad74a5380))
(fp_line (start -0.727064 0.91) (end 0.727064 0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6b2940e1-5f8e-4645-b083-7d58af0ec3bc))
(fp_line (start -2.45 -1.12) (end 2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ab353e0e-f9cf-4697-a868-b494bdd6932d))
(fp_line (start -2.45 1.12) (end -2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d6ebf956-845d-416d-9d65-12130fe85a84))
(fp_line (start 2.45 -1.12) (end 2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5a82b183-f21b-40e5-a0ef-f445eb182be9))
(fp_line (start 2.45 1.12) (end -2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 29d7a72f-81fe-4ba5-a3b4-f5dce2cae572))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bd3cd40f-90a4-42ed-9e3d-eb109a7be1b6))
(fp_line (start -1.6 0.8) (end -1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 335dc0ea-2ac3-464f-9545-1da358c567bc))
(fp_line (start 1.6 -0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7fb006ac-cb83-436a-b3a1-70f8f01dc1d8))
(fp_line (start 1.6 0.8) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6df29e08-e41b-4f14-92b9-fb89b18866b3))
(pad "1" smd roundrect (at -1.55 0 270) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 20 "Net-(D1-A)") (pintype "passive") (tstamp d3c3b34a-5f08-4263-9b0c-ee312770d161))
(pad "2" smd roundrect (at 1.55 0 270) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 1 "+5Vr") (pintype "passive") (tstamp 9a4593c4-f93d-4204-9803-94155559c6e2))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Fuse:Fuse_Littelfuse_395Series" (layer "F.Cu")
(tstamp 0b1b7cef-a30b-412e-8706-618f20f5da3f)
(at 164.465 90.17)
(descr "Fuse, TE5, Littelfuse/Wickmann, No. 460, No560,")
(tags "Fuse TE5 Littelfuse/Wickmann No. 460 No560 ")
(property "Sheetfile" "PM6666-10MHz.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resettable fuse, polymeric positive temperature coefficient")
(property "ki_keywords" "resettable fuse PTC PPTC polyfuse polyswitch")
(path "/fa417810-f266-4cc7-af01-ee59487f2971")
(attr through_hole)
(fp_text reference "F1" (at 2.667 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5e866d25-8f87-46b8-8af7-5828a2fb65e7)
)
(fp_text value "Polyfuse" (at 2.35 3.1) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ba356c64-1c52-412a-a952-bcaed0ad69dc)
)
(fp_text user "${REFERENCE}" (at 2.667 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c18633b7-3fce-4496-a3b7-90ec4e93d9d0)
)
(fp_line (start -1.83 -2.12) (end -1.83 2.12)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3f6da74e-9b7d-43c7-8347-79a4220e8a8a))
(fp_line (start -1.83 -2.12) (end 6.91 -2.12)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aa51fdab-3da7-410d-bbcc-36389307b079))
(fp_line (start 6.91 2.12) (end -1.83 2.12)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 675594c7-8ead-4acb-b1e5-44cad8e6892e))
(fp_line (start 6.91 2.12) (end 6.91 -2.12)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b4399b70-96ac-46aa-8915-d471938a7201))
(fp_line (start -1.96 -2.25) (end -1.96 2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9f2bdc4d-5759-4614-aeac-7c4a8f40874f))
(fp_line (start -1.96 -2.25) (end 7.04 -2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c3656587-e490-4cc4-b6b1-081eddb556c9))
(fp_line (start 7.04 2.25) (end -1.96 2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b9e04dcf-44c1-4b21-b26c-381bd5def91c))
(fp_line (start 7.04 2.25) (end 7.04 -2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 80387a29-c048-44c1-8db9-bbb2691a6b30))
(fp_line (start -1.71 -2) (end -1.71 2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp de85eadf-e951-46d4-ab56-98e4a8d4c2de))
(fp_line (start -1.71 2) (end 6.79 2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5c9d4dcb-ef32-419a-a034-0db11665a5a9))
(fp_line (start 6.79 -2) (end -1.71 -2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5c8490e1-60b9-482f-addb-79cacab98e59))
(fp_line (start 6.79 2) (end 6.79 -2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 920439bb-82c4-4098-94d2-a6f3d1c59585))
(pad "1" thru_hole circle (at 0 0) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask")
(net 5 "+12V") (pintype "passive") (tstamp d7f83292-b6b4-4957-80f6-26e9743294df))
(pad "2" thru_hole circle (at 5.08 0.01) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask")
(net 6 "Net-(U2-Vin)") (pintype "passive") (tstamp d1fcab7a-6108-4358-bfca-377468438a33))
(model "${KICAD6_3DMODEL_DIR}/Fuse.3dshapes/Fuse_Littelfuse_395Series.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" (layer "F.Cu")
(tstamp 1485ba38-0771-418c-967d-5b66f7987c79)
(at 176.149 81.788)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "PM6666-10MHz.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/6d64b618-909d-48cd-8eab-510fc8c25fe9")
(attr smd)
(fp_text reference "R1" (at 1.851 2.112 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1c735528-b132-496d-880d-97b9dca4aebe)
)
(fp_text value "100k" (at 0 1.82) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e18e0d76-50cf-4a28-9041-7f56052a5d1e)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 494d1fbc-34c9-4d3e-8054-7481a500d925)
)
(fp_line (start -0.727064 -0.91) (end 0.727064 -0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d3aeb54a-cb35-4866-a0e8-e855911117f5))
(fp_line (start -0.727064 0.91) (end 0.727064 0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 82de4651-cea1-44c6-918d-014eb9fb9e09))
(fp_line (start -2.45 -1.12) (end 2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a79a5b89-83f1-4fe1-ad08-2dedbe3c760c))
(fp_line (start -2.45 1.12) (end -2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 12e4f426-b6cf-4509-9dc9-ee4ab9534eb2))
(fp_line (start 2.45 -1.12) (end 2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9eb316fc-f8c1-4c37-af47-ebcce5e5d23c))
(fp_line (start 2.45 1.12) (end -2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b8929176-82a6-4204-8214-2b253e5a7373))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 82718df9-c71e-41b6-9106-a269c93c39b8))
(fp_line (start -1.6 0.8) (end -1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 129b3703-6bb8-4f7e-8ae8-2792bd2682d6))
(fp_line (start 1.6 -0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 32900ee8-d106-41c2-8cbd-945d6ccff24b))
(fp_line (start 1.6 0.8) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 17a77ecd-2f20-4be0-aff3-9ea80364d1d9))
(pad "1" smd roundrect (at -1.55 0) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 6 "Net-(U2-Vin)") (pintype "passive") (tstamp c948d001-5c11-47d6-8103-f49c197ab349))
(pad "2" smd roundrect (at 1.55 0) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 19 "Net-(U2-EN)") (pintype "passive") (tstamp 0cca851c-a9c6-4fbf-a086-507ad96998ed))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:CP_Radial_D4.0mm_P2.00mm" (layer "F.Cu")
(tstamp 18d4e310-6894-407e-a48c-8c53ae51f141)
(at 175.165 77.513401)
(descr "CP, Radial series, Radial, pin pitch=2.00mm, , diameter=4mm, Electrolytic Capacitor")
(tags "CP Radial series Radial pin pitch 2.00mm diameter 4mm Electrolytic Capacitor")
(property "Sheetfile" "PM6666-10MHz.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Polarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/ae123827-3d78-400e-90ed-1cc006a4c207")
(attr through_hole)
(fp_text reference "C2" (at 2.935 -2.513401 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2300c822-a19a-4554-81fe-f203326222e3)
)
(fp_text value "100u" (at 1 3.25) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 725e37f0-798f-4cc0-adfb-410e67b5c780)
)
(fp_text user "${REFERENCE}" (at 1 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 48725978-2878-4654-82d8-10711bf3359f)
)
(fp_line (start -1.269801 -1.195) (end -0.869801 -1.195)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a3c342db-540e-49f7-8c66-4a18a69c3cf5))
(fp_line (start -1.069801 -1.395) (end -1.069801 -0.995)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 07d4e0fc-9e3c-4f94-87e2-e95f471cc30b))
(fp_line (start 1 -2.08) (end 1 2.08)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e948fe47-a550-469b-8521-2bf904938022))
(fp_line (start 1.04 -2.08) (end 1.04 2.08)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 491ac9ff-20ad-4252-aa6e-1f4a592fde69))
(fp_line (start 1.08 -2.079) (end 1.08 2.079)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 266d85f4-4752-4677-bd06-3400e27f5bdc))
(fp_line (start 1.12 -2.077) (end 1.12 2.077)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 75aebc20-aeda-4994-8e6a-574051370fde))
(fp_line (start 1.16 -2.074) (end 1.16 2.074)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6e15c1c7-e9b9-45b8-bf66-655c70223d2b))
(fp_line (start 1.2 -2.071) (end 1.2 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp daca98c6-8cf8-4958-afd4-e25857fa6217))
(fp_line (start 1.2 0.84) (end 1.2 2.071)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0d061abd-666b-4b84-86c4-2a6af56ca644))
(fp_line (start 1.24 -2.067) (end 1.24 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0643adda-778b-4a36-9259-a50786c7e8ec))
(fp_line (start 1.24 0.84) (end 1.24 2.067)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 12b3040c-b5e5-441b-a5b6-8a96c5879d3e))
(fp_line (start 1.28 -2.062) (end 1.28 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6d2d49b0-2a71-4f3d-b0d9-90c1e41d1a05))
(fp_line (start 1.28 0.84) (end 1.28 2.062)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 90675ae1-4b0f-476c-9499-2385a3a18b86))
(fp_line (start 1.32 -2.056) (end 1.32 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5d257fda-da4a-4b02-ae97-841e3eb43601))
(fp_line (start 1.32 0.84) (end 1.32 2.056)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bbc5480d-36ed-40c8-80a2-6ccf87934ee7))
(fp_line (start 1.36 -2.05) (end 1.36 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6bfe385c-dd03-4141-bc16-0a3cf88cd665))
(fp_line (start 1.36 0.84) (end 1.36 2.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d5e480b5-ba31-4ee7-b853-924c5c381556))
(fp_line (start 1.4 -2.042) (end 1.4 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6fddab3a-4cbf-4db1-b3c3-95c8d3d346ab))
(fp_line (start 1.4 0.84) (end 1.4 2.042)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 620856f0-7964-4f1a-80d7-9e48791e2394))
(fp_line (start 1.44 -2.034) (end 1.44 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6c5ca699-ebaa-4f32-aca6-19025442c647))
(fp_line (start 1.44 0.84) (end 1.44 2.034)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2238c455-e581-4b4a-9d71-7c381b5f046d))
(fp_line (start 1.48 -2.025) (end 1.48 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 52acc40e-942a-4803-bffc-d53250e1bfbe))
(fp_line (start 1.48 0.84) (end 1.48 2.025)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a477376a-0760-491a-909b-c7fc9ef6e97d))
(fp_line (start 1.52 -2.016) (end 1.52 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2a26a840-5d34-40ed-9462-20f94d696082))
(fp_line (start 1.52 0.84) (end 1.52 2.016)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e1504368-8e7c-4017-bb7f-f9790cb85ac1))
(fp_line (start 1.56 -2.005) (end 1.56 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2989b138-4da7-436c-a852-7687389d2f16))
(fp_line (start 1.56 0.84) (end 1.56 2.005)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e9303716-9fc4-4ebc-b93c-c1397b7b801a))
(fp_line (start 1.6 -1.994) (end 1.6 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 648b8c1e-d72d-4d12-8b33-90f85155488f))
(fp_line (start 1.6 0.84) (end 1.6 1.994)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1e7b1c8f-b749-455b-97d8-542fe7d137fb))
(fp_line (start 1.64 -1.982) (end 1.64 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2d0a706a-0b10-400d-982f-ce4189726b09))
(fp_line (start 1.64 0.84) (end 1.64 1.982)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 60bfe513-383d-4794-8a3e-34211e20f7a2))
(fp_line (start 1.68 -1.968) (end 1.68 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8e98c36d-f4ef-4198-8c54-12034f1ea4c4))
(fp_line (start 1.68 0.84) (end 1.68 1.968)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9d2cbe47-7a18-456e-9992-f2426ad86a1e))
(fp_line (start 1.721 -1.954) (end 1.721 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4e146184-7e0c-49c9-b463-5ca6091dfb8d))
(fp_line (start 1.721 0.84) (end 1.721 1.954)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp be65ce7a-f70e-404a-ba20-fe3297cec3a6))
(fp_line (start 1.761 -1.94) (end 1.761 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 79c39f1a-64d2-4fa8-bcb1-73592f9e1776))
(fp_line (start 1.761 0.84) (end 1.761 1.94)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 78a40997-ed2b-4d13-b23f-8efe02717ebb))
(fp_line (start 1.801 -1.924) (end 1.801 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 34ebe007-c4c5-4092-bbc0-0c41d1a4dde4))
(fp_line (start 1.801 0.84) (end 1.801 1.924)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3fa6c7c0-e0d6-4d11-a07a-2164b2c4535a))
(fp_line (start 1.841 -1.907) (end 1.841 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 97923d34-0908-4160-8587-eb2cc6390fc0))
(fp_line (start 1.841 0.84) (end 1.841 1.907)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 040a0eac-a87c-4f45-a88f-535d3001a645))
(fp_line (start 1.881 -1.889) (end 1.881 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4b80671e-24c6-4dbd-be1f-033b21d99b3a))
(fp_line (start 1.881 0.84) (end 1.881 1.889)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3ebd9060-211a-40a7-9ed1-2f157852e94a))
(fp_line (start 1.921 -1.87) (end 1.921 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 942f335a-1c9e-41c7-a91f-b71b7c124462))
(fp_line (start 1.921 0.84) (end 1.921 1.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 74d42df5-297e-4856-9a59-46abbbda2c10))
(fp_line (start 1.961 -1.851) (end 1.961 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 681f10c1-bbab-4c07-ac50-3cc527d10679))
(fp_line (start 1.961 0.84) (end 1.961 1.851)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0ae3b532-1173-4769-bfa7-699f614a14a8))
(fp_line (start 2.001 -1.83) (end 2.001 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c7b54059-7685-408b-9bed-f19c4a253c56))
(fp_line (start 2.001 0.84) (end 2.001 1.83)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2f23f9ec-58cb-4819-9764-a4af5b1d9519))
(fp_line (start 2.041 -1.808) (end 2.041 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d05a1ac1-4e7a-482c-8aae-089473ad24b6))
(fp_line (start 2.041 0.84) (end 2.041 1.808)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7ddbfa89-ed83-4a27-bacb-b90b5e992a77))
(fp_line (start 2.081 -1.785) (end 2.081 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a4874377-6d34-480e-8f99-c04d0632ae02))
(fp_line (start 2.081 0.84) (end 2.081 1.785)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7773d305-cdea-4014-80fa-ac4028d69b46))
(fp_line (start 2.121 -1.76) (end 2.121 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 376cdebf-ce0f-49f1-9a4e-f228ac4217f5))
(fp_line (start 2.121 0.84) (end 2.121 1.76)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d09597bd-2293-4672-b165-7be5956ce6e3))
(fp_line (start 2.161 -1.735) (end 2.161 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4d7b733c-7d2e-4352-8d03-d144589a83cc))
(fp_line (start 2.161 0.84) (end 2.161 1.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d37d9c62-c29e-49ae-b2f5-dba06301c94c))
(fp_line (start 2.201 -1.708) (end 2.201 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e39b30bf-fc9e-4a04-9642-9429711aae89))
(fp_line (start 2.201 0.84) (end 2.201 1.708)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 11e8b045-af91-4952-ad7f-bebacbd25a07))
(fp_line (start 2.241 -1.68) (end 2.241 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 02c16b05-7f0f-478e-8f42-9e97ff1b9d7d))
(fp_line (start 2.241 0.84) (end 2.241 1.68)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5d8a4eba-5798-468b-867f-2b6af317cf20))
(fp_line (start 2.281 -1.65) (end 2.281 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1a27f719-4d4e-482d-ab5e-0963523edf0f))
(fp_line (start 2.281 0.84) (end 2.281 1.65)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a36689fb-fe1e-4364-9c35-52b41ea11dd1))
(fp_line (start 2.321 -1.619) (end 2.321 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d22976b2-aa54-4063-9610-69c223013ccd))
(fp_line (start 2.321 0.84) (end 2.321 1.619)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d4c28636-00e8-4a22-8508-a8f5f5eb5e4d))
(fp_line (start 2.361 -1.587) (end 2.361 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 41ebcfd5-dfe7-4b77-a3cf-5a43af42d92c))
(fp_line (start 2.361 0.84) (end 2.361 1.587)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 343a224e-4fb7-4a57-a841-dd45f5976861))
(fp_line (start 2.401 -1.552) (end 2.401 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 33717f88-d052-48f0-927d-074a7027a3b6))
(fp_line (start 2.401 0.84) (end 2.401 1.552)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f5db79dc-a62b-4a13-b844-62748c2c8be4))
(fp_line (start 2.441 -1.516) (end 2.441 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 408ebe96-cefd-4575-b9a6-af248dcdd692))
(fp_line (start 2.441 0.84) (end 2.441 1.516)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c0b09aaf-a135-4d91-bf78-04e8419ad875))
(fp_line (start 2.481 -1.478) (end 2.481 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 61e211cb-ab65-43dd-977e-0a878bd255df))
(fp_line (start 2.481 0.84) (end 2.481 1.478)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f4cff71c-5713-469b-9155-615eba03b817))
(fp_line (start 2.521 -1.438) (end 2.521 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aa88002d-458d-4feb-835a-d41f8623776c))
(fp_line (start 2.521 0.84) (end 2.521 1.438)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d3fb2adc-8439-4c61-8d23-2bc4487f1be6))
(fp_line (start 2.561 -1.396) (end 2.561 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2b279e7e-0d57-4596-8d06-ef40db85c41e))
(fp_line (start 2.561 0.84) (end 2.561 1.396)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 12cae630-2517-42df-be96-66d6e3465a0e))
(fp_line (start 2.601 -1.351) (end 2.601 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 638d0125-3eab-4104-8215-df108c246c66))
(fp_line (start 2.601 0.84) (end 2.601 1.351)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fbd5ee0d-7e11-455b-882c-67bdf51025c8))
(fp_line (start 2.641 -1.304) (end 2.641 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4db78df0-f885-4cbd-b7da-074ea19313a9))
(fp_line (start 2.641 0.84) (end 2.641 1.304)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8d89c841-08f0-4732-8948-311464ca30ae))
(fp_line (start 2.681 -1.254) (end 2.681 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f7c57279-cfe2-4b03-8d4b-39dcb71a811a))
(fp_line (start 2.681 0.84) (end 2.681 1.254)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a63c70a3-7075-4e0c-acdd-501bb4c6d2c5))
(fp_line (start 2.721 -1.2) (end 2.721 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ccc49bf9-0fd5-4628-8d12-32d4e5fa1726))
(fp_line (start 2.721 0.84) (end 2.721 1.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5d7fe56d-4028-4e68-a76e-1184726b5b88))
(fp_line (start 2.761 -1.142) (end 2.761 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b9e885c4-6381-4a7c-b9ff-77061d2dd416))
(fp_line (start 2.761 0.84) (end 2.761 1.142)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 972ad832-0306-40a9-aa67-30f4099c392b))
(fp_line (start 2.801 -1.08) (end 2.801 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b920d8d3-4f3c-48ff-883c-2acad4abf887))
(fp_line (start 2.801 0.84) (end 2.801 1.08)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1e904f33-714a-4012-a3d6-b23f86ad9ffb))
(fp_line (start 2.841 -1.013) (end 2.841 1.013)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 90696354-23f6-4466-ae0c-8c0a4ecd839e))
(fp_line (start 2.881 -0.94) (end 2.881 0.94)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 63d57251-c6a7-458e-b7fc-624bb3527bcc))
(fp_line (start 2.921 -0.859) (end 2.921 0.859)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fdef5056-db0d-473e-a6d9-c4e03d8fd165))
(fp_line (start 2.961 -0.768) (end 2.961 0.768)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c4a2378f-a0b9-4fc1-8dd6-718cd692c383))
(fp_line (start 3.001 -0.664) (end 3.001 0.664)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 15f61749-3a4d-46a4-908d-7ee06b243156))
(fp_line (start 3.041 -0.537) (end 3.041 0.537)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 95824bc3-9d54-407c-a5ab-4f224f7ebb0c))
(fp_line (start 3.081 -0.37) (end 3.081 0.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9557a4e6-ff4d-406d-a2c3-155f09bee70c))
(fp_circle (center 1 0) (end 3.12 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp c55fb63c-853c-45ca-b103-71b21335dc43))
(fp_circle (center 1 0) (end 3.25 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 3ebd3612-fbe0-43ed-95ad-f3e706dabba8))
(fp_line (start -0.702554 -0.8675) (end -0.302554 -0.8675)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9d91047b-f044-4fef-a83b-f19f3693d9e2))
(fp_line (start -0.502554 -1.0675) (end -0.502554 -0.6675)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 43288736-ed10-412c-b1fb-8857a81ceaed))
(fp_circle (center 1 0) (end 3 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 2c1e3fc1-0fe4-4de6-8573-667ffc6f8251))
(pad "1" thru_hole rect (at 0 0) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 17 "Net-(JP1-B)") (pintype "passive") (tstamp 560a967a-53ea-46bc-9dcb-bee5986752e5))
(pad "2" thru_hole circle (at 2 0) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pintype "passive") (tstamp fc7a1d46-cc01-458a-9dcd-4d894b1fca72))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D4.0mm_P2.00mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Gomtuu:Oscillator_OCXO_OSC5A2B02" (layer "F.Cu")
(tstamp 24324b2e-7c6b-44e6-95de-4f3082e90768)
(at 131.318 66.802 90)
(tags "OCXO, Oscillator")
(property "Sheetfile" "PM6666-10MHz.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "10MHz OCXO, HCMOS")
(property "ki_keywords" "OCXO")
(path "/f463734a-8000-410f-af04-0a1f8d0cfaf5")
(attr through_hole)
(fp_text reference "U1" (at 0.254 -0.635 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 957fab24-194c-4aad-9414-d7b2961fb2d9)
)
(fp_text value "OSC5A2B02" (at 0.2032 -0.6096 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2913adbc-0693-4627-b65b-496e16d8bab8)
)
(fp_text user "Vcont" (at 5.715 9.525 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 147c0da8-a45a-4b44-a5d4-cfc0e97b99bb)
)
(fp_text user "GND" (at 0 6.985 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4ac86d3d-7654-4ad5-8572-1b1d6f88d394)
)
(fp_text user "NC" (at 6.985 -9.525 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 75a39fba-ad23-4d5c-9b6f-58217176f85a)
)
(fp_text user "Vcc" (at -6.35 -9.525 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dbf4ea53-c129-4723-b9fe-9b9bea32897d)
)
(fp_text user "Out" (at -6.35 9.525 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp df0857d3-fdd8-47ee-a46b-46b2fe20b6c9)
)
(fp_line (start -12.7 -10.795) (end -12.7 -11.43)
(stroke (width 0.4) (type solid)) (layer "F.SilkS") (tstamp 5a14f5e1-763c-48f1-a75f-f7ae3ebddc47))
(fp_line (start -12.7 -10.795) (end -12.7 12.7)
(stroke (width 0.4) (type solid)) (layer "F.SilkS") (tstamp f723e849-97e6-4925-beb1-008a1ddaca7e))
(fp_line (start -12.7 12.7) (end 11.43 12.7)
(stroke (width 0.4) (type solid)) (layer "F.SilkS") (tstamp 3eea71dc-1d50-4dde-9dc1-64fe49b69d7e))
(fp_line (start -11.43 -12.7) (end -10.795 -12.7)
(stroke (width 0.4) (type solid)) (layer "F.SilkS") (tstamp e877750a-aa49-4a46-af83-2f1b490c1583))
(fp_line (start 9.525 -12.7) (end -10.795 -12.7)
(stroke (width 0.4) (type solid)) (layer "F.SilkS") (tstamp 4a17183e-096f-45fa-8dc3-cac32498bebc))
(fp_line (start 9.525 -12.7) (end 10.795 -12.7)
(stroke (width 0.4) (type solid)) (layer "F.SilkS") (tstamp e3451775-c4fc-4a23-b1e0-10cb0329ecc3))
(fp_line (start 11.43 -12.7) (end 10.795 -12.7)
(stroke (width 0.4) (type solid)) (layer "F.SilkS") (tstamp 66c3507d-4c53-4166-a084-9457ee56752f))
(fp_line (start 12.7 -10.795) (end 12.7 -11.43)
(stroke (width 0.4) (type solid)) (layer "F.SilkS") (tstamp e34499b2-4792-47e7-b55f-8f8c3b45a3d7))
(fp_line (start 12.7 11.43) (end 12.7 -10.795)
(stroke (width 0.4) (type solid)) (layer "F.SilkS") (tstamp c9111f08-8a81-4ea8-bbdf-48987752e34b))
(fp_arc (start -12.7 -11.43) (mid -12.328026 -12.328026) (end -11.43 -12.7)
(stroke (width 0.4) (type solid)) (layer "F.SilkS") (tstamp d312e86a-fb2c-47e6-84d1-413e6d6d60f4))
(fp_arc (start 11.43 -12.7) (mid 12.328026 -12.328026) (end 12.7 -11.43)
(stroke (width 0.4) (type solid)) (layer "F.SilkS") (tstamp 09964444-ccd1-4e21-9dfe-2dfc8eeead5c))
(fp_arc (start 12.7 11.43) (mid 12.328026 12.328026) (end 11.43 12.7)
(stroke (width 0.4) (type solid)) (layer "F.SilkS") (tstamp 6ae5a89c-f8fb-4c08-aef4-a70fc659883f))
(fp_circle (center -5.715 -5.715) (end -5.08 -5.715)
(stroke (width 0.4) (type solid)) (fill none) (layer "F.SilkS") (tstamp 0c636fcf-b1c3-4444-9516-971b89165dec))
(fp_circle (center -5.715 5.715) (end -5.08 5.715)
(stroke (width 0.4) (type solid)) (fill none) (layer "F.SilkS") (tstamp 8193772e-3980-403b-882a-0962dd69fd44))
(fp_circle (center 5.715 -5.715) (end 6.35 -5.715)
(stroke (width 0.4) (type solid)) (fill none) (layer "F.SilkS") (tstamp 41bb86fa-a9b8-4835-bdf7-42629f5bf478))
(fp_circle (center 5.715 5.715) (end 6.35 5.715)
(stroke (width 0.4) (type solid)) (fill none) (layer "F.SilkS") (tstamp 65927ffa-871a-41e5-969e-0538095a8a5a))
(fp_line (start -13.335 13.335) (end -13.335 -11.43)
(stroke (width 0.4) (type solid)) (layer "Dwgs.User") (tstamp 50c2ff45-29a0-4c7a-868a-271973b6590d))
(fp_line (start -11.43 -13.335) (end 11.43 -13.335)
(stroke (width 0.4) (type solid)) (layer "Dwgs.User") (tstamp 506a29f9-11c5-47e4-a178-55d0b4ce5fd7))
(fp_line (start 11.43 13.335) (end -13.335 13.335)
(stroke (width 0.4) (type solid)) (layer "Dwgs.User") (tstamp 0402b71c-bbf9-488a-8fa0-b5f9dafdc270))
(fp_line (start 13.335 -11.43) (end 13.335 11.43)
(stroke (width 0.4) (type solid)) (layer "Dwgs.User") (tstamp bd6bab01-983c-4f0e-8d66-cfed659b35c8))
(fp_arc (start -13.335 -11.43) (mid -12.777038 -12.777038) (end -11.43 -13.335)
(stroke (width 0.4) (type solid)) (layer "Dwgs.User") (tstamp 52f8a8b1-7bf0-43fa-b015-c7219e90bc83))
(fp_arc (start 11.43 -13.335) (mid 12.777038 -12.777038) (end 13.335 -11.43)
(stroke (width 0.4) (type solid)) (layer "Dwgs.User") (tstamp 09327009-4d30-42e3-8933-bfc489cee03a))
(fp_arc (start 13.335 11.43) (mid 12.777038 12.777038) (end 11.43 13.335)
(stroke (width 0.4) (type solid)) (layer "Dwgs.User") (tstamp 4a05e182-5e74-4864-993a-e5f3d82d91fe))
(pad "1" thru_hole circle (at -9.525 9.525 90) (size 2.5 2.5) (drill 1) (layers "*.Cu" "*.Mask")
(net 18 "10MHz") (pinfunction "Out") (pintype "output") (tstamp 2729210f-3c7f-4c87-994b-888d904e62c9))
(pad "2" thru_hole circle (at 0 9.525 90) (size 2.5 2.5) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp f45a83a1-92c2-4fb1-a07c-9ee3e8396eab))
(pad "3" thru_hole circle (at 9.525 9.525 90) (size 2.5 2.5) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "Vref") (pinfunction "Vfc") (pintype "input") (tstamp 2ef86f10-de61-4021-8461-b8e0997e884c))
(pad "4" thru_hole circle (at 9.525 -9.525 90) (size 2.5 2.5) (drill 1) (layers "*.Cu" "*.Mask")
(net 26 "unconnected-(U1-nc-Pad4)") (pinfunction "nc") (pintype "no_connect") (tstamp f25ccd4a-b100-4e36-aaed-6b5638e9eeec))
(pad "5" thru_hole circle (at -9.525 -9.525 90) (size 2.5 2.5) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "+5Vr") (pinfunction "Vcc") (pintype "power_in") (tstamp d5d590ab-0e34-48ba-be6b-638b4d7a4d96))
(model "${KIPRJMOD}/libraries/ENE3311.pretty/OSC5A2B02.wrl"
(offset (xyz 0 0 0))
(scale (xyz 0.385 0.385 0.39))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" (layer "F.Cu")
(tstamp 2555d405-6177-4913-9771-98da7823bec2)
(at 162.85 64.65)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "PM6666-10MHz.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/d81e1361-bd7e-4c6e-95ae-e8b2a1542f7a")
(attr smd)
(fp_text reference "R6" (at 12.55 2.35) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b1799523-372d-4b41-bbe1-f9390e4b291f)
)
(fp_text value "1k" (at 0 1.82) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1d6e3aaa-fffa-4695-a92f-39f61110474e)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp dd84607b-efab-4323-a427-fee0966dec44)
)
(fp_line (start -0.727064 -0.91) (end 0.727064 -0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 21ec6627-f120-48c4-9db4-ea6bb51924db))
(fp_line (start -0.727064 0.91) (end 0.727064 0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1ca146bb-2e95-4992-ba5c-a050cc5d437d))
(fp_line (start -2.45 -1.12) (end 2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 56b4fb2b-c5af-4a78-8a8e-cb82bf889e75))
(fp_line (start -2.45 1.12) (end -2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3451704f-8775-4e52-a669-1caae9ec3948))
(fp_line (start 2.45 -1.12) (end 2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 72e96c52-063c-4208-972f-5341e35fa6b8))
(fp_line (start 2.45 1.12) (end -2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8c61ee49-2cdd-4eaf-aaef-94e452a112a4))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 66978d8e-f10d-4a67-a6fa-b567645a3285))
(fp_line (start -1.6 0.8) (end -1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d6eef016-5bca-48a4-8255-70d42235f83c))
(fp_line (start 1.6 -0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9289f550-1b25-4aaa-8d1d-694faa3016b8))
(fp_line (start 1.6 0.8) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c4fec839-6b38-4ed6-88e4-98a621c816e5))
(pad "1" smd roundrect (at -1.55 0) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 3 "Net-(U4-Vref)") (pintype "passive") (tstamp 6378f600-8626-4aae-9ca2-2f8adf3755a0))
(pad "2" smd roundrect (at 1.55 0) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 30 "Net-(R6-Pad2)") (pintype "passive") (tstamp 5dcbd382-cce9-40cf-aa34-4c1f4beffe44))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Potentiometer_THT:Potentiometer_Bourns_3296Z_Horizontal" (layer "F.Cu")
(tstamp 2fc079ee-88b0-4f51-98b7-c9c4dc6681fa)
(at 174.25 60.5 -90)
(descr "Potentiometer, horizontal, Bourns 3296Z, https://www.bourns.com/pdfs/3296.pdf")
(tags "Potentiometer horizontal Bourns 3296Z")
(property "Sheetfile" "PM6666-10MHz.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Potentiometer")
(property "ki_keywords" "resistor variable")
(path "/a2e7a6ac-81a7-46db-9603-53ed42edf2a0")
(attr through_hole)
(fp_text reference "RV1" (at -1.8 -2.85) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f1aae14c-7257-41f7-bb0c-674a9993e541)
)
(fp_text value "10k" (at -3.3 4.93 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ef92d9b0-05de-43af-b6c9-369c5aad684c)
)
(fp_text user "${REFERENCE}" (at -2.54 1.265 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b1e18c53-173f-4b73-9c59-9144a84f8e29)
)
(fp_line (start -8.945 1.195) (end -8.945 3.625)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ad1fa3bb-33ae-4b97-be8e-2fd87263cdc4))
(fp_line (start -8.945 1.195) (end -7.426 1.195)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d85520ed-66a7-426a-af0a-b2b55f0e7624))
(fp_line (start -8.945 2.41) (end -8.186 2.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e2b81c98-d8e4-4a4e-9944-34dd94351553))
(fp_line (start -8.945 3.625) (end -7.426 3.625)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9d2c729d-af47-41f0-b3a4-78c14b0cc325))
(fp_line (start -7.426 1.195) (end -7.426 3.625)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5c627f15-74df-4040-92be-662febee749e))
(fp_line (start -7.425 -1.27) (end -7.425 3.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f6e43b17-b6b0-462e-ad7f-8410cec7b554))
(fp_line (start -7.425 -1.27) (end 2.345 -1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a68a5243-fbce-4520-9368-2c29b3f90d13))
(fp_line (start -7.425 3.8) (end 2.345 3.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ff74d7e1-a21b-4e42-a63b-c7f2a46470c4))
(fp_line (start 2.345 -1.27) (end 2.345 3.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7d84a2bd-6d37-4c4a-8a87-2008cd060bc1))
(fp_line (start -9.1 -1.45) (end -9.1 3.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 783b0391-5da9-4200-a289-390b0be5edf0))
(fp_line (start -9.1 3.95) (end 2.5 3.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8417b486-6c1b-49cd-8d0c-a557a502f94e))
(fp_line (start 2.5 -1.45) (end -9.1 -1.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 27c7aef6-4bd5-492b-ba87-839c70d412e8))
(fp_line (start 2.5 3.95) (end 2.5 -1.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 10db8f46-c80f-460c-8d3e-f0587e1bfea1))
(fp_line (start -8.825 1.315) (end -8.825 3.505)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fcaf4785-afca-44af-ac7c-dddc5876032d))
(fp_line (start -8.825 2.41) (end -8.065 2.41)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b3365761-26a3-4739-a606-e49dfe2a9277))
(fp_line (start -8.825 3.505) (end -7.305 3.505)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c988c1c8-eaf2-4380-a9cc-c36c1de7d6d7))
(fp_line (start -7.305 -1.15) (end -7.305 3.68)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 63cf223f-05f5-4a16-a947-6a5a5de9f93a))
(fp_line (start -7.305 1.315) (end -8.825 1.315)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c54f5760-6cfb-4956-8af6-8d792a5b501e))
(fp_line (start -7.305 3.505) (end -7.305 1.315)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f6856068-ffe6-4819-b0b7-7743eb32bcf8))
(fp_line (start -7.305 3.68) (end 2.225 3.68)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6752ad17-55f0-4910-b69d-80d148178acc))
(fp_line (start 2.225 -1.15) (end -7.305 -1.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9bc06872-c73c-4dcd-b1c7-ce3ec498cf22))
(fp_line (start 2.225 3.68) (end 2.225 -1.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 293a8135-e1b5-49d8-890f-a88f6421bf48))
(pad "1" thru_hole circle (at 0 0 270) (size 1.44 1.44) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 30 "Net-(R6-Pad2)") (pinfunction "1") (pintype "passive") (tstamp a290a392-e6f5-44b8-8775-8df75e8dce53))
(pad "2" thru_hole circle (at -2.54 2.54 270) (size 1.44 1.44) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 4 "Vref") (pinfunction "2") (pintype "passive") (tstamp 89bc9f65-eb8f-48ce-b2f9-22326ef98e3b))
(pad "3" thru_hole circle (at -5.08 0 270) (size 1.44 1.44) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 22 "Net-(R7-Pad1)") (pinfunction "3") (pintype "passive") (tstamp 9ab7a050-07bc-44a3-9009-3dfac71b99dc))
(model "${KICAD6_3DMODEL_DIR}/Potentiometer_THT.3dshapes/Potentiometer_Bourns_3296Z_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (layer "F.Cu")
(tstamp 360fd4d0-1e6b-4808-9a75-658a63c291b8)
(at 150.876 78.486 -90)
(descr "LED SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED handsolder")
(property "Sheetfile" "PM6666-10MHz.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/4a7c25f8-7bd2-4ff8-ac7c-655f4017f839")
(attr smd)
(fp_text reference "D1" (at -2.286 2.286 -180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3a58387d-95b1-45c7-bea1-64ebd0fdb9ff)
)
(fp_text value "LED" (at 0 1.82 -270) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7d8ef801-023d-4695-8779-6629dc5f59a0)
)
(fp_text user "${REFERENCE}" (at 0 0 -270) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 6f22a2cf-044c-4c98-92a7-8dec49f40340)
)
(fp_line (start -2.46 -1.135) (end -2.46 1.135)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 98101116-ffde-4ec1-9d25-ca2939f973fa))
(fp_line (start -2.46 1.135) (end 1.6 1.135)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4311d4d4-fe38-401d-ab2f-ee8db47e91ca))
(fp_line (start 1.6 -1.135) (end -2.46 -1.135)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fc55beb6-d7c4-43af-9f71-474d004a1a5a))
(fp_line (start -2.45 -1.12) (end 2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0fe52772-af69-4aac-8b3b-5b5434455701))
(fp_line (start -2.45 1.12) (end -2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3d6be195-05bf-45dc-ae2a-8fddfe5b33ab))
(fp_line (start 2.45 -1.12) (end 2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0dea3d2f-9819-40a3-91a4-98c34751d404))
(fp_line (start 2.45 1.12) (end -2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3328edd1-8cc0-435a-a4a2-7f1b6788836e))
(fp_line (start -1.6 -0.4) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5338c2f0-d33b-425a-9c84-eb5359cbb1ca))
(fp_line (start -1.6 0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a3cd79d2-e247-4c7c-ba17-b98cdd8dc424))
(fp_line (start -1.2 -0.8) (end -1.6 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 41c03b49-89d8-4efb-9c81-7b8e5e5fb891))
(fp_line (start 1.6 -0.8) (end -1.2 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a028f57d-9753-4549-b175-b29201241a59))
(fp_line (start 1.6 0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 68f8be27-b576-4242-9152-8428ae3ccc4a))
(pad "1" smd roundrect (at -1.4875 0 270) (size 1.425 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1754392982)
(net 2 "GND") (pinfunction "K") (pintype "passive") (tstamp ba742d54-de33-40ea-ad25-2d896c774361))
(pad "2" smd roundrect (at 1.4875 0 270) (size 1.425 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1754392982)
(net 20 "Net-(D1-A)") (pinfunction "A") (pintype "passive") (tstamp 4cba6559-23a9-4109-b424-f20e5698eed1))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_JST:JST_EH_B10B-EH-A_1x10_P2.50mm_Vertical" (layer "F.Cu")
(tstamp 47198bd1-80e1-44e1-b9dd-a2f24203a6bf)
(at 124.206 88.9)
(descr "JST EH series connector, B10B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator")
(tags "connector JST EH side entry")
(property "Sheetfile" "PM6666-10MHz.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x10, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/2aeffc71-4cba-45d5-9873-a407fbe4a020")
(attr through_hole)
(fp_text reference "J1" (at 26.289 1.651) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5d1d1605-0b4d-4af1-bcc6-9f54667f0e14)
)
(fp_text value "~" (at 7.112 3.81) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e1e7c31a-50a1-4bee-9783-5ed097895f59)
)
(fp_text user "J1" (at 14.986 -2.794) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 71579d89-e325-4a20-9767-e268ce6ed22a)
)
(fp_line (start -2.91 0.11) (end -2.91 2.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3c29e603-f372-4de1-99aa-ba7a669372ab))
(fp_line (start -2.91 2.61) (end -0.41 2.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f0784a55-da2c-4247-bba6-da304ec9c0ed))
(fp_line (start -2.61 -1.71) (end -2.61 2.31)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3c8928c2-7219-42ef-8367-304deaebea92))
(fp_line (start -2.61 0) (end -2.11 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eb6db5bd-7992-428c-a580-f6a7bf16d3d2))
(fp_line (start -2.61 0.81) (end -1.61 0.81)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ad7e9b96-fdaf-46eb-8646-69f9ba01ca73))
(fp_line (start -2.61 2.31) (end 25.11 2.31)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 13dd4769-68e9-49ee-a09a-255b6c75fd43))
(fp_line (start -2.11 -1.21) (end 24.61 -1.21)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 08ad4192-56e2-4a77-9421-8d4c71220727))
(fp_line (start -2.11 0) (end -2.11 -1.21)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d74f4504-37eb-4f4c-838d-a4e3da939beb))
(fp_line (start -1.61 0.81) (end -1.61 2.31)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4fa55363-42dd-493a-856a-e58d0e84a4c3))
(fp_line (start 24.11 0.81) (end 24.11 2.31)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1fc00205-8835-4c55-ac54-9f7aba08953e))
(fp_line (start 24.61 -1.21) (end 24.61 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 49dfcfdc-bc35-4340-ae2f-65b37254edad))
(fp_line (start 24.61 0) (end 25.11 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4e60690b-d47b-47c1-8710-38f1f5e706fa))
(fp_line (start 25.11 -1.71) (end -2.61 -1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 09dcea9f-3c56-40b5-bbab-9c9a70317195))
(fp_line (start 25.11 0.81) (end 24.11 0.81)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 430ea96d-6aa3-4189-b495-da4592198123))
(fp_line (start 25.11 2.31) (end 25.11 -1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 40be9005-2c63-4c7f-935a-20f5b4493ad4))
(fp_line (start -3 -2.1) (end -3 2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6d979533-83cb-453a-9f03-88673296b84d))
(fp_line (start -3 2.7) (end 25.5 2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1aa3b7e9-9049-4ff5-89ca-d6dd87148afe))
(fp_line (start 25.5 -2.1) (end -3 -2.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp eab26632-6396-4cf4-918a-29f952da9bbc))
(fp_line (start 25.5 2.7) (end 25.5 -2.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a6b359f9-6b7f-4bc1-b3fd-c314722e907b))
(fp_line (start -2.91 0.11) (end -2.91 2.61)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2741b139-1d72-404a-8144-42b5ef1397f5))
(fp_line (start -2.91 2.61) (end -0.41 2.61)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5d23c0fa-7ef7-42c5-a512-afc6c60f8cce))
(fp_line (start -2.5 -1.6) (end -2.5 2.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 108bbf64-6b5b-4516-ade4-3685075fdcc5))
(fp_line (start -2.5 2.2) (end 25 2.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fb5b71ba-2852-4bff-ac4e-086f159c0c7c))
(fp_line (start 25 -1.6) (end -2.5 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7de92056-b709-4aff-a643-0cbf95172ffa))
(fp_line (start 25 2.2) (end 25 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cad11791-f0fb-4a0a-8d52-db04328ffbc5))
(pad "1" thru_hole roundrect (at 0 0) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.1470588235)
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp eb75cde4-2d56-431d-845d-5016e2be2600))
(pad "2" thru_hole oval (at 2.5 0) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask")
(net 7 "unconnected-(J1-Pin_2-Pad2)") (pinfunction "Pin_2") (pintype "passive+no_connect") (tstamp 5f621424-0bde-43d5-93f3-26833e5b6490))
(pad "3" thru_hole oval (at 5 0) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask")
(net 8 "unconnected-(J1-Pin_3-Pad3)") (pinfunction "Pin_3") (pintype "passive+no_connect") (tstamp 242d0b25-8a11-429d-b5de-295bbbaf2d77))
(pad "4" thru_hole oval (at 7.5 0) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask")
(net 9 "unconnected-(J1-Pin_4-Pad4)") (pinfunction "Pin_4") (pintype "passive+no_connect") (tstamp fe12f136-290c-4e42-a9eb-88c0b6eca5e8))
(pad "5" thru_hole oval (at 10 0) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask")
(net 10 "XOSC") (pinfunction "Pin_5") (pintype "passive") (tstamp c7a028aa-92d3-4200-aebe-85c0999727cd))
(pad "6" thru_hole oval (at 12.5 0) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask")
(net 11 "unconnected-(J1-Pin_6-Pad6)") (pinfunction "Pin_6") (pintype "passive+no_connect") (tstamp b78ff30a-98e1-48ac-a301-6f9fb0f505cc))
(pad "7" thru_hole oval (at 15 0) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask")
(net 12 "unconnected-(J1-Pin_7-Pad7)") (pinfunction "Pin_7") (pintype "passive+no_connect") (tstamp 0888bd75-1fbe-49b2-be7b-6b961fbb9a2d))
(pad "8" thru_hole oval (at 17.5 0) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask")
(net 13 "+5V") (pinfunction "Pin_8") (pintype "passive") (tstamp 263ab2c4-8fc3-4b8a-829c-2d10a9cde215))
(pad "9" thru_hole oval (at 20 0) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask")
(net 14 "unconnected-(J1-Pin_9-Pad9)") (pinfunction "Pin_9") (pintype "passive+no_connect") (tstamp 591a577d-1bec-414c-aaba-69929b49d6ae))
(pad "10" thru_hole oval (at 22.5 0) (size 1.7 1.95) (drill 0.95) (layers "*.Cu" "*.Mask")
(net 15 "unconnected-(J1-Pin_10-Pad10)") (pinfunction "Pin_10") (pintype "passive+no_connect") (tstamp 9b3e7e5b-a98f-442e-9eed-26faa73ec369))
(model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_EH_B10B-EH-A_1x10_P2.50mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3" (layer "F.Cu")
(tstamp 4f8bd34f-1ab4-41f1-a780-c5bf3e97f7dd)
(at 112.522 64.135)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(property "Sheetfile" "PM6666-10MHz.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Mounting Hole without connection")
(property "ki_keywords" "mounting hole")
(path "/642d3fe9-a12b-4a84-9935-8d6c5e844306")
(clearance 1.5)
(attr exclude_from_pos_files)
(fp_text reference "H1" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c4d05ecc-1097-44f9-9c8a-0ba72f304e4a)
)
(fp_text value "MountingHole" (at 0 4.2) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 45896581-fa08-476d-ab96-743ed6a627ff)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0f533d2f-206b-4bbc-bd89-7af76018f59c)
)
(fp_circle (center 0 0) (end 3.2 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 58d8d090-2fea-46df-9139-e434c3b837a2))
(fp_circle (center 0 0) (end 3.45 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 1ea8b87e-4d5d-430d-b6b5-cda44c2a1894))
(pad "" np_thru_hole circle (at 0 0) (size 3.2 3.2) (drill 3.2) (layers "*.Cu" "*.Mask") (tstamp 7fe475ec-6d8d-4971-8f23-974a7b855faa))
)
(footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" (layer "F.Cu")
(tstamp 52290f70-2f6e-4f4f-941d-68fc3bfe2882)
(at 162.9 69.85)
(descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "PM6666-10MHz.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/542e322c-744d-4616-8de0-bf845c243fed")
(attr smd)
(fp_text reference "C7" (at 12.5 -0.05) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f035ffc8-b243-4c68-955a-b7a83aa43e6f)
)
(fp_text value "100n" (at 0 1.85) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1f3043fe-87e6-41cf-b43d-97df0af5a32b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 382e1ec5-1ce0-4aa7-a0e4-5351d8f931e7)
)
(fp_line (start -0.711252 -0.91) (end 0.711252 -0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d2eeed4b-ec54-4632-baae-e642e529cc8b))
(fp_line (start -0.711252 0.91) (end 0.711252 0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 72c6f5bc-eb18-406b-bf0b-bb3f5c633ac8))
(fp_line (start -2.48 -1.15) (end 2.48 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c373a0ed-4bdb-442c-b724-a8bed2b97670))
(fp_line (start -2.48 1.15) (end -2.48 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7dbb6663-e8dc-477b-b436-cd5044df8113))
(fp_line (start 2.48 -1.15) (end 2.48 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7a0b6559-b212-4001-b4b8-3dc381b73fed))
(fp_line (start 2.48 1.15) (end -2.48 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 932b513d-48ef-4019-9fe2-1706a68c30c5))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6781298d-6663-41b0-b5d4-97d59ed70865))
(fp_line (start -1.6 0.8) (end -1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fe889d12-6960-4f52-80e5-71e57bb995cf))
(fp_line (start 1.6 -0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 149f601d-a872-4669-b777-dd950e38ba4c))
(fp_line (start 1.6 0.8) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dbe3eed6-81e5-41eb-8d76-66e1e1677676))
(pad "1" smd roundrect (at -1.5625 0) (size 1.325 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1886792453)
(net 1 "+5Vr") (pintype "passive") (tstamp 7e816d73-1c73-45ac-9713-62047ada2d54))
(pad "2" smd roundrect (at 1.5625 0) (size 1.325 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1886792453)