-
Notifications
You must be signed in to change notification settings - Fork 3
/
USBload21.kicad_pcb
2370 lines (2343 loc) · 120 KB
/
USBload21.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.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(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)
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
)
(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)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes true)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "+5VD")
(net 3 "Net-(JP3-Pad1)")
(net 4 "Net-(Q1-Pad1)")
(net 5 "Net-(JP3-Pad2)")
(net 6 "Net-(JP4-Pad2)")
(net 7 "Net-(JP5-Pad2)")
(net 8 "/UDP")
(net 9 "/UDM")
(net 10 "/MD0")
(net 11 "/MD1")
(net 12 "unconnected-(U1-Pad1)")
(net 13 "Net-(R1-Pad1)")
(footprint "akita:USB-A_plug" (layer "F.Cu")
(tedit 61AD4922) (tstamp 00000000-0000-0000-0000-00005e49ca41)
(at 8.58 -15.2)
(property "Sheetfile" "USBload2S.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e4c7ca1")
(attr through_hole)
(fp_text reference "J2" (at -4 2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f1830a1b-f0cc-47ae-a2c9-679c82032f14)
)
(fp_text value "USB_A" (at -1 4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6a955fc7-39d9-4c75-9a69-676ca8c0b9b2)
)
(fp_line (start 6 -4) (end 6 -20) (layer "F.SilkS") (width 0.12) (tstamp 746ba970-8279-4e7b-aed3-f28687777c21))
(fp_line (start 6 -20) (end -6 -20) (layer "F.SilkS") (width 0.12) (tstamp e10b5627-3247-4c86-b9f6-ef474ca11543))
(fp_line (start -6 -20) (end -6 -4) (layer "F.SilkS") (width 0.12) (tstamp e8314017-7be6-4011-9179-37449a29b311))
(pad "" np_thru_hole circle locked (at -2.25 -2.4) (size 1.2 1.2) (drill 1.2) (layers *.Cu *.Mask) (tstamp 10109f84-4940-47f8-8640-91f185ac9bc1))
(pad "" np_thru_hole circle locked (at 2.25 -2.4) (size 1.2 1.2) (drill 1.2) (layers *.Cu *.Mask) (tstamp 71c31975-2c45-4d18-a25a-18e07a55d11e))
(pad "1" thru_hole circle locked (at -3.5 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 2 "+5VD") (pinfunction "VBUS") (pintype "power_in") (tstamp e615f7aa-337e-474d-9615-2ad82b1c44ca))
(pad "2" thru_hole circle locked (at -1 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 9 "/UDM") (pinfunction "D-") (pintype "passive") (tstamp 77ed3941-d133-4aef-a9af-5a39322d14eb))
(pad "3" thru_hole circle locked (at 1 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 8 "/UDP") (pinfunction "D+") (pintype "passive") (tstamp 47baf4b1-0938-497d-88f9-671136aa8be7))
(pad "4" thru_hole circle locked (at 3.5 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp c022004a-c968-410e-b59e-fbab0e561e9d))
(pad "5" thru_hole roundrect locked (at 5.85 -2.4) (size 2 3.5) (drill oval 1.2 2.5) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 55e740a3-0735-4744-896e-2bf5437093b9))
(pad "5" thru_hole roundrect locked (at -5.85 -2.4) (size 2 3.5) (drill oval 1.2 2.5) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "Shield") (pintype "passive") (tstamp f4f99e3d-7269-4f6a-a759-16ad2a258779))
)
(footprint "Connector_USB:USB_A_Stewart_SS-52100-001_Horizontal" (layer "F.Cu")
(tedit 5CB49A87) (tstamp 00000000-0000-0000-0000-000061aca811)
(at 5.08 -12.7)
(descr "USB A connector https://belfuse.com/resources/drawings/stewartconnector/dr-stw-ss-52100-001.pdf")
(tags "USB_A Female Connector receptacle")
(property "Sheetfile" "USBload2S.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e4cb4bb")
(attr through_hole)
(fp_text reference "J3" (at 3.5 -2.26) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b6bcc3cf-50de-4a33-bc41-678825c1ecf2)
)
(fp_text value "USB_A" (at 3.5 14.49) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5740c959-93d8-47fd-8f68-62f0109e753d)
)
(fp_text user "${REFERENCE}" (at 3.5 5.99) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 128e34ce-eee7-477d-b905-a493e98db783)
)
(fp_line (start 9.75 0.99) (end 9.75 -1.01) (layer "F.SilkS") (width 0.12) (tstamp 0867287d-2e6a-4d69-a366-c29f88198f2b))
(fp_line (start -2.75 4.49) (end -2.75 12.49) (layer "F.SilkS") (width 0.12) (tstamp 0f41a909-27c4-4be2-9d5e-9ae2108c8ff5))
(fp_line (start -2.75 -1.01) (end -2.75 0.99) (layer "F.SilkS") (width 0.12) (tstamp 1b54105e-6590-4d26-a763-ecfcf81eedc4))
(fp_line (start -3.75 12.49) (end -3.75 12.99) (layer "F.SilkS") (width 0.12) (tstamp 35354519-a28c-40c4-befd-0943e98dea53))
(fp_line (start -0.5 -1.26) (end 0.5 -1.26) (layer "F.SilkS") (width 0.12) (tstamp 38f2d955-ea7a-4a21-aba6-02ae23f1bd4a))
(fp_line (start -3.75 12.99) (end 10.75 12.99) (layer "F.SilkS") (width 0.12) (tstamp 587a157d-dedf-4558-a037-1a94bbba1848))
(fp_line (start -2.75 12.49) (end -3.75 12.49) (layer "F.SilkS") (width 0.12) (tstamp 632acde9-b7fd-4f04-8cb4-d2cbb06b3595))
(fp_line (start 9.75 12.49) (end 9.75 4.49) (layer "F.SilkS") (width 0.12) (tstamp 75286985-9fa5-4d30-89c5-493b6e63cd66))
(fp_line (start 10.75 12.49) (end 9.75 12.49) (layer "F.SilkS") (width 0.12) (tstamp 78f88cf6-751c-4e9b-ae75-fb8b6d44ff39))
(fp_line (start 9.75 -1.01) (end -2.75 -1.01) (layer "F.SilkS") (width 0.12) (tstamp afd3dbad-e7a8-4e4c-b77c-4065a69aefa2))
(fp_line (start 10.75 12.99) (end 10.75 12.49) (layer "F.SilkS") (width 0.12) (tstamp c19dbe3c-ced0-48f7-a91d-777569cfb936))
(fp_line (start 11.25 13.49) (end 11.25 11.99) (layer "F.CrtYd") (width 0.05) (tstamp 0088d107-13d8-496c-8da6-7bbeb9d096b0))
(fp_line (start -3.25 0.69) (end -3.25 -1.51) (layer "F.CrtYd") (width 0.05) (tstamp 0d35483a-0b12-46cc-b9f2-896fd6831779))
(fp_line (start 12.15 1.99) (end 11.25 0.69) (layer "F.CrtYd") (width 0.05) (tstamp 34871042-9d5c-4e29-abdd-a168368c3c22))
(fp_line (start -4.25 11.99) (end -4.25 13.49) (layer "F.CrtYd") (width 0.05) (tstamp 417f13e4-c121-485a-a6b5-8b55e70350b8))
(fp_line (start 10.25 0.69) (end 10.25 -1.51) (layer "F.CrtYd") (width 0.05) (tstamp 4412226e-d975-40a2-921f-502ff4129a95))
(fp_line (start 10.25 -1.51) (end -3.25 -1.51) (layer "F.CrtYd") (width 0.05) (tstamp 4e66a44f-7fa6-4e16-bf9b-62ec864301a5))
(fp_line (start 10.25 0.69) (end 11.25 0.69) (layer "F.CrtYd") (width 0.05) (tstamp 53c85970-3e21-4fae-a84f-721cfc0513b5))
(fp_line (start -3.25 4.74) (end -4.25 4.74) (layer "F.CrtYd") (width 0.05) (tstamp 55992e35-fe7b-468a-9b7a-1e4dc931b904))
(fp_line (start 10.25 4.74) (end 11.25 4.74) (layer "F.CrtYd") (width 0.05) (tstamp 67621f9e-0a6a-4778-ad69-04dcf300659c))
(fp_line (start 10.25 11.99) (end 10.25 4.74) (layer "F.CrtYd") (width 0.05) (tstamp 68e09be7-3bbc-4443-a838-209ce20b2bef))
(fp_line (start 11.25 11.99) (end 10.25 11.99) (layer "F.CrtYd") (width 0.05) (tstamp 6a780180-586a-4241-a52d-dc7a5ffcc966))
(fp_line (start 12.15 1.99) (end 12.15 3.44) (layer "F.CrtYd") (width 0.05) (tstamp 7447a6e7-8205-46ba-afca-d0fa8f90c95a))
(fp_line (start 12.15 3.44) (end 11.25 4.74) (layer "F.CrtYd") (width 0.05) (tstamp 9702d639-3b1f-4825-8985-b32b9008503d))
(fp_line (start -3.25 11.99) (end -4.25 11.99) (layer "F.CrtYd") (width 0.05) (tstamp 9dab0cb7-2557-4419-963b-5ae736517f62))
(fp_line (start -5.15 3.44) (end -4.25 4.74) (layer "F.CrtYd") (width 0.05) (tstamp a06e8e78-f567-42e6-b645-013b1073ca31))
(fp_line (start -4.25 13.49) (end 11.25 13.49) (layer "F.CrtYd") (width 0.05) (tstamp c201e1b2-fc01-4110-bdaa-a33290468c83))
(fp_line (start -5.15 1.99) (end -4.25 0.69) (layer "F.CrtYd") (width 0.05) (tstamp c3c93de0-69b1-4a04-8e0b-d78caf487c63))
(fp_line (start -3.25 4.74) (end -3.25 11.99) (layer "F.CrtYd") (width 0.05) (tstamp e12e827e-36be-4503-8eef-6fc7e8bc5d49))
(fp_line (start -3.25 0.69) (end -4.25 0.69) (layer "F.CrtYd") (width 0.05) (tstamp ec9e24d8-d1c5-40e2-9812-dc315d05f470))
(fp_line (start -5.15 3.44) (end -5.15 1.99) (layer "F.CrtYd") (width 0.05) (tstamp f9865a9f-edb8-49c7-828f-4896e1f3047a))
(fp_line (start -3.75 12.99) (end -3.75 12.49) (layer "F.Fab") (width 0.1) (tstamp 2bf3f24b-fd30-41a7-a274-9b519491916b))
(fp_line (start -3.75 12.99) (end 10.75 12.99) (layer "F.Fab") (width 0.1) (tstamp 4831966c-bb32-4bc8-a400-0382a02ffa1c))
(fp_line (start -2.75 -1.01) (end 9.75 -1.01) (layer "F.Fab") (width 0.1) (tstamp 4d4b0fcd-2c79-4fc3-b5fa-7a0741601344))
(fp_line (start -0.25 -1.01) (end 0 -0.76) (layer "F.Fab") (width 0.1) (tstamp 6b25f522-8e2d-4cd8-9d5d-a2b80f60133b))
(fp_line (start 9.75 12.49) (end 9.75 -1.01) (layer "F.Fab") (width 0.1) (tstamp 9762c9ed-64d8-4f3e-baf6-f6ba6effc919))
(fp_line (start 9.75 12.49) (end 10.75 12.49) (layer "F.Fab") (width 0.1) (tstamp a9ec539a-d80d-40cc-803c-12b6adefe42a))
(fp_line (start -3.75 12.49) (end -2.75 12.49) (layer "F.Fab") (width 0.1) (tstamp c264c438-a475-4ad4-9915-0f1e6ecf3053))
(fp_line (start 0 -0.76) (end 0.25 -1.01) (layer "F.Fab") (width 0.1) (tstamp dabe541b-b164-4180-97a4-5ca761b86800))
(fp_line (start -2.75 12.49) (end -2.75 -1.01) (layer "F.Fab") (width 0.1) (tstamp e25ce415-914a-48fe-bf09-324317917b2e))
(fp_line (start 10.75 12.49) (end 10.75 12.99) (layer "F.Fab") (width 0.1) (tstamp ef1b4b98-541b-4673-a04f-2043250fc40a))
(pad "1" thru_hole rect locked (at 0 0) (size 1.6 1.6) (drill 0.92) (layers *.Cu *.Mask)
(net 2 "+5VD") (pinfunction "VBUS") (pintype "power_in") (tstamp b3d08afa-f296-4e3b-8825-73b6331d35bf))
(pad "2" thru_hole circle locked (at 2.5 0) (size 1.6 1.6) (drill 0.92) (layers *.Cu *.Mask)
(net 9 "/UDM") (pinfunction "D-") (pintype "passive") (tstamp 712d6a7d-2b62-464f-b745-fd2a6b0187f6))
(pad "3" thru_hole circle locked (at 4.5 0) (size 1.6 1.6) (drill 0.92) (layers *.Cu *.Mask)
(net 8 "/UDP") (pinfunction "D+") (pintype "passive") (tstamp 3172f2e2-18d2-4a80-ae30-5707b3409798))
(pad "4" thru_hole circle locked (at 7 0) (size 1.6 1.6) (drill 0.92) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp c801d42e-dd94-493e-bd2f-6c3ddad43f55))
(pad "5" thru_hole circle locked (at 10.07 2.71) (size 3 3) (drill 2.3) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 842e430f-0c35-45f3-a0b5-95ae7b7ae388))
(pad "5" thru_hole circle locked (at -3.07 2.71) (size 3 3) (drill 2.3) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 98e81e80-1f85-4152-be3f-99785ea97751))
(model "${KISYS3DMOD}/Connector_USB.3dshapes/USB_A_Stewart_SS-52100-001_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "B.Cu")
(tedit 5B36C52B) (tstamp 00000000-0000-0000-0000-00005e48e5f3)
(at 12.192 -9.906 -90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "USBload2S.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e4a4fca")
(attr smd)
(fp_text reference "R4" (at -1.651 -1.27 90) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.15)) (justify mirror))
(tstamp 0e8f7fc0-2ef2-4b90-9c15-8a3a601ee459)
)
(fp_text value "51" (at 0 -1.65 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp b0906e10-2fbc-4309-a8b4-6fc4cd1a5490)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
(tstamp 8c0807a7-765b-4fa5-baaa-e09a2b610e6b)
)
(fp_line (start -0.258578 0.71) (end 0.258578 0.71) (layer "B.SilkS") (width 0.12) (tstamp c9667181-b3c7-4b01-b8b4-baa29a9aea63))
(fp_line (start -0.258578 -0.71) (end 0.258578 -0.71) (layer "B.SilkS") (width 0.12) (tstamp d5b800ca-1ab6-4b66-b5f7-2dda5658b504))
(fp_line (start 1.68 -0.95) (end -1.68 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp 0ce8d3ab-2662-4158-8a2a-18b782908fc5))
(fp_line (start 1.68 0.95) (end 1.68 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp 29195ea4-8218-44a1-b4bf-466bee0082e4))
(fp_line (start -1.68 -0.95) (end -1.68 0.95) (layer "B.CrtYd") (width 0.05) (tstamp cff34251-839c-4da9-a0ad-85d0fc4e32af))
(fp_line (start -1.68 0.95) (end 1.68 0.95) (layer "B.CrtYd") (width 0.05) (tstamp d0fb0864-e79b-4bdc-8e8e-eed0cabe6d56))
(fp_line (start -1 -0.6) (end -1 0.6) (layer "B.Fab") (width 0.1) (tstamp 309b3bff-19c8-41ec-a84d-63399c649f46))
(fp_line (start -1 0.6) (end 1 0.6) (layer "B.Fab") (width 0.1) (tstamp bd9595a1-04f3-4fda-8f1b-e65ad874edd3))
(fp_line (start 1 0.6) (end 1 -0.6) (layer "B.Fab") (width 0.1) (tstamp be645d0f-8568-47a0-a152-e3ddd33563eb))
(fp_line (start 1 -0.6) (end -1 -0.6) (layer "B.Fab") (width 0.1) (tstamp ebd06df3-d52b-4cff-99a2-a771df6d3733))
(pad "1" smd roundrect locked (at -0.9375 0 270) (size 0.975 1.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 2 "+5VD") (pintype "passive") (tstamp 173f6f06-e7d0-42ac-ab03-ce6b79b9eeee))
(pad "2" smd roundrect locked (at 0.9375 0 270) (size 0.975 1.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 5 "Net-(JP3-Pad2)") (pintype "passive") (tstamp 2e842263-c0ba-46fd-a760-6624d4c78278))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Jumper:SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm" (layer "B.Cu")
(tedit 5B391E66) (tstamp 00000000-0000-0000-0000-00005e48ec12)
(at 8.382 -6.858 90)
(descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, open")
(tags "solder jumper open")
(property "Sheetfile" "USBload2S.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e494b99")
(attr exclude_from_pos_files)
(fp_text reference "JP4" (at 0 0.127 90) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp a5cd8da1-8f7f-4f80-bb23-0317de562222)
)
(fp_text value "SolderJumper_2_Open" (at 0 -1.9 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 4f66b314-0f62-4fb6-8c3c-f9c6a75cd3ec)
)
(fp_line (start 0.7 -1) (end -0.7 -1) (layer "B.SilkS") (width 0.12) (tstamp 0c3dceba-7c95-4b3d-b590-0eb581444beb))
(fp_line (start -0.7 1) (end 0.7 1) (layer "B.SilkS") (width 0.12) (tstamp 730b670c-9bcf-4dcd-9a8d-fcaa61fb0955))
(fp_line (start -1.4 -0.3) (end -1.4 0.3) (layer "B.SilkS") (width 0.12) (tstamp 965308c8-e014-459a-b9db-b8493a601c62))
(fp_line (start 1.4 0.3) (end 1.4 -0.3) (layer "B.SilkS") (width 0.12) (tstamp abe07c9a-17c3-43b5-b7a6-ae867ac27ea7))
(fp_arc (start 0.7 -1) (mid 1.194975 -0.794975) (end 1.4 -0.3) (layer "B.SilkS") (width 0.12) (tstamp 6595b9c7-02ee-4647-bde5-6b566e35163e))
(fp_arc (start -0.7 1) (mid -1.194975 0.794975) (end -1.4 0.3) (layer "B.SilkS") (width 0.12) (tstamp b1c649b1-f44d-46c7-9dea-818e75a1b87e))
(fp_arc (start 1.4 0.3) (mid 1.194975 0.794975) (end 0.7 1) (layer "B.SilkS") (width 0.12) (tstamp b7199d9b-bebb-4100-9ad3-c2bd31e21d65))
(fp_arc (start -1.4 -0.3) (mid -1.194975 -0.794975) (end -0.7 -1) (layer "B.SilkS") (width 0.12) (tstamp f3628265-0155-43e2-a467-c40ff783e265))
(fp_line (start 1.65 -1.25) (end -1.65 -1.25) (layer "B.CrtYd") (width 0.05) (tstamp 01e9b6e7-adf9-4ee7-9447-a588630ee4a2))
(fp_line (start -1.65 1.25) (end -1.65 -1.25) (layer "B.CrtYd") (width 0.05) (tstamp 7d928d56-093a-4ca8-aed1-414b7e703b45))
(fp_line (start -1.65 1.25) (end 1.65 1.25) (layer "B.CrtYd") (width 0.05) (tstamp 8a650ebf-3f78-4ca4-a26b-a5028693e36d))
(fp_line (start 1.65 -1.25) (end 1.65 1.25) (layer "B.CrtYd") (width 0.05) (tstamp ca87f11b-5f48-4b57-8535-68d3ec2fe5a9))
(pad "1" smd custom locked (at -0.65 0 90) (size 1 0.5) (layers "B.Cu" "B.Mask")
(net 3 "Net-(JP3-Pad1)") (pinfunction "A") (pintype "passive") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_poly (pts
(xy 0.5 0.75)
(xy 0 0.75)
(xy 0 -0.75)
(xy 0.5 -0.75)
) (width 0) (fill yes))
) (tstamp a17904b9-135e-4dae-ae20-401c7787de72))
(pad "2" smd custom locked (at 0.65 0 90) (size 1 0.5) (layers "B.Cu" "B.Mask")
(net 6 "Net-(JP4-Pad2)") (pinfunction "B") (pintype "passive") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_poly (pts
(xy 0 0.75)
(xy -0.5 0.75)
(xy -0.5 -0.75)
(xy 0 -0.75)
) (width 0) (fill yes))
) (tstamp 770ad51a-7219-4633-b24a-bd20feb0a6c5))
)
(footprint "Package_TO_SOT_SMD:SOT-23" (layer "B.Cu")
(tedit 5A02FF57) (tstamp 00000000-0000-0000-0000-00005e49040f)
(at 1.9 -6.6)
(descr "SOT-23, Standard")
(tags "SOT-23")
(property "MPN" "CJ2302")
(property "SKU" "305030015")
(property "Sheetfile" "USBload2S.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e48b80a")
(attr smd)
(fp_text reference "Q1" (at -0.127 -2.159) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.15)) (justify mirror))
(tstamp 34a74736-156e-4bf3-9200-cd137cfa59da)
)
(fp_text value "SMD-MOSFET-N-CH-20V-2.1A-CJ2302_SOT-23_" (at 0 -2.5) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp d0d2eee9-31f6-44fa-8149-ebb4dc2dc0dc)
)
(fp_text user "${REFERENCE}" (at 0 0 270) (layer "B.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)) (justify mirror))
(tstamp c8029a4c-945d-42ca-871a-dd73ff50a1a3)
)
(fp_line (start 0.76 1.58) (end -1.4 1.58) (layer "B.SilkS") (width 0.12) (tstamp 1e518c2a-4cb7-4599-a1fa-5b9f847da7d3))
(fp_line (start 0.76 1.58) (end 0.76 0.65) (layer "B.SilkS") (width 0.12) (tstamp 8087f566-a94d-4bbc-985b-e49ee7762296))
(fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer "B.SilkS") (width 0.12) (tstamp 98c78427-acd5-4f90-9ad6-9f61c4809aec))
(fp_line (start 0.76 -1.58) (end -0.7 -1.58) (layer "B.SilkS") (width 0.12) (tstamp ee41cb8e-512d-41d2-81e1-3c50fff32aeb))
(fp_line (start 1.7 1.75) (end 1.7 -1.75) (layer "B.CrtYd") (width 0.05) (tstamp 3a52f112-cb97-43db-aaeb-20afe27664d7))
(fp_line (start 1.7 -1.75) (end -1.7 -1.75) (layer "B.CrtYd") (width 0.05) (tstamp 41acfe41-fac7-432a-a7a3-946566e2d504))
(fp_line (start -1.7 -1.75) (end -1.7 1.75) (layer "B.CrtYd") (width 0.05) (tstamp 644ae9fc-3c8e-4089-866e-a12bf371c3e9))
(fp_line (start -1.7 1.75) (end 1.7 1.75) (layer "B.CrtYd") (width 0.05) (tstamp f4eb0267-179f-46c9-b516-9bfb06bac1ba))
(fp_line (start -0.7 0.95) (end -0.7 -1.5) (layer "B.Fab") (width 0.1) (tstamp 101ef598-601d-400e-9ef6-d655fbb1dbfa))
(fp_line (start -0.7 -1.52) (end 0.7 -1.52) (layer "B.Fab") (width 0.1) (tstamp 65134029-dbd2-409a-85a8-13c2a33ff019))
(fp_line (start 0.7 1.52) (end 0.7 -1.52) (layer "B.Fab") (width 0.1) (tstamp 7f2301df-e4bc-479e-a681-cc59c9a2dbbb))
(fp_line (start -0.15 1.52) (end 0.7 1.52) (layer "B.Fab") (width 0.1) (tstamp 7f52d787-caa3-4a92-b1b2-19d554dc29a4))
(fp_line (start -0.7 0.95) (end -0.15 1.52) (layer "B.Fab") (width 0.1) (tstamp a8447faf-e0a0-4c4a-ae53-4d4b28669151))
(pad "1" smd rect locked (at -1 0.95) (size 0.9 0.8) (layers "B.Cu" "B.Paste" "B.Mask")
(net 4 "Net-(Q1-Pad1)") (pinfunction "G") (pintype "passive") (tstamp 5b34a16c-5a14-4291-8242-ea6d6ac54372))
(pad "2" smd rect locked (at -1 -0.95) (size 0.9 0.8) (layers "B.Cu" "B.Paste" "B.Mask")
(net 1 "GND") (pinfunction "S") (pintype "passive") (tstamp c701ee8e-1214-4781-a973-17bef7b6e3eb))
(pad "3" smd rect locked (at 1 0) (size 0.9 0.8) (layers "B.Cu" "B.Paste" "B.Mask")
(net 3 "Net-(JP3-Pad1)") (pinfunction "D") (pintype "passive") (tstamp 6781326c-6e0d-4753-8f28-0f5c687e01f9))
(model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Jumper:SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm" (layer "B.Cu")
(tedit 5B391E66) (tstamp 00000000-0000-0000-0000-00005e49060c)
(at 10.922 -6.858 90)
(descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, open")
(tags "solder jumper open")
(property "Sheetfile" "USBload2S.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e49436b")
(attr exclude_from_pos_files)
(fp_text reference "JP3" (at 0.127 0.127 90) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp e21aa84b-970e-47cf-b64f-3b55ee0e1b51)
)
(fp_text value "SolderJumper_2_Open" (at 0 -1.9 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp c8c79177-94d4-43e2-a654-f0a5554fbb68)
)
(fp_line (start -0.7 1) (end 0.7 1) (layer "B.SilkS") (width 0.12) (tstamp 03caada9-9e22-4e2d-9035-b15433dfbb17))
(fp_line (start 0.7 -1) (end -0.7 -1) (layer "B.SilkS") (width 0.12) (tstamp 0ff508fd-18da-4ab7-9844-3c8a28c2587e))
(fp_line (start 1.4 0.3) (end 1.4 -0.3) (layer "B.SilkS") (width 0.12) (tstamp 1f3003e6-dce5-420f-906b-3f1e92b67249))
(fp_line (start -1.4 -0.3) (end -1.4 0.3) (layer "B.SilkS") (width 0.12) (tstamp 378af8b4-af3d-46e7-89ae-deff12ca9067))
(fp_arc (start -1.4 -0.3) (mid -1.194975 -0.794975) (end -0.7 -1) (layer "B.SilkS") (width 0.12) (tstamp 13c0ff76-ed71-4cd9-abb0-92c376825d5d))
(fp_arc (start 1.4 0.3) (mid 1.194975 0.794975) (end 0.7 1) (layer "B.SilkS") (width 0.12) (tstamp 8412992d-8754-44de-9e08-115cec1a3eff))
(fp_arc (start -0.7 1) (mid -1.194975 0.794975) (end -1.4 0.3) (layer "B.SilkS") (width 0.12) (tstamp a27eb049-c992-4f11-a026-1e6a8d9d0160))
(fp_arc (start 0.7 -1) (mid 1.194975 -0.794975) (end 1.4 -0.3) (layer "B.SilkS") (width 0.12) (tstamp ffd175d1-912a-4224-be1e-a8198680f46b))
(fp_line (start -1.65 1.25) (end -1.65 -1.25) (layer "B.CrtYd") (width 0.05) (tstamp 639c0e59-e95c-4114-bccd-2e7277505454))
(fp_line (start -1.65 1.25) (end 1.65 1.25) (layer "B.CrtYd") (width 0.05) (tstamp 8ca3e20d-bcc7-4c5e-9deb-562dfed9fecb))
(fp_line (start 1.65 -1.25) (end -1.65 -1.25) (layer "B.CrtYd") (width 0.05) (tstamp a15a7506-eae4-4933-84da-9ad754258706))
(fp_line (start 1.65 -1.25) (end 1.65 1.25) (layer "B.CrtYd") (width 0.05) (tstamp d3c11c8f-a73d-4211-934b-a6da255728ad))
(pad "1" smd custom locked (at -0.65 0 90) (size 1 0.5) (layers "B.Cu" "B.Mask")
(net 3 "Net-(JP3-Pad1)") (pinfunction "A") (pintype "passive") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_poly (pts
(xy 0.5 0.75)
(xy 0 0.75)
(xy 0 -0.75)
(xy 0.5 -0.75)
) (width 0) (fill yes))
) (tstamp d3d7e298-1d39-4294-a3ab-c84cc0dc5e5a))
(pad "2" smd custom locked (at 0.65 0 90) (size 1 0.5) (layers "B.Cu" "B.Mask")
(net 5 "Net-(JP3-Pad2)") (pinfunction "B") (pintype "passive") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_poly (pts
(xy 0 0.75)
(xy -0.5 0.75)
(xy -0.5 -0.75)
(xy 0 -0.75)
) (width 0) (fill yes))
) (tstamp df32840e-2912-4088-b54c-9a85f64c0265))
)
(footprint "Jumper:SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm" (layer "B.Cu")
(tedit 5B391E66) (tstamp 00000000-0000-0000-0000-00005e4926aa)
(at 5.45 -1.35)
(descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, open")
(tags "solder jumper open")
(property "Sheetfile" "USBload2S.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e4954aa")
(attr exclude_from_pos_files)
(fp_text reference "JP1" (at 0.011 0.08) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 1bf544e3-5940-4576-9291-2464e95c0ee2)
)
(fp_text value "SolderJumper_2_Open" (at 0 -1.9) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 3aaee4c4-dbf7-49a5-a620-9465d8cc3ae7)
)
(fp_line (start -1.4 -0.3) (end -1.4 0.3) (layer "B.SilkS") (width 0.12) (tstamp 6441b183-b8f2-458f-a23d-60e2b1f66dd6))
(fp_line (start -0.7 1) (end 0.7 1) (layer "B.SilkS") (width 0.12) (tstamp 80094b70-85ab-4ff6-934b-60d5ee65023a))
(fp_line (start 0.7 -1) (end -0.7 -1) (layer "B.SilkS") (width 0.12) (tstamp bfc0aadc-38cf-466e-a642-68fdc3138c78))
(fp_line (start 1.4 0.3) (end 1.4 -0.3) (layer "B.SilkS") (width 0.12) (tstamp d4a1d3c4-b315-4bec-9220-d12a9eab51e0))
(fp_arc (start -0.7 1) (mid -1.194975 0.794975) (end -1.4 0.3) (layer "B.SilkS") (width 0.12) (tstamp 31e08896-1992-4725-96d9-9d2728bca7a3))
(fp_arc (start 1.4 0.3) (mid 1.194975 0.794975) (end 0.7 1) (layer "B.SilkS") (width 0.12) (tstamp 66043bca-a260-4915-9fce-8a51d324c687))
(fp_arc (start 0.7 -1) (mid 1.194975 -0.794975) (end 1.4 -0.3) (layer "B.SilkS") (width 0.12) (tstamp 852dabbf-de45-4470-8176-59d37a754407))
(fp_arc (start -1.4 -0.3) (mid -1.194975 -0.794975) (end -0.7 -1) (layer "B.SilkS") (width 0.12) (tstamp b5352a33-563a-4ffe-a231-2e68fb54afa3))
(fp_line (start -1.65 1.25) (end 1.65 1.25) (layer "B.CrtYd") (width 0.05) (tstamp 0f54db53-a272-4955-88fb-d7ab00657bb0))
(fp_line (start -1.65 1.25) (end -1.65 -1.25) (layer "B.CrtYd") (width 0.05) (tstamp 922058ca-d09a-45fd-8394-05f3e2c1e03a))
(fp_line (start 1.65 -1.25) (end 1.65 1.25) (layer "B.CrtYd") (width 0.05) (tstamp 97fe9c60-586f-4895-8504-4d3729f5f81a))
(fp_line (start 1.65 -1.25) (end -1.65 -1.25) (layer "B.CrtYd") (width 0.05) (tstamp bdc7face-9f7c-4701-80bb-4cc144448db1))
(pad "1" smd custom locked (at -0.65 0) (size 1 0.5) (layers "B.Cu" "B.Mask")
(net 1 "GND") (pinfunction "A") (pintype "passive") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_poly (pts
(xy 0.5 0.75)
(xy 0 0.75)
(xy 0 -0.75)
(xy 0.5 -0.75)
) (width 0) (fill yes))
) (tstamp f2c93195-af12-4d3e-acdf-bdd0ff675c24))
(pad "2" smd custom locked (at 0.65 0) (size 1 0.5) (layers "B.Cu" "B.Mask")
(net 10 "/MD0") (pinfunction "B") (pintype "passive") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_poly (pts
(xy 0 0.75)
(xy -0.5 0.75)
(xy -0.5 -0.75)
(xy 0 -0.75)
) (width 0) (fill yes))
) (tstamp 2d6db888-4e40-41c8-b701-07170fc894bc))
)
(footprint "Jumper:SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm" (layer "B.Cu")
(tedit 5B391E66) (tstamp 00000000-0000-0000-0000-00005e49c6a8)
(at 5.842 -6.858 90)
(descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, open")
(tags "solder jumper open")
(property "Sheetfile" "USBload2S.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e4950b7")
(attr exclude_from_pos_files)
(fp_text reference "JP5" (at 0.127 0 90) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 19c56563-5fe3-442a-885b-418dbc2421eb)
)
(fp_text value "SolderJumper_2_Open" (at 0 -1.9 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 21ae9c3a-7138-444e-be38-56a4842ab594)
)
(fp_line (start 0.7 -1) (end -0.7 -1) (layer "B.SilkS") (width 0.12) (tstamp 275aa44a-b61f-489f-9e2a-819a0fe0d1eb))
(fp_line (start -0.7 1) (end 0.7 1) (layer "B.SilkS") (width 0.12) (tstamp 57c0c267-8bf9-4cc7-b734-d71a239ac313))
(fp_line (start 1.4 0.3) (end 1.4 -0.3) (layer "B.SilkS") (width 0.12) (tstamp 5ca4be1c-537e-4a4a-b344-d0c8ffde8546))
(fp_line (start -1.4 -0.3) (end -1.4 0.3) (layer "B.SilkS") (width 0.12) (tstamp 6c67e4f6-9d04-4539-b356-b76e915ce848))
(fp_arc (start 0.7 -1) (mid 1.194975 -0.794975) (end 1.4 -0.3) (layer "B.SilkS") (width 0.12) (tstamp 37e8181c-a81e-498b-b2e2-0aef0c391059))
(fp_arc (start 1.4 0.3) (mid 1.194975 0.794975) (end 0.7 1) (layer "B.SilkS") (width 0.12) (tstamp 676efd2f-1c48-4786-9e4b-2444f1e8f6ff))
(fp_arc (start -0.7 1) (mid -1.194975 0.794975) (end -1.4 0.3) (layer "B.SilkS") (width 0.12) (tstamp b447dbb1-d38e-4a15-93cb-12c25382ea53))
(fp_arc (start -1.4 -0.3) (mid -1.194975 -0.794975) (end -0.7 -1) (layer "B.SilkS") (width 0.12) (tstamp cfa5c16e-7859-460d-a0b8-cea7d7ea629c))
(fp_line (start -1.65 1.25) (end -1.65 -1.25) (layer "B.CrtYd") (width 0.05) (tstamp 7cee474b-af8f-4832-b07a-c43c1ab0b464))
(fp_line (start -1.65 1.25) (end 1.65 1.25) (layer "B.CrtYd") (width 0.05) (tstamp 853ee787-6e2c-4f32-bc75-6c17337dd3d5))
(fp_line (start 1.65 -1.25) (end 1.65 1.25) (layer "B.CrtYd") (width 0.05) (tstamp 9cb12cc8-7f1a-4a01-9256-c119f11a8a02))
(fp_line (start 1.65 -1.25) (end -1.65 -1.25) (layer "B.CrtYd") (width 0.05) (tstamp c7e7067c-5f5e-48d8-ab59-df26f9b35863))
(pad "1" smd custom locked (at -0.65 0 90) (size 1 0.5) (layers "B.Cu" "B.Mask")
(net 3 "Net-(JP3-Pad1)") (pinfunction "A") (pintype "passive") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_poly (pts
(xy 0.5 0.75)
(xy 0 0.75)
(xy 0 -0.75)
(xy 0.5 -0.75)
) (width 0) (fill yes))
) (tstamp 14c51520-6d91-4098-a59a-5121f2a898f7))
(pad "2" smd custom locked (at 0.65 0 90) (size 1 0.5) (layers "B.Cu" "B.Mask")
(net 7 "Net-(JP5-Pad2)") (pinfunction "B") (pintype "passive") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_poly (pts
(xy 0 0.75)
(xy -0.5 0.75)
(xy -0.5 -0.75)
(xy 0 -0.75)
) (width 0) (fill yes))
) (tstamp 8d9a3ecc-539f-41da-8099-d37cea9c28e7))
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "B.Cu")
(tedit 5B36C52B) (tstamp 00000000-0000-0000-0000-00005e49c856)
(at 9.906 -9.906 -90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "USBload2S.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e4a61c8")
(attr smd)
(fp_text reference "R5" (at -1.778 -1.016 -90) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.15)) (justify mirror))
(tstamp 7b044939-8c4d-444f-b9e0-a15fcdeb5a86)
)
(fp_text value "51" (at 0 -1.65 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 576c6616-e95d-4f1e-8ead-dea30fcdc8c2)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
(tstamp 6e68f0cd-800e-4167-9553-71fc59da1eeb)
)
(fp_line (start -0.258578 0.71) (end 0.258578 0.71) (layer "B.SilkS") (width 0.12) (tstamp 5edcefbe-9766-42c8-9529-28d0ec865573))
(fp_line (start -0.258578 -0.71) (end 0.258578 -0.71) (layer "B.SilkS") (width 0.12) (tstamp 721d1be9-236e-470b-ba69-f1cc6c43faf9))
(fp_line (start -1.68 0.95) (end 1.68 0.95) (layer "B.CrtYd") (width 0.05) (tstamp 262f1ea9-0133-4b43-be36-456207ea857c))
(fp_line (start 1.68 -0.95) (end -1.68 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp 89e83c2e-e90a-4a50-b278-880bac0cfb49))
(fp_line (start 1.68 0.95) (end 1.68 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp a5e521b9-814e-4853-a5ac-f158785c6269))
(fp_line (start -1.68 -0.95) (end -1.68 0.95) (layer "B.CrtYd") (width 0.05) (tstamp c1c799a0-3c93-493a-9ad7-8a0561bc69ee))
(fp_line (start -1 -0.6) (end -1 0.6) (layer "B.Fab") (width 0.1) (tstamp 22999e73-da32-43a5-9163-4b3a41614f25))
(fp_line (start 1 0.6) (end 1 -0.6) (layer "B.Fab") (width 0.1) (tstamp 81a15393-727e-448b-a777-b18773023d89))
(fp_line (start -1 0.6) (end 1 0.6) (layer "B.Fab") (width 0.1) (tstamp a4f86a46-3bc8-4daa-9125-a63f297eb114))
(fp_line (start 1 -0.6) (end -1 -0.6) (layer "B.Fab") (width 0.1) (tstamp ec5c2062-3a41-4636-8803-069e60a1641a))
(pad "1" smd roundrect locked (at -0.9375 0 270) (size 0.975 1.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 2 "+5VD") (pintype "passive") (tstamp 40b14a16-fb82-4b9d-89dd-55cd98abb5cc))
(pad "2" smd roundrect locked (at 0.9375 0 270) (size 0.975 1.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 6 "Net-(JP4-Pad2)") (pintype "passive") (tstamp 658dad07-97fd-466c-8b49-21892ac96ea4))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Jumper:SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm" (layer "B.Cu")
(tedit 5B391E66) (tstamp 00000000-0000-0000-0000-000061acafdd)
(at 5.45 -3.9)
(descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, open")
(tags "solder jumper open")
(property "Sheetfile" "USBload2S.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e496515")
(attr exclude_from_pos_files)
(fp_text reference "JP2" (at 0.265 0.09) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp bd5408e4-362d-4e43-9d39-78fb99eb52c8)
)
(fp_text value "SolderJumper_2_Open" (at 0 -1.9) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 0217dfc4-fc13-4699-99ad-d9948522648e)
)
(fp_line (start -0.7 1) (end 0.7 1) (layer "B.SilkS") (width 0.12) (tstamp 24f7628d-681d-4f0e-8409-40a129e929d9))
(fp_line (start 1.4 0.3) (end 1.4 -0.3) (layer "B.SilkS") (width 0.12) (tstamp 3e903008-0276-4a73-8edb-5d9dfde6297c))
(fp_line (start -1.4 -0.3) (end -1.4 0.3) (layer "B.SilkS") (width 0.12) (tstamp 6475547d-3216-45a4-a15c-48314f1dd0f9))
(fp_line (start 0.7 -1) (end -0.7 -1) (layer "B.SilkS") (width 0.12) (tstamp 75ffc65c-7132-4411-9f2a-ae0c73d79338))
(fp_arc (start 1.4 0.3) (mid 1.194975 0.794975) (end 0.7 1) (layer "B.SilkS") (width 0.12) (tstamp 1a6d2848-e78e-49fe-8978-e1890f07836f))
(fp_arc (start -1.4 -0.3) (mid -1.194975 -0.794975) (end -0.7 -1) (layer "B.SilkS") (width 0.12) (tstamp 45008225-f50f-4d6b-b508-6730a9408caf))
(fp_arc (start -0.7 1) (mid -1.194975 0.794975) (end -1.4 0.3) (layer "B.SilkS") (width 0.12) (tstamp 8c6a821f-8e19-48f3-8f44-9b340f7689bc))
(fp_arc (start 0.7 -1) (mid 1.194975 -0.794975) (end 1.4 -0.3) (layer "B.SilkS") (width 0.12) (tstamp a544eb0a-75db-4baf-bf54-9ca21744343b))
(fp_line (start -1.65 1.25) (end -1.65 -1.25) (layer "B.CrtYd") (width 0.05) (tstamp 1d9cdadc-9036-4a95-b6db-fa7b3b74c869))
(fp_line (start -1.65 1.25) (end 1.65 1.25) (layer "B.CrtYd") (width 0.05) (tstamp 3a7648d8-121a-4921-9b92-9b35b76ce39b))
(fp_line (start 1.65 -1.25) (end 1.65 1.25) (layer "B.CrtYd") (width 0.05) (tstamp 6bfe5804-2ef9-4c65-b2a7-f01e4014370a))
(fp_line (start 1.65 -1.25) (end -1.65 -1.25) (layer "B.CrtYd") (width 0.05) (tstamp c0eca5ed-bc5e-4618-9bcd-80945bea41ed))
(pad "1" smd custom locked (at -0.65 0) (size 1 0.5) (layers "B.Cu" "B.Mask")
(net 1 "GND") (pinfunction "A") (pintype "passive") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_poly (pts
(xy 0.5 0.75)
(xy 0 0.75)
(xy 0 -0.75)
(xy 0.5 -0.75)
) (width 0) (fill yes))
) (tstamp babeabf2-f3b0-4ed5-8d9e-0215947e6cf3))
(pad "2" smd custom locked (at 0.65 0) (size 1 0.5) (layers "B.Cu" "B.Mask")
(net 11 "/MD1") (pinfunction "B") (pintype "passive") (zone_connect 2)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_poly (pts
(xy 0 0.75)
(xy -0.5 0.75)
(xy -0.5 -0.75)
(xy 0 -0.75)
) (width 0) (fill yes))
) (tstamp 7d34f6b1-ab31-49be-b011-c67fe67a8a56))
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "B.Cu")
(tedit 5B36C52B) (tstamp 00000000-0000-0000-0000-000061ad9dfa)
(at 4.826 -9.906 -90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "USBload2S.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e4a691d")
(attr smd)
(fp_text reference "R3" (at -1.651 1.27 90) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.15)) (justify mirror))
(tstamp 814763c2-92e5-4a2c-941c-9bbd073f6e87)
)
(fp_text value "51" (at 0 -1.65 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp e65b62be-e01b-4688-a999-1d1be370c4ae)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
(tstamp 27d56953-c620-4d5b-9c1c-e48bc3d9684a)
)
(fp_line (start -0.258578 0.71) (end 0.258578 0.71) (layer "B.SilkS") (width 0.12) (tstamp 7a4ce4b3-518a-4819-b8b2-5127b3347c64))
(fp_line (start -0.258578 -0.71) (end 0.258578 -0.71) (layer "B.SilkS") (width 0.12) (tstamp a9b3f6e4-7a6d-4ae8-ad28-3d8458e0ca1a))
(fp_line (start 1.68 -0.95) (end -1.68 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp 82be7aae-5d06-4178-8c3e-98760c41b054))
(fp_line (start -1.68 -0.95) (end -1.68 0.95) (layer "B.CrtYd") (width 0.05) (tstamp a6b7df29-bcf8-46a9-b623-7eaac47f5110))
(fp_line (start -1.68 0.95) (end 1.68 0.95) (layer "B.CrtYd") (width 0.05) (tstamp d9c6d5d2-0b49-49ba-a970-cd2c32f74c54))
(fp_line (start 1.68 0.95) (end 1.68 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp e1535036-5d36-405f-bb86-3819621c4f23))
(fp_line (start 1 -0.6) (end -1 -0.6) (layer "B.Fab") (width 0.1) (tstamp 20c315f4-1e4f-49aa-8d61-778a7389df7e))
(fp_line (start 1 0.6) (end 1 -0.6) (layer "B.Fab") (width 0.1) (tstamp 7e0a03ae-d054-4f76-a131-5c09b8dc1636))
(fp_line (start -1 -0.6) (end -1 0.6) (layer "B.Fab") (width 0.1) (tstamp 9193c41e-d425-447d-b95c-6986d66ea01c))
(fp_line (start -1 0.6) (end 1 0.6) (layer "B.Fab") (width 0.1) (tstamp d6fb27cf-362d-4568-967c-a5bf49d5931b))
(pad "1" smd roundrect locked (at -0.9375 0 270) (size 0.975 1.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 2 "+5VD") (pintype "passive") (tstamp 6fd4442e-30b3-428b-9306-61418a63d311))
(pad "2" smd roundrect locked (at 0.9375 0 270) (size 0.975 1.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(JP3-Pad1)") (pintype "passive") (tstamp 8d0c1d66-35ef-4a53-a28f-436a11b54f42))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric" (layer "B.Cu")
(tedit 5B36C52B) (tstamp 00000000-0000-0000-0000-000061ad9e3b)
(at 7.874 -9.906 -90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "USBload2S.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e4a6682")
(attr smd)
(fp_text reference "R6" (at -1.524 1.27 90) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.15)) (justify mirror))
(tstamp cb614b23-9af3-4aec-bed8-c1374e001510)
)
(fp_text value "51" (at 0 -1.65 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 20cca02e-4c4d-4961-b6b4-b40a1731b220)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
(tstamp 2846428d-39de-4eae-8ce2-64955d56c493)
)
(fp_line (start -0.258578 0.71) (end 0.258578 0.71) (layer "B.SilkS") (width 0.12) (tstamp 59ec3156-036e-4049-89db-91a9dd07095f))
(fp_line (start -0.258578 -0.71) (end 0.258578 -0.71) (layer "B.SilkS") (width 0.12) (tstamp 926001fd-2747-4639-8c0f-4fc46ff7218d))
(fp_line (start 1.68 -0.95) (end -1.68 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp 5487601b-81d3-4c70-8f3d-cf9df9c63302))
(fp_line (start -1.68 -0.95) (end -1.68 0.95) (layer "B.CrtYd") (width 0.05) (tstamp 597a11f2-5d2c-4a65-ac95-38ad106e1367))
(fp_line (start 1.68 0.95) (end 1.68 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp a29f8df0-3fae-4edf-8d9c-bd5a875b13e3))
(fp_line (start -1.68 0.95) (end 1.68 0.95) (layer "B.CrtYd") (width 0.05) (tstamp e3fc1e69-a11c-4c84-8952-fefb9372474e))
(fp_line (start -1 -0.6) (end -1 0.6) (layer "B.Fab") (width 0.1) (tstamp 071522c0-d0ed-49b9-906e-6295f67fb0dc))
(fp_line (start -1 0.6) (end 1 0.6) (layer "B.Fab") (width 0.1) (tstamp 4e315e69-0417-463a-8b7f-469a08d1496e))
(fp_line (start 1 0.6) (end 1 -0.6) (layer "B.Fab") (width 0.1) (tstamp 6a2b20ae-096c-4d9f-92f8-2087c865914f))
(fp_line (start 1 -0.6) (end -1 -0.6) (layer "B.Fab") (width 0.1) (tstamp d39d813e-3e64-490c-ba5c-a64bb5ad6bd0))
(pad "1" smd roundrect locked (at -0.9375 0 270) (size 0.975 1.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 2 "+5VD") (pintype "passive") (tstamp 9cbf35b8-f4d3-42a3-bb16-04ffd03fd8fd))
(pad "2" smd roundrect locked (at 0.9375 0 270) (size 0.975 1.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 7 "Net-(JP5-Pad2)") (pintype "passive") (tstamp 4fa10683-33cd-4dcd-8acc-2415cd63c62a))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "B.Cu")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-000061ad9f69)
(at 10.6 -4.7)
(descr "Capacitor SMD 0603 (1608 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 "capacitor")
(property "MPN" "CC0603KRX7R9BB104")
(property "SKU" "302010138")
(property "Sheetfile" "USBload2S.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e48fc17")
(attr smd)
(fp_text reference "C1" (at 1.7 0.4 180) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.15)) (justify mirror))
(tstamp 32667662-ae86-4904-b198-3e95f11851bf)
)
(fp_text value "CERAMIC-100NF-50V-10%-X7R_0603_" (at 0 -1.43) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp a05d7640-f2f6-4ba7-8c51-5a4af431fc13)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp c1d83899-e380-49f9-a87d-8e78bc089ebf)
)
(fp_line (start -0.162779 0.51) (end 0.162779 0.51) (layer "B.SilkS") (width 0.12) (tstamp 94c158d1-8503-4553-b511-bf42f506c2a8))
(fp_line (start -0.162779 -0.51) (end 0.162779 -0.51) (layer "B.SilkS") (width 0.12) (tstamp 9ccf03e8-755a-4cd9-96fc-30e1d08fa253))
(fp_line (start 1.48 -0.73) (end -1.48 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 13abf99d-5265-4779-8973-e94370fd18ff))
(fp_line (start -1.48 -0.73) (end -1.48 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 46918595-4a45-48e8-84c0-961b4db7f35f))
(fp_line (start 1.48 0.73) (end 1.48 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp a7520ad3-0f8b-4788-92d4-8ffb277041e6))
(fp_line (start -1.48 0.73) (end 1.48 0.73) (layer "B.CrtYd") (width 0.05) (tstamp a795f1ba-cdd5-4cc5-9a52-08586e982934))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp 23bb2798-d93a-4696-a962-c305c4298a0c))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp 6e105729-aba0-497c-a99e-c32d2b3ddb6d))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp 78cbdd6c-4878-4cc5-9a58-0e506478e37d))
(fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp 983c426c-24e0-4c65-ab69-1f1824adc5c6))
(pad "1" smd roundrect locked (at -0.7875 0) (size 0.875 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "1") (pintype "passive") (tstamp 62c076a3-d618-44a2-9042-9a08b3576787))
(pad "2" smd roundrect locked (at 0.7875 0) (size 0.875 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 2 "+5VD") (pinfunction "2") (pintype "passive") (tstamp e9bb29b2-2bb9-4ea2-acd9-2bb3ca677a12))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "akita:Pad_SMD1.6mm" (layer "B.Cu")
(tedit 5E9EA68A) (tstamp 00000000-0000-0000-0000-000061c50e75)
(at 15.24 -14.105)
(property "Sheetfile" "USBload2S.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061c522d6")
(attr smd)
(fp_text reference "J4" (at 0 -0.5) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 29256b3d-9450-4c0a-a4d4-911f04b9c140)
)
(fp_text value "Conn_01x01" (at 0 0.5) (layer "B.Fab") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp b994142f-02ac-4881-9587-6d3df53c96d2)
)
(pad "1" smd rect locked (at 0 0) (size 1.6 1.6) (layers "B.Cu" "B.Mask")
(net 2 "+5VD") (pinfunction "Pin_1") (pintype "passive") (tstamp b603d26a-e034-42fb-8327-b60c5bf9cdd2))
)
(footprint "akita:Pad_SMD1.6mm" (layer "B.Cu")
(tedit 5E9EA68A) (tstamp 00000000-0000-0000-0000-000061c50e7a)
(at 7.62 -19.685)
(property "Sheetfile" "USBload2S.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061c52bc8")
(attr smd)
(fp_text reference "J5" (at 0 -0.5) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp f022716e-b121-4cbf-a833-20e924070c22)
)
(fp_text value "Conn_01x01" (at 0 0.5) (layer "B.Fab") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp cb868d2e-5efb-4bfb-8796-88435b326918)
)
(pad "1" smd rect locked (at 0 0) (size 1.6 1.6) (layers "B.Cu" "B.Mask")
(net 9 "/UDM") (pinfunction "Pin_1") (pintype "passive") (tstamp fc0a4225-db46-4d48-8163-d522602d57cd))
)
(footprint "akita:Pad_SMD1.6mm" (layer "B.Cu")
(tedit 5E9EA68A) (tstamp 00000000-0000-0000-0000-000061c50e7f)
(at 10.16 -19.685)
(property "Sheetfile" "USBload2S.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061c52f00")
(attr smd)
(fp_text reference "J6" (at 0 -0.5) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp e83e0227-ac0f-4180-82bd-68d3a7b56476)
)
(fp_text value "Conn_01x01" (at 0 0.5) (layer "B.Fab") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 46cfd089-6873-4d8b-89af-02ff30e49472)
)
(pad "1" smd rect locked (at 0 0) (size 1.6 1.6) (layers "B.Cu" "B.Mask")
(net 8 "/UDP") (pinfunction "Pin_1") (pintype "passive") (tstamp bb4f0314-c44c-4dda-b85c-537120eaae9a))
)
(footprint "akita:Pad_SMD1.6mm" (layer "B.Cu")
(tedit 5E9EA68A) (tstamp 00000000-0000-0000-0000-000061c51111)
(at 1.27 -14.605)
(property "Sheetfile" "USBload2S.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061c5317d")
(attr smd)
(fp_text reference "J7" (at 0 -0.5) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 99030c03-63b4-49ba-b5ab-4d56974f7963)
)
(fp_text value "Conn_01x01" (at 0 0.5) (layer "B.Fab") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 87c78429-be2b-40ed-8d3b-56cb9666a56f)
)
(pad "1" smd rect locked (at 0 0) (size 1.6 1.6) (layers "B.Cu" "B.Mask")
(net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp edc9ab4f-487a-48dc-95f2-4d87f0e9cf9e))
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp 08e2d62f-f99a-4268-8b33-617dfcc63e75)
(at 1.9 -2.6)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "USBload2S.kicad_sch")
(property "Sheetname" "")
(path "/3bdc61da-fd87-4d91-ae6a-f160ef1e6b25")
(attr smd)
(fp_text reference "R2" (at 1.6 0 90) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.15)) (justify mirror))
(tstamp 6ff874d0-4ac5-414c-83a7-573eda4c7703)
)
(fp_text value "1k" (at 0 -1.43) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 9538e4ed-27e6-4c37-b989-9859dc0d49e8)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp e63e39d7-6ac0-4ffd-8aa3-1841a4541b55)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "B.SilkS") (width 0.12) (tstamp 681bd495-c396-44ce-92bd-4b397cd48c04))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "B.SilkS") (width 0.12) (tstamp be0953c0-632d-4dd2-85e9-4d41239f22d2))
(fp_line (start 1.48 0.73) (end 1.48 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 3451168c-3c76-4628-aee4-7c231bd100c3))
(fp_line (start -1.48 0.73) (end 1.48 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 563c12e4-8f8c-446c-a11f-94f5aa93b994))
(fp_line (start -1.48 -0.73) (end -1.48 0.73) (layer "B.CrtYd") (width 0.05) (tstamp a3668681-09b1-48f0-a7b1-f6b24183a469))
(fp_line (start 1.48 -0.73) (end -1.48 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp ca213826-0282-4b3a-840f-ec416dc34acf))
(fp_line (start -0.8 -0.4125) (end -0.8 0.4125) (layer "B.Fab") (width 0.1) (tstamp 5994a946-119f-4db4-aafe-00ae73b5b800))
(fp_line (start 0.8 -0.4125) (end -0.8 -0.4125) (layer "B.Fab") (width 0.1) (tstamp a1c7b1f5-f895-4192-9484-2357882c73e0))
(fp_line (start -0.8 0.4125) (end 0.8 0.4125) (layer "B.Fab") (width 0.1) (tstamp b680b4a7-6cb0-40b5-a7ec-a02910a0daa4))
(fp_line (start 0.8 0.4125) (end 0.8 -0.4125) (layer "B.Fab") (width 0.1) (tstamp c5a1761e-3391-4e74-90c9-947fd66e1fc6))
(pad "1" smd roundrect locked (at -0.825 0) (size 0.8 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 13 "Net-(R1-Pad1)") (pintype "passive") (tstamp eaef1172-3351-417c-bfc4-74a598f141cb))
(pad "2" smd roundrect locked (at 0.825 0) (size 0.8 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp f6ee98b5-4773-4eeb-a825-33c1705abace))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_DFN_QFN:DFN-8-1EP_3x3mm_P0.5mm_EP1.66x2.38mm" (layer "B.Cu")
(tedit 5EA4BDD8) (tstamp 2fc6c800-22f6-42f6-a664-0677d01cefba)
(at 10.6 -2.1 180)
(descr "DD Package; 8-Lead Plastic DFN (3mm x 3mm) (see Linear Technology DFN_8_05-08-1698.pdf)")
(tags "DFN 0.5")
(property "Sheetfile" "USBload2S.kicad_sch")
(property "Sheetname" "")
(path "/05e8a2d3-8391-420b-9e5a-fd63954139b0")
(attr smd)
(fp_text reference "U1" (at -2.6 0 90) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 1398ba5b-cfd6-4fa2-a26c-88c067928575)
)
(fp_text value "MCU_STC8G-8P" (at 0 -2.55) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp f3b92a3a-a09e-4a01-95c3-b7ed17ba808d)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.7 0.7) (thickness 0.105)) (justify mirror))
(tstamp c93f8512-158e-46e1-9b8e-36d95839e762)
)
(fp_line (start 0 1.625) (end 1.5 1.625) (layer "B.SilkS") (width 0.15) (tstamp 311ccd6f-0111-4a2d-9809-7a27abb999f6))
(fp_line (start -1.5 -1.625) (end 1.5 -1.625) (layer "B.SilkS") (width 0.15) (tstamp dfd601fc-4c7d-4c0d-8e82-cf4cd5c25e42))
(fp_line (start -2 1.8) (end 2 1.8) (layer "B.CrtYd") (width 0.05) (tstamp 81c571c6-0227-4d0d-ac5d-af2225c2e829))
(fp_line (start 2 1.8) (end 2 -1.8) (layer "B.CrtYd") (width 0.05) (tstamp bc484184-4d28-4575-885d-edd5752bae80))
(fp_line (start -2 -1.8) (end 2 -1.8) (layer "B.CrtYd") (width 0.05) (tstamp c2ef612c-2c87-415e-8c56-59340bc4a17f))
(fp_line (start -2 1.8) (end -2 -1.8) (layer "B.CrtYd") (width 0.05) (tstamp e3cbcc76-8ee4-4629-8781-9b75a26cc304))
(fp_line (start 1.5 -1.5) (end -1.5 -1.5) (layer "B.Fab") (width 0.15) (tstamp 0570f51b-f435-4115-b377-e4b597e4680a))
(fp_line (start 1.5 1.5) (end 1.5 -1.5) (layer "B.Fab") (width 0.15) (tstamp 3859fbc5-6fdc-43b7-be53-cbf8ef3c37f6))
(fp_line (start -1.5 0.5) (end -0.5 1.5) (layer "B.Fab") (width 0.15) (tstamp 93daece6-00bf-4566-9d0a-6099fc8ce896))
(fp_line (start -1.5 -1.5) (end -1.5 0.5) (layer "B.Fab") (width 0.15) (tstamp cccfb26b-6de0-4db5-bc0b-a84cae00e477))
(fp_line (start -0.5 1.5) (end 1.5 1.5) (layer "B.Fab") (width 0.15) (tstamp fcdfa0d3-eb05-4268-9962-06c9005a1474))
(pad "" smd rect locked (at 0.415 0.595 180) (size 0.64 1) (layers "B.Paste") (tstamp 043f7163-bb0e-4e7b-aa97-7b49aaa2d718))
(pad "" smd rect locked (at -0.415 -0.595 180) (size 0.64 1) (layers "B.Paste") (tstamp 8e321d50-a96f-4a42-8423-064b487e9f24))
(pad "" smd rect locked (at -0.415 0.595 180) (size 0.64 1) (layers "B.Paste") (tstamp 9eb198b3-f9bc-467e-83a9-6bc4ae1c96d5))
(pad "" smd rect locked (at 0.415 -0.595 180) (size 0.64 1) (layers "B.Paste") (tstamp f343726f-ee49-470e-ac78-c42756e65704))
(pad "1" smd rect locked (at -1.4 0.75 180) (size 0.7 0.25) (layers "B.Cu" "B.Paste" "B.Mask")
(net 12 "unconnected-(U1-Pad1)") (pinfunction "P5.4") (pintype "bidirectional") (tstamp d93f8d48-725f-4bd1-af51-62e6ca366789))
(pad "2" smd rect locked (at -1.4 0.25 180) (size 0.7 0.25) (layers "B.Cu" "B.Paste" "B.Mask")
(net 2 "+5VD") (pinfunction "VCC") (pintype "power_in") (tstamp 46a94e09-310a-4d7f-bd58-f90b8a0b81d3))
(pad "3" smd rect locked (at -1.4 -0.25 180) (size 0.7 0.25) (layers "B.Cu" "B.Paste" "B.Mask")
(net 13 "Net-(R1-Pad1)") (pinfunction "P5.5") (pintype "bidirectional") (tstamp 8895d06a-edec-4953-bb18-fd6fdbc4b110))
(pad "4" smd rect locked (at -1.4 -0.75 180) (size 0.7 0.25) (layers "B.Cu" "B.Paste" "B.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 45be3f1d-b1ca-47df-be95-b36ae59ea535))
(pad "5" smd rect locked (at 1.4 -0.75 180) (size 0.7 0.25) (layers "B.Cu" "B.Paste" "B.Mask")
(net 8 "/UDP") (pinfunction "P3.0/RXD") (pintype "bidirectional") (tstamp 28f63157-0091-4555-934d-e4fb0f2475f1))
(pad "6" smd rect locked (at 1.4 -0.25 180) (size 0.7 0.25) (layers "B.Cu" "B.Paste" "B.Mask")
(net 9 "/UDM") (pinfunction "P3.1/TXD") (pintype "bidirectional") (tstamp 2ed81d27-a315-40d4-8873-bc90a24653b3))
(pad "7" smd rect locked (at 1.4 0.25 180) (size 0.7 0.25) (layers "B.Cu" "B.Paste" "B.Mask")
(net 10 "/MD0") (pinfunction "P3.2") (pintype "bidirectional") (tstamp dc597b10-1e93-4a25-8b88-e3ec826365d0))
(pad "8" smd rect locked (at 1.4 0.75 180) (size 0.7 0.25) (layers "B.Cu" "B.Paste" "B.Mask")
(net 11 "/MD1") (pinfunction "P3.3") (pintype "bidirectional") (tstamp 552b8cfc-8a40-42cb-abfc-81a3cb85132c))
(pad "9" smd rect locked (at 0 0 180) (size 1.66 2.38) (layers "B.Cu" "B.Mask")
(net 1 "GND") (pinfunction "GND(EP)") (pintype "power_in") (tstamp dff2e929-5c40-43ce-9e0a-67d6f4bb1d76))
(model "${KICAD6_3DMODEL_DIR}/Package_DFN_QFN.3dshapes/DFN-8-1EP_3x3mm_P0.5mm_EP1.66x2.38mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp e69b829b-c0b7-43a9-80d0-4376f3776ee0)
(at 1.9 -4.1 180)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "USBload2S.kicad_sch")
(property "Sheetname" "")
(path "/56ccd903-d087-4363-b435-6e8f1c9e915d")
(attr smd)
(fp_text reference "R1" (at -1.6 -0.1 90) (layer "B.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.15)) (justify mirror))
(tstamp 619e5559-5c6e-40cc-87da-be0d8df0f585)
)
(fp_text value "10k" (at 0 -1.43) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 3834130c-65dd-40f7-94b2-4c0e44ecd63c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp bdbfc897-0a76-4ef8-acff-58a8a30c7547)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "B.SilkS") (width 0.12) (tstamp 391e77f9-45fd-4544-9a96-6b9be0f3494b))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "B.SilkS") (width 0.12) (tstamp 72587f14-3879-4ab1-8ee7-30f0f8e50d93))
(fp_line (start -1.48 0.73) (end 1.48 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 1509b6e6-a266-4bd3-bef6-1700f12ad930))
(fp_line (start 1.48 -0.73) (end -1.48 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 5552a350-225a-4c3c-8643-df2be6c7b9a2))
(fp_line (start 1.48 0.73) (end 1.48 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 563db87b-34c4-4832-bfe7-c025196b0284))
(fp_line (start -1.48 -0.73) (end -1.48 0.73) (layer "B.CrtYd") (width 0.05) (tstamp b1631ef5-5ba5-48ed-9e83-a55482a37a65))
(fp_line (start 0.8 -0.4125) (end -0.8 -0.4125) (layer "B.Fab") (width 0.1) (tstamp 90a47af4-b3af-42ad-8a92-2ac33f1eaf7d))
(fp_line (start -0.8 0.4125) (end 0.8 0.4125) (layer "B.Fab") (width 0.1) (tstamp af4e708f-3ecb-432a-8234-bc33a136a64e))
(fp_line (start -0.8 -0.4125) (end -0.8 0.4125) (layer "B.Fab") (width 0.1) (tstamp db002d44-34dc-4a16-a373-be2b73d8ad8e))
(fp_line (start 0.8 0.4125) (end 0.8 -0.4125) (layer "B.Fab") (width 0.1) (tstamp e5e10b7e-d4e1-472a-acd2-b7ba1a3292f0))
(pad "1" smd roundrect locked (at -0.825 0 180) (size 0.8 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 13 "Net-(R1-Pad1)") (pintype "passive") (tstamp c95ae74a-ca90-4a39-aa68-19d5d2714b13))
(pad "2" smd roundrect locked (at 0.825 0 180) (size 0.8 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(Q1-Pad1)") (pintype "passive") (tstamp 26fd0d92-e1d7-4ec3-9cd1-0c12f182f0d8))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_circle (center 12.4 -3.5) (end 12.4 -3.246) (layer "B.SilkS") (width 0.12) (fill none) (tstamp 70fb572d-d5ec-41e7-9482-63d4578b4f47))
(gr_line (start 15.875 0) (end 1.27 0) (layer "Edge.Cuts") (width 0.05) (tstamp 00000000-0000-0000-0000-00005e49ccdb))
(gr_line (start 0 -1.27) (end 0 -19.32) (layer "Edge.Cuts") (width 0.05) (tstamp 00000000-0000-0000-0000-00005e86dde7))
(gr_line (start 0 -19.32) (end 1.27 -20.59) (layer "Edge.Cuts") (width 0.05) (tstamp 009a4fb4-fcc0-4623-ae5d-c1bae3219583))
(gr_line (start 15.875 -20.59) (end 17.145 -19.32) (layer "Edge.Cuts") (width 0.05) (tstamp 37f31dec-63fc-4634-a141-5dc5d2b60fe4))
(gr_line (start 17.145 -19.32) (end 17.145 -1.27) (layer "Edge.Cuts") (width 0.05) (tstamp 88668202-3f0b-4d07-84d4-dcd790f57272))
(gr_line (start 1.27 -20.59) (end 15.875 -20.59) (layer "Edge.Cuts") (width 0.05) (tstamp 91c1eb0a-67ae-4ef0-95ce-d060a03a7313))
(gr_line (start 17.145 -1.27) (end 15.875 0) (layer "Edge.Cuts") (width 0.05) (tstamp c24d6ac8-802d-4df3-a210-9cb1f693e865))
(gr_line (start 1.27 0) (end 0 -1.27) (layer "Edge.Cuts") (width 0.05) (tstamp eae0ab9f-65b2-44d3-aba7-873c3227fba7))
(gr_text "B" (at 3.556 -0.762) (layer "B.SilkS") (tstamp 609b9e1b-4e3b-42b7-ac76-a62ec4d0e7c7)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "@akita11" (at 8.5 -14) (layer "B.SilkS") (tstamp b1ddb058-f7b2-429c-9489-f4e2242ad7e5)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(gr_text "A\n" (at 4.191 -5.461) (layer "B.SilkS") (tstamp e54e5e19-1deb-49a9-8629-617db8e434c0)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "USBload2.1\n" (at 8.5 -16.51) (layer "B.SilkS") (tstamp eee16674-2d21-45b6-ab5e-d669125df26c)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(target plus (at 0 0) (size 5) (width 0.05) (layer "Edge.Cuts") (tstamp 7afa54c4-2181-41d3-81f7-39efc497ecae))
(segment (start 4.082401 -18.992401) (end 13.392599 -18.992401) (width 1.2) (layer "F.Cu") (net 1) (tstamp 03c7f780-fc1b-487a-b30d-567d6c09fdc8))
(segment (start 4.064 -1.524) (end 4.191 -1.524) (width 0.4) (layer "F.Cu") (net 1) (tstamp 18b7e157-ae67-48ad-bd7c-9fef6fe45b22))
(segment (start 10.3 -2.1) (end 13 -2.1) (width 0.8) (layer "F.Cu") (net 1) (tstamp 3e492b3b-56d7-4fd9-9c55-55aee5898cff))
(segment (start 4.191 -1.524) (end 4.318 -1.397) (width 0.4) (layer "F.Cu") (net 1) (tstamp 5fc9acb6-6dbb-4598-825b-4b9e7c4c67c4))
(segment (start 13 -2.1) (end 14.3 -3.4) (width 0.8) (layer "F.Cu") (net 1) (tstamp 75f62f58-577d-4778-afae-31a34b7bccbd))
(segment (start 11 -1.3) (end 11 -2.9) (width 0.8) (layer "F.Cu") (net 1) (tstamp 77c6ce96-5fe5-489f-9fe6-aa6837fc7bf7))
(segment (start 10.2 -1.3) (end 11 -1.3) (width 0.8) (layer "F.Cu") (net 1) (tstamp 83296c4b-6c27-4f18-b4d8-ae781e49062e))
(segment (start 4.064 -7.836) (end 2 -9.9) (width 0.8) (layer "F.Cu") (net 1) (tstamp 84496793-1479-4c99-a4ad-52ef1325c68e))