-
Notifications
You must be signed in to change notification settings - Fork 8
/
fc660c.kicad_pcb
17141 lines (17104 loc) · 634 KB
/
fc660c.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.2)
)
(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)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (color "Green") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.11) (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") (color "Green") (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)
(grid_origin 29.5 26)
(pcbplotparams
(layerselection 0x00210fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin true)
(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 "./gerber")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "VCC")
(net 3 "RST")
(net 4 "Earth")
(net 5 "+3V3")
(net 6 "unconnected-(J1-Pad3)")
(net 7 "Net-(C7-Pad1)")
(net 8 "Net-(J1-Pad4)")
(net 9 "unconnected-(J1-Pad9)")
(net 10 "P8")
(net 11 "P1")
(net 12 "P2")
(net 13 "P3")
(net 14 "P4")
(net 15 "MOSI")
(net 16 "MISO")
(net 17 "P5")
(net 18 "P6")
(net 19 "P7")
(net 20 "P11")
(net 21 "P12")
(net 22 "P13")
(net 23 "P14")
(net 24 "P15")
(net 25 "unconnected-(U1-Pad1)")
(net 26 "unconnected-(U1-Pad12)")
(net 27 "unconnected-(U1-Pad20)")
(net 28 "unconnected-(U1-Pad21)")
(net 29 "unconnected-(U1-Pad36)")
(net 30 "unconnected-(U1-Pad37)")
(net 31 "unconnected-(U1-Pad38)")
(net 32 "unconnected-(U1-Pad39)")
(net 33 "unconnected-(U1-Pad40)")
(net 34 "unconnected-(U1-Pad41)")
(net 35 "unconnected-(U1-Pad42)")
(net 36 "D-")
(net 37 "D+")
(net 38 "VBUS")
(net 39 "Net-(U1-Pad17)")
(net 40 "Net-(U1-Pad16)")
(net 41 "Net-(J1-Pad5)")
(net 42 "Net-(R2-Pad2)")
(net 43 "Net-(R4-Pad1)")
(net 44 "Net-(R1-Pad2)")
(net 45 "Net-(J1-Pad6)")
(net 46 "Net-(J1-Pad10)")
(footprint "Keeb_components:C_0805" (layer "F.Cu")
(tedit 5EBBB38A) (tstamp 09a580c1-71c3-47af-9f56-64a21896aa82)
(at 62 8.5)
(descr "Capacitor SMD 0805, reflow soldering, AVX (see smccp.pdf)")
(tags "capacitor 0805")
(property "Sheetfile" "fc660c.kicad_sch")
(property "Sheetname" "")
(path "/f197adf0-299b-417f-a322-54054d88c153")
(attr smd)
(fp_text reference "C9" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.125)))
(tstamp 52f6a4eb-ea00-4024-ab99-c8d0cd1a5e9c)
)
(fp_text value "1u" (at 0 -1.5) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp 9be50b51-d2d3-4959-acbd-a507e7a36dbc)
)
(fp_line (start -0.5 0.85) (end 0.5 0.85) (layer "F.SilkS") (width 0.12) (tstamp 3d8971b5-7b8d-4d63-993b-cc6f7ea3367a))
(fp_line (start 0.5 -0.85) (end -0.5 -0.85) (layer "F.SilkS") (width 0.12) (tstamp 7ba4d48f-5451-440b-8a8e-22fe7eef120b))
(fp_line (start -1.75 -0.88) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp 096b0721-59af-4069-b366-cbe5ada38e92))
(fp_line (start -1.75 -0.88) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp 1254e6b1-b3d8-4078-82aa-bc62c7325b5d))
(fp_line (start 1.75 0.87) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp 61748964-26e8-43dd-846d-345316e4275b))
(fp_line (start 1.75 0.87) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp e73019f4-013d-46d6-b03e-f5996a46ff27))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp 2e090f0c-39de-4e7d-ba9f-b2774b7f9850))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 3bbb2c92-e5f4-4bf4-b8dd-8a77829cbd1e))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 96432fed-9c8d-4296-aaa6-abceb311b7b2))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp ae635953-8a37-4026-b1d4-214eca6281c4))
(pad "1" smd rect locked (at -1.1 0) (size 1.2 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "VCC") (pintype "passive") (tstamp 461b57ca-6e57-4c93-acf1-d83265db0913))
(pad "2" smd rect locked (at 1.1 0) (size 1.2 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pintype "passive") (tstamp 05634166-2101-4e4a-995a-2e587833c72b))
(model "G:/Libraries/Keeb_components.pretty/models/C_0805.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Keeb_components:C_0805" (layer "F.Cu")
(tedit 5EBBB38A) (tstamp 147b0aa8-0a32-4862-8483-ff478e7c9c00)
(at 46.5 20.5)
(descr "Capacitor SMD 0805, reflow soldering, AVX (see smccp.pdf)")
(tags "capacitor 0805")
(property "Sheetfile" "fc660c.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000596fc53b")
(attr smd)
(fp_text reference "C2" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.125)))
(tstamp de6f4a8a-f22a-48a5-9c0e-6945ac698a6c)
)
(fp_text value "0.1u" (at 2 0) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)) (justify left))
(tstamp d6046cae-5cd4-42df-a1e7-607c5ce7cc53)
)
(fp_line (start -0.5 0.85) (end 0.5 0.85) (layer "F.SilkS") (width 0.12) (tstamp 87e2e7ef-4213-4a3c-a8d1-3d732c40338e))
(fp_line (start 0.5 -0.85) (end -0.5 -0.85) (layer "F.SilkS") (width 0.12) (tstamp b3e179a7-bdf1-4095-8c20-2b0cc14b736e))
(fp_line (start -1.75 -0.88) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp 65577fd2-21d4-416c-bb46-1f450e1769b7))
(fp_line (start -1.75 -0.88) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp af4b44bd-a70e-4f0d-8c63-7940ceadb488))
(fp_line (start 1.75 0.87) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp cdfb5853-30c9-4a58-b91f-6aab534f683d))
(fp_line (start 1.75 0.87) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp eef78ae0-346c-41d7-802e-11a4c2248e2d))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp 086614b5-d685-4057-8d84-08ba4868ed3a))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 2ec252ba-6f05-415b-b798-6ec28c7b3e02))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 797a2291-5d2a-4bf2-8252-a1a05dfd18e0))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp 8566a99d-19a7-45d1-9b0c-561f0d7e237d))
(pad "1" smd rect locked (at -1.1 0) (size 1.2 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "VCC") (pintype "passive") (tstamp 4cae725a-62df-4e2a-aa5d-35505b20c08e))
(pad "2" smd rect locked (at 1.1 0) (size 1.2 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pintype "passive") (tstamp 49929cc1-59a8-406f-b3d1-ff05878402cd))
(model "G:/Libraries/Keeb_components.pretty/models/C_0805.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Keeb_components:C_0805" (layer "F.Cu")
(tedit 5EBBB38A) (tstamp 16190e38-e248-4e1b-b4d4-a91588bcb712)
(at 25.5 11 90)
(descr "Capacitor SMD 0805, reflow soldering, AVX (see smccp.pdf)")
(tags "capacitor 0805")
(property "Sheetfile" "fc660c.kicad_sch")
(property "Sheetname" "")
(path "/59f1dae8-0fac-4441-b098-87dca831d461")
(attr smd)
(fp_text reference "C5" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.125)))
(tstamp 60a05e60-9e13-45f1-a805-f4f4f0f27f20)
)
(fp_text value "0.1u" (at 0 1.5 90) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp 1d6a76ef-473b-4f67-b316-444d850ea772)
)
(fp_line (start -0.5 0.85) (end 0.5 0.85) (layer "F.SilkS") (width 0.12) (tstamp b2bff616-744b-4144-90ed-27850043f8dd))
(fp_line (start 0.5 -0.85) (end -0.5 -0.85) (layer "F.SilkS") (width 0.12) (tstamp b30329b7-a9f0-4f83-9e97-cee753d98c0d))
(fp_line (start -1.75 -0.88) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp 0da2a34a-5106-4597-b573-3c36f99a32d1))
(fp_line (start 1.75 0.87) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp a6248275-f07a-456d-8e69-0f17c3d9a9fd))
(fp_line (start -1.75 -0.88) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp d3a3a443-8d63-49e7-b3f5-ea4035f32241))
(fp_line (start 1.75 0.87) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp edaa26c7-9ce6-4273-a130-badf2775f0cf))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 1c280ac4-df7c-4805-af01-de9c31896d6d))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp 9f8391bb-e1c3-47de-acf1-ec8ef46448c9))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp b540281f-71f4-4d39-8193-68fb550d73f5))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp bec222f0-6062-4e6e-b70a-02faf1e137d2))
(pad "1" smd rect locked (at -1.1 0 90) (size 1.2 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "VCC") (pintype "passive") (tstamp ccd697fa-5840-4908-9905-afa3e38bdfa0))
(pad "2" smd rect locked (at 1.1 0 90) (size 1.2 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pintype "passive") (tstamp 1b66f566-f1d5-4c37-ae7e-db7c58079f8e))
(model "G:/Libraries/Keeb_components.pretty/models/C_0805.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Keeb_components:F_0805" (layer "F.Cu")
(tedit 5E7A2B57) (tstamp 1b267769-cf92-440d-bfb5-5d01ee043314)
(at 18.9 16.8 90)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(property "Sheetfile" "fc660c.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c85b6c1")
(attr smd)
(fp_text reference "F1" (at 0 1.5 90) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp 7762a6b0-d285-4738-a679-afaa3f5ed1df)
)
(fp_text value "Polyfuse_Small" (at 0 1.5 90) (layer "F.Fab") hide
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp d5706f8a-fee6-46a2-9a9e-2bcd9396c389)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 42b9aca4-d05f-416d-aafd-c8fb960c38a1)
)
(fp_line (start -0.6 -0.88) (end 0.6 -0.88) (layer "F.SilkS") (width 0.12) (tstamp cb92565d-81a4-40d4-960f-2e2b735c83c5))
(fp_line (start 0.6 0.88) (end -0.6 0.88) (layer "F.SilkS") (width 0.12) (tstamp eee00f2a-f107-46a3-a62d-e9c4122ba67d))
(fp_line (start -1.55 -0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp 48f88f0a-d479-4b34-a517-302e22f787ca))
(fp_line (start 1.55 0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp 4cb9576d-cb2b-4b5b-a073-fdff4d716a86))
(fp_line (start 1.55 0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp ad770ff2-26e8-48a4-bdcd-7a1615b78423))
(fp_line (start -1.55 -0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp f0aa5d05-332d-4f13-944c-efbc829b3071))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 454aaa95-5766-48c8-a7b1-6553a0c51369))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp 509196f5-f0cc-4a94-b44e-d0bd1b3ac676))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp 6d2c1903-5d66-4fe4-874a-496cb530ec51))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp a16c5fd8-300b-40a5-88fb-a24658530f16))
(pad "1" smd rect locked (at -1.1 0 90) (size 1 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "VCC") (pintype "passive") (tstamp f7fcd9df-e987-44de-86f8-0b40acaf9c03))
(pad "2" smd rect locked (at 1.1 0 90) (size 1 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 38 "VBUS") (pintype "passive") (tstamp a4838db3-ef2f-4ff9-98b9-a5dcdcaa30e0))
(model "G:/Libraries/Keeb_components.pretty/models/F_0805.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "Keeb_components:R_0805" (layer "F.Cu")
(tedit 5EBBB2B4) (tstamp 1be42772-4c81-4881-9526-4d278810ffb5)
(at 18.4 11.8 -90)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(property "Sheetfile" "fc660c.kicad_sch")
(property "Sheetname" "")
(path "/f07f1138-e5a1-40b4-ad57-cc9cb4ca9383")
(attr smd)
(fp_text reference "R5" (at 0 -1.5 90) (layer "F.Fab") hide
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp ac67c3b9-012a-4b8a-a094-466e79beb8c1)
)
(fp_text value "5.1k" (at 0 -1.5 90) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp 7d77699c-7b66-4b9a-8778-d397edbf0c0b)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 03e0e47c-9347-4152-8e8e-3b5e09c4478b)
)
(fp_line (start 0.6 0.88) (end -0.6 0.88) (layer "F.SilkS") (width 0.12) (tstamp 37b85a78-2b96-45f1-9436-17f2c308c9bc))
(fp_line (start -0.6 -0.88) (end 0.6 -0.88) (layer "F.SilkS") (width 0.12) (tstamp 8e423461-ed6e-42a9-9133-24fd1a9213d9))
(fp_line (start 1.55 0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp 33bb9ab1-e1d5-4ed9-8f6b-8f5d3b46c481))
(fp_line (start -1.55 -0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp 4d3f7e9e-a1eb-435e-8968-8aca085e8edc))
(fp_line (start -1.55 -0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp 55b988b9-e011-489e-a300-e5e1e609cd58))
(fp_line (start 1.55 0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp a962788f-3146-4305-88c9-4dca5666298e))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 0043200b-beef-424b-8919-0a20deca9254))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp 1d8462eb-6282-456a-939c-4a3a3eb61453))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp bd110991-cfdb-4882-8527-85f5024f5384))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp f57d68b3-ac04-41b6-9e6d-51ce8996f393))
(pad "1" smd rect locked (at -1.1 0 270) (size 1.2 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "Net-(J1-Pad4)") (pintype "passive") (tstamp ed033b6c-ce2f-477c-b863-95158fdfc533))
(pad "2" smd rect locked (at 1.1 0 270) (size 1.2 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pintype "passive") (tstamp 155a467a-9e45-414b-8276-d5df89575bb9))
(model "G:/Libraries/Keeb_components.pretty/models/R_0805.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Keeb_components:HRO-TYPE-C-31-M-12" (layer "F.Cu")
(tedit 60843710) (tstamp 2e32be6a-e7de-4826-937d-b76e01094018)
(at 14.8 -0.65)
(property "Sheetfile" "fc660c.kicad_sch")
(property "Sheetname" "")
(path "/c3fff41d-7e9f-4dcd-886d-0e8ae5aec6d3")
(attr through_hole)
(fp_text reference "J1" (at 0 9.25 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f30c7a7f-7781-425e-8012-ba0bf4ec6b61)
)
(fp_text value "HRO-TYPE-C-31-M-12" (at 0 -1.15 180) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fc076a8c-b318-48e4-8225-1a19366e6a26)
)
(fp_line (start 4.47 0) (end -4.47 0) (layer "Dwgs.User") (width 0.15) (tstamp 5d62295b-cc84-41b4-b16a-5ad62096c8ee))
(fp_line (start 4.47 0) (end 4.47 7.3) (layer "Dwgs.User") (width 0.15) (tstamp d6c9d899-52ac-4c55-bffe-00bcf46151bc))
(fp_line (start 4.47 7.3) (end -4.47 7.3) (layer "Dwgs.User") (width 0.15) (tstamp d76084b0-f822-4141-b201-900c4e62c39e))
(fp_line (start -4.47 0) (end -4.47 7.3) (layer "Dwgs.User") (width 0.15) (tstamp db79fb29-2771-4f8b-ab3e-4285b725096b))
(pad "" np_thru_hole circle locked (at -2.89 6.25 180) (size 0.65 0.65) (drill 0.65) (layers *.Cu *.Mask) (tstamp 0fff4fe3-82f5-4486-872f-b56da0988ee5))
(pad "" np_thru_hole circle locked (at 2.89 6.25 180) (size 0.65 0.65) (drill 0.65) (layers *.Cu *.Mask) (tstamp 44e215a6-30c7-4408-96b6-7dc7f69c882c))
(pad "1" smd rect locked (at 3.225 7.695 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "input") (tstamp b1c36f6e-75a8-4c4c-8ed4-d43e9de62446))
(pad "2" smd rect locked (at 2.45 7.695 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 38 "VBUS") (pinfunction "VBUS") (pintype "input") (tstamp d154ea11-c3c4-4175-94f0-50fe293d10f2))
(pad "3" smd rect locked (at 1.75 7.695 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "unconnected-(J1-Pad3)") (pinfunction "SBU2") (pintype "input+no_connect") (tstamp fe6b8c7e-aa72-4fff-98ca-16156b30f6a4))
(pad "4" smd rect locked (at 1.25 7.695 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "Net-(J1-Pad4)") (pinfunction "CC1") (pintype "input") (tstamp 6d29c678-9200-4512-bb40-8c207a73c88e))
(pad "5" smd rect locked (at 0.75 7.695 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 41 "Net-(J1-Pad5)") (pinfunction "DN2") (pintype "input") (tstamp d348c6a5-d0a3-4779-af6c-408ef5da93f9))
(pad "6" smd rect locked (at 0.25 7.695 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 45 "Net-(J1-Pad6)") (pinfunction "DP1") (pintype "input") (tstamp 277a4914-638a-4692-82bc-9b0a3897a914))
(pad "7" smd rect locked (at -0.25 7.695 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 41 "Net-(J1-Pad5)") (pinfunction "DN1") (pintype "input") (tstamp 57fbed25-6dba-42f1-84f1-002a8e5e6d1c))
(pad "8" smd rect locked (at -0.75 7.695 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 45 "Net-(J1-Pad6)") (pinfunction "DP2") (pintype "input") (tstamp 67531c0a-106e-4568-bf21-bbc8c4c7d623))
(pad "9" smd rect locked (at -1.25 7.695 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "unconnected-(J1-Pad9)") (pinfunction "SBU1") (pintype "input+no_connect") (tstamp ea155132-fee9-46d9-92fa-aae6922023bb))
(pad "10" smd rect locked (at -1.75 7.695 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 46 "Net-(J1-Pad10)") (pinfunction "CC2") (pintype "input") (tstamp 45ca1f4a-173f-4489-88f4-cd794594e9bb))
(pad "11" smd rect locked (at -2.45 7.695 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 38 "VBUS") (pinfunction "VBUS") (pintype "input") (tstamp 17e3aec3-463a-413a-ad84-5d17666d7b02))
(pad "12" smd rect locked (at -3.225 7.695 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "input") (tstamp 94e8f302-3c76-4404-a686-b790e2a596ea))
(pad "13" thru_hole oval locked (at 4.32 2.6 180) (size 1 1.6) (drill oval 0.6 1.2) (layers *.Cu *.Mask)
(net 4 "Earth") (pinfunction "SHIELD") (pintype "input") (tstamp 0f682530-4ef4-4f1e-b88f-dc35a39d51bf))
(pad "13" thru_hole oval locked (at 4.32 6.78 180) (size 1 2.1) (drill oval 0.6 1.7) (layers *.Cu *.Mask)
(net 4 "Earth") (pinfunction "SHIELD") (pintype "input") (tstamp aef228d7-d435-43bd-aa7e-5425adb958c8))
(pad "13" thru_hole oval locked (at -4.32 6.78 180) (size 1 2.1) (drill oval 0.6 1.7) (layers *.Cu *.Mask)
(net 4 "Earth") (pinfunction "SHIELD") (pintype "input") (tstamp bf097d0c-a33c-4472-9084-ab26a6ae4ebc))
(pad "13" thru_hole oval locked (at -4.32 2.6 180) (size 1 1.6) (drill oval 0.6 1.2) (layers *.Cu *.Mask)
(net 4 "Earth") (pinfunction "SHIELD") (pintype "input") (tstamp cc7704af-2b4a-450d-a2d9-d83e60d7d9d6))
(model "G:/Libraries/Keeb_components.pretty/models/HRO TYPE-C-31-M-12.step"
(offset (xyz 4.47 0 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 -180))
)
)
(footprint "Keeb_components:C_0805" (layer "F.Cu")
(tedit 5EBBB38A) (tstamp 41062982-a11c-4fe9-bbce-bf5051d0ed5a)
(at 22 13 90)
(descr "Capacitor SMD 0805, reflow soldering, AVX (see smccp.pdf)")
(tags "capacitor 0805")
(property "Sheetfile" "fc660c.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000596fc5a0")
(attr smd)
(fp_text reference "C6" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.125)))
(tstamp 03c3f1b4-e622-4f6d-9ce8-76b207ad15c6)
)
(fp_text value "4.7u" (at 0 1.5 90) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp dca6df09-448b-40b8-837e-9fbaf6e1d8cc)
)
(fp_line (start 0.5 -0.85) (end -0.5 -0.85) (layer "F.SilkS") (width 0.12) (tstamp 01beefe5-0b48-4782-845b-191c96f3be57))
(fp_line (start -0.5 0.85) (end 0.5 0.85) (layer "F.SilkS") (width 0.12) (tstamp 8fcb9e7a-6c53-4719-8f1a-c1912d91d42e))
(fp_line (start -1.75 -0.88) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp 355ab89f-0214-4c8d-871a-98b1bf410043))
(fp_line (start -1.75 -0.88) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp 4df7e82d-5921-420b-929e-052760187931))
(fp_line (start 1.75 0.87) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp a52c97c0-a190-44c2-9e35-dc6e0162dcf4))
(fp_line (start 1.75 0.87) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp d97f684d-a307-4f11-9f73-cbb2d0ce31d8))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp 5a745335-f280-4c4a-901c-342943ab4369))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 9ed381e0-6e81-4573-a277-0b795c902f94))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp d0740029-b1f5-4b26-836d-50cd9bb4d30a))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp d420dabe-578c-49a5-b6c0-21ad3c519e45))
(pad "1" smd rect locked (at -1.1 0 90) (size 1.2 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "VCC") (pintype "passive") (tstamp 6a200086-1509-4790-824b-e9ddbd3de65b))
(pad "2" smd rect locked (at 1.1 0 90) (size 1.2 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pintype "passive") (tstamp aaa5256e-5fd8-4e50-b9fe-630af2843aa2))
(model "G:/Libraries/Keeb_components.pretty/models/C_0805.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Keeb_components:C_0805" (layer "F.Cu")
(tedit 5EBBB38A) (tstamp 43a90941-e18d-4d6a-8430-65a6557df274)
(at 27 7.5 180)
(descr "Capacitor SMD 0805, reflow soldering, AVX (see smccp.pdf)")
(tags "capacitor 0805")
(property "Sheetfile" "fc660c.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000596fea19")
(attr smd)
(fp_text reference "C7" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.125)))
(tstamp 37bc36eb-082a-48df-9d9b-56f79b759542)
)
(fp_text value "1u" (at -2 0) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)) (justify left))
(tstamp c6d59298-7bc5-4aa8-b165-42f256843a7a)
)
(fp_line (start 0.5 -0.85) (end -0.5 -0.85) (layer "F.SilkS") (width 0.12) (tstamp 74c87d02-088d-43f3-a15a-8582ca4562c2))
(fp_line (start -0.5 0.85) (end 0.5 0.85) (layer "F.SilkS") (width 0.12) (tstamp dd00d4d5-2850-449a-a123-bf3733a34ca6))
(fp_line (start -1.75 -0.88) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp 82373dde-85de-455e-88c9-8903d31b0ca5))
(fp_line (start -1.75 -0.88) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp b77d613a-2ac2-4684-b34b-04b13b2bf979))
(fp_line (start 1.75 0.87) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp d50b0a40-1202-42dd-99f0-7359331afb7e))
(fp_line (start 1.75 0.87) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp fc44eb84-e61f-4588-ad64-ace1d385598d))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp 289f8d94-cf1a-4684-9846-71756abe3891))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 7a459169-faa2-4a08-a119-71d361542298))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp 7b2aaab5-9c7d-472b-a039-a4bc94d97d0f))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp d6f26750-3d45-41ee-a45b-1ccd6238f92d))
(pad "1" smd rect locked (at -1.1 0 180) (size 1.2 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "Net-(C7-Pad1)") (pintype "passive") (tstamp b75d7534-87f1-489a-81c8-9711da70f363))
(pad "2" smd rect locked (at 1.1 0 180) (size 1.2 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pintype "passive") (tstamp fd35abb8-44e2-4fb3-90c9-d3362ff1067e))
(model "G:/Libraries/Keeb_components.pretty/models/C_0805.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Keeb_components:C_0805" (layer "F.Cu")
(tedit 5EBBB38A) (tstamp 495a1a90-0a14-41e9-9cb2-547ed4e927f1)
(at 40 5.5)
(descr "Capacitor SMD 0805, reflow soldering, AVX (see smccp.pdf)")
(tags "capacitor 0805")
(property "Sheetfile" "fc660c.kicad_sch")
(property "Sheetname" "")
(path "/d0334dcb-6d11-4928-bece-bd6d3622c809")
(attr smd)
(fp_text reference "C3" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.125)))
(tstamp 651dea0c-29a4-446a-9902-6291607ae179)
)
(fp_text value "0.1u" (at 2 0) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)) (justify left))
(tstamp 4436cebc-fae4-4e6c-9d1c-4628107502b5)
)
(fp_line (start 0.5 -0.85) (end -0.5 -0.85) (layer "F.SilkS") (width 0.12) (tstamp 260f0b95-15f5-46d8-8196-3a78b41505b0))
(fp_line (start -0.5 0.85) (end 0.5 0.85) (layer "F.SilkS") (width 0.12) (tstamp e7897256-48c2-4c2c-973b-0ca578d884c8))
(fp_line (start 1.75 0.87) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp 4e6c9364-cba5-4fed-aa82-3f91a91887f8))
(fp_line (start 1.75 0.87) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp 524a50de-9466-4ed6-bdc5-7bda323f83c4))
(fp_line (start -1.75 -0.88) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp ad9e1efe-c964-4ebd-a3b5-a80fbfe06cf2))
(fp_line (start -1.75 -0.88) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp ffeecb71-0b0b-423f-a58b-872684ebe5eb))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp 18d7951e-c51a-42ed-8f8c-8febecc9a4f2))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 67caac6f-5ebb-400c-86dd-85697b3fac28))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 8079aef7-b979-4fae-aa9e-7335900b80df))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp aa17f448-68ec-4047-838c-d88d001fffcf))
(pad "1" smd rect locked (at -1.1 0) (size 1.2 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "VCC") (pintype "passive") (tstamp 6d3d5a17-1dc1-4b4d-b3ac-05b8801f79eb))
(pad "2" smd rect locked (at 1.1 0) (size 1.2 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pintype "passive") (tstamp 8ecd61f3-b01c-49a2-ad64-8aff93cbf0b3))
(model "G:/Libraries/Keeb_components.pretty/models/C_0805.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "footprints:DF14-20P-1.25H" locked (layer "F.Cu")
(tedit 61A17416) (tstamp 54ad53c9-5430-4f75-9438-d52a20b4bb1d)
(at 75.9 27.55 180)
(property "Sheetfile" "fc660c.kicad_sch")
(property "Sheetname" "")
(path "/77b4a6ff-4fc6-4e95-bbd5-849950966a26")
(attr smd)
(fp_text reference "J3" (at 0 -3 180 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e4dad303-2f3d-450c-973a-4b004f256ed6)
)
(fp_text value "DF14-20P-1.25H" (at 0 -6.2 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0b57679d-eab7-47c9-8fd5-d065b53ded34)
)
(fp_text user "REF**" (at 0 -3 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 43860a69-2e5e-4409-8a9e-cd0921e94028)
)
(fp_text user "J3" (at 0 -3 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c7d5b86b-37f7-4be8-9c6d-f24337192088)
)
(fp_line (start 14.975 -5.25) (end 14.975 0.45) (layer "Dwgs.User") (width 0.12) (tstamp 627aa9ce-c5cc-4c14-81f4-d0e663362587))
(fp_line (start -14.975 -5.25) (end 14.975 -5.25) (layer "Dwgs.User") (width 0.12) (tstamp 7d821df1-a764-48f0-949c-b7c45df5a9b7))
(fp_line (start 14.975 0.45) (end -14.975 0.45) (layer "Dwgs.User") (width 0.12) (tstamp 89ca9e30-2211-4131-98a6-38cd7ef7238b))
(fp_line (start -14.975 -5.25) (end -14.975 0.45) (layer "Dwgs.User") (width 0.12) (tstamp c30a15ab-87eb-4c92-be1e-6ec6438f1385))
(pad "" np_thru_hole circle locked (at 14.475 0 180) (size 1.1 1.1) (drill 1.1) (layers F&B.Cu *.Mask) (tstamp 3216270d-3d8d-4795-ab2f-316716593e35))
(pad "" smd rect locked (at -14.275 -4 180) (size 2 2.6) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 60375230-e023-47d7-8410-f85d4c3e7bb5))
(pad "" smd rect locked (at 14.275 -4 180) (size 2 2.6) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp ba2b83c9-8e0d-4a11-ab2e-b1e56a211d14))
(pad "" np_thru_hole circle locked (at -14.475 0 180) (size 1.1 1.1) (drill 1.1) (layers F&B.Cu *.Mask) (tstamp bdf5e37e-a870-47c9-8fcc-7a0cb4f176e2))
(pad "1" smd rect locked (at -11.875 1.1 180) (size 0.7 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "Earth") (pinfunction "Pin_1") (pintype "passive") (tstamp e829bd10-9500-44d8-a0cc-bc07bd914fac))
(pad "2" smd rect locked (at -10.625 1.1 180) (size 0.7 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 89a4a937-6613-46d8-9ec2-e34645a4b28c))
(pad "3" smd rect locked (at -9.375 1.1 180) (size 0.7 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp cc21f1c9-fd99-4267-9031-db2aee1cc5da))
(pad "4" smd rect locked (at -8.125 1.1 180) (size 0.7 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "+3V3") (pinfunction "Pin_4") (pintype "passive") (tstamp 1c5075db-bba0-4c17-82ec-84362aa9314c))
(pad "5" smd rect locked (at -6.875 1.1 180) (size 0.7 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "VCC") (pinfunction "Pin_5") (pintype "passive") (tstamp fc571968-4362-4b02-aa19-0e87197ff3ed))
(pad "6" smd rect locked (at -5.625 1.1 180) (size 0.7 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "P15") (pinfunction "Pin_6") (pintype "passive") (tstamp d181494e-d8e7-40a7-9be6-c28abaad9ec1))
(pad "7" smd rect locked (at -4.375 1.1 180) (size 0.7 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "P14") (pinfunction "Pin_7") (pintype "passive") (tstamp c96b1512-2cdc-43fa-b829-dc3edbfe6c2b))
(pad "8" smd rect locked (at -3.125 1.1 180) (size 0.7 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "P13") (pinfunction "Pin_8") (pintype "passive") (tstamp 9eeaa5db-86dc-452e-87ea-a75c6055ca98))
(pad "9" smd rect locked (at -1.875 1.1 180) (size 0.7 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "P12") (pinfunction "Pin_9") (pintype "passive") (tstamp 44a21c9f-fab5-49aa-ad3c-f38c1d42447f))
(pad "10" smd rect locked (at -0.625 1.1 180) (size 0.7 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "P11") (pinfunction "Pin_10") (pintype "passive") (tstamp 069211b6-0c1e-4bb9-9db0-3e1c244d856a))
(pad "11" smd rect locked (at 0.625 1.1 180) (size 0.7 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "MISO") (pinfunction "Pin_11") (pintype "passive") (tstamp 51444498-181b-447f-9acd-c37e83a2526c))
(pad "12" smd rect locked (at 1.875 1.1 180) (size 0.7 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "MOSI") (pinfunction "Pin_12") (pintype "passive") (tstamp 20fd1aec-5fb6-446f-a004-9981951dc124))
(pad "13" smd rect locked (at 3.125 1.1 180) (size 0.7 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "P8") (pinfunction "Pin_13") (pintype "passive") (tstamp d45d11e6-5313-4462-a8c5-5d67b48915c2))
(pad "14" smd rect locked (at 4.375 1.1 180) (size 0.7 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "P7") (pinfunction "Pin_14") (pintype "passive") (tstamp 815d144b-6144-4df3-b49e-47b4d6228a54))
(pad "15" smd rect locked (at 5.625 1.1 180) (size 0.7 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "P6") (pinfunction "Pin_15") (pintype "passive") (tstamp 419db657-fbab-4db5-8326-e75c162cc6d3))
(pad "16" smd rect locked (at 6.875 1.1 180) (size 0.7 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "P5") (pinfunction "Pin_16") (pintype "passive") (tstamp 9b4e2610-a197-4092-9cf2-3e310ae652ed))
(pad "17" smd rect locked (at 8.125 1.1 180) (size 0.7 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "P4") (pinfunction "Pin_17") (pintype "passive") (tstamp 630e8379-a882-4bd3-9fb2-d8865da0cbea))
(pad "18" smd rect locked (at 9.375 1.1 180) (size 0.7 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "P3") (pinfunction "Pin_18") (pintype "passive") (tstamp f1aee77a-026e-46c5-970d-f69c3118733a))
(pad "19" smd rect locked (at 10.625 1.1 180) (size 0.7 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "P2") (pinfunction "Pin_19") (pintype "passive") (tstamp 3c5c540c-f2b8-43e0-a682-33d4cb1f2236))
(pad "20" smd rect locked (at 11.875 1.1 180) (size 0.7 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "P1") (pinfunction "Pin_20") (pintype "passive") (tstamp 76d9a0f2-a5ce-4f02-9751-a927547e7821))
(model "${KIPRJMOD}/footprints.pretty/DF14-20P-1.25H.stp"
(offset (xyz -34.055 1.175 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 180))
)
)
(footprint "Keeb_components:C_0805" (layer "F.Cu")
(tedit 5EBBB38A) (tstamp 5738b6b3-0df9-4f11-b3f7-449259ae8fd2)
(at 6.5 15.8)
(descr "Capacitor SMD 0805, reflow soldering, AVX (see smccp.pdf)")
(tags "capacitor 0805")
(property "Sheetfile" "fc660c.kicad_sch")
(property "Sheetname" "")
(path "/d57d23a5-4f22-4023-9a2b-9864c49b20a0")
(attr smd)
(fp_text reference "C8" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.125)))
(tstamp 5c49fd7a-27b9-492e-8c57-22d9e843b4a3)
)
(fp_text value "4.7n" (at 0 1.5) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp c718d9cb-ffbf-4089-bab2-baa888890ca4)
)
(fp_line (start 0.5 -0.85) (end -0.5 -0.85) (layer "F.SilkS") (width 0.12) (tstamp 45bdb297-772a-4643-ab5a-6a6c4aa69998))
(fp_line (start -0.5 0.85) (end 0.5 0.85) (layer "F.SilkS") (width 0.12) (tstamp c74925b8-e007-4340-a822-35a8f6437d46))
(fp_line (start -1.75 -0.88) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp 7e291ba2-9656-42e7-93e0-3045fec6ce4c))
(fp_line (start 1.75 0.87) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp ae5d98d1-0a01-4977-a1dc-c724fc883000))
(fp_line (start 1.75 0.87) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp c54aa275-cf77-4dfc-9420-598f5b5c7240))
(fp_line (start -1.75 -0.88) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp fc30e205-e2b6-4b20-b81b-0e7b9c529be9))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 182edfdb-30f6-4422-9e7a-61fdbf50fcba))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp 72f50dc7-638e-4756-8d4c-27a1b9d484c2))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 76a23132-551e-4075-933f-35ddcfbd87d0))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp f7cc3c51-18db-475c-8a77-f518b5b4b6bc))
(pad "1" smd rect locked (at -1.1 0) (size 1.2 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "Earth") (pintype "passive") (tstamp 71304b0c-9b37-4cb5-89af-ebf12b9dd63c))
(pad "2" smd rect locked (at 1.1 0) (size 1.2 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pintype "passive") (tstamp fb58c8f9-5a76-461e-9455-6fb5d80f48f1))
(model "G:/Libraries/Keeb_components.pretty/models/C_0805.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Keeb_components:C_0805" (layer "F.Cu")
(tedit 5EBBB38A) (tstamp 5fd88713-df76-4dbe-8ecd-d1a85a2a4c23)
(at 46.5 14.5)
(descr "Capacitor SMD 0805, reflow soldering, AVX (see smccp.pdf)")
(tags "capacitor 0805")
(property "Sheetfile" "fc660c.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000596fc4b5")
(attr smd)
(fp_text reference "C1" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.125)))
(tstamp 5d74a350-c2a6-47a5-8e81-87446c49eb2c)
)
(fp_text value "0.1u" (at 2 0) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)) (justify left))
(tstamp 05d9505f-481e-4f78-8882-34b9cfbd6c4a)
)
(fp_line (start -0.5 0.85) (end 0.5 0.85) (layer "F.SilkS") (width 0.12) (tstamp b14ac8a5-0e1d-45c9-871b-9bd589da1e38))
(fp_line (start 0.5 -0.85) (end -0.5 -0.85) (layer "F.SilkS") (width 0.12) (tstamp bc329172-5b18-4320-ac29-42c13ccfabc7))
(fp_line (start 1.75 0.87) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp 07d61d40-e034-4705-b740-e0af7d8dd3a1))
(fp_line (start -1.75 -0.88) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp 1974b160-aa83-451d-ac23-3cfad90a0bfb))
(fp_line (start -1.75 -0.88) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp 44b71ca7-5bc4-421f-b811-99eda9254b27))
(fp_line (start 1.75 0.87) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp c2c72c14-5d4c-4654-a639-d31d1ecafff0))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 508b8aed-c129-4b39-b6e8-ec9af8ac3829))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp cf5116ae-006d-4a9f-a70c-9c443475f852))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp e822854f-36ec-476e-be9f-346ab4b26273))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp f7258718-870d-401f-a5be-aa863db1fb5c))
(pad "1" smd rect locked (at -1.1 0) (size 1.2 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "VCC") (pintype "passive") (tstamp 6a4d991e-9d67-419b-9bc2-cbe7e6224602))
(pad "2" smd rect locked (at 1.1 0) (size 1.2 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pintype "passive") (tstamp 4a9d486f-7aeb-41b3-ac62-351e5273e3cb))
(model "G:/Libraries/Keeb_components.pretty/models/C_0805.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "footprints:screw" locked (layer "F.Cu")
(tedit 61A0B938) (tstamp 60e40d6a-c37a-40fd-882a-6908ef52f97c)
(at 3.3 3.35)
(property "Sheetfile" "fc660c.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000059be785f")
(attr smd)
(fp_text reference "S1" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4fe621a6-21e0-48d8-bb2b-2190a075813c)
)
(fp_text value "SCREW" (at 0 1 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp be2206c9-6428-4a74-85cb-77056fa666e3)
)
(fp_text user "${REF}" (at 0 2.5 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b3f3448d-bf2c-4f52-a5e6-188db77d7987)
)
(pad "1" thru_hole circle locked (at 0 0) (size 4.5 4.5) (drill 3) (layers *.Cu *.Mask)
(net 4 "Earth") (pinfunction "Pin_1") (pintype "passive") (tstamp 4992fb02-e11a-48f4-be1e-95c164226539))
)
(footprint "Keeb_components:C_0805" (layer "F.Cu")
(tedit 5EBBB38A) (tstamp 6d027c28-74fd-4102-bbd8-88d2614a6602)
(at 66 14 -90)
(descr "Capacitor SMD 0805, reflow soldering, AVX (see smccp.pdf)")
(tags "capacitor 0805")
(property "Sheetfile" "fc660c.kicad_sch")
(property "Sheetname" "")
(path "/e7eac1e7-a175-49f4-9e35-b25de5f7c567")
(attr smd)
(fp_text reference "C10" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.125)))
(tstamp 33224edd-7af0-477e-8508-48d43779fb23)
)
(fp_text value "1u" (at 0 -1.5 90) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp 22f519b6-8afd-453a-b5f6-72ea5b6ac716)
)
(fp_line (start 0.5 -0.85) (end -0.5 -0.85) (layer "F.SilkS") (width 0.12) (tstamp 54d41b06-3807-4c8b-8db1-7272dc1cbca8))
(fp_line (start -0.5 0.85) (end 0.5 0.85) (layer "F.SilkS") (width 0.12) (tstamp 8e97bc1e-153e-4eab-b03e-81f844807a93))
(fp_line (start -1.75 -0.88) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp 3b59f7f0-d674-48b6-bdfb-c2165b3d7fc5))
(fp_line (start -1.75 -0.88) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp 9db0499f-ac6a-4bfc-a51c-40a61084e29f))
(fp_line (start 1.75 0.87) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp adb5f236-dda7-4106-af5b-32c5536b27c2))
(fp_line (start 1.75 0.87) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp d6c38841-3c40-43d5-a10f-0f65d2eb0bb3))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 333553c6-f6b4-4017-9145-356b55a50352))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 8139e267-9b2e-419e-9ccc-e348ee347764))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp b95eb726-b792-43e1-99c3-bacc427fda9b))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp e86f4429-ccc1-486d-ae2a-3163f948e52a))
(pad "1" smd rect locked (at -1.1 0 270) (size 1.2 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "+3V3") (pintype "passive") (tstamp 9be6514c-e6c3-4942-bca3-09fda2a89dbf))
(pad "2" smd rect locked (at 1.1 0 270) (size 1.2 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pintype "passive") (tstamp cee7a966-fd2b-4878-9304-49f4fa64ad08))
(model "G:/Libraries/Keeb_components.pretty/models/C_0805.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Keeb_components:R_0805" (layer "F.Cu")
(tedit 5EBBB2B4) (tstamp 87e89f7a-1f32-4099-994c-f55819065adc)
(at 46.5 23)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(property "Sheetfile" "fc660c.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000596fd444")
(attr smd)
(fp_text reference "R4" (at 0 -1.5 180) (layer "F.Fab") hide
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp 071b73ea-8ca8-4b51-981d-71989c4312c5)
)
(fp_text value "10k" (at 2 0) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)) (justify left))
(tstamp fbd64b24-d365-4767-b972-8eb9b5b6372a)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 0b281e69-2eaa-44fe-a4ce-a30d3bd8c84b)
)
(fp_line (start 0.6 0.88) (end -0.6 0.88) (layer "F.SilkS") (width 0.12) (tstamp 60768776-9a1f-450a-a8ff-fcd8dfd264e6))
(fp_line (start -0.6 -0.88) (end 0.6 -0.88) (layer "F.SilkS") (width 0.12) (tstamp e0c37eb1-f6a1-4768-bb06-3fc221993f50))
(fp_line (start -1.55 -0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp b6892239-8cc4-4239-9f6b-bd2be89fdd6c))
(fp_line (start 1.55 0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp c9a17173-7756-499a-990d-1815e01bb5ad))
(fp_line (start -1.55 -0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp f15eb5af-b449-4723-9151-8d0ef904f670))
(fp_line (start 1.55 0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp f5d50bf9-9b44-4517-9512-25d33a54c45b))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp 3776e681-e5dd-40a6-a5b1-599283410040))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp 84c13488-e311-4015-8274-e9921a99c1ad))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp a405dc01-6bfc-4e98-a6c1-de3d5e6f7eb7))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp f7846255-3bbb-467f-ac4a-3d1493564987))
(pad "1" smd rect locked (at -1.1 0) (size 1.2 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 43 "Net-(R4-Pad1)") (pintype "passive") (tstamp bab30c98-c3b3-4ca0-9d1a-b0d48653d0d6))
(pad "2" smd rect locked (at 1.1 0) (size 1.2 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pintype "passive") (tstamp 3a49341f-af04-4de5-8082-2ac2fc0f6190))
(model "G:/Libraries/Keeb_components.pretty/models/R_0805.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Keeb_components:Resonator_SMD_muRata_CSTNExxV-3Pin-p1.2" (layer "F.Cu")
(tedit 5E7BE430) (tstamp 8d2cdb1f-b42f-4373-9e36-aa6dbc0c4fc1)
(at 26.5 16 90)
(descr "SMD Resomator/Filter Murata CSTCE, https://www.murata.com/en-eu/products/productdata/8801162264606/SPEC-CSTNE16M0VH3C000R0.pdf")
(tags "SMD SMT ceramic resonator filter")
(property "Sheetfile" "fc660c.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000596fbf5c")
(attr smd)
(fp_text reference "X1" (at 0 -2.45 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp af34cd3a-8c82-4146-a7fc-456c637b6bb0)
)
(fp_text value "16mhz" (at 0 1.8 90) (layer "F.Fab")
(effects (font (size 0.2 0.2) (thickness 0.03)))
(tstamp c7406353-6cad-4743-9629-339bba0e6b5f)
)
(fp_text user "${REFERENCE}" (at 0.1 -0.05 90) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.08)))
(tstamp 5c27e4a1-1e1a-439d-a8cb-b613e6bd0baf)
)
(fp_line (start -1.85 -1.2) (end -1.85 0.8) (layer "F.SilkS") (width 0.12) (tstamp 00bc3052-9cbf-46ed-8f7d-f397e309ed2d))
(fp_line (start -1.65 1.2) (end -1.5 1.2) (layer "F.SilkS") (width 0.12) (tstamp 07e49a09-448a-45cf-b6ad-2386b1bd2da0))
(fp_line (start 1.65 -1.2) (end 1.5 -1.2) (layer "F.SilkS") (width 0.12) (tstamp 09679ea6-c5d0-471b-89b1-b342341741d5))
(fp_line (start 1.65 -1.2) (end 1.65 0.8) (layer "F.SilkS") (width 0.12) (tstamp 4f6a756d-e584-4ac8-ab38-7f7d1bbf7588))
(fp_line (start -1.65 0.8) (end -1.65 1.2) (layer "F.SilkS") (width 0.12) (tstamp 6f8c256b-203c-41ad-be4f-9b44eb8c7846))
(fp_line (start 1.65 1.2) (end 1.5 1.2) (layer "F.SilkS") (width 0.12) (tstamp 74124318-8b73-491b-abd0-ef341e51680b))
(fp_line (start -1.65 -1.2) (end -1.5 -1.2) (layer "F.SilkS") (width 0.12) (tstamp 780e6045-9b25-4569-a567-0d254c785c82))
(fp_line (start -1.65 0.8) (end -1.65 -1.2) (layer "F.SilkS") (width 0.12) (tstamp b7558265-246f-4822-9847-c64c1a42e79e))
(fp_line (start -1.85 0.8) (end -1.85 1.2) (layer "F.SilkS") (width 0.12) (tstamp e257e2e1-bacf-4aa2-9743-9c6a04f805d7))
(fp_line (start 1.65 0.8) (end 1.65 1.2) (layer "F.SilkS") (width 0.12) (tstamp ef24c44e-d719-45a3-86b1-88666ac0e5d8))
(fp_line (start -2 -1.85) (end 2 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 09a32a2d-0782-4088-a13b-40c7310c7aa7))
(fp_line (start 2 1.85) (end -2 1.85) (layer "F.CrtYd") (width 0.05) (tstamp 1d6f32a7-ddf3-45d0-a521-3fad494055ca))
(fp_line (start -2 1.85) (end -2 -1.85) (layer "F.CrtYd") (width 0.05) (tstamp 238a3140-61d8-47d2-a808-dbdb2b6fae29))
(fp_line (start 2 -1.85) (end 2 1.85) (layer "F.CrtYd") (width 0.05) (tstamp 7e9db02c-48d4-463a-9a40-037f74b7d2e5))
(fp_line (start 1.75 0.8) (end 1.75 -0.8) (layer "F.Fab") (width 0.1) (tstamp 4cd59f9b-24f6-4adc-82e4-a253eed1b8bb))
(fp_line (start -1.25 0.8) (end -1.75 0.3) (layer "F.Fab") (width 0.1) (tstamp 7dfa0059-0c31-40ae-9978-f72fa64021d9))
(fp_line (start -1.25 0.8) (end 1.75 0.8) (layer "F.Fab") (width 0.1) (tstamp a88479cf-8870-4fc8-b460-3a4a522ff8d4))
(fp_line (start 1.75 -0.8) (end -1.75 -0.8) (layer "F.Fab") (width 0.1) (tstamp b8655ef6-7a2d-4065-a471-735d419f3555))
(fp_line (start -1.75 0.3) (end -1.75 -0.8) (layer "F.Fab") (width 0.1) (tstamp d65d1e7a-55d5-467e-9308-52fdcf00c79e))
(pad "1" smd rect locked (at -1.2 0 90) (size 0.4 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 39 "Net-(U1-Pad17)") (pinfunction "1") (pintype "passive") (tstamp d506d9d3-befd-426d-b44d-145155e891c0))
(pad "2" smd rect locked (at 1.2 0 90) (size 0.4 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 40 "Net-(U1-Pad16)") (pinfunction "2") (pintype "passive") (tstamp 2e79d8f1-b761-468b-a003-b5f60597b97f))
(pad "3" smd rect locked (at 0 0 90) (size 0.4 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pintype "passive") (tstamp d3ea9e1d-ddfa-44ba-9a7a-1e4401234941))
(model "G:/Libraries/Keeb_components.pretty/models/Resonator_SMD_muRata_CSTxExxV-3Pin.step"
(offset (xyz 1.6 0.65 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "Keeb_components:R_0805" (layer "F.Cu")
(tedit 5EBBB2B4) (tstamp 92066313-10ed-48db-98fc-066e84fe27c3)
(at 12.9 16.8 -90)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(property "Sheetfile" "fc660c.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000596fed14")
(attr smd)
(fp_text reference "R1" (at 0 -1.5 90) (layer "F.Fab") hide
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp 91826a79-9cb2-4edd-a5c8-fe91e96594c6)
)
(fp_text value "22" (at 2 0 90) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)) (justify right))
(tstamp a67fffe0-e2da-47db-a79f-53669da8ef0d)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 80823b21-219d-43da-b6eb-be181e3e16d4)
)
(fp_line (start 0.6 0.88) (end -0.6 0.88) (layer "F.SilkS") (width 0.12) (tstamp 0aa70a24-1d5b-43f2-99f3-b1714fc7f52a))
(fp_line (start -0.6 -0.88) (end 0.6 -0.88) (layer "F.SilkS") (width 0.12) (tstamp ca24b442-e227-4dcc-88ff-24c60e7bd049))
(fp_line (start -1.55 -0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp 45bfdeef-0d37-433d-b367-6f60a7063825))
(fp_line (start 1.55 0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp 808937ff-2c3b-4edc-a1b8-751965824410))
(fp_line (start 1.55 0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp 8f0ffab7-ddab-4d5d-9437-30e3f1806211))
(fp_line (start -1.55 -0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp a5be5bec-cc8f-4a92-bc22-d912d0367587))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp 04843843-6452-4ee8-a167-6a9f24d0ee39))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 3f9ba76a-e880-4988-91ed-4af51b2b79d6))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp 8c5fdfe4-7881-43aa-b104-783c04c26c7c))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 9999883f-bca9-4fb8-9d59-1f4e86adf902))
(pad "1" smd rect locked (at -1.1 0 270) (size 1.2 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 37 "D+") (pintype "passive") (tstamp 179d9469-e479-47f4-b192-26a506747917))
(pad "2" smd rect locked (at 1.1 0 270) (size 1.2 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 44 "Net-(R1-Pad2)") (pintype "passive") (tstamp 6fd5e3a9-c40b-4c6d-9a06-6161d1e01711))
(model "G:/Libraries/Keeb_components.pretty/models/R_0805.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tedit 5FA16958) (tstamp 97b106ba-f41b-4289-805b-c9e09b2cd84e)
(at 62.5 12 90)
(descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "Sheetfile" "fc660c.kicad_sch")
(property "Sheetname" "")
(path "/c91ede71-166e-4cb3-820b-9f8588f172e7")
(attr smd)
(fp_text reference "U3" (at 0 -2.5 90) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp 0036d70f-9239-48f7-94bf-65761bf1c02b)
)
(fp_text value "XC6206P332MR" (at 0 2.4 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 31e73bb9-49fb-4ef6-bc55-8d192db8ca0f)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.32 0.32) (thickness 0.05)))
(tstamp 79694f7f-46b5-44fb-86d2-4543987fad32)
)
(fp_line (start 0 1.56) (end -0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp 098628ab-acc8-4521-92e1-75a5ea6ee418))
(fp_line (start 0 1.56) (end 0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp 47a7af7e-ee96-4489-aea2-981046e4dae1))
(fp_line (start 0 -1.56) (end -1.675 -1.56) (layer "F.SilkS") (width 0.12) (tstamp c20a1d78-f5b0-4f6b-8147-ff138c2471aa))
(fp_line (start 0 -1.56) (end 0.65 -1.56) (layer "F.SilkS") (width 0.12) (tstamp e77f90cc-7d78-43a6-b353-843549182327))
(fp_line (start 1.92 -1.7) (end -1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 672b5396-f340-4b6f-87e4-8e870ea81c09))
(fp_line (start -1.92 1.7) (end 1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 7df79ef8-5ee3-4b41-97b2-e26f423c7ddd))
(fp_line (start -1.92 -1.7) (end -1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 8f2140d1-7e63-42c6-b5a9-2853a8966a28))
(fp_line (start 1.92 1.7) (end 1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp ce90ec57-6b03-456b-816b-0a61fc542005))
(fp_line (start -0.65 -1.125) (end -0.325 -1.45) (layer "F.Fab") (width 0.1) (tstamp 0efcea52-077a-48b1-afc8-32447424583f))
(fp_line (start 0.65 1.45) (end -0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp 56e9f49b-ce0d-4258-bffa-eb30cc83b918))
(fp_line (start 0.65 -1.45) (end 0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp a73e6f72-062a-4c4e-9d81-60bd2ec9e556))
(fp_line (start -0.325 -1.45) (end 0.65 -1.45) (layer "F.Fab") (width 0.1) (tstamp b30c2e20-c8c1-46f7-ab9e-46d6e8dc01c8))
(fp_line (start -0.65 1.45) (end -0.65 -1.125) (layer "F.Fab") (width 0.1) (tstamp ec4b9b1a-d651-451e-bc68-75823539bda2))
(pad "1" smd roundrect locked (at -0.9375 -0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 42620ed5-eb72-4243-909a-03ea463dc7dc))
(pad "2" smd roundrect locked (at -0.9375 0.95 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "+3V3") (pinfunction "VO") (pintype "power_out") (tstamp 61d4ddb6-f90c-41c6-bf54-20ef802fbe7e))
(pad "3" smd roundrect locked (at 0.9375 0 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "VCC") (pinfunction "VI") (pintype "power_in") (tstamp 6db30ac3-7bce-4391-842a-d93886360609))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "footprints:screw" locked (layer "F.Cu")
(tedit 61A0B938) (tstamp a7e094fd-9241-49e4-99bb-1d5d9af7024f)
(at 83.2 3.35)
(property "Sheetfile" "fc660c.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000059be7f38")
(attr smd)
(fp_text reference "S2" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f79b4c07-3afe-4b88-9b68-61ccca572634)
)
(fp_text value "SCREW" (at 0 1 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1cf38c34-daf2-4da0-a6ce-41502d74df77)
)
(fp_text user "${REF}" (at 0 2.5 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1cf2c099-eaec-4f6e-8e20-39154a54121d)
)
(pad "1" thru_hole circle locked (at 0 0) (size 4.5 4.5) (drill 3) (layers *.Cu *.Mask)
(net 4 "Earth") (pinfunction "Pin_1") (pintype "passive") (tstamp 776aee4c-8ff8-4a4a-b80c-8100be35a6be))
)
(footprint "Keeb_components:R_0805" (layer "F.Cu")
(tedit 5EBBB2B4) (tstamp b4d7b90f-7fd1-41d3-af06-c4e7f073ec64)
(at 10.4 11.8 -90)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(property "Sheetfile" "fc660c.kicad_sch")
(property "Sheetname" "")
(path "/910c6e26-7083-44b2-bb9f-02981191e07d")
(attr smd)
(fp_text reference "R6" (at 0 -1.5 90) (layer "F.Fab") hide
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp 2323f79f-5f15-4c4c-a037-a5f8decb05bf)
)
(fp_text value "5.1k" (at 0 1.5 90) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp 2c430825-f89e-46dd-92c0-a1eb7a4e3d36)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp dd9956f2-e1a3-43eb-b682-c9200e10a75b)
)
(fp_line (start 0.6 0.88) (end -0.6 0.88) (layer "F.SilkS") (width 0.12) (tstamp 5e0b2a0e-375a-45eb-ae50-9fe4936359df))
(fp_line (start -0.6 -0.88) (end 0.6 -0.88) (layer "F.SilkS") (width 0.12) (tstamp e49def2b-5f03-449a-8c59-a4747b02a841))
(fp_line (start -1.55 -0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp 3ce65260-8182-418a-a7b2-4f37060611ce))
(fp_line (start -1.55 -0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp 5f15fa2c-fe87-46d8-a652-e0d24bc4f661))
(fp_line (start 1.55 0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp 7dbd067b-ca72-4941-b6ea-96e7fe65bd5f))
(fp_line (start 1.55 0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp fae10d68-314a-406d-8b5b-4316304c51ae))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp 03262628-1cc5-491d-862f-0eb1bd93094e))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp 5da11d55-848a-4c7c-8f5e-5413d2d2f8c3))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp bd87c8ae-c0f8-478e-afa3-98b6cb999a88))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp cb1a0346-16cf-4eae-aeba-50e4cf1d7d5a))
(pad "1" smd rect locked (at -1.1 0 270) (size 1.2 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 46 "Net-(J1-Pad10)") (pintype "passive") (tstamp 901f297b-40ea-4ae4-95f1-25a90c2a544e))
(pad "2" smd rect locked (at 1.1 0 270) (size 1.2 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pintype "passive") (tstamp aa739f53-96c8-40a7-9101-8ff7d32a41b9))
(model "G:/Libraries/Keeb_components.pretty/models/R_0805.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Keeb_components:C_0805" (layer "F.Cu")
(tedit 5EBBB38A) (tstamp d0ebb930-a00b-4e01-9c89-c59900457fa7)
(at 31 25 180)
(descr "Capacitor SMD 0805, reflow soldering, AVX (see smccp.pdf)")
(tags "capacitor 0805")
(property "Sheetfile" "fc660c.kicad_sch")
(property "Sheetname" "")
(path "/6becc599-6fcb-4180-a0f0-e394ec7e3c44")
(attr smd)
(fp_text reference "C4" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.125)))
(tstamp cabb38da-8793-4f24-8118-d33d10b96725)
)
(fp_text value "0.1u" (at -2 0) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)) (justify left))
(tstamp 77a6bf10-e64f-4b28-9f94-c04eed645066)
)
(fp_line (start 0.5 -0.85) (end -0.5 -0.85) (layer "F.SilkS") (width 0.12) (tstamp d230dc90-9237-47ab-bb6f-9e0d337ac10d))
(fp_line (start -0.5 0.85) (end 0.5 0.85) (layer "F.SilkS") (width 0.12) (tstamp ed1fc73e-faea-456c-8015-40f28c678621))
(fp_line (start -1.75 -0.88) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp 746e43c3-c7e7-4697-abf0-46c97efdc327))
(fp_line (start -1.75 -0.88) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp 77925e64-9349-4358-bb9c-5348d17fa505))
(fp_line (start 1.75 0.87) (end 1.75 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp d23ef727-eca9-452a-b22b-5af90a431df6))
(fp_line (start 1.75 0.87) (end -1.75 0.87) (layer "F.CrtYd") (width 0.05) (tstamp f97f022f-d8f2-4eea-a6df-b997c34f3c73))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp 42b74f28-6d48-4d47-862b-452e70e032f4))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp 533ccbd5-29d3-4bcf-86d0-73ca486305c5))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp a77b989f-13b4-4e35-9ca7-d7acc130a679))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp c351562a-f8b0-4299-b76b-8556b3ad4d9d))
(pad "1" smd rect locked (at -1.1 0 180) (size 1.2 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "VCC") (pintype "passive") (tstamp 453a0b8e-9388-4b1e-85b9-f2ff57a78ed7))
(pad "2" smd rect locked (at 1.1 0 180) (size 1.2 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pintype "passive") (tstamp 8b00a16e-f0d0-4783-9ab7-717403765315))
(model "G:/Libraries/Keeb_components.pretty/models/C_0805.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))