-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathSD2IECplug.kicad_pcb
executable file
·22083 lines (22026 loc) · 906 KB
/
SD2IECplug.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")
(title_block
(title "SD2IEC Pluggable")
(date "2021-01-09")
(rev "2.2")
(company "www.hackup.net")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (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)
(aux_axis_origin 118 53.354)
(grid_origin 118 53.354)
(pcbplotparams
(layerselection 0x00010f0_ffffffff)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin true)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber/")
)
)
(net 0 "")
(net 1 "Net-(C1-Pad2)")
(net 2 "Net-(C2-Pad2)")
(net 3 "Net-(C3-Pad1)")
(net 4 "Net-(C4-Pad1)")
(net 5 "+3V3")
(net 6 "MISO")
(net 7 "SCK")
(net 8 "MOSI")
(net 9 "Net-(J1-Pad5)")
(net 10 "IEC_CLK")
(net 11 "IEC_SQR")
(net 12 "IEC_ATN")
(net 13 "IEC_DATA")
(net 14 "Net-(Q1-Pad1)")
(net 15 "Net-(Q1-Pad2)")
(net 16 "Net-(Q2-Pad1)")
(net 17 "Net-(Q2-Pad2)")
(net 18 "Net-(Q3-Pad1)")
(net 19 "Net-(Q3-Pad2)")
(net 20 "Net-(Q4-Pad1)")
(net 21 "Net-(Q4-Pad2)")
(net 22 "Net-(R7-Pad2)")
(net 23 "Net-(R10-Pad2)")
(net 24 "Net-(R13-Pad2)")
(net 25 "Cas-GND")
(net 26 "Cas-5V")
(net 27 "Cas-Motor")
(net 28 "Cas-Read")
(net 29 "Cas-Write")
(net 30 "Cas-Sense")
(net 31 "/LED2")
(net 32 "/LED1")
(net 33 "Net-(J2-Pad1)")
(net 34 "Net-(J2-Pad2)")
(net 35 "Net-(J2-Pad3)")
(net 36 "Net-(J2-Pad4)")
(net 37 "/DISKSWITCH")
(net 38 "/RESERVE")
(net 39 "/IEC_8-9")
(net 40 "/IEC_10-11")
(net 41 "Net-(R1-Pad2)")
(net 42 "Net-(R5-Pad2)")
(net 43 "Net-(U1-Pad11)")
(net 44 "Net-(U1-Pad44)")
(net 45 "Net-(J3-Pad1)")
(net 46 "Net-(J3-Pad2)")
(net 47 "Net-(J3-Pad3)")
(net 48 "Net-(R16-Pad1)")
(net 49 "Net-(R16-Pad2)")
(net 50 "Net-(J4-Pad6)")
(net 51 "Net-(U1-Pad9)")
(net 52 "Net-(U1-Pad10)")
(net 53 "Net-(U1-Pad12)")
(net 54 "Net-(U1-Pad13)")
(net 55 "Net-(U1-Pad29)")
(footprint "Capacitors_SMD:C_0805_HandSoldering" (layer "F.Cu")
(tedit 5A16C998) (tstamp 00000000-0000-0000-0000-00005a0ec5fc)
(at 107.046 76.528 180)
(descr "Capacitor SMD 0805, hand soldering")
(tags "capacitor 0805")
(path "/00000000-0000-0000-0000-00005a0dca05")
(attr smd)
(fp_text reference "C1" (at 3.1715 0.3285 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dd3274a5-4ad3-43f2-ace3-09363efea34e)
)
(fp_text value "56p" (at 0 1.75 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9f7b2277-8378-4aa7-8851-71a7e894e7c5)
)
(fp_text user "${REFERENCE}" (at 0.078 1.792 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 40267585-938c-4c15-a1c4-6ec3db692365)
)
(fp_line (start 0.5 -0.85) (end -0.5 -0.85) (layer "F.SilkS") (width 0.12) (tstamp cf5eecc8-d684-4751-ba39-4a30f29e2a31))
(fp_line (start -0.5 0.85) (end 0.5 0.85) (layer "F.SilkS") (width 0.12) (tstamp ddaa653e-95af-4f0c-acdb-81908cbbb12d))
(fp_line (start -2.25 -0.88) (end -2.25 0.87) (layer "F.CrtYd") (width 0.05) (tstamp 13239a15-f5cc-45eb-9ce2-000dce47e6e3))
(fp_line (start 2.25 0.87) (end 2.25 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp 1bb577d0-ef95-4c8e-97ed-c896b9763fcc))
(fp_line (start -2.25 -0.88) (end 2.25 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp 76e53b55-ce1b-4e2d-ae64-d5ddbe89b446))
(fp_line (start 2.25 0.87) (end -2.25 0.87) (layer "F.CrtYd") (width 0.05) (tstamp f7d6906c-d581-4edb-b9be-6b4d078d04b9))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp 1e1fb50b-5da0-417f-b22a-281fced35852))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp 245f1991-6ac9-4c15-9b97-2eaedf90265f))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 2ca382f3-b345-47f5-b0ab-a5314d5a6b1d))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp f8bcca4f-9e7a-4bb1-942d-9835a230192f))
(pad "1" smd rect locked (at -1.25 0 180) (size 1.5 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "Cas-GND") (tstamp 6e4ea67c-0168-41c1-b2e6-63c62566be74))
(pad "2" smd rect locked (at 1.25 0 180) (size 1.5 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "Net-(C1-Pad2)") (tstamp fa880dd9-76aa-4791-8872-c53d9a93b2f8))
(model "Capacitors_SMD.3dshapes/C_0805.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitors_SMD:C_0805_HandSoldering" (layer "F.Cu")
(tedit 58AA84A8) (tstamp 00000000-0000-0000-0000-00005a0ec602)
(at 99.68 76.528)
(descr "Capacitor SMD 0805, hand soldering")
(tags "capacitor 0805")
(path "/00000000-0000-0000-0000-00005a0dca58")
(attr smd)
(fp_text reference "C2" (at -3.235 -0.3285) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1cb610ca-a91c-4dfa-96d3-fa02bc75f607)
)
(fp_text value "56p" (at 0 1.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d3c3fc3e-ad56-4d52-9e81-aabc2d284eaa)
)
(fp_text user "${REFERENCE}" (at 0 -1.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fff9397e-0bb9-4d3d-8d93-7fecbe8188a4)
)
(fp_line (start 0.5 -0.85) (end -0.5 -0.85) (layer "F.SilkS") (width 0.12) (tstamp 876771af-9c58-4787-8630-eec8244754ca))
(fp_line (start -0.5 0.85) (end 0.5 0.85) (layer "F.SilkS") (width 0.12) (tstamp ba546a33-f1b5-4493-b7a7-bd9716b7c16c))
(fp_line (start -2.25 -0.88) (end -2.25 0.87) (layer "F.CrtYd") (width 0.05) (tstamp 5e68bc52-c567-4313-85d1-feba4fe4bdf2))
(fp_line (start 2.25 0.87) (end -2.25 0.87) (layer "F.CrtYd") (width 0.05) (tstamp 6f9c2377-0dfd-44d0-89c7-edc75177ed4b))
(fp_line (start -2.25 -0.88) (end 2.25 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp 9bb86d20-db90-4c1c-91b1-eab2c9799211))
(fp_line (start 2.25 0.87) (end 2.25 -0.88) (layer "F.CrtYd") (width 0.05) (tstamp f6075615-c999-4fb6-be03-58d4313cfa44))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp 23a68adb-2a98-484c-96b9-23636c5e7938))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 7616f5f8-d146-452b-a94c-f1db6606a9b2))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp a6769e51-d7a3-4635-93f3-a3ea6b1fdac5))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp b2f6464f-7e7a-4c87-84e2-932bba71b897))
(pad "1" smd rect locked (at -1.25 0) (size 1.5 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "Cas-GND") (tstamp 5416b6e6-6a79-4a5d-92f9-9a5fd974dc9d))
(pad "2" smd rect locked (at 1.25 0) (size 1.5 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "Net-(C2-Pad2)") (tstamp 217073ac-293e-4871-b6f5-6b7b81f24aa4))
(model "Capacitors_SMD.3dshapes/C_0805.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LEDs:LED_0805_HandSoldering" (layer "F.Cu")
(tedit 5A16BAC1) (tstamp 00000000-0000-0000-0000-00005a0ec620)
(at 121.828 63.946 180)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path "/00000000-0000-0000-0000-00005a0e5986")
(attr smd)
(fp_text reference "D2" (at -0.05 4.574 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 730660df-a478-4e23-9361-719cb6d4d206)
)
(fp_text value "green" (at 0 1.75 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 52ece400-08fa-428b-9954-bc645ac95e71)
)
(fp_line (start -2.2 -0.75) (end -2.2 0.75) (layer "F.SilkS") (width 0.12) (tstamp 32c5d8b8-0096-4bbe-b1cb-f64e917f8aa6))
(fp_line (start -2.2 -0.75) (end 1 -0.75) (layer "F.SilkS") (width 0.12) (tstamp 9f4a66c6-0235-4055-bad3-0a13a08d0d68))
(fp_line (start 1 0.75) (end -2.2 0.75) (layer "F.SilkS") (width 0.12) (tstamp c2f9ba14-ac47-4adc-b398-0be6dd2ee0bd))
(fp_line (start 2.35 0.9) (end -2.35 0.9) (layer "F.CrtYd") (width 0.05) (tstamp 0b8d729b-3ec6-4bac-8d24-a30bac1c7561))
(fp_line (start -2.35 -0.9) (end 2.35 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp 86867bcb-a69a-48d2-aedb-b2d4a945ba13))
(fp_line (start 2.35 0.9) (end 2.35 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp bd996518-4d22-42f6-9c98-3f11914cdc98))
(fp_line (start -2.35 -0.9) (end -2.35 0.9) (layer "F.CrtYd") (width 0.05) (tstamp d5e1fd85-4660-4d3e-b8a0-44a8a53e3e3f))
(fp_line (start -0.4 0) (end 0.2 -0.4) (layer "F.Fab") (width 0.1) (tstamp 50a06104-59e7-4f51-94e4-8977f037915f))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp 59565637-24a8-4494-bcf5-6db11ae8fc0e))
(fp_line (start 0.2 0.4) (end -0.4 0) (layer "F.Fab") (width 0.1) (tstamp ae843582-5fe0-4c91-aba6-65400642ca57))
(fp_line (start -0.4 -0.4) (end -0.4 0.4) (layer "F.Fab") (width 0.1) (tstamp cf5cc408-fc5b-48f9-8723-7d4914e42409))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp d0e0f91b-5a3c-4699-b991-9ce6bf7143ea))
(fp_line (start 0.2 -0.4) (end 0.2 0.4) (layer "F.Fab") (width 0.1) (tstamp d444d446-2bce-4e12-8dcc-e96f09df191d))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp e9c5d66c-4e47-4fa8-8574-feba11064647))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp eba3570c-34a7-4b7a-b820-bc39ca45314e))
(pad "1" smd rect locked (at -1.35 0 180) (size 1.5 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "Cas-GND") (tstamp 00503077-692e-4b64-bea8-52db8e217475))
(pad "2" smd rect locked (at 1.35 0 180) (size 1.5 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 31 "/LED2") (tstamp 2e94e47b-bfe9-4b1e-9f0b-531c7a0ba07c))
(model "${KISYS3DMOD}/LEDs.3dshapes/LED_0805.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Pin_Headers:Pin_Header_Straight_2x03_Pitch2.54mm" (layer "F.Cu")
(tedit 5A16BAA0) (tstamp 00000000-0000-0000-0000-00005a0ec630)
(at 135.942 86.042 -90)
(descr "Through hole straight pin header, 2x03, 2.54mm pitch, double rows")
(tags "Through hole pin header THT 2x03 2.54mm double row")
(path "/00000000-0000-0000-0000-00005a0e128d")
(attr through_hole)
(fp_text reference "J1" (at -2.159 -0.635) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d150d6f2-722b-420d-a3e2-0ce3e3eb94d7)
)
(fp_text value "ISP" (at 1.27 7.41 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 21757031-58f7-4c81-a111-09d3bcacf891)
)
(fp_text user "${REFERENCE}" (at 1.27 2.54) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ae09247c-c668-402d-98f0-c92ea7e3a517)
)
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 0afb16de-d053-4768-814e-b779f4571ddf))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 401e74fe-b6ac-410b-97d6-01f28d7559f5))
(fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 432f52a4-47aa-46cd-9872-fad9a2ae4492))
(fp_line (start -1.33 6.41) (end 3.87 6.41) (layer "F.SilkS") (width 0.12) (tstamp 4e351319-49dc-4666-a45d-2f79f154d2b2))
(fp_line (start 1.27 1.27) (end 1.27 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 95388a95-f3a9-428e-aedf-1bd711a85bd7))
(fp_line (start -1.33 1.27) (end 1.27 1.27) (layer "F.SilkS") (width 0.12) (tstamp a660f35d-c22f-4cbe-a56e-397eeafa7f2f))
(fp_line (start 1.27 -1.33) (end 3.87 -1.33) (layer "F.SilkS") (width 0.12) (tstamp ce8d4f22-8076-4b27-a828-8324123d231b))
(fp_line (start 3.87 -1.33) (end 3.87 6.41) (layer "F.SilkS") (width 0.12) (tstamp cf4bace1-0efd-4842-8b3d-d968e40c18e7))
(fp_line (start 4.35 6.85) (end 4.35 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 19a3ca5e-ea58-4226-9007-ff3df6ec5b84))
(fp_line (start 4.35 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 5b0bc589-84f3-4802-9674-44d5225b66ee))
(fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp e285b10c-3cfb-46d9-9c39-d8d43e827a9f))
(fp_line (start -1.8 6.85) (end 4.35 6.85) (layer "F.CrtYd") (width 0.05) (tstamp ed657fb0-7a49-448e-92e1-a94116478705))
(fp_line (start -1.27 0) (end 0 -1.27) (layer "F.Fab") (width 0.1) (tstamp 0be67e2f-3343-4769-9448-553902fb6f54))
(fp_line (start 0 -1.27) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp 40b00f60-454e-431e-80a6-6722c286a335))
(fp_line (start 3.81 -1.27) (end 3.81 6.35) (layer "F.Fab") (width 0.1) (tstamp a0aece9c-903c-4d42-bf85-5bbf8f987731))
(fp_line (start 3.81 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp c740a719-063d-41e9-a5dd-005a76a40373))
(fp_line (start -1.27 6.35) (end -1.27 0) (layer "F.Fab") (width 0.1) (tstamp dc2e8d97-8d52-4ff9-99bc-786881b18128))
(pad "1" thru_hole rect locked (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 "MISO") (tstamp 43909ec8-628b-4405-a0a9-94c70018872e))
(pad "2" thru_hole oval locked (at 2.54 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "+3V3") (tstamp 7bf3c18a-935f-4293-bfb7-25c3c175c6d2))
(pad "3" thru_hole oval locked (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 "SCK") (tstamp a9dcbbe2-6bc9-4753-82ae-724a3ad7a8e9))
(pad "4" thru_hole oval locked (at 2.54 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "MOSI") (tstamp 7b5e5673-fce8-40c0-bf06-109f0f37c359))
(pad "5" thru_hole oval locked (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 "Net-(J1-Pad5)") (tstamp 7aaaeb5e-a3a9-4219-8394-0712640c7ec0))
(pad "6" thru_hole oval locked (at 2.54 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 25 "Cas-GND") (tstamp 2a030bfe-39d4-43b5-a22d-60cdb7a46b35))
(model "${KISYS3DMOD}/Pin_Headers.3dshapes/Pin_Header_Straight_2x03_Pitch2.54mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_SMD:R_0805_HandSoldering" (layer "F.Cu")
(tedit 5A16BAB8) (tstamp 00000000-0000-0000-0000-00005a0ec679)
(at 116.828 63.946 180)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path "/00000000-0000-0000-0000-00005a0e56b2")
(attr smd)
(fp_text reference "R1" (at -0.064 -1.776 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 98955570-ba8c-4730-a163-4f802068c8b1)
)
(fp_text value "330" (at 0 1.75 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 09916273-d987-4c51-824f-af1709297620)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 6e0daf48-49a5-4abf-9f36-1bb17c12d37a)
)
(fp_line (start -0.6 -0.88) (end 0.6 -0.88) (layer "F.SilkS") (width 0.12) (tstamp e1b87809-9a91-4bc5-8c82-aa25aa7f9335))
(fp_line (start 0.6 0.88) (end -0.6 0.88) (layer "F.SilkS") (width 0.12) (tstamp f68f258d-7bb7-4d11-955b-410929856591))
(fp_line (start -2.35 -0.9) (end -2.35 0.9) (layer "F.CrtYd") (width 0.05) (tstamp 2dd03e4c-99d6-4a16-a97c-541706beff7a))
(fp_line (start 2.35 0.9) (end -2.35 0.9) (layer "F.CrtYd") (width 0.05) (tstamp 33edaebd-79f5-400c-959d-69cc6d9a3a81))
(fp_line (start 2.35 0.9) (end 2.35 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp 3904bb98-8dd9-4d07-99fe-4486d106f705))
(fp_line (start -2.35 -0.9) (end 2.35 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp e30f8b83-2419-45ae-a42b-fe06b5304231))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 0258da15-3a13-4813-9d67-83d7f1d0463b))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp 248e8ede-5085-40c6-974b-bfa6b3650192))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 341e3781-20aa-46c0-96fc-3a8d9540912e))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp def96a1f-65c7-4dde-9e87-7eed33220f98))
(pad "1" smd rect locked (at -1.35 0 180) (size 1.5 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 31 "/LED2") (tstamp fa2e81ee-0188-427c-9c77-56b391e57756))
(pad "2" smd rect locked (at 1.35 0 180) (size 1.5 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 41 "Net-(R1-Pad2)") (tstamp 416629fa-1378-433f-83ed-81c1ec5c27cf))
(model "${KISYS3DMOD}/Resistors_SMD.3dshapes/R_0805.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Housings_QFP:TQFP-44_10x10mm_Pitch0.8mm" (layer "F.Cu")
(tedit 5A16BA97) (tstamp 00000000-0000-0000-0000-00005a0ec705)
(at 117.4 73.596 -90)
(descr "44-Lead Plastic Thin Quad Flatpack (PT) - 10x10x1.0 mm Body [TQFP] (see Microchip Packaging Specification 00000049BS.pdf)")
(tags "QFP 0.8")
(path "/00000000-0000-0000-0000-00005a0da765")
(attr smd)
(fp_text reference "U1" (at 6.0325 -5.715) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 52065513-4847-42b6-9fea-150fd98e546c)
)
(fp_text value "ATMEGA644-20AU" (at 0 7.45 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4754153a-2374-4414-a43e-2b883d58d0d7)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 94127443-5a81-414d-9f67-99009349a553)
)
(fp_line (start 5.175 5.175) (end 5.175 4.5) (layer "F.SilkS") (width 0.15) (tstamp 03014277-6019-41be-89ee-0565cfb6310b))
(fp_line (start 5.175 5.175) (end 4.5 5.175) (layer "F.SilkS") (width 0.15) (tstamp 0c60eb88-f128-4c78-a4c5-5e48fbdf46ee))
(fp_line (start -5.175 -5.175) (end -5.175 -4.6) (layer "F.SilkS") (width 0.15) (tstamp 188dc2f0-379f-46f2-ac15-2c500481f37a))
(fp_line (start -5.175 5.175) (end -4.5 5.175) (layer "F.SilkS") (width 0.15) (tstamp 255af6ee-75c5-4b2e-9ffd-113bf1459bef))
(fp_line (start 5.175 -5.175) (end 5.175 -4.5) (layer "F.SilkS") (width 0.15) (tstamp 4ec8c1c8-f5dd-4686-a224-790379dd7f30))
(fp_line (start 5.175 -5.175) (end 4.5 -5.175) (layer "F.SilkS") (width 0.15) (tstamp 525671b4-70d4-41e7-8ff3-e4dddc01de56))
(fp_line (start -5.175 -4.6) (end -6.45 -4.6) (layer "F.SilkS") (width 0.15) (tstamp 58d57d1d-d773-49af-bf20-5c3e1b439eec))
(fp_line (start -5.175 -5.175) (end -4.5 -5.175) (layer "F.SilkS") (width 0.15) (tstamp 66ed6aa0-072b-43f5-ad5b-f8756fb9134a))
(fp_line (start -5.175 5.175) (end -5.175 4.5) (layer "F.SilkS") (width 0.15) (tstamp 9cd25cbf-86c8-4d35-bd81-565ae265e10f))
(fp_line (start 6.7 -6.7) (end 6.7 6.7) (layer "F.CrtYd") (width 0.05) (tstamp afe31c0f-1ea8-4daf-be22-dc86e63a6cf1))
(fp_line (start -6.7 -6.7) (end -6.7 6.7) (layer "F.CrtYd") (width 0.05) (tstamp bc3685d2-a6c6-4d87-91cf-421b4d0931c8))
(fp_line (start -6.7 -6.7) (end 6.7 -6.7) (layer "F.CrtYd") (width 0.05) (tstamp beb799ec-ab8e-4101-941c-aae1b74bb051))
(fp_line (start -6.7 6.7) (end 6.7 6.7) (layer "F.CrtYd") (width 0.05) (tstamp f1135608-1883-4593-9dab-a3e5354beef6))
(fp_line (start -5 5) (end -5 -4) (layer "F.Fab") (width 0.15) (tstamp 2270ef38-3349-44da-85d1-bbccc2c0f633))
(fp_line (start 5 -5) (end 5 5) (layer "F.Fab") (width 0.15) (tstamp 29f42e7c-b637-42a6-97ee-9b895265df38))
(fp_line (start -4 -5) (end 5 -5) (layer "F.Fab") (width 0.15) (tstamp 409b8bf3-232b-4d03-9ca9-cdd47701bfe1))
(fp_line (start 5 5) (end -5 5) (layer "F.Fab") (width 0.15) (tstamp 80775600-7f96-4d01-8938-c500344dd05c))
(fp_line (start -5 -4) (end -4 -5) (layer "F.Fab") (width 0.15) (tstamp c0a49336-3901-4de2-916b-b1693b37b38a))
(pad "1" smd rect locked (at -5.7 -4 270) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "MOSI") (tstamp a6822e95-006f-4850-be21-06b9cbaa08c6))
(pad "2" smd rect locked (at -5.7 -3.2 270) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "MISO") (tstamp b2a5be63-9010-4235-bd30-1447973ef8ad))
(pad "3" smd rect locked (at -5.7 -2.4 270) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "SCK") (tstamp e08700fb-0b0b-41d6-a125-d62bee68b736))
(pad "4" smd rect locked (at -5.7 -1.6 270) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "Net-(J1-Pad5)") (tstamp 035383ff-9333-4fe8-857c-fcaddcdeb82c))
(pad "5" smd rect locked (at -5.7 -0.8 270) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "+3V3") (tstamp facc032a-0217-45dc-aa1c-c4421c044bde))
(pad "6" smd rect locked (at -5.7 0 270) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "Cas-GND") (tstamp d6220993-9f97-4c51-b11d-75e20f047419))
(pad "7" smd rect locked (at -5.7 0.8 270) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "Net-(C1-Pad2)") (tstamp 3b10f522-1350-40dc-9685-6826f7275573))
(pad "8" smd rect locked (at -5.7 1.6 270) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "Net-(C2-Pad2)") (tstamp 443abdc1-5859-4c2b-82f8-f96ac3291f9d))
(pad "9" smd rect locked (at -5.7 2.4 270) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 51 "Net-(U1-Pad9)") (tstamp c61af048-4e25-471a-aead-9d6bafe2f1f2))
(pad "10" smd rect locked (at -5.7 3.2 270) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 52 "Net-(U1-Pad10)") (tstamp 1543d065-e18f-411f-9cab-6d0846e62118))
(pad "11" smd rect locked (at -5.7 4 270) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 43 "Net-(U1-Pad11)") (tstamp d825453c-6e24-434a-a81e-cc41147c78c5))
(pad "12" smd rect locked (at -4 5.7) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 53 "Net-(U1-Pad12)") (tstamp edbd1060-8c3e-4739-9c9f-495c205de469))
(pad "13" smd rect locked (at -3.2 5.7) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 54 "Net-(U1-Pad13)") (tstamp 3fd53479-d29a-4ea7-987e-3a4bcd59df45))
(pad "14" smd rect locked (at -2.4 5.7) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 40 "/IEC_10-11") (tstamp e6af0985-d041-48d6-8bee-8b133113b00c))
(pad "15" smd rect locked (at -1.6 5.7) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "Cas-GND") (tstamp 59f5aa1d-ea13-40db-ba15-16e981611c7a))
(pad "16" smd rect locked (at -0.8 5.7) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 39 "/IEC_8-9") (tstamp aa66fa8a-02aa-4e20-a693-56d791c91c47))
(pad "17" smd rect locked (at 0 5.7) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "+3V3") (tstamp 1497ad89-4908-4298-b639-4142261502f9))
(pad "18" smd rect locked (at 0.8 5.7) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "Cas-GND") (tstamp c7360238-632d-43cd-a238-7c0b647c98a5))
(pad "19" smd rect locked (at 1.6 5.7) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 41 "Net-(R1-Pad2)") (tstamp 7c5a6252-2898-49d4-b8f5-47a0d6e48881))
(pad "20" smd rect locked (at 2.4 5.7) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 42 "Net-(R5-Pad2)") (tstamp 5c297b3c-86c0-4810-9d42-d4e9ad81d3ed))
(pad "21" smd rect locked (at 3.2 5.7) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 38 "/RESERVE") (tstamp 39d318f8-81e5-4f6f-9de5-a8aa82bae581))
(pad "22" smd rect locked (at 4 5.7) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 37 "/DISKSWITCH") (tstamp c874d80b-a525-424b-965a-14e3b0a346d7))
(pad "23" smd rect locked (at 5.7 4 270) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 36 "Net-(J2-Pad4)") (tstamp 27afb035-fb5a-4394-80fd-7bf12a6f54c1))
(pad "24" smd rect locked (at 5.7 3.2 270) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 35 "Net-(J2-Pad3)") (tstamp 3db525c1-0fd6-482b-afbc-16df15e06a30))
(pad "25" smd rect locked (at 5.7 2.4 270) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 34 "Net-(J2-Pad2)") (tstamp 4571237a-d883-49b6-8a5b-4ee5e50d1952))
(pad "26" smd rect locked (at 5.7 1.6 270) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 33 "Net-(J2-Pad1)") (tstamp a6c1feff-c6c5-49ad-83be-6a574f268c97))
(pad "27" smd rect locked (at 5.7 0.8 270) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "+3V3") (tstamp 9037faf5-79de-4088-8006-7c72eac4c2d8))
(pad "28" smd rect locked (at 5.7 0 270) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "Cas-GND") (tstamp 5d3fb611-7930-4a3e-8dc5-499629ff3ca4))
(pad "29" smd rect locked (at 5.7 -0.8 270) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 55 "Net-(U1-Pad29)") (tstamp bb744d2e-9622-46bc-a3e3-f820e84b230a))
(pad "30" smd rect locked (at 5.7 -1.6 270) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "Net-(Q4-Pad1)") (tstamp 6147fc81-64b2-4749-acb6-68ff851bd365))
(pad "31" smd rect locked (at 5.7 -2.4 270) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "Net-(Q3-Pad1)") (tstamp d03469f9-612d-4fb4-8428-9783fb107e8d))
(pad "32" smd rect locked (at 5.7 -3.2 270) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "Net-(Q2-Pad1)") (tstamp 7bd0f552-0735-4b1a-aeb2-1baa7fe7ede3))
(pad "33" smd rect locked (at 5.7 -4 270) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "Net-(Q1-Pad1)") (tstamp 2212877a-9d64-4f26-beea-6a0e2c4534c1))
(pad "34" smd rect locked (at 4 -5.7) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "Net-(R13-Pad2)") (tstamp 14d2fae9-2861-4fa6-a393-c7b6a9b6250d))
(pad "35" smd rect locked (at 3.2 -5.7) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "Net-(R10-Pad2)") (tstamp 6f2ec774-0399-4804-9a16-92ee861dd9ec))
(pad "36" smd rect locked (at 2.4 -5.7) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "Net-(R7-Pad2)") (tstamp e0a2fc68-364a-4966-a987-5bee869f882f))
(pad "37" smd rect locked (at 1.6 -5.7) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 48 "Net-(R16-Pad1)") (tstamp d31566fc-e757-4f93-8cb5-63bb1b70dfa3))
(pad "38" smd rect locked (at 0.8 -5.7) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "+3V3") (tstamp 6208e09e-1521-473a-9d60-bfd0c196f6f1))
(pad "39" smd rect locked (at 0 -5.7) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "Cas-GND") (tstamp fc88c1ff-0c2f-4fb7-9165-d82827fd4ba3))
(pad "40" smd rect locked (at -0.8 -5.7) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 45 "Net-(J3-Pad1)") (tstamp 653c2436-36c1-425f-860c-0bd21002ba50))
(pad "41" smd rect locked (at -1.6 -5.7) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 46 "Net-(J3-Pad2)") (tstamp 188407cd-a731-4094-9228-d84f387af64a))
(pad "42" smd rect locked (at -2.4 -5.7) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 49 "Net-(R16-Pad2)") (tstamp 9c7dd42e-eeb0-4953-a1e0-88cf42e53d6b))
(pad "43" smd rect locked (at -3.2 -5.7) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 47 "Net-(J3-Pad3)") (tstamp 9a67f366-9b7f-470d-9c40-9fa904675501))
(pad "44" smd rect locked (at -4 -5.7) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 44 "Net-(U1-Pad44)") (tstamp 5ad7fa76-d503-4211-a062-71c8293eef4f))
(model "${KISYS3DMOD}/Housings_QFP.3dshapes/TQFP-44_10x10mm_Pitch0.8mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "hackup:C64-Cassette-Port-Male" (layer "F.Cu")
(tedit 5BD99F73) (tstamp 00000000-0000-0000-0000-00005a140d7a)
(at 116.4 53.354)
(path "/00000000-0000-0000-0000-00005a1416c4")
(attr through_hole)
(fp_text reference "J6" (at 12.9 -1.1) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eae52d05-9d64-45d3-a90c-b4baa75abcf8)
)
(fp_text value "C64-CassettePort" (at 1 1) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c7f6c108-9311-4d54-9da1-733315a88db0)
)
(fp_poly (pts
(xy -13.1 -12.1)
(xy 14.1 -12.1)
(xy 14.1 -2)
(xy -13.1 -2)
) (layer "B.Mask") (width 0.15) (fill solid) (tstamp a7768b9f-d758-4e3e-9251-52d676df828d))
(fp_poly (pts
(xy -13.1 -12.1)
(xy 14.1 -12.1)
(xy 14.1 -2)
(xy -13.1 -2)
) (layer "F.Mask") (width 0.15) (fill solid) (tstamp cb752524-1bb8-4df4-94a1-783089b245ae))
(fp_line (start -13 0) (end 14 0) (layer "F.CrtYd") (width 0.15) (tstamp 018b4100-7edc-4c60-93ee-2209a5a1dd47))
(fp_line (start 3.75 -12) (end -12.5 -12) (layer "F.CrtYd") (width 0.15) (tstamp 2c3c6ad6-4cf2-4bc6-9240-7d522dd50ce9))
(fp_line (start 13.5 -12) (end 5.25 -12) (layer "F.CrtYd") (width 0.15) (tstamp 63af90cf-c200-4c91-8e18-d3a9bd73e601))
(fp_line (start 14 0) (end 14 -11.5) (layer "F.CrtYd") (width 0.15) (tstamp 6b1a13d0-0422-4c16-8772-e699872be735))
(fp_line (start 5.25 -0.25) (end 3.75 -0.25) (layer "F.CrtYd") (width 0.15) (tstamp 942a2b33-30c3-4dc9-8288-3605eced2036))
(fp_line (start 5.25 -12) (end 5.25 -0.25) (layer "F.CrtYd") (width 0.15) (tstamp d3cb4179-09c7-4d4f-b50f-fe0a486a27d8))
(fp_line (start 3.75 -0.25) (end 3.75 -12) (layer "F.CrtYd") (width 0.15) (tstamp e13815be-8389-4397-8d7a-2af635e7abd7))
(fp_line (start -13 -11.5) (end -13 0) (layer "F.CrtYd") (width 0.15) (tstamp ece9ad08-53bf-4d89-bc37-20e3ece30d6f))
(fp_arc (start -13 -11.5) (mid -12.853553 -11.853553) (end -12.5 -12) (layer "F.CrtYd") (width 0.15) (tstamp 8108d7ad-e9e0-4148-8df4-a772a1eb3cb4))
(fp_arc (start 13.5 -12) (mid 13.853553 -11.853553) (end 14 -11.5) (layer "F.CrtYd") (width 0.15) (tstamp 91891fb5-3e3e-49ac-82f4-3ced6e571e2f))
(pad "1" smd rect locked (at 10.44 -5.75) (size 2.2 10.5) (layers "F.Cu" "F.Mask")
(net 25 "Cas-GND") (tstamp 344849e0-a13a-4db4-9efc-c9d476340b1b))
(pad "2" smd rect locked (at 6.48 -5.75) (size 2.2 10.5) (layers "F.Cu" "F.Mask")
(net 26 "Cas-5V") (tstamp e230c35f-acae-4e80-be00-3ed30df6e3d9))
(pad "3" smd rect locked (at 2.52 -5.75) (size 2.2 10.5) (layers "F.Cu" "F.Mask")
(net 27 "Cas-Motor") (tstamp b0f15e34-229b-4cdf-9555-62c8714a96d3))
(pad "4" smd rect locked (at -1.44 -5.75) (size 2.2 10.5) (layers "F.Cu" "F.Mask")
(net 28 "Cas-Read") (tstamp a9ddfdd6-bfb9-47f2-b72f-cf50f420192b))
(pad "5" smd rect locked (at -5.4 -5.75) (size 2.2 10.5) (layers "F.Cu" "F.Mask")
(net 29 "Cas-Write") (tstamp 7c131c32-1fcd-4e03-8bb4-1bbc3d100d08))
(pad "6" smd rect locked (at -9.36 -5.75) (size 2.2 10.5) (layers "F.Cu" "F.Mask")
(net 30 "Cas-Sense") (tstamp 9c865154-6b11-45ff-8ba6-4a6f3bb3d302))
(pad "A" smd rect locked (at 10.44 -5.5) (size 2.2 11) (layers "B.Cu" "B.Mask")
(net 25 "Cas-GND") (tstamp 31db1e2d-acce-476f-ab2c-67d01b8ff97a))
(pad "B" smd rect locked (at 6.48 -5.5) (size 2.2 11) (layers "B.Cu" "B.Mask")
(net 26 "Cas-5V") (tstamp b8ebc5c1-ec33-40c4-8aae-efa5317b33e0))
(pad "C" smd rect locked (at 2.52 -5.5) (size 2.2 11) (layers "B.Cu" "B.Mask")
(net 27 "Cas-Motor") (tstamp 04be677a-a65e-434c-8d1e-18dbc9794b54))
(pad "D" smd rect locked (at -1.44 -5.5) (size 2.2 11) (layers "B.Cu" "B.Mask")
(net 28 "Cas-Read") (tstamp 032fecce-6e81-483a-ac76-dba174a3ea1e))
(pad "E" smd rect locked (at -5.4 -5.5) (size 2.2 11) (layers "B.Cu" "B.Mask")
(net 29 "Cas-Write") (tstamp f461ef01-0878-4f25-9d33-ffd17f655f9c))
(pad "F" smd rect locked (at -9.36 -5.5) (size 2.2 11) (layers "B.Cu" "B.Mask")
(net 30 "Cas-Sense") (tstamp f4f372cb-b7e3-48fa-bb3c-6f8adce27b00))
)
(footprint "Crystals:Crystal_HC49-4H_Vertical" (layer "F.Cu")
(tedit 58CD2E9C) (tstamp 00000000-0000-0000-0000-00005a16c93c)
(at 100.95 80.465)
(descr "Crystal THT HC-49-4H http://5hertz.com/pdfs/04404_D.pdf")
(tags "THT crystalHC-49-4H")
(path "/00000000-0000-0000-0000-00005a0dc8f8")
(attr through_hole)
(fp_text reference "Y1" (at 2.607 3.291) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a02bf68a-c1c7-41b8-97d5-6312462d8329)
)
(fp_text value "8MHz" (at 2.44 3.525) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7f6ecbf3-0f36-4f9d-9552-d7003f03ea53)
)
(fp_text user "${REFERENCE}" (at 2.44 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1ef00b86-9d2c-484b-b264-6f3a9aa71051)
)
(fp_line (start -0.76 2.525) (end 5.64 2.525) (layer "F.SilkS") (width 0.12) (tstamp 16d2b832-31c4-45bc-95f3-7d856a0f6789))
(fp_line (start -0.76 -2.525) (end 5.64 -2.525) (layer "F.SilkS") (width 0.12) (tstamp 3a4831d5-9f1b-4020-8b23-5aae01558ff2))
(fp_arc (start 5.64 -2.525) (mid 8.165 0) (end 5.64 2.525) (layer "F.SilkS") (width 0.12) (tstamp 219f8f57-7e38-4bfc-ba3e-b4adbab511c3))
(fp_arc (start -0.76 2.525) (mid -3.285 0) (end -0.76 -2.525) (layer "F.SilkS") (width 0.12) (tstamp bfae9931-a056-4b1c-ae26-de901107bad4))
(fp_line (start -3.6 2.8) (end 8.5 2.8) (layer "F.CrtYd") (width 0.05) (tstamp 00d64f39-aa82-4c59-b70c-c252ec49c08a))
(fp_line (start 8.5 2.8) (end 8.5 -2.8) (layer "F.CrtYd") (width 0.05) (tstamp 6422ba57-0fb4-4664-ad70-ccb4f7bf2921))
(fp_line (start -3.6 -2.8) (end -3.6 2.8) (layer "F.CrtYd") (width 0.05) (tstamp 74ef7b4f-8b36-47e6-a87f-91fc4de882ad))
(fp_line (start 8.5 -2.8) (end -3.6 -2.8) (layer "F.CrtYd") (width 0.05) (tstamp f8ff2c98-27f6-440a-a907-3a154f59146a))
(fp_line (start -0.76 -2.325) (end 5.64 -2.325) (layer "F.Fab") (width 0.1) (tstamp a9d9e14b-26c6-41c1-9337-74c3a597b42a))
(fp_line (start -0.76 2.325) (end 5.64 2.325) (layer "F.Fab") (width 0.1) (tstamp cb1bf378-f18f-4ac9-9db2-decded608ff9))
(fp_line (start -0.56 2) (end 5.44 2) (layer "F.Fab") (width 0.1) (tstamp e507ce45-d807-4cdd-89db-6117df697be8))
(fp_line (start -0.56 -2) (end 5.44 -2) (layer "F.Fab") (width 0.1) (tstamp f49fecee-f538-4f5c-b4ec-53410886a7f3))
(fp_arc (start -0.76 2.325) (mid -3.085 0) (end -0.76 -2.325) (layer "F.Fab") (width 0.1) (tstamp 0da80547-655a-41b8-b641-e69fec0d4c5f))
(fp_arc (start 5.64 -2.325) (mid 7.965 0) (end 5.64 2.325) (layer "F.Fab") (width 0.1) (tstamp 2c043a85-75ef-4d1e-b207-347666fd53dd))
(fp_arc (start 5.44 -2) (mid 7.44 0) (end 5.44 2) (layer "F.Fab") (width 0.1) (tstamp 82831c82-92aa-4f85-a687-5900e654eac0))
(fp_arc (start -0.56 2) (mid -2.56 0) (end -0.56 -2) (layer "F.Fab") (width 0.1) (tstamp af348414-463b-4790-a891-ed55f202e4ff))
(pad "1" thru_hole circle locked (at 0 0) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "Net-(C2-Pad2)") (tstamp f4d0f7fe-08f9-4d50-9d34-da309e7c730d))
(pad "2" thru_hole circle locked (at 4.88 0) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "Net-(C1-Pad2)") (tstamp 71f567e3-8201-4b99-94d5-4377e65012aa))
(model "${KISYS3DMOD}/Crystals.3dshapes/Crystal_HC49-4H_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(footprint "Pin_Headers:Pin_Header_Straight_1x02_Pitch2.54mm" (layer "F.Cu")
(tedit 5B981182) (tstamp 00000000-0000-0000-0000-00005b9736ee)
(at 94.032 78.422)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(path "/00000000-0000-0000-0000-00005b978294")
(attr through_hole)
(fp_text reference "J7" (at 0 5.0165) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c9fbc88b-33d8-4016-9603-9f4022a8c541)
)
(fp_text value "Power" (at -4.191 1.3335) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6072c2cc-3469-4b58-ad2d-7ed358c5d5c7)
)
(fp_text user "${REFERENCE}" (at 0 1.27 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9536feff-f608-47f6-95b4-c5604169d38d)
)
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 0db4a14c-31f6-4ab3-87f0-d00e85b13088))
(fp_line (start -1.33 3.87) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp bb91def9-7fb8-4245-93e4-744d0d7a7ab8))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp f8e6d008-4c38-4fc8-b5d2-dbafe8dba295))
(fp_line (start -1.8 4.35) (end 1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 1ec5fa73-f2d7-47f5-b44c-05ae1fa2966b))
(fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 4dcee393-c4a3-4881-b9c8-96aa00bb2a7a))
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 50728aa7-041b-4c1d-a44d-7bb5a3e3aadd))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 7be6ea0b-7828-43d6-9647-08156273c8d2))
(fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 0cfa95e4-6df6-415b-938a-72ad21757e57))
(fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 15999c65-a1a6-4dbe-845f-7c9bbc7750a8))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 27da3670-d99d-447b-9fce-7c092a908343))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 695c76e6-3e7c-4367-89a5-1b12a28289b9))
(fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp f3b74dc4-bd7f-4264-a805-8776feb9ad79))
(pad "1" thru_hole rect locked (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 25 "Cas-GND") (tstamp 2e044c2c-db32-4e2f-8c28-94a61fb98a9c))
(pad "2" thru_hole oval locked (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 26 "Cas-5V") (tstamp c377b7ce-368e-4d22-975b-8848fc25c6c6))
(model "${KISYS3DMOD}/Pin_Headers.3dshapes/Pin_Header_Straight_1x02_Pitch2.54mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_SMD:R_0805_HandSoldering" (layer "F.Cu")
(tedit 58E0A804) (tstamp 00000000-0000-0000-0000-00005ba044fa)
(at 116.828 61.112 180)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path "/00000000-0000-0000-0000-00005a0e57f0")
(attr smd)
(fp_text reference "R5" (at -0.064 1.74 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 97e119c4-3084-4343-93db-ad4e414c291d)
)
(fp_text value "330" (at 0 1.75 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 97db34b9-de89-4c0b-87a8-f3a293210965)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 38165e25-a4d2-49ca-9743-37edf5b5e291)
)
(fp_line (start 0.6 0.88) (end -0.6 0.88) (layer "F.SilkS") (width 0.12) (tstamp 08c811df-f4fe-4d33-93e7-2274d223c2c7))
(fp_line (start -0.6 -0.88) (end 0.6 -0.88) (layer "F.SilkS") (width 0.12) (tstamp 4de9e75e-e822-4614-8d34-8d3ccdd0c5c4))
(fp_line (start -2.35 -0.9) (end 2.35 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp cd74361d-8be0-4761-9bf7-41d67fef46a4))
(fp_line (start 2.35 0.9) (end 2.35 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp f41879d4-9547-4f53-b520-a2f32b3a5637))
(fp_line (start 2.35 0.9) (end -2.35 0.9) (layer "F.CrtYd") (width 0.05) (tstamp f46d6a8a-f566-4942-a736-1e4c27d96b1c))
(fp_line (start -2.35 -0.9) (end -2.35 0.9) (layer "F.CrtYd") (width 0.05) (tstamp fba77450-344a-4214-8e10-c14a034ee2ba))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp 35d714f8-c92b-491a-a840-bf008b739763))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 45610ea4-4875-4300-99d8-af6547af9c61))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp b9b01996-1102-4e0b-9dba-7876667a73e0))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp ff152145-1bdf-4425-8611-365d8af581b8))
(pad "1" smd rect locked (at -1.35 0 180) (size 1.5 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 32 "/LED1") (tstamp c161715d-5711-470d-a39f-380f77390f70))
(pad "2" smd rect locked (at 1.35 0 180) (size 1.5 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 42 "Net-(R5-Pad2)") (tstamp 4a249c94-d11b-43d2-bf0d-93b20230b850))
(model "${KISYS3DMOD}/Resistors_SMD.3dshapes/R_0805.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LEDs:LED_0805_HandSoldering" (layer "F.Cu")
(tedit 595FCA25) (tstamp 00000000-0000-0000-0000-00005ba0452e)
(at 121.828 61.112 180)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path "/00000000-0000-0000-0000-00005a0e5a3a")
(attr smd)
(fp_text reference "D1" (at 0 -4.61 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1f8786e8-4d63-4914-96c5-b96015a312dd)
)
(fp_text value "red" (at 0 1.75 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d6f577f9-f6d4-44aa-8b56-030d3c4408cb)
)
(fp_line (start 1 0.75) (end -2.2 0.75) (layer "F.SilkS") (width 0.12) (tstamp 68ac6f49-f3b6-40bf-820b-e8c30095d80d))
(fp_line (start -2.2 -0.75) (end 1 -0.75) (layer "F.SilkS") (width 0.12) (tstamp b46bafd0-bd11-4512-9d62-1206ece32d5a))
(fp_line (start -2.2 -0.75) (end -2.2 0.75) (layer "F.SilkS") (width 0.12) (tstamp d8af527f-e7f3-4b7d-8d3a-7a65aa04f054))
(fp_line (start -2.35 -0.9) (end 2.35 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp 892a5c26-108e-4013-8501-b9c4f52ad4f2))
(fp_line (start -2.35 -0.9) (end -2.35 0.9) (layer "F.CrtYd") (width 0.05) (tstamp bbbfdc91-0167-4495-a9f1-92dc0bc61b3c))
(fp_line (start 2.35 0.9) (end -2.35 0.9) (layer "F.CrtYd") (width 0.05) (tstamp c3b32361-7f72-4f92-9898-a1e11db9a250))
(fp_line (start 2.35 0.9) (end 2.35 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp deb15da8-dbc1-4eaf-af26-b274699edbea))
(fp_line (start -0.4 0) (end 0.2 -0.4) (layer "F.Fab") (width 0.1) (tstamp 06f682fa-115f-4209-8ad5-120e7eece3cb))
(fp_line (start 0.2 -0.4) (end 0.2 0.4) (layer "F.Fab") (width 0.1) (tstamp 07284bd6-301d-4d13-9a8a-16df505c1df9))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp 0d5752ff-7c8e-442d-9f46-16b74586de92))
(fp_line (start 0.2 0.4) (end -0.4 0) (layer "F.Fab") (width 0.1) (tstamp 1609f219-a346-4e66-aa95-8c525803a106))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 30926228-31ec-4335-be35-818e5b766d26))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp 8e29283f-98b8-4e34-a83c-b48607e1a288))
(fp_line (start -0.4 -0.4) (end -0.4 0.4) (layer "F.Fab") (width 0.1) (tstamp 9f09e80a-e7a2-45e0-993e-d71425b790ed))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp d7b7396e-11c9-4b3c-a332-f747afbc628f))
(pad "1" smd rect locked (at -1.35 0 180) (size 1.5 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "Cas-GND") (tstamp fc3f71e2-e60c-4d55-8c92-08b610185609))
(pad "2" smd rect locked (at 1.35 0 180) (size 1.5 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 32 "/LED1") (tstamp 463de9b9-8c30-4e1c-9432-25af477d4c24))
(model "${KISYS3DMOD}/LEDs.3dshapes/LED_0805.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diodes_THT:D_DO-41_SOD81_P7.62mm_Horizontal" (layer "F.Cu")
(tedit 5B96E526) (tstamp 00000000-0000-0000-0000-00005ba04aef)
(at 135.688 78.168 180)
(descr "D, DO-41_SOD81 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf")
(tags "D DO-41_SOD81 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm")
(path "/00000000-0000-0000-0000-00005a0daf15")
(attr through_hole)
(fp_text reference "D3" (at 3.81 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0c8c0d30-5dee-4250-b8b6-57f0454154d0)
)
(fp_text value "1N5817" (at 3.81 2.41 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1c08deb9-0011-4088-90ef-9ad91fa4e0f1)
)
(fp_text user "${REFERENCE}" (at 3.81 0 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 258ad859-8895-4d0c-8bb8-e62cad627a8c)
)
(fp_line (start 1.15 1.28) (end 1.15 1.41) (layer "F.SilkS") (width 0.12) (tstamp 2fe8961f-c6e2-4892-8ba8-1f1420fcba06))
(fp_line (start 6.47 1.41) (end 6.47 1.28) (layer "F.SilkS") (width 0.12) (tstamp 3fb5ec1b-a81a-4486-8344-d5933efad56c))
(fp_line (start 1.99 -1.41) (end 1.99 1.41) (layer "F.SilkS") (width 0.12) (tstamp 885f14cf-63b3-430c-b33c-dcfd3b29e709))
(fp_line (start 1.15 -1.28) (end 1.15 -1.41) (layer "F.SilkS") (width 0.12) (tstamp 9d9022c6-71b3-4e6d-9e9d-19e329cb31cd))
(fp_line (start 1.15 -1.41) (end 6.47 -1.41) (layer "F.SilkS") (width 0.12) (tstamp 9f4c0f9e-dece-4772-bad9-3bf5bb7a87c5))
(fp_line (start 1.15 1.41) (end 6.47 1.41) (layer "F.SilkS") (width 0.12) (tstamp c735c4db-64b3-4abf-ac74-c2b38bb66276))
(fp_line (start 6.47 -1.41) (end 6.47 -1.28) (layer "F.SilkS") (width 0.12) (tstamp d63b3b3e-745d-41b5-915d-dea7b0b05a6f))
(fp_line (start -1.35 -1.7) (end -1.35 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 29c03bec-0c42-4df8-9c1b-710b2dd22213))
(fp_line (start 9 1.7) (end 9 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 4469af94-69c5-4cca-91c2-fd4961c4d4d2))
(fp_line (start -1.35 1.7) (end 9 1.7) (layer "F.CrtYd") (width 0.05) (tstamp a599605c-3af9-4083-91eb-618a3396006d))
(fp_line (start 9 -1.7) (end -1.35 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp c8e65d4d-0c12-424b-9655-8d78e156c363))
(fp_line (start 6.41 1.35) (end 6.41 -1.35) (layer "F.Fab") (width 0.1) (tstamp 1bff49eb-e64f-4c26-a6e6-eae953c74641))
(fp_line (start 0 0) (end 1.21 0) (layer "F.Fab") (width 0.1) (tstamp 3e73006e-4ec6-4d04-9346-e082fb09a89b))
(fp_line (start 6.41 -1.35) (end 1.21 -1.35) (layer "F.Fab") (width 0.1) (tstamp 7c856663-135f-4eeb-929c-a23d65f42900))
(fp_line (start 1.21 1.35) (end 6.41 1.35) (layer "F.Fab") (width 0.1) (tstamp 89237648-87c9-4e99-bfd8-ec5521996e41))
(fp_line (start 7.62 0) (end 6.41 0) (layer "F.Fab") (width 0.1) (tstamp a7570281-8a6f-42fd-a0b3-63065bf84571))
(fp_line (start 1.99 -1.35) (end 1.99 1.35) (layer "F.Fab") (width 0.1) (tstamp d04e36fc-8fbe-48a6-a1cf-f9a66d1a4786))
(fp_line (start 1.21 -1.35) (end 1.21 1.35) (layer "F.Fab") (width 0.1) (tstamp ef5c79bf-0af0-4df5-b8ad-e067eb3003cf))
(pad "1" thru_hole rect locked (at 0 0 180) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 4 "Net-(C4-Pad1)") (tstamp 33f6c2fd-8918-4b05-add7-97e196e8c67d))
(pad "2" thru_hole oval locked (at 7.62 0 180) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 26 "Cas-5V") (tstamp f071db55-2e05-4870-a628-44e5f2ed509c))
(model "${KISYS3DMOD}/Diodes_THT.3dshapes/D_DO-41_SOD81_P7.62mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(footprint "lib:Conn_uSDcard" (layer "F.Cu")
(tedit 5FF9E520) (tstamp 00000000-0000-0000-0000-00005ba111d5)
(at 137.466 67.754 90)
(path "/00000000-0000-0000-0000-00005b9b7c9e")
(attr through_hole)
(fp_text reference "XS1" (at 0 1 270) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 754f2725-2514-4049-9772-3594a61cca04)
)
(fp_text value "SD Connector" (at 0 0 270) (layer "F.Fab")
(effects (font (size 0.6 0.5) (thickness 0.1)))
(tstamp 4bd2c54c-3334-45c4-86e7-0c58044f2361)
)
(fp_text user "${REFERENCE}" (at 2.1 -9.35 270) (layer "Eco1.User")
(effects (font (size 0.3 0.3) (thickness 0.03)))
(tstamp 2a35e7df-c641-4d92-bac5-ee1067c5b94b)
)
(fp_line (start 2.05 -9.4) (end 2.05 -9.1) (layer "F.SilkS") (width 0.15) (tstamp 1746e3bf-1fe1-40db-adba-175c0e44af45))
(fp_line (start 7.35 -9) (end 7.35 -1.8) (layer "F.SilkS") (width 0.15) (tstamp 21b37112-dbf9-4a8f-a69d-ee358bbe0355))
(fp_line (start 2.35 -9.1) (end 2.35 -9.4) (layer "F.SilkS") (width 0.15) (tstamp 27783e56-bd4a-48fb-80f8-e4cd0160f378))
(fp_line (start 0 3.3) (end 1.35 3.35) (layer "F.SilkS") (width 0.15) (tstamp 38e262fa-4e12-49a8-a004-3739a7f17953))
(fp_line (start 2.8 -10) (end 2.8 -11.3) (layer "F.SilkS") (width 0.15) (tstamp 4186d93e-ee39-4bd2-b2e9-b952a2d322ea))
(fp_line (start 1.35 3.35) (end 2.5 3.5) (layer "F.SilkS") (width 0.15) (tstamp 54e86a18-02cc-42d4-8b40-328bf66ad7b1))
(fp_line (start 7.35 4) (end 7.35 1) (layer "F.SilkS") (width 0.15) (tstamp 67a99cac-78ac-4618-ae93-26e823d0a790))
(fp_line (start -7.35 1) (end -7.35 3.3) (layer "F.SilkS") (width 0.15) (tstamp 7c61de56-c71d-40bb-985d-f6bec9d00eca))
(fp_line (start 2.05 -9.1) (end 2.35 -9.1) (layer "F.SilkS") (width 0.15) (tstamp 823dfa9c-2fee-4f61-91e2-c7b2ec225d39))
(fp_line (start 3.6 3.7) (end 4.65 4) (layer "F.SilkS") (width 0.15) (tstamp 86d93afd-a2c2-421e-8091-b7eb33bf23be))
(fp_line (start -7.35 -1.8) (end -7.35 -9) (layer "F.SilkS") (width 0.15) (tstamp 98f1ac7d-7a11-4a6c-a537-b3720baca886))
(fp_line (start 4.65 4) (end 7.35 4) (layer "F.SilkS") (width 0.15) (tstamp a4e297a0-7363-400a-97ee-7b7ad48d7a7f))
(fp_line (start -7.35 3.3) (end 0 3.3) (layer "F.SilkS") (width 0.15) (tstamp ad4b4ee8-82a7-4bd0-9ca8-10bb86ceec3b))
(fp_line (start 2.5 3.5) (end 3.6 3.7) (layer "F.SilkS") (width 0.15) (tstamp b0edee2e-339e-43d8-9ef0-d8b3a40527c9))
(fp_line (start 2.8 -10) (end 5.8 -10) (layer "F.SilkS") (width 0.15) (tstamp d8179ec4-a899-4203-b3ca-ceded2ae45bd))
(fp_line (start 2.35 -9.4) (end 2.05 -9.4) (layer "F.SilkS") (width 0.15) (tstamp db86666e-2519-438b-85f5-2170b8692f2c))
(fp_line (start 5 4.5) (end 9 4.5) (layer "Cmts.User") (width 0.05) (tstamp 26c31a7b-17de-4547-967c-5314054b31f2))
(fp_line (start -6 3.5) (end 4 3.5) (layer "Cmts.User") (width 0.05) (tstamp 587591c9-a7d4-4f86-9590-a164ef4dd982))
(fp_line (start -7 4.5) (end -6 3.5) (layer "Cmts.User") (width 0.05) (tstamp 6524efaf-b640-4a63-aa3f-172723ce9f20))
(fp_line (start 4 3.5) (end 5 4.5) (layer "Cmts.User") (width 0.05) (tstamp 9a8e5a6c-e8b6-4612-8aa8-1e96ff977529))
(fp_line (start -9 4.5) (end -7 4.5) (layer "Cmts.User") (width 0.05) (tstamp f3e49de1-1fff-4de6-a36e-2d384dd83d1b))
(fp_line (start -8.75 -1.75) (end -7.75 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 032e90ea-8716-4048-ac2f-946c47777b26))
(fp_line (start 2.75 -10.25) (end 5.75 -10.25) (layer "F.CrtYd") (width 0.05) (tstamp 041ea934-6e95-4567-8e9c-3b798ae90e13))
(fp_line (start 7.75 -9) (end 7.75 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 18404a30-eb6b-4c69-b55f-0192f911262c))
(fp_line (start -8.75 -11) (end -7.25 -11) (layer "F.CrtYd") (width 0.05) (tstamp 1be014d3-caa8-4dac-b1d5-1c47f24cf293))
(fp_line (start 8.75 -1.75) (end 8.75 1) (layer "F.CrtYd") (width 0.05) (tstamp 2f71f0b1-f109-4707-80c9-e7be9be9f725))
(fp_line (start -7.75 -9) (end -8.75 -9) (layer "F.CrtYd") (width 0.05) (tstamp 31f77971-7106-45f8-bea6-f3e22ff3dffc))
(fp_line (start -7.25 -11.5) (end 2.75 -11.5) (layer "F.CrtYd") (width 0.05) (tstamp 46453e20-94ad-4623-8df5-1c2a28b341b5))
(fp_line (start -8.75 -9) (end -8.75 -11) (layer "F.CrtYd") (width 0.05) (tstamp 486e0b2b-cd30-4bba-84d1-dd4bc3c85e00))
(fp_line (start -7.25 -11) (end -7.25 -11.5) (layer "F.CrtYd") (width 0.05) (tstamp 57712458-3100-4971-a858-e8feec055333))
(fp_line (start 7.75 4.5) (end -7.75 4.5) (layer "F.CrtYd") (width 0.05) (tstamp 793f0471-c132-498e-8fe0-47f5824d0478))
(fp_line (start 2.75 -11.5) (end 2.75 -10.25) (layer "F.CrtYd") (width 0.05) (tstamp 79d05a87-8f29-419c-8675-ad0eb3b4d639))
(fp_line (start -7.75 -1.75) (end -7.75 -9) (layer "F.CrtYd") (width 0.05) (tstamp 919b68e9-7bf0-4182-aabf-278deed878b8))
(fp_line (start 7.75 -1.75) (end 8.75 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 97bb27ff-eb1e-40b5-a6c0-0a0248caffc0))
(fp_line (start -8.75 1) (end -8.75 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 9a881c32-2ad3-4d5d-9c32-5915e40ecf78))
(fp_line (start 7.75 1) (end 7.75 4.5) (layer "F.CrtYd") (width 0.05) (tstamp 9d1bd5f0-2b80-4e6c-8ccc-7db3e53db09b))
(fp_line (start 5.75 -10.25) (end 5.75 -11) (layer "F.CrtYd") (width 0.05) (tstamp a3a0a200-1cea-4acf-b0dc-d38401e87a11))
(fp_line (start 5.75 -11) (end 8 -11) (layer "F.CrtYd") (width 0.05) (tstamp ae62fca2-37c2-4c28-b0e0-8add47b23cbc))
(fp_line (start 8.75 1) (end 7.75 1) (layer "F.CrtYd") (width 0.05) (tstamp bc9b79be-53fd-46d4-9c72-95c35707c089))
(fp_line (start -7.75 1) (end -8.75 1) (layer "F.CrtYd") (width 0.05) (tstamp c5c9f8ab-754c-402f-ac67-055207b5f54f))
(fp_line (start 8 -9) (end 7.75 -9) (layer "F.CrtYd") (width 0.05) (tstamp c6407cd2-de97-4381-acc5-8d8f0712ceb3))
(fp_line (start -7.75 4.5) (end -7.75 1) (layer "F.CrtYd") (width 0.05) (tstamp cdc58082-6596-4aa8-a086-65b5feef8a84))
(fp_line (start 8 -11) (end 8 -9) (layer "F.CrtYd") (width 0.05) (tstamp ee048769-9967-4ddc-8621-73f09019bb1d))
(fp_line (start 7.35 -10) (end 7.35 4) (layer "F.Fab") (width 0.05) (tstamp 4198d771-bb1b-49ee-9467-5136d58fb464))
(fp_line (start -7.35 -10) (end -7.35 3.3) (layer "F.Fab") (width 0.05) (tstamp 49bb7448-aa58-49be-8a47-2f52c95d1bde))
(fp_line (start -7.35 -10) (end 7.35 -10) (layer "F.Fab") (width 0.05) (tstamp 4e34200e-6365-46e1-ba9d-e04e4cdc33c3))
(fp_line (start -6.55 8.6) (end -6.55 3.3) (layer "F.Fab") (width 0.05) (tstamp 899b9929-0c16-4380-938d-b55a03a25c2a))
(fp_line (start 0 3.3) (end 1.7 3.4) (layer "F.Fab") (width 0.05) (tstamp 95769419-8ee2-43e6-b6aa-c6ed9a1c4eb3))
(fp_line (start 4.65 8.6) (end 4.65 4) (layer "F.Fab") (width 0.05) (tstamp 9dff70b6-d4c1-45ec-9146-39b235ede220))
(fp_line (start 3.5 3.7) (end 4.7 4) (layer "F.Fab") (width 0.05) (tstamp aae92ee1-8111-44ab-8b92-2dd4edb6f309))
(fp_line (start 4.65 4) (end 7.35 4) (layer "F.Fab") (width 0.05) (tstamp b1375ff7-887a-4b10-8100-c9d9f36a02a1))
(fp_line (start -7.35 3.3) (end 0 3.3) (layer "F.Fab") (width 0.05) (tstamp c104891d-85cb-4c1d-9db1-70a180d67654))
(fp_line (start 7.35 -9.5) (end 6.85 -10) (layer "F.Fab") (width 0.05) (tstamp c52b065c-5d2b-4b71-8391-dc609227f3ad))
(fp_line (start 1.7 3.4) (end 3.5 3.7) (layer "F.Fab") (width 0.05) (tstamp d0014d00-f64d-4af3-a015-2a4b3df4d026))
(fp_line (start -5.85 9.3) (end 3.95 9.3) (layer "F.Fab") (width 0.05) (tstamp e1f89b31-d2a1-4261-8e30-8aa2e54c5bea))
(fp_arc (start -5.85 9.3) (mid -6.344975 9.094975) (end -6.55 8.6) (layer "F.Fab") (width 0.05) (tstamp 40951256-904d-4c91-80ca-c8795ced749d))
(fp_arc (start 4.65 8.6) (mid 4.444975 9.094975) (end 3.95 9.3) (layer "F.Fab") (width 0.05) (tstamp af95a7cc-9ca8-4c05-a8b6-58889e97e453))
(pad "" np_thru_hole circle locked (at 3.05 0 90) (size 1 1) (drill 1) (layers *.Cu) (tstamp a22c9f59-9c19-449e-9c18-db10c99f0965))
(pad "" np_thru_hole circle locked (at -4.93 0 90) (size 1 1) (drill 1) (layers *.Cu) (tstamp ada20476-4cec-4f48-8c64-406d6648b533))
(pad "1" smd rect locked (at 2.2 -10.5 90) (size 0.7 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "Cas-GND") (tstamp 09ebd038-47b6-4375-9a66-4b643b39f1f1))
(pad "2" smd rect locked (at 1.1 -10.5 90) (size 0.7 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 44 "Net-(U1-Pad44)") (tstamp 02ce40d0-c9e1-45a5-8100-71e0e0150150))
(pad "3" smd rect locked (at 0 -10.5 90) (size 0.7 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "MOSI") (tstamp 17c3140e-e817-4894-a9a0-ac7bbf6967c4))
(pad "4" smd rect locked (at -1.1 -10.5 90) (size 0.7 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "Net-(C3-Pad1)") (tstamp a279171c-36c8-4b43-8081-515bbb226d2d))
(pad "5" smd rect locked (at -2.2 -10.5 90) (size 0.7 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "SCK") (tstamp 06c1acda-79f3-4577-b50e-129e57a28811))
(pad "6" smd rect locked (at -7.75 -0.4 90) (size 1.2 2.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "Cas-GND") (tstamp 1d7f0467-2a97-4165-85d7-c87021033638))
(pad "6" smd rect locked (at 7.75 -0.4 90) (size 1.2 2.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "Cas-GND") (tstamp 7b510786-b07d-4bd4-8d0f-d20b0c2d9554))
(pad "6" smd rect locked (at -3.3 -10.5 90) (size 0.7 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "Cas-GND") (tstamp 93c84f15-4abb-4fcf-b454-2a04f50cb8d3))
(pad "6" smd rect locked (at 6.85 -10 90) (size 1.6 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "Cas-GND") (tstamp ba5320da-b8a0-464a-a7c9-e3d3934f4c37))
(pad "6" smd rect locked (at -7.75 -10 90) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "Cas-GND") (tstamp c313eb52-86f2-42cf-bf2a-ca1d17fe32aa))
(pad "7" smd rect locked (at -4.4 -10.5 90) (size 0.7 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "MISO") (tstamp 97fbc775-a7b7-4430-882c-08b2fb7b0f48))
(pad "8" smd rect locked (at -5.5 -10.5 90) (size 0.7 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "Cas-GND") (tstamp 068e9fa3-069f-4c18-8afa-219644bb02cd))
(pad "9" smd rect locked (at -6.6 -10.5 90) (size 0.7 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 43 "Net-(U1-Pad11)") (tstamp 78e57647-51b3-4575-8f84-d375aff0b6e5))
(model "${KIPRJMOD}/lib/GCT-MEM2055-00-190-01-A.wrl"
(offset (xyz 0 11.35 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 180))
)
)
(footprint "Logo:bigby2" (layer "F.Cu")
(tedit 5B9811B3) (tstamp 00000000-0000-0000-0000-00005ba16110)
(at 96.445 87.312)
(attr through_hole)
(fp_text reference "G***" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.524 1.524) (thickness 0.3)))
(tstamp d6d3d25c-9bc5-485e-b0fd-4785358c3550)
)
(fp_text value "LOGO" (at 0.75 0) (layer "F.SilkS") hide
(effects (font (size 1.524 1.524) (thickness 0.3)))
(tstamp 0722507f-7b86-4b43-8b0b-f8758e9ee59e)
)
(fp_poly (pts
(xy -0.011485 -1.728467)
(xy 0.113732 -1.717124)
(xy 0.194843 -1.687923)
(xy 0.241542 -1.632439)
(xy 0.263521 -1.542246)
(xy 0.270474 -1.408921)
(xy 0.271308 -1.328994)
(xy 0.273257 -1.04049)
(xy 0.168379 -0.956808)
(xy 0.105032 -0.892095)
(xy 0.067481 -0.826879)
(xy 0.062385 -0.77734)
(xy 0.087312 -0.759744)
(xy 0.127711 -0.756134)
(xy 0.215607 -0.74839)
(xy 0.335236 -0.737898)
(xy 0.394892 -0.732679)
(xy 0.531508 -0.719487)
(xy 0.621502 -0.704831)
(xy 0.681588 -0.682684)
(xy 0.728481 -0.647018)
(xy 0.775892 -0.595287)
(xy 0.854874 -0.518356)
(xy 0.944952 -0.451548)
(xy 1.029404 -0.405121)
(xy 1.09151 -0.389332)
(xy 1.105316 -0.393209)
(xy 1.115338 -0.429014)
(xy 1.124376 -0.514977)
(xy 1.131371 -0.637757)
(xy 1.13502 -0.76718)
(xy 1.139106 -0.928835)
(xy 1.146403 -1.038611)
(xy 1.158673 -1.108111)
(xy 1.177674 -1.14894)
(xy 1.195579 -1.166425)
(xy 1.29101 -1.202114)
(xy 1.400648 -1.196807)
(xy 1.475118 -1.16372)
(xy 1.488952 -1.150785)
(xy 1.500416 -1.130319)
(xy 1.509731 -1.096728)
(xy 1.517116 -1.04442)
(xy 1.522788 -0.9678)
(xy 1.526969 -0.861275)
(xy 1.529876 -0.71925)
(xy 1.531729 -0.536133)
(xy 1.532746 -0.306329)
(xy 1.533148 -0.024245)
(xy 1.533153 0.315712)
(xy 1.533153 0.317844)
(xy 1.532922 0.658253)
(xy 1.532326 0.940751)
(xy 1.531144 1.170927)
(xy 1.529156 1.354371)
(xy 1.52614 1.496672)
(xy 1.521875 1.603419)
(xy 1.516141 1.680201)
(xy 1.508718 1.732606)
(xy 1.499384 1.766226)
(xy 1.487919 1.786647)
(xy 1.474647 1.799064)
(xy 1.376472 1.836684)
(xy 1.265456 1.831892)
(xy 1.193094 1.799607)
(xy 1.175112 1.781995)
(xy 1.1613 1.753588)
(xy 1.151101 1.706603)
(xy 1.14396 1.633257)
(xy 1.139323 1.525767)
(xy 1.136633 1.37635)
(xy 1.135335 1.177223)
(xy 1.134934 0.984675)
(xy 1.134065 0.211637)
(xy 0.979782 0.062148)
(xy 0.901816 -0.017658)
(xy 0.846345 -0.082572)
(xy 0.825499 -0.118224)
(xy 0.799146 -0.148761)
(xy 0.732681 -0.189721)
(xy 0.696557 -0.207251)
(xy 0.613805 -0.241662)
(xy 0.55975 -0.248672)
(xy 0.505771 -0.22821)
(xy 0.468235 -0.206692)
(xy 0.396192 -0.15478)
(xy 0.300546 -0.073678)
(xy 0.201272 0.019618)
(xy 0.19561 0.025259)
(xy 0.022365 0.198504)
(xy 0.14612 0.3024)
(xy 0.221538 0.372494)
(xy 0.258266 0.434497)
(xy 0.270015 0.516179)
(xy 0.270766 0.55481)
(xy 0.276486 0.647599)
(xy 0.301118 0.711947)
(xy 0.35795 0.773886)
(xy 0.401734 0.811372)
(xy 0.531811 0.919421)
(xy 0.518782 1.176497)
(xy 0.505754 1.433573)
(xy 0.798146 1.702035)
(xy 0.735253 1.779705)
(xy 0.694397 1.821324)
(xy 0.644378 1.844797)