-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFTDI MCU programmer.kicad_pcb
13009 lines (12982 loc) · 537 KB
/
FTDI MCU programmer.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.09)
)
(paper "A4")
(title_block
(title "FDTI MCU Programmer")
(date "2022-08-10")
(rev "REV1.0")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1) (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 false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "Gerber files/")
)
)
(net 0 "")
(net 1 "Net-(C1-Pad1)")
(net 2 "/VCCIO")
(net 3 "GND")
(net 4 "VBUS")
(net 5 "/5V")
(net 6 "/3V3")
(net 7 "Net-(D1-Pad1)")
(net 8 "Net-(D2-Pad1)")
(net 9 "Net-(D3-Pad2)")
(net 10 "/CTS")
(net 11 "/TXD")
(net 12 "/RXD")
(net 13 "/DTR")
(net 14 "USBDM")
(net 15 "USBDP")
(net 16 "/RTS")
(net 17 "/PWREN")
(net 18 "/R1")
(net 19 "/DSR")
(net 20 "/DCD")
(net 21 "unconnected-(U1-Pad5)")
(net 22 "unconnected-(U1-Pad9)")
(net 23 "unconnected-(U1-Pad12)")
(net 24 "unconnected-(U1-Pad13)")
(net 25 "unconnected-(U1-Pad18)")
(net 26 "unconnected-(U1-Pad23)")
(net 27 "unconnected-(U1-Pad25)")
(net 28 "unconnected-(U1-Pad27)")
(net 29 "unconnected-(U1-Pad28)")
(net 30 "unconnected-(U1-Pad29)")
(net 31 "unconnected-(U1-Pad11)")
(footprint "Footprints:USB_Micro-AB_Molex_47590-0001" (layer "F.Cu")
(tedit 5DAEB89E) (tstamp 079f2ed7-1925-45e6-83a2-2e9bc51ad1d5)
(at 127.094 58.9788 -90)
(descr "Micro USB AB receptable, right-angle inverted (https://www.molex.com/pdm_docs/sd/475900001_sd.pdf)")
(tags "Micro AB USB SMD")
(property "Sheetfile" "FTDI MCU programmer.kicad_sch")
(property "Sheetname" "")
(path "/4a673a63-9140-4064-83a5-7b0a6767afaf")
(attr smd)
(fp_text reference "J3" (at 2.54 -1.3792 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 511f8e6e-8687-4da0-b2fc-67f00e3a88b8)
)
(fp_text value "USB_B_Micro" (at 0 3.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ebac174b-dde6-42e2-826a-af02e151d547)
)
(fp_text user "PCB Edge" (at 0 1.45 90) (layer "Dwgs.User")
(effects (font (size 0.4 0.4) (thickness 0.04)))
(tstamp 2002b283-576a-4bbe-b8c1-d269d3900d59)
)
(fp_text user "${REFERENCE}" (at 0 -1.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6dedf0e8-ac6c-4a36-91e4-bdc9ba96182c)
)
(fp_line (start -3.87 -3.27) (end -3 -3.27) (layer "F.SilkS") (width 0.12) (tstamp 25506aa8-bc4b-4ddf-b921-13b708c3a944))
(fp_line (start 1.3 -3.5) (end 1 -3.8) (layer "F.SilkS") (width 0.12) (tstamp 2e82a879-f740-4167-860d-53017e75fa1b))
(fp_line (start 1 -3.8) (end 1.6 -3.8) (layer "F.SilkS") (width 0.12) (tstamp 4a902558-0fab-491e-ab8a-b855aed408dd))
(fp_line (start -3.87 -3.27) (end -3.87 -1.2) (layer "F.SilkS") (width 0.12) (tstamp 69160c9a-b3fe-4456-91bc-720a56eb66b9))
(fp_line (start 3.87 -3.27) (end 3.87 -1.2) (layer "F.SilkS") (width 0.12) (tstamp 79900413-a729-4bc9-8f9f-95aae68acfc8))
(fp_line (start 3 -3.27) (end 3.87 -3.27) (layer "F.SilkS") (width 0.12) (tstamp a6e4ed9c-a564-4ade-86c7-8bf45a6101bc))
(fp_line (start 1.3 -3.5) (end 1.6 -3.8) (layer "F.SilkS") (width 0.12) (tstamp abc19b4a-a84f-456c-8c90-94e8e757ef8e))
(fp_line (start 3.8862 1.7018) (end 3.8862 1.2192) (layer "F.SilkS") (width 0.12) (tstamp c41c1a4a-20d2-432d-b529-7e40a1465d6b))
(fp_line (start -3.8862 1.7018) (end 3.8862 1.7018) (layer "F.SilkS") (width 0.12) (tstamp db94ff96-710e-4647-8a43-f378c63d6e4f))
(fp_line (start -3.8862 1.27) (end -3.8862 1.7018) (layer "F.SilkS") (width 0.12) (tstamp e8a50dc3-4667-474e-90a1-9b96c6124f29))
(fp_line (start -5.18 1.8796) (end 5.18 1.8796) (layer "F.CrtYd") (width 0.05) (tstamp 35f2f02d-676b-40be-bcc3-1d013fe028cf))
(fp_line (start 5.18 -4.13) (end 5.18 1.8796) (layer "F.CrtYd") (width 0.05) (tstamp 7ea9063a-dc28-4ae6-86cf-c373f2697598))
(fp_line (start -5.18 -4.13) (end -5.18 1.8796) (layer "F.CrtYd") (width 0.05) (tstamp 96a2ddfd-26a5-4ba1-a563-348e0f718aca))
(fp_line (start -5.18 -4.13) (end 5.18 -4.13) (layer "F.CrtYd") (width 0.05) (tstamp cab3d0dd-5a50-4841-b178-a92123eec702))
(fp_line (start 3.75 -3.15) (end 3.75 1.45) (layer "F.Fab") (width 0.1) (tstamp 77b99781-9089-4d18-bead-c2feacca2da5))
(fp_line (start -3.75 1.45) (end 3.75 1.45) (layer "F.Fab") (width 0.1) (tstamp 8e4cd539-f6ba-4c38-a54e-314b81f95b20))
(fp_line (start -3.75 -3.15) (end -3.75 1.45) (layer "F.Fab") (width 0.1) (tstamp 9840ec54-b4e6-4509-a5bc-1de1ce717ef4))
(fp_line (start -3.75 -3.15) (end 3.75 -3.15) (layer "F.Fab") (width 0.1) (tstamp f68f032b-bb22-483b-b65b-5af67efb735d))
(pad "1" smd rect (at 1.3 -2.675 270) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "VBUS") (pinfunction "VBUS") (pintype "power_out") (tstamp 1ff680d3-3efe-47d0-b69c-19c90a52c5f8))
(pad "2" smd rect (at 0.65 -2.675 270) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "USBDM") (pinfunction "D-") (pintype "bidirectional") (tstamp 488254d6-440f-43cb-b8f7-0370b410147f))
(pad "3" smd rect (at 0 -2.675 270) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "USBDP") (pinfunction "D+") (pintype "bidirectional") (tstamp c5bfa14a-a8b5-441b-b400-5bbbec3171bb))
(pad "4" smd rect (at -0.65 -2.675 270) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "GND") (pinfunction "ID") (pintype "passive") (tstamp 3c8716f8-1680-43c0-ae5a-676abe8e7d97))
(pad "5" smd rect (at -1.3 -2.675 270) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "GND") (pinfunction "GND") (pintype "power_out") (tstamp e3625f02-40db-4168-9300-ceea5c9db3ae))
(pad "6" thru_hole oval (at 2.3876 -3 270) (size 1.05 1.25) (drill oval 0.65 0.85) (layers *.Cu *.Mask)
(net 3 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 6169729e-c0f1-46b8-a4e2-93c8a03d97e0))
(pad "6" thru_hole oval (at -2.4384 -3 270) (size 1.05 1.25) (drill oval 0.65 0.85) (layers *.Cu *.Mask)
(net 3 "GND") (pinfunction "Shield") (pintype "passive") (tstamp a1a25e65-a492-42d7-b8e6-6a682ef1f5cc))
(pad "6" thru_hole oval (at -3.6576 0 270) (size 1 1.9) (drill oval 0.6 1.3) (layers *.Cu *.Mask)
(net 3 "GND") (pinfunction "Shield") (pintype "passive") (tstamp b5e4856c-ecd0-47bd-b095-27b8af1b70a5))
(pad "6" thru_hole oval (at 3.7084 0 270) (size 1 1.9) (drill oval 0.6 1.3) (layers *.Cu *.Mask)
(net 3 "GND") (pinfunction "Shield") (pintype "passive") (tstamp d676ba66-2100-44ef-89d3-a096f9afc407))
(pad "6" smd rect (at 0 0 270) (size 2.9 1.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "GND") (pinfunction "Shield") (pintype "passive") (tstamp fd9a8ba7-5f40-4df6-8144-f8019a8d6ca5))
(model "${KIPRJMOD}/3D models/USB Type B Micro/690t505-662-011.stp"
(offset (xyz 0 1.3 1.3))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEF1) (tstamp 1aacda2f-af04-464c-aa04-291820ceb750)
(at 137.575 57.475 180)
(descr "LED 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 "LED")
(property "Sheetfile" "FTDI MCU programmer.kicad_sch")
(property "Sheetname" "")
(path "/87e4e98b-b3f2-42f6-b2e6-fb6d0c13127e")
(attr smd)
(fp_text reference "TX" (at -2.579997 0.009996) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e49d831b-e775-4011-ba81-65a738dc8586)
)
(fp_text value "LED(RED)" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c2a700a4-e97a-43e7-81a8-380715011dd7)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp fe529d5d-2a63-47e4-91dc-770aaa1a5265)
)
(fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp 72cc8183-02d4-4766-9f30-225b59bac718))
(fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp ac1c1dd7-232e-4cd9-b099-d7f1bb48a832))
(fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp d693fd98-7703-48dd-886c-ae4306c3bd64))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 43916cb6-cebf-46b6-8af2-8c5291a0cd2f))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4a30a328-ea66-422f-9aec-c87cfa7e13ad))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 92614f31-cb4c-4c96-9d44-1d1e321f642d))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b8d6f49a-0049-43db-a394-7b4fd241a658))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 0b21f3d3-1dd3-4548-af65-e19ecbfde51b))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 7d88d0ab-0d7e-40ae-acea-8db3fb3e83bd))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp a194087a-1fda-4a93-a787-1422ec4d7586))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp d49a4c1c-c207-436a-bda5-888201dc216d))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp faba2c4e-f74e-4482-9847-3416e4d28bfe))
(pad "1" smd roundrect (at -0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "Net-(D1-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 2c694de5-e934-429d-a4e1-87164462b5f2))
(pad "2" smd roundrect (at 0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "/VCCIO") (pinfunction "A") (pintype "passive") (tstamp a4afe04f-f0cf-4574-adb1-b0de0c96bcab))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEF1) (tstamp 1e7d0a6f-f419-41d9-9ac9-495baf891782)
(at 137.575 59.4 180)
(descr "LED 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 "LED")
(property "Sheetfile" "FTDI MCU programmer.kicad_sch")
(property "Sheetname" "")
(path "/ab7126e8-0537-4b9d-9493-44a43ed20fec")
(attr smd)
(fp_text reference "ON" (at -2.580003 0.004406) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a45ddab1-fc58-42ee-b6d5-d43c0d88be91)
)
(fp_text value "LED(BLUE)" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9153c513-3a97-4d84-babd-51565d05f560)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp b68740e2-36be-4408-8d89-42fd2eb83deb)
)
(fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp aec31ff2-2a64-4a2a-a3e5-a1733ffa2885))
(fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp ca5f1b07-faad-4047-806b-b3450d99787a))
(fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp f7191a3c-8189-4ef2-8c36-40fd7f8d6980))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 577b0a00-b821-4c5c-b97a-13b747c46487))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 60a80ba1-f7ec-4403-8f8d-af424ecfb360))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp e628bca4-c1e1-4f3c-b9b6-99a9bdef372b))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp f469ab2a-294a-4101-992c-68c89a66bb23))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 441f323d-5f1b-4d37-9fa2-f2bf9851e06a))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp 4fe3ea61-f3c6-45a8-b12c-e24043ae32ab))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp 8a22e244-2dbb-4f78-a051-71334e17d5e0))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp bbfc1d6e-fa6a-460f-acd6-eca726a72804))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp ce898522-2272-4fe2-9255-e0e3b859d554))
(pad "1" smd roundrect (at -0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "GND") (pinfunction "K") (pintype "passive") (tstamp 7d52cb76-dac8-4aeb-a3c0-d7cc83febe3c))
(pad "2" smd roundrect (at 0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "Net-(D3-Pad2)") (pinfunction "A") (pintype "passive") (tstamp ffc3488d-5b61-4fec-b92e-cd4d8b16b7ec))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 2573db39-a785-427e-93e1-dc27a3852a87)
(at 141.98 57.42 90)
(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" "FTDI MCU programmer.kicad_sch")
(property "Sheetname" "")
(path "/b7e59131-fbf6-4810-8b09-36cc7fb770bc")
(attr smd)
(fp_text reference "R3" (at 2.495 1.02 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a529e54c-111c-484b-ad86-25c6507d35d5)
)
(fp_text value "270R" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1bb09eec-81e7-4f7d-ad35-544ad866b11d)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp ea062953-c4f6-49d2-9340-6b27f993317c)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 4d159850-7f07-478e-860b-ac38b864d850))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp d31f255c-80fe-4e76-936c-bff06fcf9a65))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 581cadb9-33c0-49be-83d0-71a206b98ffb))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 851ff645-0a2f-48d0-86a0-cbee0074dfae))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp ab092a4e-119b-4b9d-ac34-955f05209c2b))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp b0de1975-066f-4cc7-9359-9e64abc014e6))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 051618ef-169c-447c-98b0-3a79957d0f8b))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 584a7572-ea0f-4c06-8f38-9e9043181624))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp a9fc67a0-b044-46a2-8a7b-de125d2d4364))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp ac56d6c1-1d5b-43fe-b487-aeb4e5d46248))
(pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "Net-(D2-Pad1)") (pintype "passive") (tstamp 84e91dd9-7c5e-49d9-8ab1-d2f550f4c6b2))
(pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "/RXD") (pintype "passive") (tstamp ffab7432-f6b0-420f-b9ac-fc4d04abc993))
(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 "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 45f3bafc-3436-4d16-9e3d-09afab205fce)
(at 134 61.25 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "FTDI MCU programmer.kicad_sch")
(property "Sheetname" "")
(path "/5e3dbed3-e061-4f5d-91b6-0698510882cd")
(attr smd)
(fp_text reference "C3" (at -2.3 -0.075) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 62ca211a-5cbf-4e72-a94c-c4e2b8ed7c90)
)
(fp_text value "100nF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 44caa05e-424e-4196-825a-6b568c54c9c8)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp b3169f83-7666-45a7-9eb8-738381027f41)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 8b529f6c-8048-48f1-95bc-84f315d706ed))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp adf5f677-5577-4d55-9b0e-90d0a7355413))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 62c72d0f-06f8-4c88-992e-a61e61340b53))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8dc87045-3a09-4234-bd89-469dd0df657d))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp e1c45d93-05b3-438d-ab77-c17acafd0655))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp f2229a97-f941-4c25-b25b-8b1f933998a0))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 3635f701-e8a9-4495-8d4a-24264f688f09))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 78bbdd72-bc87-4ffb-a201-b00399ef86fb))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp ae6f13b1-ef80-40b9-93da-88abb348eac7))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp f11a7f9d-3d72-4cdf-b261-e36593993d26))
(pad "1" smd roundrect (at -0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "GND") (pintype "passive") (tstamp 6fde322a-376c-4f02-b755-0e33f137d28e))
(pad "2" smd roundrect (at 0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "/5V") (pintype "passive") (tstamp 820a8dc4-4df0-4ffb-bcaa-b647017fa00b))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 4fba3f0b-c731-442b-981a-77b5c55b568c)
(at 156.0576 51.6382 90)
(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" "FTDI MCU programmer.kicad_sch")
(property "Sheetname" "")
(path "/b3d8956b-b3f6-400f-8f23-f4dc6206aa19")
(attr smd)
(fp_text reference "R1" (at 0 -1.43 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 97594ca1-7393-41a9-8645-b810b0fa5ea8)
)
(fp_text value "10K" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8eff798b-a80c-46a6-9932-f667aa5e2e81)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 201d257f-1183-4aa8-85bf-ad1f3148beed)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 1f9a11af-dce8-46a5-a176-f1daa4a85545))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp de638832-3291-4007-969e-162f5a4586fe))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0923278f-6c3d-4abb-833b-f1b921f98eb7))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 20d4f601-22cd-473a-ad97-2c80778b877e))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3a5ee626-f2dd-40ec-a71a-000b4fa0376f))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4ec294ee-3f62-40f2-b69c-01ff506d78a5))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 655d4b43-f864-419d-80bb-33af69f6c8cc))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 903bf63b-d9da-408d-b6c9-fa63344f6cf9))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp a85e1587-268d-4ad1-b929-818aca478fa7))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp d84feee7-1af8-429a-a4f1-d8e19ad15421))
(pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "/PWREN") (pintype "passive") (tstamp 597e3bdf-55a7-42d9-a240-198690cc6a6a))
(pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "/VCCIO") (pintype "passive") (tstamp b6645518-e451-42bc-9271-b1f02155d249))
(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 "Inductor_SMD:L_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEF0) (tstamp 5e0628b9-61bd-4170-be0f-82263d679b5f)
(at 128.575 65.35)
(descr "Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "inductor")
(property "Sheetfile" "FTDI MCU programmer.kicad_sch")
(property "Sheetname" "")
(path "/07552294-6fac-4d8a-ba58-c6f7691f7019")
(attr smd)
(fp_text reference "FB1" (at 2.35 -1.35) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8d5ecb12-3004-434f-b555-fb7c7c5ed0ae)
)
(fp_text value "FerriteBead_Small" (at 0 1.55) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d98a555f-3c9d-410a-82c0-1ca3060244e2)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 2c903b0d-5126-49b9-8b9d-49f5f1d891b2)
)
(fp_line (start -0.399622 0.56) (end 0.399622 0.56) (layer "F.SilkS") (width 0.12) (tstamp 47e8d403-4537-411f-81c2-2833cedeb23c))
(fp_line (start -0.399622 -0.56) (end 0.399622 -0.56) (layer "F.SilkS") (width 0.12) (tstamp 5296802c-5e3e-49cb-8440-931ce9b353d8))
(fp_line (start 1.75 -0.85) (end 1.75 0.85) (layer "F.CrtYd") (width 0.05) (tstamp 3ae4b6c6-bf64-4eb7-95d0-fa3d62e1517e))
(fp_line (start -1.75 -0.85) (end 1.75 -0.85) (layer "F.CrtYd") (width 0.05) (tstamp 8bf239e1-f204-4a09-b486-0b7bceab03f5))
(fp_line (start -1.75 0.85) (end -1.75 -0.85) (layer "F.CrtYd") (width 0.05) (tstamp 9f17212d-4595-4372-b9dc-b1ee060f7938))
(fp_line (start 1.75 0.85) (end -1.75 0.85) (layer "F.CrtYd") (width 0.05) (tstamp e4b3989d-8a97-43ba-906d-c5cfc5581966))
(fp_line (start 1 -0.45) (end 1 0.45) (layer "F.Fab") (width 0.1) (tstamp a2c8446e-bd75-4164-8e4b-8df7b1eef190))
(fp_line (start 1 0.45) (end -1 0.45) (layer "F.Fab") (width 0.1) (tstamp aad7d351-5b3b-42f7-8f95-d134744c8054))
(fp_line (start -1 -0.45) (end 1 -0.45) (layer "F.Fab") (width 0.1) (tstamp e1b3d757-26e9-449c-b6f3-c531f84da67b))
(fp_line (start -1 0.45) (end -1 -0.45) (layer "F.Fab") (width 0.1) (tstamp fb45747a-5c22-4b06-a1c5-4e360693ae49))
(pad "1" smd roundrect (at -1.0625 0) (size 0.875 1.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "VBUS") (pintype "passive") (tstamp 00465c74-8f84-4d90-b07e-e4f78347d505))
(pad "2" smd roundrect (at 1.0625 0) (size 0.875 1.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "/5V") (pintype "passive") (tstamp f4238fb4-8dc0-41fe-a844-5c1938577ea2))
(model "${KICAD6_3DMODEL_DIR}/Inductor_SMD.3dshapes/L_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_Tantalum_SMD:CP_EIA-3216-10_Kemet-I" (layer "F.Cu")
(tedit 5EBA9318) (tstamp 640d3d33-115a-4167-a14b-697ac5c757e9)
(at 137.75 62.525)
(descr "Tantalum Capacitor SMD Kemet-I (3216-10 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator")
(tags "capacitor tantalum")
(property "Sheetfile" "FTDI MCU programmer.kicad_sch")
(property "Sheetname" "")
(path "/47d92738-589f-47b9-8ec5-664683670995")
(attr smd)
(fp_text reference "C4" (at 3.5 0.55) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 87f88d01-1060-402e-bbf3-872846ed09bb)
)
(fp_text value "4.7uF" (at 0 1.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e3d51b1f-0575-417e-a818-109c1f048ed0)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 5cba7517-829e-46e6-868a-d1bd4e10bb27)
)
(fp_line (start -2.31 -0.935) (end -2.31 0.935) (layer "F.SilkS") (width 0.12) (tstamp 14a857cb-4925-4f7c-ac89-a0c44bc99a7e))
(fp_line (start 1.6 -0.935) (end -2.31 -0.935) (layer "F.SilkS") (width 0.12) (tstamp aa5be27b-569c-4e98-8d7c-04d48ebfac5a))
(fp_line (start -2.31 0.935) (end 1.6 0.935) (layer "F.SilkS") (width 0.12) (tstamp f00e08b8-0a92-4ade-bbb0-245bcb6f8f4e))
(fp_line (start 2.3 1.05) (end -2.3 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 8f812601-19ca-4edc-958a-44547c471fd0))
(fp_line (start -2.3 1.05) (end -2.3 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp a3d001df-0021-40e6-ac0d-e33c21582dbc))
(fp_line (start 2.3 -1.05) (end 2.3 1.05) (layer "F.CrtYd") (width 0.05) (tstamp b735a9e0-f24a-4328-b55d-e974ba7a8dc6))
(fp_line (start -2.3 -1.05) (end 2.3 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp bd112119-1afe-4837-b558-065dd59a3c03))
(fp_line (start -1.6 0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 0d4d0aa9-2da7-4dbc-a766-0f6f576f09da))
(fp_line (start 1.6 -0.8) (end -1.2 -0.8) (layer "F.Fab") (width 0.1) (tstamp 299357cf-b2f5-4cfc-b940-2127eaa6b9ed))
(fp_line (start -1.2 -0.8) (end -1.6 -0.4) (layer "F.Fab") (width 0.1) (tstamp c597f822-dd35-4d69-aeb9-35de0e64e714))
(fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp d9cff2bb-1750-4322-b629-e987ec174671))
(fp_line (start -1.6 -0.4) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp fecad4cf-a947-443f-86c5-5f2b60c76206))
(pad "1" smd roundrect (at -1.35 0) (size 1.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1851851852)
(net 5 "/5V") (pintype "passive") (tstamp acd7f562-93a9-491a-b249-4b81c6e24ff8))
(pad "2" smd roundrect (at 1.35 0) (size 1.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1851851852)
(net 3 "GND") (pintype "passive") (tstamp e9a7818d-f880-46ed-91ba-a618b6519c4c))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-3216-10_Kemet-I.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEF1) (tstamp 68dd7ced-2411-44b9-90cc-7c244e295c35)
(at 137.575 55.475 180)
(descr "LED 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 "LED")
(property "Sheetfile" "FTDI MCU programmer.kicad_sch")
(property "Sheetname" "")
(path "/181fe8f1-f625-4319-b791-05e820f8db46")
(attr smd)
(fp_text reference "RX" (at -2.514604 0.05561) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 372ae527-d875-47df-ad2f-7cf33f24acb3)
)
(fp_text value "LED(YELLOW)" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b546a8ee-efaf-4cfb-8427-651ebb4933cd)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp ac5f918b-66bd-494c-be1c-fee8509aab9b)
)
(fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 3d84694d-a3b2-4b02-8c74-df3e693ad49d))
(fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp 9d4ebf0a-c274-4bc5-808e-bbbdea536310))
(fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp b26da79b-ae87-462a-8165-83c3061c1353))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 66235cfa-449b-418b-a571-f55c224273ab))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 84043f96-64cf-41d3-a1c1-a6d4c84ae0d0))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp cde3bb5b-30cb-4911-8b84-0f74d18fd5da))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp fb53e31c-35d1-4a1b-9016-5bce67a3e473))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 08982859-a31e-42ee-bb15-468d7d75a94c))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp 367510b7-15c0-4781-a786-4d9c9c9d1608))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 563d8792-f520-4431-87c7-087454efd85f))
(fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp c579df67-dc96-4f53-a809-51f54d709360))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp d68576e1-4225-457d-a382-c27f0dade24b))
(pad "1" smd roundrect (at -0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "Net-(D2-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 8876e5a8-cee7-4db4-abd3-cfa13a2f2759))
(pad "2" smd roundrect (at 0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "/VCCIO") (pinfunction "A") (pintype "passive") (tstamp 6b5ec4aa-b01c-4b21-bd0b-f83a3514fa5b))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_QFP:LQFP-32_5x5mm_P0.5mm" (layer "F.Cu")
(tedit 5D9F72AF) (tstamp 7fd730eb-b853-4eb7-96df-9a67735a8448)
(at 147.8026 58.3946 -45)
(descr "LQFP, 32 Pin (https://www.nxp.com/docs/en/package-information/SOT401-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "LQFP QFP")
(property "Sheetfile" "FTDI MCU programmer.kicad_sch")
(property "Sheetname" "")
(path "/bb898706-52e2-4765-9ac9-76923f5567d5")
(attr smd)
(fp_text reference "U1" (at 0 -4.88 135) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp efa33855-7d5d-4d3d-902c-ec0020647b3b)
)
(fp_text value "FT232RQ" (at 0 4.88 135) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0b029be3-c7b6-490f-824f-73b303a564ae)
)
(fp_text user "${REFERENCE}" (at 0 0 135) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fa5c4575-9744-444a-a400-74f4e6190dac)
)
(fp_line (start 2.61 -2.61) (end 2.61 -2.16) (layer "F.SilkS") (width 0.12) (tstamp 07efe187-8859-4480-9dc9-80691196f7db))
(fp_line (start -2.61 -2.61) (end -2.61 -2.16) (layer "F.SilkS") (width 0.12) (tstamp 158fb19d-668a-437f-89ac-a2942a78fe44))
(fp_line (start 2.16 -2.61) (end 2.61 -2.61) (layer "F.SilkS") (width 0.12) (tstamp 16941a13-eac5-4986-9550-35631ed6f53b))
(fp_line (start 2.16 2.61) (end 2.61 2.61) (layer "F.SilkS") (width 0.12) (tstamp 24b37542-19d2-4245-9a73-8615f2c4baa0))
(fp_line (start -2.16 2.61) (end -2.61 2.61) (layer "F.SilkS") (width 0.12) (tstamp 2732c377-153a-4db9-b2b6-f773cb0a87d4))
(fp_line (start -2.16 -2.61) (end -2.61 -2.61) (layer "F.SilkS") (width 0.12) (tstamp 4d2c7676-703a-4e69-b741-73fb10eb2791))
(fp_line (start 2.61 2.61) (end 2.61 2.16) (layer "F.SilkS") (width 0.12) (tstamp 955f74b7-523d-4b9c-9020-0a589888adb0))
(fp_line (start -2.61 2.61) (end -2.61 2.16) (layer "F.SilkS") (width 0.12) (tstamp a6bff090-b5fd-43f6-be61-9f9c6e176371))
(fp_line (start -2.61 -2.16) (end -3.925 -2.16) (layer "F.SilkS") (width 0.12) (tstamp b6c84365-1211-4506-8950-81f208401ec6))
(fp_line (start 2.15 4.18) (end 2.15 2.75) (layer "F.CrtYd") (width 0.05) (tstamp 0800b81c-8e72-4f51-b968-c2867abac930))
(fp_line (start 4.18 2.15) (end 4.18 0) (layer "F.CrtYd") (width 0.05) (tstamp 18265cfd-9b02-4dcb-8de7-005d9e2c9380))
(fp_line (start -2.75 2.75) (end -2.75 2.15) (layer "F.CrtYd") (width 0.05) (tstamp 2d70b92d-e9d8-4b2d-a1b1-69364b2d5783))
(fp_line (start 0 -4.18) (end -2.15 -4.18) (layer "F.CrtYd") (width 0.05) (tstamp 2e51fafb-4d73-4ac8-bd97-194e7c4af78a))
(fp_line (start 0 4.18) (end -2.15 4.18) (layer "F.CrtYd") (width 0.05) (tstamp 2f955956-3d8b-4628-8557-ef03cfca5a76))
(fp_line (start 2.75 -2.75) (end 2.75 -2.15) (layer "F.CrtYd") (width 0.05) (tstamp 46aa9d71-142d-4882-ae45-7c16ee9ee53b))
(fp_line (start -4.18 2.15) (end -4.18 0) (layer "F.CrtYd") (width 0.05) (tstamp 4871716f-3057-4363-98d1-5fc37258b638))
(fp_line (start 2.15 -2.75) (end 2.75 -2.75) (layer "F.CrtYd") (width 0.05) (tstamp 53cedb17-f496-425d-bc0b-7b901a9375c6))
(fp_line (start -2.15 4.18) (end -2.15 2.75) (layer "F.CrtYd") (width 0.05) (tstamp 5b46f96d-1bff-4a85-9892-08a8191beb90))
(fp_line (start -2.15 -4.18) (end -2.15 -2.75) (layer "F.CrtYd") (width 0.05) (tstamp 5c4e78a1-8004-4e79-a73b-e950e86a84f6))
(fp_line (start -2.15 2.75) (end -2.75 2.75) (layer "F.CrtYd") (width 0.05) (tstamp 5ce9f5ab-920a-447c-af92-d95e729752ba))
(fp_line (start 0 -4.18) (end 2.15 -4.18) (layer "F.CrtYd") (width 0.05) (tstamp 5dc6f955-1c06-4a22-b2a3-f033c7c53bde))
(fp_line (start 2.15 -4.18) (end 2.15 -2.75) (layer "F.CrtYd") (width 0.05) (tstamp 66ddc621-635d-448b-803b-ca4aeda58b3b))
(fp_line (start -4.18 -2.15) (end -4.18 0) (layer "F.CrtYd") (width 0.05) (tstamp 6abe91c5-c403-4d96-a798-b5e6025c6c25))
(fp_line (start 2.75 2.75) (end 2.75 2.15) (layer "F.CrtYd") (width 0.05) (tstamp 72d1b732-991d-451d-8310-4260c7dc3b4a))
(fp_line (start -2.75 2.15) (end -4.18 2.15) (layer "F.CrtYd") (width 0.05) (tstamp 7cac6eb7-b65b-47a8-ad8b-3f30cb6da4c1))
(fp_line (start -2.75 -2.15) (end -4.18 -2.15) (layer "F.CrtYd") (width 0.05) (tstamp 8699993b-6168-4fa7-a102-10f1124b5003))
(fp_line (start -2.75 -2.75) (end -2.75 -2.15) (layer "F.CrtYd") (width 0.05) (tstamp 8d9a1c46-1617-4dc2-9bbb-a9a679752204))
(fp_line (start 2.75 2.15) (end 4.18 2.15) (layer "F.CrtYd") (width 0.05) (tstamp b39713d7-30c7-4896-a821-367b689e4f89))
(fp_line (start -2.15 -2.75) (end -2.75 -2.75) (layer "F.CrtYd") (width 0.05) (tstamp b7e1ff55-ab1e-43ef-a19f-377655895311))
(fp_line (start 2.75 -2.15) (end 4.18 -2.15) (layer "F.CrtYd") (width 0.05) (tstamp e2ba89e8-f778-4e66-88e5-fbbe1bf95dfd))
(fp_line (start 0 4.18) (end 2.15 4.18) (layer "F.CrtYd") (width 0.05) (tstamp ea1ed0e9-caa8-4609-8133-f228543e85e3))
(fp_line (start 4.18 -2.15) (end 4.18 0) (layer "F.CrtYd") (width 0.05) (tstamp f6473176-ed83-479f-8db7-341e2742415a))
(fp_line (start 2.15 2.75) (end 2.75 2.75) (layer "F.CrtYd") (width 0.05) (tstamp fdfb5d61-5351-4db1-bd14-2defeb6b3b71))
(fp_line (start -2.5 -1.5) (end -1.5 -2.5) (layer "F.Fab") (width 0.1) (tstamp 29259352-534c-4160-b122-543f5064f5d3))
(fp_line (start -2.5 2.5) (end -2.5 -1.5) (layer "F.Fab") (width 0.1) (tstamp 39a880a6-1d72-45a3-96d3-33057f086869))
(fp_line (start 2.5 2.5) (end -2.5 2.5) (layer "F.Fab") (width 0.1) (tstamp a1522540-1175-417f-ba27-6af16a326c1b))
(fp_line (start 2.5 -2.5) (end 2.5 2.5) (layer "F.Fab") (width 0.1) (tstamp c7063793-3cca-4e71-a318-f8b74592c941))
(fp_line (start -1.5 -2.5) (end 2.5 -2.5) (layer "F.Fab") (width 0.1) (tstamp ff8c5c7e-31d8-43c7-9ceb-b8550e302d51))
(pad "1" smd roundrect (at -3.175 -1.75 315) (size 1.5 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "/VCCIO") (pinfunction "VCCIO") (pintype "bidirectional") (tstamp 9093222e-8d9d-49c5-9790-32849f8e54e7))
(pad "2" smd roundrect (at -3.175 -1.25 315) (size 1.5 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "/RXD") (pinfunction "RXD") (pintype "bidirectional") (tstamp fceff9d8-ae9b-4396-ad7a-ecfd5972df90))
(pad "3" smd roundrect (at -3.175 -0.75 315) (size 1.5 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "/R1") (pinfunction "R1#") (pintype "bidirectional") (tstamp 6cfe221f-f57d-4450-9c02-1b3512aba9dc))
(pad "4" smd roundrect (at -3.175 -0.25 315) (size 1.5 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 8b73c6ad-5f6c-44b1-91d0-6fa1f9f46174))
(pad "5" smd roundrect (at -3.175 0.25 315) (size 1.5 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "unconnected-(U1-Pad5)") (pinfunction "NC") (pintype "bidirectional+no_connect") (tstamp 4ad04a43-7db1-48dc-8f08-ad0fe32ba0d4))
(pad "6" smd roundrect (at -3.175 0.75 315) (size 1.5 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "/DSR") (pinfunction "DSR#") (pintype "bidirectional") (tstamp b942efcf-b499-4c54-8f36-8202d3326ba0))
(pad "7" smd roundrect (at -3.175 1.25 315) (size 1.5 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "/DCD") (pinfunction "DCD#") (pintype "bidirectional") (tstamp d3a1a1bd-5ed3-43b4-8574-362f779afff4))
(pad "8" smd roundrect (at -3.175 1.75 315) (size 1.5 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "/CTS") (pinfunction "CTS#") (pintype "bidirectional") (tstamp 64d17eed-7844-4a21-960c-04fd4d10af0d))
(pad "9" smd roundrect (at -1.75 3.175 315) (size 0.3 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "unconnected-(U1-Pad9)") (pinfunction "CBUS4") (pintype "bidirectional+no_connect") (tstamp 4e6519eb-2021-408c-8114-31d48dc8a0c3))
(pad "10" smd roundrect (at -1.25 3.175 315) (size 0.3 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "/PWREN") (pinfunction "CBUS2") (pintype "bidirectional") (tstamp 92b2f424-d1e9-4c6b-9ba9-1b50978418ea))
(pad "11" smd roundrect (at -0.75 3.175 315) (size 0.3 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "unconnected-(U1-Pad11)") (pinfunction "CBUS3") (pintype "bidirectional+no_connect") (tstamp a101685d-1b6f-46b6-9b80-f94b9556da79))
(pad "12" smd roundrect (at -0.25 3.175 315) (size 0.3 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "unconnected-(U1-Pad12)") (pinfunction "NC") (pintype "bidirectional+no_connect") (tstamp 9a988116-c89b-48e1-bb80-8c86298f9308))
(pad "13" smd roundrect (at 0.25 3.175 315) (size 0.3 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "unconnected-(U1-Pad13)") (pinfunction "NC") (pintype "bidirectional+no_connect") (tstamp 01dc8eca-a30e-4a1b-b79f-849f11390c2c))
(pad "14" smd roundrect (at 0.75 3.175 315) (size 0.3 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "USBDP") (pinfunction "USBDP") (pintype "bidirectional") (tstamp 3a14cf54-025b-4898-99d2-7c92aca0dae8))
(pad "15" smd roundrect (at 1.25 3.175 315) (size 0.3 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "USBDM") (pinfunction "USBDM") (pintype "bidirectional") (tstamp 7193050f-015a-4205-8efc-213ed6c66f31))
(pad "16" smd roundrect (at 1.75 3.175 315) (size 0.3 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/3V3") (pinfunction "3V3OUT") (pintype "bidirectional") (tstamp a38ddb52-00b5-4bfb-8504-1135d07d71b3))
(pad "17" smd roundrect (at 3.175 1.75 315) (size 1.5 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 4cbbf028-8cda-4be6-884b-0ca9783838dc))
(pad "18" smd roundrect (at 3.175 1.25 315) (size 1.5 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "unconnected-(U1-Pad18)") (pinfunction "RESET#") (pintype "bidirectional+no_connect") (tstamp 50c7a1cd-2eae-4f21-b57f-da30ee820a06))
(pad "19" smd roundrect (at 3.175 0.75 315) (size 1.5 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "/5V") (pinfunction "VCC") (pintype "bidirectional") (tstamp b475212c-7a5e-440e-a643-b504b591e79e))
(pad "20" smd roundrect (at 3.175 0.25 315) (size 1.5 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 18c9864a-c2fc-48f5-a45f-c10780fbd707))
(pad "21" smd roundrect (at 3.175 -0.25 315) (size 1.5 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "/RXD") (pinfunction "CBUS1") (pintype "bidirectional") (tstamp 9ac9ba61-eb3f-450e-bd76-d659bb5150ea))
(pad "22" smd roundrect (at 3.175 -0.75 315) (size 1.5 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "/TXD") (pinfunction "CBUS0") (pintype "bidirectional") (tstamp 9ab735bc-e8c8-4b15-9097-ed92b065b321))
(pad "23" smd roundrect (at 3.175 -1.25 315) (size 1.5 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "unconnected-(U1-Pad23)") (pinfunction "NC") (pintype "bidirectional+no_connect") (tstamp faeefbb9-6b1d-4601-9c29-3091c588628b))
(pad "24" smd roundrect (at 3.175 -1.75 315) (size 1.5 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "GND") (pinfunction "AGND") (pintype "power_in") (tstamp 85d4d687-8c75-476e-80fc-bb02d91bf044))
(pad "25" smd roundrect (at 1.75 -3.175 315) (size 0.3 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "unconnected-(U1-Pad25)") (pinfunction "NC") (pintype "bidirectional+no_connect") (tstamp 539a2b10-0092-4b0a-b761-008e6e39132c))
(pad "26" smd roundrect (at 1.25 -3.175 315) (size 0.3 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "GND") (pinfunction "TEST") (pintype "input") (tstamp df30ad36-8018-4eb7-8d67-023c24aa08d6))
(pad "27" smd roundrect (at 0.75 -3.175 315) (size 0.3 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "unconnected-(U1-Pad27)") (pinfunction "OSCI") (pintype "bidirectional+no_connect") (tstamp 1a46b20f-037b-4692-9730-648fde30cbbf))
(pad "28" smd roundrect (at 0.25 -3.175 315) (size 0.3 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 29 "unconnected-(U1-Pad28)") (pinfunction "OSCO") (pintype "bidirectional+no_connect") (tstamp a84cea1f-3a02-4ba2-bf6c-040d150d2720))
(pad "29" smd roundrect (at -0.25 -3.175 315) (size 0.3 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "unconnected-(U1-Pad29)") (pinfunction "NC") (pintype "bidirectional+no_connect") (tstamp 5238ed64-8e5f-40c1-a778-4ccb3897c62d))
(pad "30" smd roundrect (at -0.75 -3.175 315) (size 0.3 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "/TXD") (pinfunction "TXD") (pintype "bidirectional") (tstamp 5e1f945a-9b14-4225-8047-8f9085bbbc10))
(pad "31" smd roundrect (at -1.25 -3.175 315) (size 0.3 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "/DTR") (pinfunction "DTR#") (pintype "bidirectional") (tstamp bec2080e-b36c-4d0c-bd67-164b46aec695))
(pad "32" smd roundrect (at -1.75 -3.175 315) (size 0.3 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "/RTS") (pinfunction "RTS#") (pintype "bidirectional") (tstamp 1740f48b-5f37-4c91-ba57-4a75f3f374d4))
(model "${KICAD6_3DMODEL_DIR}/Package_QFP.3dshapes/LQFP-32_5x5mm_P0.5mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Footprints:PinHeader_1x06_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 8ab214a4-f7bb-451d-94fb-c2176d0f9526)
(at 160.21 52.4)
(descr "Through hole straight pin header, 1x06, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x06 2.54mm single row")
(property "Sheetfile" "FTDI MCU programmer.kicad_sch")
(property "Sheetname" "")
(path "/4b8482be-bae7-4e8d-b5b0-e80d7e08d96e")
(attr through_hole)
(fp_text reference "J2" (at -2.6416 -0.8128) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2faf966e-391c-4a3f-aeb9-11a68ab43095)
)
(fp_text value "MCU IO" (at 0 15.03) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6003158e-edca-48f1-837e-42da0eb7fd50)
)
(fp_text user "${REFERENCE}" (at 0 6.35 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6d4888e6-135b-4a47-a1ee-f26a781b7535)
)
(fp_line (start 1.33 1.27) (end 1.33 14.03) (layer "F.SilkS") (width 0.12) (tstamp 04a6f5a4-4517-4968-ac27-5accde264d26))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 17f715eb-c62e-4917-b5ce-5dc1176eda7d))
(fp_line (start -1.33 1.27) (end -1.33 14.03) (layer "F.SilkS") (width 0.12) (tstamp 1c9b47da-f7d0-4555-ad44-566319ab986c))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 2f1daf66-eb97-4980-8530-954bb4a7d9a4))
(fp_line (start -1.33 14.03) (end 1.33 14.03) (layer "F.SilkS") (width 0.12) (tstamp 4d646c40-ec9a-43aa-88a0-b9662aa8225a))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp cd00cc5c-63a7-4676-858d-139d46770887))
(fp_line (start -1.8 14.5) (end 1.8 14.5) (layer "F.CrtYd") (width 0.05) (tstamp 321616f8-1fa5-419c-a6ae-9d4818544f12))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 743df543-b2d4-4aed-bca3-886e4aa078c4))
(fp_line (start -1.8 -1.8) (end -1.8 14.5) (layer "F.CrtYd") (width 0.05) (tstamp bcbf4c6a-e84e-4be5-b293-2d0c168ea789))
(fp_line (start 1.8 14.5) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp bfc8299b-add6-4040-a8d5-5d7dec81489f))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 75e53329-8f47-4435-95a6-80ee229a6802))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 89ba4328-bf2f-4b4c-a78d-df3a57e4ed8f))
(fp_line (start 1.27 -1.27) (end 1.27 13.97) (layer "F.Fab") (width 0.1) (tstamp cb260af9-7e8c-4230-9540-e2a7424ebd2e))
(fp_line (start 1.27 13.97) (end -1.27 13.97) (layer "F.Fab") (width 0.1) (tstamp d563e8c9-0bfe-46d9-868b-055b6ee45a5e))
(fp_line (start -1.27 13.97) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp d8465618-527e-462f-a171-7880568c6072))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp b015891a-2039-49e9-ba34-9967cb661cc4))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 "/CTS") (pinfunction "Pin_2") (pintype "passive") (tstamp 024e5380-1d75-4452-beda-62a7bb636546))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "Net-(C1-Pad1)") (pinfunction "Pin_3") (pintype "passive") (tstamp f13b67db-632f-4a38-a9d1-84eb49d63ea2))
(pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 11 "/TXD") (pinfunction "Pin_4") (pintype "passive") (tstamp 37d876cd-68a9-4897-9954-465dd64cecbb))
(pad "5" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 12 "/RXD") (pinfunction "Pin_5") (pintype "passive") (tstamp be6600ec-ad52-4074-ad95-7d6cf995f4ab))
(pad "6" thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 13 "/DTR") (pinfunction "Pin_6") (pintype "passive") (tstamp 754dc1a3-2b98-4644-944f-4af0c4348f9d))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x06_P2.54mm_Horizontal.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Footprints:PinHeader_1x03_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 8e02c060-a13c-4c1c-b6d1-06bcc17e98a3)
(at 155.194 56.0578)
(descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x03 2.54mm single row")
(property "Sheetfile" "FTDI MCU programmer.kicad_sch")
(property "Sheetname" "")
(path "/679b42b0-cae4-4be9-aa53-3c37f1cdf557")
(attr through_hole)
(fp_text reference "J1" (at 0 -2.33) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b7a76577-f932-430c-8f47-5cfcb45b7873)
)
(fp_text value "VCC MCU Select" (at 0 7.41) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 96f76712-d703-4f4a-9770-7587bb9ec3bd)
)
(fp_text user "${REFERENCE}" (at 0 2.54 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3cbf8435-23b4-4cc1-a416-4cd3a850b796)
)
(fp_line (start -1.33 6.41) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 700df109-0e13-49c7-9ba5-7d3645ffeaea))
(fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 8a88a851-c74b-4f31-a87f-bdfb242b4a45))
(fp_line (start 1.33 1.27) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp d60b199a-cce2-4820-b046-f8da5ee8b716))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp e90b63d6-76eb-4980-b94a-5073d93912ff))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp f9039411-a670-4e50-9a01-3734ec151a0a))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp fcb54e18-41aa-4919-9869-4ce619f4a532))
(fp_line (start -1.8 6.85) (end 1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 2dbb7193-c4e1-447b-b3c6-6eae183e60f3))
(fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 67cf1a82-0853-4541-b50f-341b69fc1449))
(fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp dcc97ce6-dc77-4757-91f4-f4fad7844bb0))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp e0cfac81-8377-43e4-93c9-a7e15f19a14b))
(fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 07a2a4ce-5e8d-4515-968f-ac15532962f1))
(fp_line (start 1.27 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 14fb3c74-62ff-4ede-8f66-559469171ee3))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 50e2c7ad-365f-409d-a657-5fd5ee01716b))
(fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp ce3b2b6a-250d-42d5-aba1-e10cc1071c2b))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp e51bb641-ce65-48f4-8a51-00c796722dd0))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 "/3V3") (pinfunction "Pin_1") (pintype "passive") (tstamp d4008ed1-a693-4ee5-a26c-4ff3ce71b523))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "/VCCIO") (pinfunction "Pin_2") (pintype "passive") (tstamp df2eafb0-7395-4a0c-8000-b63f40474f36))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "/5V") (pinfunction "Pin_3") (pintype "passive") (tstamp daeb5597-9488-40ca-a539-fdfbaf40aac9))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 9432a0c4-c9d1-4bb3-93f5-7a204b7e9132)
(at 132.25 61.225 90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "FTDI MCU programmer.kicad_sch")
(property "Sheetname" "")
(path "/be191ac9-60c0-4bbc-a4ed-83c9b34ba582")
(attr smd)
(fp_text reference "C5" (at 2.2 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5d776209-63c7-49af-9cf7-e498cd61b78b)
)
(fp_text value "100nF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7fb002fe-8879-421a-963b-ee841aff369f)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp b86b0206-e09e-42dc-8ebb-77cbe519d197)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp 719b0deb-ed77-4e77-a535-90f62f49bc8b))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 79af5489-443a-4440-8ff7-e5e32ac36fdf))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 1f8403f6-5414-4c1e-b931-f643a1c31744))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 820650d7-f725-451c-a362-370d3ecbe7b5))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8319b333-ebb2-4451-8596-de336267044d))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp afefe6b1-f0f2-4029-ab8c-c75d961651b2))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 6b6c5cf0-e072-449f-8811-9b7efe8cbf3d))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 6edfdbfc-2501-42c8-b8d9-016fa76d7dc5))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp a4e93103-a05c-4a13-a6b9-ecd82e2385ba))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp cd9481fe-287e-43ca-89b1-b29d4a78f9c6))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/3V3") (pintype "passive") (tstamp ff8fead6-bc53-4f69-9414-4a5036b29494))
(pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "GND") (pintype "passive") (tstamp b330f842-a477-4318-922c-7c26ce407436))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 9cb849fb-3938-4992-9f0a-833dd11c43ed)
(at 156.1338 65.913 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "FTDI MCU programmer.kicad_sch")
(property "Sheetname" "")
(path "/d77504ea-88cf-4990-93d0-ce75369bd976")
(attr smd)
(fp_text reference "C1" (at -2.3368 -0.0762 -180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5ce747ad-e33a-4bb2-ae92-979f9077b6aa)
)
(fp_text value "100nF" (at 0 1.43 -270) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7bb8d166-1a76-4b34-aa6d-9fed87cffff7)
)
(fp_text user "${REFERENCE}" (at 0 0 -270) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 979dcc69-9c8a-45d9-b43f-75e58506ae94)
)
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp a8fb263c-9515-4746-b685-09180360b8b7))
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp f8599dae-d5da-4e4f-ab2d-a2d335eff4e0))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 4c51e768-94c5-4616-8569-c68de7676a6e))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7602c109-cdea-4cca-983b-55f330d8865e))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp b050a317-95f8-43a4-bb00-d95c12515a25))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp dbdaaa3e-8995-4564-8f75-ef26c5a1fe4a))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 1aa29dbb-e0bf-4870-9c72-2f96dfb95b7f))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 28c407a8-ba37-41c2-80bf-57041557eeb9))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp a17306bc-4100-4606-a7ee-95225e90decb))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp eb3c1844-bd36-4465-95b4-286aa9c61239))
(pad "1" smd roundrect (at -0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "Net-(C1-Pad1)") (pintype "passive") (tstamp fe2682b6-af78-412d-998c-76431078aa30))
(pad "2" smd roundrect (at 0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "/VCCIO") (pintype "passive") (tstamp 1823f83a-e1cc-4006-b283-e0a9374ccf6e))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp e48f7bfa-7194-488e-8ef5-0cd94afc02ae)
(at 128.35 52.65 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" "FTDI MCU programmer.kicad_sch")
(property "Sheetname" "")
(path "/015997d4-581e-4b0a-a96c-c3687c2f8dd9")
(attr smd)
(fp_text reference "R4" (at -2.625 -0.35) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a5282564-8e10-4dd5-8b16-81a1ce08e78e)
)
(fp_text value "270R" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c799cc62-9976-4fd2-a7b8-670bfcb59604)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 8cfc7240-b9d8-4e6b-b28e-77acc48368b0)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 07abdd02-7dea-418c-8cd6-bfb4379b302c))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 86bb1d7a-8384-49ee-81aa-2b47e065bb3b))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 06b87b33-acb7-4fce-b4fb-01f2fa7a00f6))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp c04fb5a3-2fe9-4b20-94d8-bb4390409758))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d52426bc-1341-4c44-8e5d-25e08cdfacfc))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp e2a651d0-08a7-4c8b-b3d8-6ff69b52e5f2))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 3d768c5e-5c52-4d10-8257-7ae5bb355fb1))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp a6fcee16-7369-4536-ba1d-9d666501bd9e))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp e62e2634-3612-4b85-8a6c-9fa8f9081952))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp fb4d8e8f-5b6a-430d-a787-8da48d318fd9))
(pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "Net-(D3-Pad2)") (pintype "passive") (tstamp d77af112-b46e-4a25-9a39-58004c225d49))
(pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "VBUS") (pintype "passive") (tstamp ed28d3ee-c9ca-4f40-a507-1b72f80f75a0))
(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 "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp f16e0d63-f620-453c-b828-36dda74ee225)
(at 141.95 60.75 -90)
(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" "FTDI MCU programmer.kicad_sch")
(property "Sheetname" "")
(path "/8f34e186-abaf-44c7-b214-6dca509b188b")
(attr smd)
(fp_text reference "R2" (at 2.075 -1.775) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 17498e75-ae5c-44d9-b829-e3bc8542e8eb)
)
(fp_text value "270R" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bd748c11-f2f1-4d01-b6cc-0d2bc5b484eb)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp fa7126c3-fea7-4dc1-9c3a-35686a445039)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 00b10325-6879-4b11-9e0d-7b04fc819aee))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp fe578cbb-2fb5-4513-a950-17bbd57bef39))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 5a3a45cd-f52a-4532-81c5-f97adf489bb8))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6e876da6-bff9-4145-9f5f-768f9c138921))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp e6b38969-11ba-4845-a6d3-56e743197cf4))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ebfdc66d-450a-4b85-973b-a8d285fd30f1))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp c5d804b3-ac66-4efa-9189-916b46c863a6))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp ca226135-3d9a-48ed-b3c7-24d5f555363f))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp d9800206-c114-4530-ada7-dcb62a8e3ca1))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp eec1603d-37ec-4826-bde8-913cd38aa68c))
(pad "1" smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "Net-(D1-Pad1)") (pintype "passive") (tstamp ef51899e-28c0-4157-a5da-dbc6d02b0425))
(pad "2" smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "/TXD") (pintype "passive") (tstamp b9729f2b-3583-42b7-a966-fdb5ff9849d9))
(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 "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp f5a62bd6-ae05-4e47-8053-ae9a5b16ac52)
(at 133.1 56.475)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "FTDI MCU programmer.kicad_sch")
(property "Sheetname" "")
(path "/b912ecea-eb4f-4401-9aff-151d1b42fa17")
(attr smd)
(fp_text reference "C2" (at 2.2 -0.075 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7a36811c-19a9-4fef-9808-73c558b2cee3)
)
(fp_text value "10nF" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b4d03238-73e8-48da-86df-78ab11dc4f9a)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 1e64511b-71c9-4c6c-a435-539d901391a0)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 39cd30bb-44b0-4000-90f1-6bb448319afd))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51) (layer "F.SilkS") (width 0.12) (tstamp a046dd5b-2148-41b2-80f9-8766e35c79f2))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 07200252-97e3-45cc-99af-336d9459f7fc))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 87deed7b-65d5-4de5-82e2-4dbe840e2fd2))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 92a9061c-e82a-40b5-a4bb-4a96807b572c))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9e63e0de-7065-4de7-a76a-8194e1bc30d3))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 1fe4c86b-d0b4-45b2-9f20-611a0f92b449))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp a42d58f5-2e1a-4531-a4d1-435f264ff9a0))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp b0a78e03-28e4-4a85-aaad-63842d2fe32f))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp fae8bb56-faf4-42f2-b359-b4d8da338326))
(pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "GND") (pintype "passive") (tstamp 96007554-5857-489e-ba7b-6fa19f51844e))
(pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "VBUS") (pintype "passive") (tstamp 147ceab6-61ca-4100-8dcd-4521490182c0))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Footprints:PinHeader_1x08_P2.54mm_Vertical" (layer "B.Cu")
(tedit 59FED5CC) (tstamp 3ecb1010-ca24-4191-93ea-fb1ac60a7e2b)
(at 152.0294 66.4464 90)
(descr "Through hole straight pin header, 1x08, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x08 2.54mm single row")
(property "Sheetfile" "FTDI MCU programmer.kicad_sch")
(property "Sheetname" "")
(path "/f8c2284b-d6b2-43ad-8a8b-6107e1eafaa7")
(attr through_hole)
(fp_text reference "J5" (at 0 2.33 90) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 32692b6d-0abc-4dda-ae9b-923b5ca661c7)
)
(fp_text value "BreadBoard IO" (at 0 -20.11 90) (layer "B.Fab")