-
Notifications
You must be signed in to change notification settings - Fork 1
/
FLASH_23C1000_DIP28.kicad_pcb
18971 lines (18956 loc) · 687 KB
/
FLASH_23C1000_DIP28.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "USLetter")
(title_block
(title "29F010 to 23C1000 DIP28")
(date "2023-07-04")
(rev "007")
(company "Brian K. White - [email protected]")
(comment 1 "github.com/bkw777/aDIPters")
)
(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)
(allow_soldermask_bridges_in_footprints yes)
(grid_origin 150.025 98.75)
(pcbplotparams
(layerselection 0x00010f0_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 6)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "GERBER_${TITLE}_${REVISION}")
)
)
(net 0 "")
(net 1 "/A14")
(net 2 "/D2")
(net 3 "/A13")
(net 4 "/D1")
(net 5 "/A8")
(net 6 "/D0")
(net 7 "/A9")
(net 8 "/A0")
(net 9 "/A11")
(net 10 "/A1")
(net 11 "/~{OE}")
(net 12 "/A2")
(net 13 "/A10")
(net 14 "/A3")
(net 15 "/~{CE}")
(net 16 "/A4")
(net 17 "/D7")
(net 18 "/A5")
(net 19 "/D6")
(net 20 "/A6")
(net 21 "/D5")
(net 22 "/A7")
(net 23 "/D4")
(net 24 "/A12")
(net 25 "/D3")
(net 26 "/~{WE}")
(net 27 "/A16")
(net 28 "/A15")
(net 29 "/A16_OE")
(net 30 "GND")
(net 31 "VCC")
(net 32 "unconnected-(U1-NC-Pad9)")
(net 33 "unconnected-(U2-NC-Pad1)")
(footprint "000_LOCAL:TSOP32-dual" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005e5d81c3)
(at 148.725 98.75)
(descr "Module CMS TSOP 32 pins")
(tags "CMS TSOP")
(property "Sheetfile" "FLASH_23C1000_DIP28.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Silicon Storage Technology (SSF) 128k x 8 Flash ROM")
(property "ki_keywords" "128k flash rom")
(path "/00000000-0000-0000-0000-00005e5d9957")
(attr smd)
(fp_text reference "U1" (at -8.45 -1.4 90 unlocked) (layer "F.SilkS") hide
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp 46e37025-4da7-430a-a2fd-213942e8003e)
)
(fp_text value "29F010 TSOP-32" (at -3 1.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.1)))
(tstamp 4f92ea2d-8aad-42fb-a832-e68256b08b0c)
)
(fp_line (start -10.25 -4.15) (end -9.175 -4.15)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8a637080-9993-4819-a640-fda883367276))
(fp_line (start -9.175 -4.15) (end -9.175 4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 58dc2f03-027b-421d-8eb1-746e03ee3ea1))
(fp_line (start 3.175 -4) (end -9.175 -4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 29a97d6d-32e7-48d4-bcde-3c40f579a9bb))
(fp_line (start 3.175 4) (end -9.175 4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp af750b2b-c720-4556-bf13-269fc21ce49e))
(fp_line (start 3.175 4) (end 3.175 -4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1f77df16-537d-4845-925b-c3489bd78c59))
(fp_line (start 9.175 -4) (end 5 -4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9e839254-31b9-47b4-9e75-e820a350f189))
(fp_line (start 9.175 4) (end 5 4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9b51e147-e100-47aa-bfbc-4d5bf5dd45f4))
(fp_line (start 9.175 4) (end 9.175 -4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp af2350e7-7b98-45f1-8b66-d6849043182c))
(fp_circle (center -8.05 -3) (end -8.05 -2.75)
(stroke (width 0.5) (type solid)) (fill none) (layer "F.SilkS") (tstamp 28784f45-e83f-40a8-a848-2de86afa8304))
(fp_line (start -10.55 -4.25) (end -10.55 4.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 66f8035d-522b-41d0-bf3a-28a6ea71aaf8))
(fp_line (start -10.55 4.25) (end 10.55 4.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3ddb5036-b870-43de-ae94-551616cc08d7))
(fp_line (start 10.55 -4.25) (end -10.55 -4.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dc3d99ac-2c70-4df6-b9ba-34be1ae1674c))
(fp_line (start 10.55 4.25) (end 10.55 -4.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 037e11cc-5230-45bb-9cbb-17b73023d88f))
(pad "1" smd roundrect (at -9.85 -3.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "/A11") (pinfunction "A11") (pintype "input") (tstamp d4b914cf-db3d-4e4c-b159-69c474d5543a))
(pad "2" smd roundrect (at -9.85 -3.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "/A9") (pinfunction "A9") (pintype "input") (tstamp 1b492037-976b-41ef-b9a6-4d17d87cbb0c))
(pad "3" smd roundrect (at -9.85 -2.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "/A8") (pinfunction "A8") (pintype "input") (tstamp b2dab9aa-0a91-4ea4-9fa2-03bf8050d7b7))
(pad "4" smd roundrect (at -9.85 -2.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "/A13") (pinfunction "A13") (pintype "input") (tstamp 97ac07d8-d047-4d62-9926-4567e42db40c))
(pad "5" smd roundrect (at -9.85 -1.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "/A14") (pinfunction "A14") (pintype "input") (tstamp 2888ca8c-0fdc-450f-8ab6-40df6be8b377))
(pad "6" smd roundrect (at -9.85 -1.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "GND") (pinfunction "NC") (pintype "passive") (tstamp e7ec42b9-cf8d-4aa6-9ca9-7998a63806f4))
(pad "7" smd roundrect (at -9.85 -0.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "/~{WE}") (pinfunction "~{WE}") (pintype "input") (tstamp 5b384c23-75b0-408e-a8cd-8917282fa8c0))
(pad "8" smd roundrect (at -9.85 -0.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "VCC") (pinfunction "VDD") (pintype "power_in") (tstamp 3a4a5616-b5f3-475d-89d8-3d7d065496dc))
(pad "9" smd roundrect (at -9.85 0.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 32 "unconnected-(U1-NC-Pad9)") (pinfunction "NC") (pintype "passive+no_connect") (tstamp a08771fb-0a07-4ff2-a514-40d4cebb09c8))
(pad "10" smd roundrect (at -9.85 0.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "/A16") (pinfunction "A16") (pintype "input") (tstamp f4c301ea-fa1e-4e3d-93a9-8c96c9957dc3))
(pad "11" smd roundrect (at -9.85 1.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "/A15") (pinfunction "A15") (pintype "input") (tstamp bda8bc04-a19f-4d19-818c-a29500774113))
(pad "12" smd roundrect (at -9.85 1.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "/A12") (pinfunction "A12") (pintype "input") (tstamp cbc134cb-f3e0-4192-a5e6-60945a41ad5f))
(pad "13" smd roundrect (at -9.85 2.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "/A7") (pinfunction "A7") (pintype "input") (tstamp 3fab6648-49b0-4f07-ac96-6dc2bc361c91))
(pad "14" smd roundrect (at -9.85 2.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "/A6") (pinfunction "A6") (pintype "input") (tstamp bfe667b5-18b3-4443-a828-76d3688fcd50))
(pad "15" smd roundrect (at -9.85 3.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "/A5") (pinfunction "A5") (pintype "input") (tstamp f3006117-77e8-4bd4-9d70-740a3dac46d4))
(pad "16" smd roundrect (at -9.85 3.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "/A4") (pinfunction "A4") (pintype "input") (tstamp ff8d2a3b-397e-464c-8e7e-73dd0cd2a717))
(pad "17" smd roundrect (at 3.85 3.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "/A3") (pinfunction "A3") (pintype "input") (tstamp c55b9b3d-2dfd-458c-b371-5b3c992becae))
(pad "17" smd roundrect (at 9.85 3.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "/A3") (pinfunction "A3") (pintype "input") (tstamp 98d5c750-9d85-490e-8d85-255c70f57f09))
(pad "18" smd roundrect (at 3.85 3.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "/A2") (pinfunction "A2") (pintype "input") (tstamp 04e52989-6fbc-4861-9599-392a80d9093b))
(pad "18" smd roundrect (at 9.85 3.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "/A2") (pinfunction "A2") (pintype "input") (tstamp 975f685a-02bf-4dbd-8f43-cde80a07b3d4))
(pad "19" smd roundrect (at 3.85 2.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "/A1") (pinfunction "A1") (pintype "input") (tstamp fb96f5cf-38bb-4d2b-b610-6b09ba73f8e1))
(pad "19" smd roundrect (at 9.85 2.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "/A1") (pinfunction "A1") (pintype "input") (tstamp d722c40d-597c-401b-9ab8-cb86793dd9d7))
(pad "20" smd roundrect (at 3.85 2.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "/A0") (pinfunction "A0") (pintype "input") (tstamp e0a0565d-6d2a-4fb7-898e-be44a8d9aa1c))
(pad "20" smd roundrect (at 9.85 2.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "/A0") (pinfunction "A0") (pintype "input") (tstamp 3f186792-d616-4dc7-9a37-fb6ca0452400))
(pad "21" smd roundrect (at 3.85 1.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/D0") (pinfunction "DQ0") (pintype "tri_state") (tstamp afea7c70-fd9a-4bb6-9376-0a387c2c7529))
(pad "21" smd roundrect (at 9.85 1.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/D0") (pinfunction "DQ0") (pintype "tri_state") (tstamp 9e68a93d-2192-4571-aebc-8f18f9430f49))
(pad "22" smd roundrect (at 3.85 1.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/D1") (pinfunction "DQ1") (pintype "tri_state") (tstamp 74831556-249d-43ca-a6e7-c685dc2175b6))
(pad "22" smd roundrect (at 9.85 1.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/D1") (pinfunction "DQ1") (pintype "tri_state") (tstamp e6e4818d-5a74-4e41-85a2-b1cfd2e3c76c))
(pad "23" smd roundrect (at 3.85 0.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "/D2") (pinfunction "DQ2") (pintype "tri_state") (tstamp 3edd368c-12a2-4af2-8396-ac95649a7f8e))
(pad "23" smd roundrect (at 9.85 0.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "/D2") (pinfunction "DQ2") (pintype "tri_state") (tstamp 93b35c85-2f15-4c01-9680-d33e6adcaf9a))
(pad "24" smd roundrect (at 3.85 0.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp df4c8722-54bc-44ce-b618-1a65d23708a3))
(pad "24" smd roundrect (at 9.85 0.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 42948bc5-679c-45cc-943a-1457c25fd10e))
(pad "25" smd roundrect (at 3.85 -0.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "/D3") (pinfunction "DQ3") (pintype "tri_state") (tstamp 9af44b0c-0af4-40c0-b374-4e8e628a63ba))
(pad "25" smd roundrect (at 9.85 -0.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "/D3") (pinfunction "DQ3") (pintype "tri_state") (tstamp a97cec7a-9f9c-44be-b6dd-dc20252035b4))
(pad "26" smd roundrect (at 3.85 -0.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "/D4") (pinfunction "DQ4") (pintype "tri_state") (tstamp e39ba785-e0cd-467f-843d-263d02eced08))
(pad "26" smd roundrect (at 9.85 -0.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "/D4") (pinfunction "DQ4") (pintype "tri_state") (tstamp ea9e79a4-f0ab-495c-9763-aaf1a92bce7f))
(pad "27" smd roundrect (at 3.85 -1.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "/D5") (pinfunction "DQ5") (pintype "tri_state") (tstamp d4ef5050-dd03-4fa5-8ed6-3ad1a66a7950))
(pad "27" smd roundrect (at 9.85 -1.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "/D5") (pinfunction "DQ5") (pintype "tri_state") (tstamp 379cd9d2-ba87-41de-942f-bea0da26c87c))
(pad "28" smd roundrect (at 3.85 -1.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "/D6") (pinfunction "DQ6") (pintype "tri_state") (tstamp 9991599d-312b-4828-847d-c885314b5799))
(pad "28" smd roundrect (at 9.85 -1.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "/D6") (pinfunction "DQ6") (pintype "tri_state") (tstamp 1d2c4807-9faa-49a4-81f0-5728e193d491))
(pad "29" smd roundrect (at 3.85 -2.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "/D7") (pinfunction "DQ7") (pintype "tri_state") (tstamp dec57645-c60e-4b85-ad1b-f092e4572b0e))
(pad "29" smd roundrect (at 9.85 -2.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "/D7") (pinfunction "DQ7") (pintype "tri_state") (tstamp 0ad930fb-9278-4cd4-9760-a880bcb647c5))
(pad "30" smd roundrect (at 3.85 -2.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "/~{CE}") (pinfunction "~{CE}") (pintype "input") (tstamp 89541da2-65c9-4ffa-8c09-e4446b246dfa))
(pad "30" smd roundrect (at 9.85 -2.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "/~{CE}") (pinfunction "~{CE}") (pintype "input") (tstamp f3a7c471-891a-4e53-a269-047a8c4984e9))
(pad "31" smd roundrect (at 3.85 -3.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "/A10") (pinfunction "A10") (pintype "input") (tstamp 8c04ae65-e304-46df-baa4-093b89243c6f))
(pad "31" smd roundrect (at 9.85 -3.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "/A10") (pinfunction "A10") (pintype "input") (tstamp 95668039-38b9-48ac-8657-88a479052372))
(pad "32" smd roundrect (at 3.85 -3.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "/~{OE}") (pinfunction "~{OE}") (pintype "input") (tstamp a205baa4-aba9-4f13-9fea-3802382a1190))
(pad "32" smd roundrect (at 9.85 -3.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "/~{OE}") (pinfunction "~{OE}") (pintype "input") (tstamp 5f13cfba-876f-4e2e-bfba-1d03cb50c54c))
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/TSOP32_8x14.step"
(offset (xyz -3 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/TSOP32_8X20.step" hide
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "000_LOCAL:Pin_Header_Angled_1x02_Pitch2.54mm_shorted" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005e606307)
(at 136.69 93.035 -90)
(descr "Through hole angled pin header, 1x02, 2.54mm pitch, 6mm pin length, single row")
(tags "Through hole angled pin header THT 1x02 2.54mm single row")
(property "Sheetfile" "FLASH_23C1000_DIP28.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Jumper, 2-pole, closed/bridged")
(property "ki_keywords" "Jumper SPST")
(path "/00000000-0000-0000-0000-00005e685dd0")
(attr through_hole)
(fp_text reference "J2" (at 4.385 -2.27 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e7475186-a3e2-4f4b-ac38-eb7bb645fa90)
)
(fp_text value "Conn_1x2" (at 4.385 4.81 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3b53ed6f-2140-4881-b21a-ed1244f14e00)
)
(fp_text user "${REFERENCE}" (at 2.77 1.27) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f79fcefe-2086-4cb4-a350-6fcd0a399d70)
)
(fp_line (start 1.042929 2.16) (end 1.44 2.16)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 336f7d64-55d7-4154-8e28-7949b57d4baa))
(fp_line (start 1.042929 2.92) (end 1.44 2.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 495ec4f3-7198-4a93-a58b-8888f9bca9c3))
(fp_line (start 1.11 -0.38) (end 1.44 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2a20e27a-cd6c-48cc-9add-ad22fa3bfc3e))
(fp_line (start 1.11 0.38) (end 1.44 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6342f75c-e3ff-4fd9-bf5e-f9c4b357c9c2))
(fp_line (start 1.44 -1.33) (end 1.44 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 78816b5f-8b10-486b-a6e1-56b6bbcb4d34))
(fp_line (start 1.44 1.27) (end 4.1 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 664bd736-a0ab-4930-8a12-73822b13b403))
(fp_line (start 1.44 3.87) (end 4.1 3.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 696ed27f-425e-4b2a-97a0-0d2e540245a5))
(fp_line (start 4.1 -1.33) (end 1.44 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ba03938d-4c2a-48fc-91a7-43c690f8cfc5))
(fp_line (start 4.1 -0.38) (end 10.1 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5cac79ad-ab0d-4b1b-8bbe-49df73fcb9df))
(fp_line (start 4.1 2.16) (end 10.1 2.16)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 31ebed58-a539-4a28-9f8a-996e087f5ea0))
(fp_line (start 4.1 3.87) (end 4.1 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1014aa4b-8624-49da-8f90-ed5fa9c82174))
(fp_line (start 10.1 -0.38) (end 10.1 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1a30966e-4ef1-4d96-9616-cd6bc2ed50a6))
(fp_line (start 10.1 0.38) (end 4.1 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 98cf9d48-f23a-485e-bf25-34ed1797a654))
(fp_line (start 10.1 2.16) (end 10.1 2.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3e259b27-14f5-4802-b19a-2f717630baf4))
(fp_line (start 10.1 2.92) (end 4.1 2.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a98ed6aa-ad3b-40c2-96bb-046ba482e9c6))
(fp_line (start -1.8 -1.8) (end -1.8 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 90693099-8147-4cf9-a385-5f62f15a1033))
(fp_line (start -1.8 4.35) (end 10.55 4.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 53922fbb-4ffb-44d8-82c5-91344ea32bb4))
(fp_line (start 10.55 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ba91e777-e635-4d48-b54d-ce0b61b5897c))
(fp_line (start 10.55 4.35) (end 10.55 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 54019463-4942-480e-87fb-fc9ff0460542))
(fp_line (start -0.32 -0.32) (end -0.32 0.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp db1292c4-b9e9-445b-b947-b18aa0a40be3))
(fp_line (start -0.32 -0.32) (end 1.5 -0.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f994cca7-ee62-4ff8-b1aa-9927b6df4cbd))
(fp_line (start -0.32 0.32) (end 1.5 0.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 83e819c5-9bb5-44b7-8e61-730e43834ebd))
(fp_line (start -0.32 2.22) (end -0.32 2.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e9ab72b1-12ab-4538-acdb-3c6d22156408))
(fp_line (start -0.32 2.22) (end 1.5 2.22)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8a740018-2ce0-443d-b842-639a6ed536f4))
(fp_line (start -0.32 2.86) (end 1.5 2.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1b839aab-b6de-422a-ae73-f0f6e5f1b98b))
(fp_line (start 1.5 -0.635) (end 2.135 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 40f36242-baf7-48fc-a25d-75651c446cf3))
(fp_line (start 1.5 3.81) (end 1.5 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 163fdd25-b1b3-41d1-b472-eb0b185c5872))
(fp_line (start 2.135 -1.27) (end 4.04 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 529c7c71-ec25-49f4-a9ea-b1ad8df6c2b2))
(fp_line (start 4.04 -1.27) (end 4.04 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d0965209-6f3d-4816-af8f-f87cb89c3320))
(fp_line (start 4.04 -0.32) (end 10.04 -0.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 92af4952-b10f-4988-a851-074a26052a2d))
(fp_line (start 4.04 0.32) (end 10.04 0.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 39f27853-c0f5-4961-b098-1dea7ef53994))
(fp_line (start 4.04 2.22) (end 10.04 2.22)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 55223c1c-36c9-4c2f-b51b-22b73431661c))
(fp_line (start 4.04 2.86) (end 10.04 2.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7f04bcb1-9970-47c6-83a9-5f6c739be0d7))
(fp_line (start 4.04 3.81) (end 1.5 3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4c436691-0ff3-4876-a78e-f1ec11167b0b))
(fp_line (start 10.04 -0.32) (end 10.04 0.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 66ef7f77-192b-4fa5-b64f-900ff737c7a9))
(fp_line (start 10.04 2.22) (end 10.04 2.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 59734423-a8ca-4f1c-9dcb-9387071bc6d7))
(pad "1" thru_hole circle (at 0 0 270) (size 1.397 1.397) (drill 0.9144) (layers "*.Cu" "*.Mask")
(net 26 "/~{WE}") (pinfunction "A") (pintype "passive") (tstamp 3937095c-d557-4e3a-beda-bf402241cd60))
(pad "2" thru_hole circle (at 0 2.54 270) (size 1.397 1.397) (drill 0.9144) (layers "*.Cu" "*.Mask")
(net 31 "VCC") (pinfunction "B") (pintype "passive") (tstamp 26ba4fe5-300f-40ec-a990-eb58f15f3c4f))
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/PinHeader_1x02_P2.54mm_Horizontal.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/Jumper.stp"
(offset (xyz 4.064 -3.7719 0.0762))
(scale (xyz 1 1 1))
(rotate (xyz -90 -90 0))
)
)
(footprint "000_LOCAL:DIP-28_600_pcb_shallow_notch" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005e6197d1)
(at 150.025 98.75 90)
(descr "28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils)")
(tags "THT DIP DIL PDIP 2.54mm 15.24mm 600mil")
(property "Sheetfile" "FLASH_23C1000_DIP28.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "NEC Mask ROM 1MBit")
(property "ki_keywords" "Mask ROM 1MBit")
(path "/00000000-0000-0000-0000-00005e5c209e")
(attr through_hole)
(fp_text reference "J1" (at 0 -18.84 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9ac833c8-1ba4-4614-995f-f8b392e4f287)
)
(fp_text value "23C1000" (at 0 18.84 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 13d2cdd3-b00f-4c53-b5cc-96560bc7624a)
)
(fp_text user "LEGS: TE-1544210 / MillMax 3121 / Keystone 1378" (at 6.35 0 unlocked) (layer "Dwgs.User")
(effects (font (size 0.6 0.6) (thickness 0.05)))
(tstamp 3d943643-5021-4e11-b2c9-752b57981907)
)
(fp_text user "or gold-filled half-hard 26awg brass wire" (at 5.3975 0 unlocked) (layer "Dwgs.User")
(effects (font (size 0.6 0.6) (thickness 0.05)))
(tstamp aeee3cd0-deaa-4314-88c6-3bbddc55ee98)
)
(fp_text user "${REFERENCE}" (at 0.27 3.12 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8f2752d2-b83d-4f2c-9424-e76e82f71b39)
)
(fp_line (start -8.89 17.145) (end -8.89 -17.145)
(stroke (width 0.0254) (type solid)) (layer "Edge.Cuts") (tstamp 17182696-641e-49e5-966a-8ef057cda25d))
(fp_line (start -8.255 -17.78) (end -1.524 -17.78)
(stroke (width 0.0254) (type solid)) (layer "Edge.Cuts") (tstamp 0b4d65de-84aa-4139-952f-01d33406d984))
(fp_line (start 1.524 -17.78) (end 8.255 -17.78)
(stroke (width 0.0254) (type solid)) (layer "Edge.Cuts") (tstamp cf162061-22ec-430e-b269-56f6e8840333))
(fp_line (start 8.255 17.78) (end -8.255 17.78)
(stroke (width 0.0254) (type solid)) (layer "Edge.Cuts") (tstamp e2ebfa78-0920-4b80-87bd-34b105b65adc))
(fp_line (start 8.89 -17.145) (end 8.89 17.145)
(stroke (width 0.0254) (type solid)) (layer "Edge.Cuts") (tstamp 75727397-4942-4152-b888-615b655dbc8b))
(fp_arc (start -8.89 -17.145) (mid -8.704013 -17.594013) (end -8.255 -17.78)
(stroke (width 0.0254) (type solid)) (layer "Edge.Cuts") (tstamp c753369d-d719-49ba-8d5e-3d588f8bb989))
(fp_arc (start -8.255 17.78) (mid -8.704013 17.594013) (end -8.89 17.145)
(stroke (width 0.0254) (type solid)) (layer "Edge.Cuts") (tstamp 31fd85d0-a9e2-42ad-91d3-fdf626b78ed8))
(fp_arc (start -1.524 -17.78) (mid -1.426799 -17.760665) (end -1.344395 -17.705605)
(stroke (width 0.0254) (type default)) (layer "Edge.Cuts") (tstamp a3ba71d6-ff2f-4678-8c50-91442ec2938b))
(fp_arc (start 1.344395 -17.705605) (mid 0 -17.015057) (end -1.344395 -17.705605)
(stroke (width 0.0254) (type default)) (layer "Edge.Cuts") (tstamp d087f43a-537a-44c6-a779-bb10cb8d6fbb))
(fp_arc (start 1.344395 -17.705605) (mid 1.426798 -17.760665) (end 1.524 -17.78)
(stroke (width 0.0254) (type default)) (layer "Edge.Cuts") (tstamp 2a8ebc68-76ce-4fab-b266-3852b487b3c8))
(fp_arc (start 8.255 -17.78) (mid 8.704013 -17.594013) (end 8.89 -17.145)
(stroke (width 0.0254) (type solid)) (layer "Edge.Cuts") (tstamp f6182831-1846-40ba-999f-1523fa07c9c6))
(fp_arc (start 8.89 17.145) (mid 8.704013 17.594013) (end 8.255 17.78)
(stroke (width 0.0254) (type solid)) (layer "Edge.Cuts") (tstamp 4c5d806b-7eea-4112-bc7d-736c6795d40e))
(pad "1" thru_hole roundrect (at -7.62 -16.51 90) (size 1 1) (drill 0.6) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.1)
(net 28 "/A15") (pinfunction "A15") (pintype "input") (tstamp 4f2fa799-7ecc-492c-97d2-02a2d64e6366))
(pad "2" thru_hole circle (at -7.62 -13.97 90) (size 1 1) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 24 "/A12") (pinfunction "A12") (pintype "input") (tstamp 7ecef00b-6675-4f8d-847a-297a39b28141))
(pad "3" thru_hole circle (at -7.62 -11.43 90) (size 1 1) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 22 "/A7") (pinfunction "A7") (pintype "input") (tstamp ca408111-8819-4b14-8a83-a9124a709cca))
(pad "4" thru_hole circle (at -7.62 -8.89 90) (size 1 1) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 20 "/A6") (pinfunction "A6") (pintype "input") (tstamp b24d985c-3ac2-4e28-b74a-3de6d8ab6177))
(pad "5" thru_hole circle (at -7.62 -6.35 90) (size 1 1) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 18 "/A5") (pinfunction "A5") (pintype "input") (tstamp adef4623-8884-4b82-a295-b59686ac0f3d))
(pad "6" thru_hole circle (at -7.62 -3.81 90) (size 1 1) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 16 "/A4") (pinfunction "A4") (pintype "input") (tstamp d497f9e5-253b-4462-bc12-7b3a19dc5739))
(pad "7" thru_hole circle (at -7.62 -1.27 90) (size 1 1) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 14 "/A3") (pinfunction "A3") (pintype "input") (tstamp 6f339be7-dade-41ed-8c1d-6f85a764d15f))
(pad "8" thru_hole circle (at -7.62 1.27 90) (size 1 1) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 12 "/A2") (pinfunction "A2") (pintype "input") (tstamp 1c2f5990-bfe1-40be-a241-59270533d3c9))
(pad "9" thru_hole circle (at -7.62 3.81 90) (size 1 1) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 10 "/A1") (pinfunction "A1") (pintype "input") (tstamp 9554e4c3-4070-4b0c-931b-c696f697463d))
(pad "10" thru_hole circle (at -7.62 6.35 90) (size 1 1) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 8 "/A0") (pinfunction "A0") (pintype "input") (tstamp 4e7a4bfe-0fa9-4f02-914c-6ec1e1b4b9df))
(pad "11" thru_hole circle (at -7.62 8.89 90) (size 1 1) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 6 "/D0") (pinfunction "D0") (pintype "tri_state") (tstamp ff4e939c-2920-44d8-be4a-a06cf01f68c9))
(pad "12" thru_hole circle (at -7.62 11.43 90) (size 1 1) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 4 "/D1") (pinfunction "D1") (pintype "tri_state") (tstamp d2525ed4-16bd-4efb-b7b9-2bfcc61397a6))
(pad "13" thru_hole circle (at -7.62 13.97 90) (size 1 1) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 2 "/D2") (pinfunction "D2") (pintype "tri_state") (tstamp f51479b6-afc0-4584-afac-80c5660c9073))
(pad "14" thru_hole circle (at -7.62 16.51 90) (size 1 1) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 30 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 4ea8d063-e51a-447c-99ed-8d41534bc803))
(pad "15" thru_hole circle (at 7.62 16.51 90) (size 1 1) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 25 "/D3") (pinfunction "D3") (pintype "tri_state") (tstamp 3aefb7fb-5354-4b36-87ed-5e6e53938db3))
(pad "16" thru_hole circle (at 7.62 13.97 90) (size 1 1) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 23 "/D4") (pinfunction "D4") (pintype "tri_state") (tstamp ac6a4d85-39b2-4416-841a-6d6232ccbf30))
(pad "17" thru_hole circle (at 7.62 11.43 90) (size 1 1) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 21 "/D5") (pinfunction "D5") (pintype "tri_state") (tstamp 80a65aa3-9f11-436b-b300-295200072910))
(pad "18" thru_hole circle (at 7.62 8.89 90) (size 1 1) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 19 "/D6") (pinfunction "D6") (pintype "tri_state") (tstamp 0bd272d6-a4ae-43b8-bfe1-ecd31e902a6d))
(pad "19" thru_hole circle (at 7.62 6.35 90) (size 1 1) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 17 "/D7") (pinfunction "D7") (pintype "tri_state") (tstamp fac13560-013e-40a3-8fb8-16147752ee6d))
(pad "20" thru_hole circle (at 7.62 3.81 90) (size 1 1) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 15 "/~{CE}") (pinfunction "~{CE}") (pintype "input") (tstamp 9b366519-b077-4a10-8514-7a90feba92dd))
(pad "21" thru_hole circle (at 7.62 1.27 90) (size 1 1) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 13 "/A10") (pinfunction "A10") (pintype "input") (tstamp 07b08eda-3cae-4e53-8367-b02cad64c844))
(pad "22" thru_hole circle (at 7.62 -1.27 90) (size 1 1) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 29 "/A16_OE") (pinfunction "A16") (pintype "input") (tstamp 1c18dc25-fc6c-4ba8-92af-e716b1757cdb))
(pad "23" thru_hole circle (at 7.62 -3.81 90) (size 1 1) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 9 "/A11") (pinfunction "A11") (pintype "input") (tstamp 2dd3c201-9292-483b-8479-be2153985678))
(pad "24" thru_hole circle (at 7.62 -6.35 90) (size 1 1) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 7 "/A9") (pinfunction "A9") (pintype "input") (tstamp ef25076d-a865-4901-bda0-a5519609c71a))
(pad "25" thru_hole circle (at 7.62 -8.89 90) (size 1 1) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 5 "/A8") (pinfunction "A8") (pintype "input") (tstamp 6cd62ec1-28e3-41c9-ae4b-52ce92a3e45f))
(pad "26" thru_hole circle (at 7.62 -11.43 90) (size 1 1) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 3 "/A13") (pinfunction "A13") (pintype "input") (tstamp eb76279e-a4e1-4486-96a5-f87a5c386c31))
(pad "27" thru_hole circle (at 7.62 -13.97 90) (size 1 1) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 1 "/A14") (pinfunction "A14") (pintype "input") (tstamp 024b4d94-7334-463b-9a46-681b2ce52645))
(pad "28" thru_hole circle (at 7.62 -16.51 90) (size 1 1) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 31 "VCC") (pinfunction "VCC") (pintype "power_in") (tstamp 5b254dd6-c9ae-4af0-b973-5f03f0f94720))
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/Mill_Max_3121_28_600.step"
(offset (xyz 7.62 16.51 -1.7526))
(scale (xyz 1 1 1))
(rotate (xyz 180 0 90))
)
)
(footprint "000_LOCAL:R_0805" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005e638d11)
(at 157.645 93.162 180)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(property "Sheetfile" "FLASH_23C1000_DIP28.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, US symbol")
(property "ki_keywords" "R res resistor")
(path "/00000000-0000-0000-0000-00005e614d7e")
(attr smd)
(fp_text reference "R1" (at 0 0 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp 724a6660-453f-4453-bb9c-f10a1420eeac)
)
(fp_text value "47k" (at 0 1.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 182421cf-1c75-440e-9d5b-12a177dbe5e4)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp aa03e5d6-bae9-435a-a359-966705ba0ad9)
)
(fp_line (start -0.6 -0.88) (end 0.6 -0.88)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3a78e8c5-313c-4562-bffc-06817a012e7e))
(fp_line (start 0.6 0.88) (end -0.6 0.88)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f85025d7-5cfd-4586-b038-c613cd46d35e))
(fp_line (start -1.55 -0.9) (end -1.55 0.9)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 13084e14-0e08-4660-a2b5-5513639faf62))
(fp_line (start -1.55 -0.9) (end 1.55 -0.9)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ef65d622-37a5-4bc1-a6cf-924c4fc2a3f0))
(fp_line (start 1.55 0.9) (end -1.55 0.9)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d28e4763-37cf-4c05-9ef3-8fb5415b5bd2))
(fp_line (start 1.55 0.9) (end 1.55 -0.9)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fdb785de-466c-49fd-a76b-66176cfcf0f0))
(fp_line (start -1 -0.62) (end 1 -0.62)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7eca281d-3382-4f0d-b396-3ad08468e485))
(fp_line (start -1 0.62) (end -1 -0.62)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9ec7e034-cfc1-4ec4-9fd6-aa21b921cf4d))
(fp_line (start 1 -0.62) (end 1 0.62)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 474a3991-4b7e-4597-9683-d9e8ccace8eb))
(fp_line (start 1 0.62) (end -1 0.62)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0e4ef146-b93b-4c63-893a-2a1ca96cc7a4))
(pad "1" smd roundrect (at -0.95 0 180) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 11 "/~{OE}") (pintype "passive") (tstamp dfe98367-19bc-4272-9321-216ede1b1299))
(pad "2" smd roundrect (at 0.95 0 180) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 30 "GND") (pintype "passive") (tstamp 7bac95ac-bf04-4d7c-a880-eaf0486d2be1))
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/R_0805_2012Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "000_LOCAL:PLCC32_7x9" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005e63cd90)
(at 148.725 98.75 90)
(descr "PLCC, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc0015.pdf), generated with kicad-footprint-generator ipc_plcc_jLead_generator.py")
(tags "PLCC LCC")
(property "Sheetfile" "FLASH_23C1000_DIP28.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Silicon Storage Technology (SSF) 128k x 8 Flash ROM")
(property "ki_keywords" "128k flash rom")
(path "/00000000-0000-0000-0000-00005e644e99")
(attr smd exclude_from_pos_files)
(fp_text reference "U2" (at -2.95 -4.7 90) (layer "F.SilkS") hide
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp 2ddcf337-96d7-43ef-95d3-4310bdfbcbdd)
)
(fp_text value "29F010 PLCC-32 7x9" (at 0 8.52 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9fa29c53-7ca5-49a7-8926-949a102b2024)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f806adf4-55f0-4fe3-b307-a526744e9156)
)
(fp_line (start -4.5 -4.75) (end -3.5 -5.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cbbc7b50-cc94-4b53-a385-80312042012b))
(fp_line (start -4.5 5.75) (end -4.5 -4.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8a51b96a-2eac-4d3b-a680-0d44fa7ba1d3))
(fp_line (start -3.5 -5.75) (end 4.5 -5.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 99a82c1b-384d-4d96-999b-592a76706edf))
(fp_line (start 4.5 -5.75) (end 4.5 5.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 81217408-6c82-4207-aee8-2269880b0576))
(fp_line (start 4.5 5.75) (end -4.5 5.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d72673d7-cd20-4412-91b8-7b6040c38a6f))
(fp_line (start -6.55 -5.63) (end -6.55 0)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp effa6a47-46ac-4c31-9934-60404d6233d3))
(fp_line (start -6.55 5.63) (end -6.55 0)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4e8f2f4f-c587-4f8d-92ba-e34bb6b62b67))
(fp_line (start -5.96 -5.95) (end -5.96 -5.63)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bd0e2780-d445-429b-b118-95ae51226b77))
(fp_line (start -5.96 -5.63) (end -6.55 -5.63)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6efebe72-672c-420f-9181-70d77316d39f))
(fp_line (start -5.96 5.63) (end -6.55 5.63)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ab4c87b7-5013-4e90-ac12-e7e7db3754e6))
(fp_line (start -5.96 7.23) (end -5.96 5.63)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dc824455-9dcc-41b1-9add-3545640ff4c0))
(fp_line (start -4.68 -7.23) (end -5.96 -5.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1f1b7e54-bd32-460d-922d-e34e8ec4f530))
(fp_line (start -4.36 -7.82) (end -4.36 -7.23)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 21c6b980-37cb-4d59-a706-c4eb98515824))
(fp_line (start -4.36 -7.23) (end -4.68 -7.23)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8e114bd7-f749-4be5-b487-716358ab2370))
(fp_line (start -4.36 7.23) (end -5.96 7.23)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3ec91380-3e6d-4135-8950-c8fd311871db))
(fp_line (start -4.36 7.82) (end -4.36 7.23)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 11758236-c3df-482f-90b6-5669b4013585))
(fp_line (start 0 -7.82) (end -4.36 -7.82)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e904fc33-6f85-422c-9837-edf040619d95))
(fp_line (start 0 -7.82) (end 4.36 -7.82)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8d5e11b1-61c9-4a74-a303-e0a23fdc1f1c))
(fp_line (start 0 7.82) (end -4.36 7.82)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 46bf72d4-44e9-4a9c-921d-6a89af60d6d5))
(fp_line (start 0 7.82) (end 4.36 7.82)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d3b79f44-2ac1-4862-b3f9-4f92336d8c9b))
(fp_line (start 4.36 -7.82) (end 4.36 -7.23)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 492bc0c2-98c1-47ac-8646-dde15c66e1ea))
(fp_line (start 4.36 -7.23) (end 5.96 -7.23)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ad40514d-1e5d-43a1-ae80-7f4cba0a36b2))
(fp_line (start 4.36 7.23) (end 5.96 7.23)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f6f35311-e383-4e8e-a4c9-775c4c5ac0b5))
(fp_line (start 4.36 7.82) (end 4.36 7.23)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3793876b-7354-4c37-8a0f-129b3f55f55f))
(fp_line (start 5.96 -7.23) (end 5.96 -5.63)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 792bf2df-5c24-4407-8303-8aeefd75fbc0))
(fp_line (start 5.96 -5.63) (end 6.55 -5.63)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 04ef1e88-5a6a-4a4d-8ea2-166e25d2d238))
(fp_line (start 5.96 5.63) (end 6.55 5.63)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 926a711e-20a7-4b2e-b20d-d973526d5137))
(fp_line (start 5.96 7.23) (end 5.96 5.63)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6bb82141-9d44-45bf-ac2e-c62ffa7df0cb))
(fp_line (start 6.55 -5.63) (end 6.55 0)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 16a4528a-3e83-41c1-b9a7-824fad9990ea))
(fp_line (start 6.55 5.63) (end 6.55 0)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b9fd98d2-92a1-49f8-b907-286f2a7f7982))
(fp_line (start -5.715 -5.845) (end -4.575 -6.985)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8aa363b3-8c2a-4fc6-9fd3-8317022a2172))
(fp_line (start -5.715 6.985) (end -5.715 -5.845)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 03c1ec65-3f57-4ccb-98d0-8ca19f8c6e39))
(fp_line (start -4.575 -6.985) (end -0.5 -6.985)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2fd8813d-0df6-400f-8a0d-4854c1ab8162))
(fp_line (start -0.5 -6.985) (end 0 -6.277893)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6d6f758c-4f14-4fa9-b1ea-b726cd45bc56))
(fp_line (start 0 -6.277893) (end 0.5 -6.985)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 88d58578-dd8f-4ae5-98b4-fd5fdb6914ac))
(fp_line (start 0.5 -6.985) (end 5.715 -6.985)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bf550ef1-2727-4717-baef-ae5eaf86ac7d))
(fp_line (start 5.715 -6.985) (end 5.715 6.985)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 363b59e3-4581-47dd-8020-28cad3ca5e27))
(fp_line (start 5.715 6.985) (end -5.715 6.985)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f965e5e3-7e94-409b-83e8-2c2746c6b0ae))
(fp_circle (center 0 -5.08) (end 0.25 -5.08)
(stroke (width 0.5) (type solid)) (fill none) (layer "F.Fab") (tstamp d3128e93-e31d-462b-8676-452c757c7ee2))
(pad "1" smd roundrect (at 0 -6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 33 "unconnected-(U2-NC-Pad1)") (pinfunction "NC") (pintype "passive+no_connect") (tstamp af8471ef-d82f-4233-afe5-7e4dc4e176aa))
(pad "2" smd roundrect (at -1.27 -6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "/A16") (pinfunction "A16") (pintype "input") (tstamp e7f35304-75c2-4f33-ba0a-f4e4d1af542a))
(pad "3" smd roundrect (at -2.54 -6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "/A15") (pinfunction "A15") (pintype "input") (tstamp 4018c78e-726b-4806-8f31-f182d1ba4aa0))
(pad "4" smd roundrect (at -3.81 -6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "/A12") (pinfunction "A12") (pintype "input") (tstamp fd38f46b-d580-4f66-b434-7f2a858c1ba4))
(pad "5" smd roundrect (at -5.5625 -5.08 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "/A7") (pinfunction "A7") (pintype "input") (tstamp 31bc8fb4-0ad7-4725-98ff-72882adce52e))
(pad "6" smd roundrect (at -5.5625 -3.81 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "/A6") (pinfunction "A6") (pintype "input") (tstamp ca6de41a-e954-4617-967b-3494fd12fe0f))
(pad "7" smd roundrect (at -5.5625 -2.54 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "/A5") (pinfunction "A5") (pintype "input") (tstamp 5b5311d0-31e6-468d-824d-c69766f55333))
(pad "8" smd roundrect (at -5.5625 -1.27 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "/A4") (pinfunction "A4") (pintype "input") (tstamp ecdaa036-2b4b-4fcb-aef1-993d7692fdf1))
(pad "9" smd roundrect (at -5.5625 0 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "/A3") (pinfunction "A3") (pintype "input") (tstamp 997e061b-9ced-4097-ba5b-0fec8fd9ba93))
(pad "10" smd roundrect (at -5.5625 1.27 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "/A2") (pinfunction "A2") (pintype "input") (tstamp 9de84052-83f9-4c83-869c-b257f83548cb))
(pad "11" smd roundrect (at -5.5625 2.54 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "/A1") (pinfunction "A1") (pintype "input") (tstamp 510e4065-9643-4fd1-bde1-db93fcfdb4a1))
(pad "12" smd roundrect (at -5.5625 3.81 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "/A0") (pinfunction "A0") (pintype "input") (tstamp 0e43ab2d-6eea-4a10-bf5c-28d8131ee106))
(pad "13" smd roundrect (at -5.5625 5.08 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/D0") (pinfunction "DQ0") (pintype "tri_state") (tstamp e167ff58-abcd-4535-bffe-6f2561ea7bd8))
(pad "14" smd roundrect (at -3.81 6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/D1") (pinfunction "DQ1") (pintype "tri_state") (tstamp db8ce432-c110-4fce-bd2b-c94fc2798a0f))
(pad "15" smd roundrect (at -2.54 6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "/D2") (pinfunction "DQ2") (pintype "tri_state") (tstamp 74ca711c-decb-4530-a973-d748471909c7))
(pad "16" smd roundrect (at -1.27 6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 458bef9a-976a-442c-bc9f-48389161855b))
(pad "17" smd roundrect (at 0 6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "/D3") (pinfunction "DQ3") (pintype "tri_state") (tstamp 70e6abf2-ee4e-4eac-9e51-06190c9d24d6))
(pad "18" smd roundrect (at 1.27 6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "/D4") (pinfunction "DQ4") (pintype "tri_state") (tstamp 89ca4995-a305-4e8c-8e99-0711eedbdfef))
(pad "19" smd roundrect (at 2.54 6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "/D5") (pinfunction "DQ5") (pintype "tri_state") (tstamp 5bd0f4d9-1782-4baa-9542-d096d4c57cc5))
(pad "20" smd roundrect (at 3.81 6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "/D6") (pinfunction "DQ6") (pintype "tri_state") (tstamp 473f5709-c8ef-43e5-9fa1-50eba0f3dd6a))
(pad "21" smd roundrect (at 5.5625 5.08 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "/D7") (pinfunction "DQ7") (pintype "tri_state") (tstamp baaddd79-c4cc-4f53-9fd9-230c3bf6f5c1))
(pad "22" smd roundrect (at 5.5625 3.81 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "/~{CE}") (pinfunction "~{CE}") (pintype "input") (tstamp 36a268a0-4096-4026-ac81-b1f4d5471bbf))
(pad "23" smd roundrect (at 5.5625 2.54 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "/A10") (pinfunction "A10") (pintype "input") (tstamp b85d732f-cdba-4235-9209-a2c513b6a518))
(pad "24" smd roundrect (at 5.5625 1.27 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "/~{OE}") (pinfunction "~{OE}") (pintype "input") (tstamp 26a97a2c-9245-4cb9-afe8-bd9502c904fa))
(pad "25" smd roundrect (at 5.5625 0 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "/A11") (pinfunction "A11") (pintype "input") (tstamp 70fc5625-31b4-4d4e-8803-22a3f3316f92))
(pad "26" smd roundrect (at 5.5625 -1.27 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "/A9") (pinfunction "A9") (pintype "input") (tstamp 456594ba-7be9-411b-b827-1a9347ee548d))
(pad "27" smd roundrect (at 5.5625 -2.54 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "/A8") (pinfunction "A8") (pintype "input") (tstamp 2e6938d0-065a-4b11-a12b-5de0b26410ea))
(pad "28" smd roundrect (at 5.5625 -3.81 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "/A13") (pinfunction "A13") (pintype "input") (tstamp 0c653161-07aa-4c56-8450-3b60e0282e56))
(pad "29" smd roundrect (at 5.5625 -5.08 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "/A14") (pinfunction "A14") (pintype "input") (tstamp cada4bb4-b5fb-4725-bcf3-d4144d58a6dc))
(pad "30" smd roundrect (at 3.81 -6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "GND") (pinfunction "NC") (pintype "passive") (tstamp 3734234c-2c11-4e0e-8d6c-026c30228a99))
(pad "31" smd roundrect (at 2.54 -6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "/~{WE}") (pinfunction "~{WE}") (pintype "input") (tstamp f46e9019-74b1-4566-9ed7-8061b72b3da0))
(pad "32" smd roundrect (at 1.27 -6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "VCC") (pinfunction "VDD") (pintype "power_in") (tstamp 2c19a480-92bc-4370-98b6-a771eea47ce1))
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/PLCC32_7x9.step" hide
(offset (xyz 0 0 2.9))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 180))
)
)
(footprint "000_LOCAL:Pin_Header_Angled_1x03_Pitch2.54mm_12shorted" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005fa45d6c)
(at 165.9 93.075 -90)
(descr "Through hole angled pin header, 1x03, 2.54mm pitch, 6mm pin length, single row")
(tags "Through hole angled pin header THT 1x03 2.54mm single row")
(property "Sheetfile" "FLASH_23C1000_DIP28.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Jumper, 3-pole, pins 1+2 closed/bridged")
(property "ki_keywords" "Jumper SPDT")
(path "/00000000-0000-0000-0000-00005e634357")
(attr through_hole)
(fp_text reference "J3" (at 4.385 -2.27 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 966766be-2c74-442a-be5c-d720f56a9b18)
)
(fp_text value "Conn_1x3" (at 4.385 7.35 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1b8e9993-c037-4ff1-976b-55bb595d48c7)
)
(fp_text user "${REFERENCE}" (at 2.77 2.54) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 881bf6b8-b5e8-4949-b621-f18309231526)
)
(fp_line (start 1.042929 2.16) (end 1.44 2.16)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fd3a4cf5-8bbc-4e3c-8849-924980efe6d0))
(fp_line (start 1.042929 2.92) (end 1.44 2.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0f8fc068-4aeb-4f0e-8c3a-2967aeb57e0a))
(fp_line (start 1.042929 4.7) (end 1.44 4.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 321b8354-b6a0-46ee-a3ab-5048fc546875))
(fp_line (start 1.042929 5.46) (end 1.44 5.46)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 20ecd2f1-ac4a-4e9d-b02a-fc1d186b2228))
(fp_line (start 1.11 -0.38) (end 1.44 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp af1550a5-afd9-4ccb-b1a2-d96253dec3b3))
(fp_line (start 1.11 0.38) (end 1.44 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a14230fd-4fc3-4bbd-ae59-97287af292e2))
(fp_line (start 1.44 -1.33) (end 1.44 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e4710426-580e-444e-b971-9e1724482fb2))
(fp_line (start 1.44 1.27) (end 4.1 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a563dafd-61b5-449a-80fc-02207e8f0e26))
(fp_line (start 1.44 3.81) (end 4.1 3.81)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fd397048-3aa5-421d-8e2a-0b563a04cb0b))
(fp_line (start 1.44 6.41) (end 4.1 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4417ac89-63a0-4b40-9013-08c504eb416f))
(fp_line (start 4.1 -1.33) (end 1.44 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ec80bbc4-81d1-4ca9-ba6b-ae0e493aefc9))
(fp_line (start 4.1 -0.38) (end 10.1 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c1564262-e236-4193-b7f4-cae271c61005))
(fp_line (start 4.1 2.16) (end 10.1 2.16)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3c223413-6763-41d2-bd84-01491b6c8fed))
(fp_line (start 4.1 4.7) (end 10.1 4.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3b130d55-21b5-44a3-9c91-61aed07e1010))
(fp_line (start 4.1 6.41) (end 4.1 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ed0d11a3-e9db-4a40-9b56-2341f674cb76))
(fp_line (start 10.1 -0.38) (end 10.1 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9a0f5993-c56f-44b3-9cce-735f08c824d8))
(fp_line (start 10.1 0.38) (end 4.1 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ee9f98ee-8744-4885-aa6c-ff74eed3df59))
(fp_line (start 10.1 2.16) (end 10.1 2.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 86172092-e84f-40d3-97ed-0b695d398b42))
(fp_line (start 10.1 2.92) (end 4.1 2.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 845a86cf-a9cd-4058-97b2-aed69b67a8c1))
(fp_line (start 10.1 4.7) (end 10.1 5.46)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7ed86a82-13c1-48e7-bb71-8867ce05b64b))
(fp_line (start 10.1 5.46) (end 4.1 5.46)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 62e31ed2-cd2b-4f3c-a9d1-c20a41a5f86e))
(fp_poly
(pts
(xy 0.3175 0.3175)
(xy -0.3175 0.3175)
(xy -0.3175 -0.3175)
(xy 0.3175 -0.3175)
)
(stroke (width 0.00254) (type solid)) (fill solid) (layer "Dwgs.User") (tstamp 73a4282a-9dfb-4a50-9437-31bdfaa5e270))
(fp_line (start -1.8 -1.8) (end -1.8 6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fff0c034-9f99-4d4b-962a-f8e6795f7382))
(fp_line (start -1.8 6.85) (end 10.55 6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d4556c39-753d-46a3-8e0a-946010cf98ec))
(fp_line (start 10.55 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 709792d3-2ead-4475-b4e0-6a6e193d7742))
(fp_line (start 10.55 6.85) (end 10.55 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c6c4fc59-3b3d-413e-927c-d2dd9e881380))
(fp_line (start -0.32 -0.32) (end 1.5 -0.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a0d5dd8d-85f7-4932-a4d2-8bfe628fa522))
(fp_line (start -0.32 0.32) (end 1.5 0.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 89b19f04-1a0b-4ec7-8ca0-e0920d4366b4))
(fp_line (start -0.32 2.22) (end -0.32 2.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ca3988ea-2e7d-4f5b-856f-58efc5d54677))
(fp_line (start -0.32 2.22) (end 1.5 2.22)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eda1adc6-3081-4228-97fa-c82076faeb99))
(fp_line (start -0.32 2.86) (end 1.5 2.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eda7c0c0-c985-483e-9c34-d513564f37bf))
(fp_line (start -0.32 4.76) (end -0.32 5.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b7d1f932-4739-44a0-aea0-af8299f8eb56))
(fp_line (start -0.32 4.76) (end 1.5 4.76)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5a8c7f57-997b-4dae-aa54-c31b6856d176))
(fp_line (start -0.32 5.4) (end 1.5 5.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a937ccb4-df42-4c3b-a909-d269177f1711))
(fp_line (start 1.5 -0.635) (end 2.135 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp df0bd688-31d2-4607-8807-84cec1ebe674))
(fp_line (start 1.5 6.35) (end 1.5 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e656c7d8-e1c0-4e77-b89b-b47e7849766c))
(fp_line (start 2.135 -1.27) (end 4.04 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fd9963be-880e-417e-96f2-10862a29e630))
(fp_line (start 4.04 -1.27) (end 4.04 6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 59c2b748-936f-413e-bb3b-d1ad38c1543c))
(fp_line (start 4.04 -0.32) (end 10.04 -0.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3451a27a-2544-4d49-951b-e6e9d75f76a2))
(fp_line (start 4.04 0.32) (end 10.04 0.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 91c95032-c721-4a3a-a96f-b8d8a4a65bb1))
(fp_line (start 4.04 2.22) (end 10.04 2.22)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 25b493e5-bc27-4a9d-9dcc-d0ebd2e958b9))
(fp_line (start 4.04 2.86) (end 10.04 2.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5c78be04-36b0-4643-b376-c4f4e33dc4b8))
(fp_line (start 4.04 4.76) (end 10.04 4.76)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c6e8e03d-85b8-4943-b081-22e889e2238c))
(fp_line (start 4.04 5.4) (end 10.04 5.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3269e209-ae33-44cc-9674-8d0a41bd02ba))
(fp_line (start 4.04 6.35) (end 1.5 6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3e23a6c3-3e87-4128-b977-7b1c23a9d7c0))
(fp_line (start 10.04 -0.32) (end 10.04 0.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 98f1e242-bb4d-4521-805c-0454979f3646))
(fp_line (start 10.04 2.22) (end 10.04 2.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bddd234f-eaa9-48c7-8264-ed196854d1a2))
(fp_line (start 10.04 4.76) (end 10.04 5.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d4d26a3f-e43c-4c14-8a8b-dfe31191e765))
(pad "1" thru_hole circle (at 0 0 270) (size 1.397 1.397) (drill 0.9144) (layers "*.Cu" "*.Mask")
(net 27 "/A16") (pinfunction "A") (pintype "passive") (tstamp 37041e15-1e6d-4148-85f7-4269a9d272cf))
(pad "2" thru_hole circle (at 0 2.54 270) (size 1.397 1.397) (drill 0.9144) (layers "*.Cu" "*.Mask")
(net 29 "/A16_OE") (pinfunction "C") (pintype "input") (tstamp cb60a02c-2ea8-4ad7-94a3-5ef74bf4058f))
(pad "3" thru_hole circle (at 0 5.08 270) (size 1.397 1.397) (drill 0.9144) (layers "*.Cu" "*.Mask")
(net 11 "/~{OE}") (pinfunction "B") (pintype "passive") (tstamp b8d26d12-f9a5-4f7b-8aa4-5ed7281bf2c6))
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/PinHeader_1x03_P2.54mm_Horizontal.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/Jumper.stp"
(offset (xyz 4.064 -3.7592 0.1016))
(scale (xyz 1 1 1))
(rotate (xyz 0 -90 90))
)
)
(gr_line (start 162.09 97.48) (end 167.17 97.48)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005e5f4ff4))
(gr_line (start 132.88 97.48) (end 132.88 103.322)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005e5f53ee))
(gr_line (start 132.88 97.48) (end 137.96 97.48)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005e5f53f9))
(gr_line (start 137.96 103.322) (end 132.88 103.322)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005e5f53fb))
(gr_circle (center 163.36 93.075) (end 163.36 92.295)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005e5fddfd))
(gr_line (start 149.675 92.05) (end 149.275 91.65)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005fa46dac))
(gr_line (start 137.96 97.48) (end 137.96 103.322)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005fa482ec))
(gr_circle (center 148.755 91.13) (end 148.755 90.45)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 26a9e51e-5e92-47ac-8947-85dc140654a1))
(gr_line (start 167.17 103.322) (end 162.09 103.322)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 28b6639d-9de2-4064-b875-2db51008b855))
(gr_line (start 162.35 92.05) (end 149.675 92.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 45638f72-a0cc-4a20-96f1-5e82fe3731f5))
(gr_line (start 162.09 103.322) (end 162.09 97.48)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 58b2dc69-301b-4782-946c-d0a898d4c958))
(gr_rect (start 132.753 105.608) (end 134.277 107.132)
(stroke (width 0.1) (type default)) (fill none) (layer "F.SilkS") (tstamp 6b3c9c10-616b-4b8c-8333-483d5878dda3))
(gr_line (start 167.17 97.48) (end 167.17 103.322)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 94434683-5639-4cda-a58b-6738c84baa95))
(gr_line (start 162.8 92.5) (end 162.35 92.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f3215600-2182-48b5-8278-6e228affc8c1))
(gr_text "TO PROGRAM:\n Place board offset with board pin 1 in programmer pin 3.\n Move A16 jumper to ~{OE}. Connect A16 to programmer pin 2.\n Remove VCC/~{WE} jumper. Connect ~{WE} to programmer pin 31.\n Connect VCC to programmer pin 32. Program as 29F010.\n\nTO RUN (emulate a 23C1000):\n Both jumpers on RUN positions. Install board in place of 23C1000." (at 166.965 98.25) (layer "B.SilkS") (tstamp 00000000-0000-0000-0000-00005e5f6021)
(effects (font (size 0.6 0.6) (thickness 0.08)) (justify left mirror))
)
(gr_text "29F010 to 23C1000" (at 150.025 93.543) (layer "B.SilkS") (tstamp 00000000-0000-0000-0000-00005e61ced7)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "${COMMENT1}\n${TITLE} ${REVISION}" (at 156.375 103.957) (layer "B.SilkS") (tstamp 00000000-0000-0000-0000-00005fa327a0)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify mirror))
)
(gr_text "R1: ${00000000-0000-0000-0000-00005e638d11:VALUE}\nLegs: TE 1544210" (at 144.056 103.957) (layer "B.SilkS") (tstamp 549e0d07-60f3-4401-839b-498e9acd143c)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify left mirror))
)
(gr_text "~{WE}" (at 136.69 104.211) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005e5f48ae)
(effects (font (size 0.8 0.8) (thickness 0.1)))
)
(gr_text "A16" (at 165.925 104.084) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005e5f4bed)
(effects (font (size 0.8 0.8) (thickness 0.1)))
)
(gr_text "~{OE}" (at 160.82 104.211) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005e5f4bf0)
(effects (font (size 0.8 0.8) (thickness 0.1)))
)
(gr_text "RUN" (at 164.63 100.655 90) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005e5f4f94)
(effects (font (size 0.8 0.8) (thickness 0.1)))
)
(gr_text "RUN" (at 135.475 100.35 90) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005e5f53ef)
(effects (font (size 0.8 0.8) (thickness 0.1)))
)
(gr_text "FLASH" (at 140.4365 92.4635) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-000060983de1)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(gr_text "pin\n22" (at 163.36 104.338) (layer "F.SilkS") (tstamp 0782d3ce-a216-49cc-bfd1-4af344a5392c)
(effects (font (size 0.6 0.6) (thickness 0.08)))
)
(gr_text "29F010" (at 147.375 98.75) (layer "F.SilkS") (tstamp 5cbdde17-2add-467a-9842-765c8357d3fd)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "VCC" (at 134.15 104.211) (layer "F.SilkS") (tstamp 8a76a6cf-2674-4d91-991a-61da39c3ab47)
(effects (font (size 0.8 0.8) (thickness 0.1)))
)
(gr_text "23C1000" (at 140.373 93.6065) (layer "F.SilkS") (tstamp c2f7a989-f391-4c0b-bec0-5577519475e6)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(segment (start 137.9346 92.2096) (end 137.9346 93.7208) (width 0.2) (layer "F.Cu") (net 1) (tstamp 147c49a0-1597-419a-b5ef-87ea3e4d6686))
(segment (start 136.055 91.13) (end 136.855 91.13) (width 0.2) (layer "F.Cu") (net 1) (tstamp 1d335fb8-1890-444a-97af-e22f23762d84))
(segment (start 136.855 91.13) (end 137.9346 92.2096) (width 0.2) (layer "F.Cu") (net 1) (tstamp 282fc97a-95a0-4be0-8bdf-a51f7ac94991))
(segment (start 137.9346 93.7208) (end 137.3758 94.2796) (width 0.2) (layer "F.Cu") (net 1) (tstamp 43df14c7-adf9-4424-93f3-2d994b6440c9))
(segment (start 139.357 93.1875) (end 143.645 93.1875) (width 0.2) (layer "F.Cu") (net 1) (tstamp 710e01ad-8334-4ec9-a121-5d87efb9d761))
(segment (start 137.3758 94.2796) (end 137.3758 96.3878) (width 0.2) (layer "F.Cu") (net 1) (tstamp 83c60c90-205e-4657-9f31-15a21dbaeac3))
(segment (start 137.988 97) (end 138.875 97) (width 0.2) (layer "F.Cu") (net 1) (tstamp 8a032ee0-0359-4662-bad6-ab03acff5c15))
(segment (start 137.3758 96.3878) (end 137.988 97) (width 0.2) (layer "F.Cu") (net 1) (tstamp f66f0723-5893-4c97-b2d3-bad1dcb33205))
(via (at 139.357 93.1875) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 1) (tstamp 26affc9a-cdbe-4ae4-b71a-370dd6fc9bd1))
(segment (start 139.357 93.1875) (end 138.9125 93.1875) (width 0.2) (layer "B.Cu") (net 1) (tstamp 3479cce4-4562-419a-b935-274eb1e5b4d4))
(segment (start 136.855 91.13) (end 136.055 91.13) (width 0.2) (layer "B.Cu") (net 1) (tstamp c7b41172-3768-4ee6-888b-ed12505159a3))
(segment (start 138.9125 93.1875) (end 136.855 91.13) (width 0.2) (layer "B.Cu") (net 1) (tstamp e689b19a-79ae-4e1f-9328-764fe55e0aeb))
(segment (start 156.01 101.29) (end 155.5625 101.29) (width 0.2) (layer "F.Cu") (net 2) (tstamp 19c85fa1-fe03-4fb0-b89f-463831e6413d))
(segment (start 155.1304 101.29) (end 155.5625 101.29) (width 0.2) (layer "F.Cu") (net 2) (tstamp 5a299a33-c842-42ee-86de-e8fa83ce7ab7))
(segment (start 157.8 99.5) (end 156.01 101.29) (width 0.2) (layer "F.Cu") (net 2) (tstamp 5b8dba5f-5622-4a06-b165-d3e44e20c242))
(segment (start 153.3404 99.5) (end 155.1304 101.29) (width 0.2) (layer "F.Cu") (net 2) (tstamp 85233303-f0ea-493b-a374-39db54e32592))
(segment (start 163.995 106.37) (end 163.995 103.27) (width 0.2) (layer "F.Cu") (net 2) (tstamp 8c52b6d7-405e-44b7-9fc3-46f2389e901d))
(segment (start 160.225 99.5) (end 158.575 99.5) (width 0.2) (layer "F.Cu") (net 2) (tstamp c08af52a-a574-490d-9ef0-2be22d656d99))
(segment (start 152.575 99.5) (end 153.3404 99.5) (width 0.2) (layer "F.Cu") (net 2) (tstamp d82f7e8e-a4bd-4a39-bf83-636d3e592223))
(segment (start 163.995 103.27) (end 160.225 99.5) (width 0.2) (layer "F.Cu") (net 2) (tstamp e6dea1c4-f76e-4051-b611-6f87dd9dcce7))
(segment (start 158.575 99.5) (end 157.8 99.5) (width 0.2) (layer "F.Cu") (net 2) (tstamp f24ac41a-e8fe-4e02-81b7-5622e5ab6aa3))
(segment (start 137.9346 94.559) (end 137.9346 96.21) (width 0.2) (layer "F.Cu") (net 3) (tstamp 0ab8f434-48ca-4875-a6d7-5263a4cc72b1))
(segment (start 138.595 91.13) (end 138.595 93.8986) (width 0.2) (layer "F.Cu") (net 3) (tstamp 0ad74584-2f9f-4374-ac94-ddfc541e6884))
(segment (start 138.2246 96.5) (end 138.875 96.5) (width 0.2) (layer "F.Cu") (net 3) (tstamp 155540a3-a2a2-4bad-829f-569f64c1818d))
(segment (start 144.915 92.76) (end 144.915 93.1875) (width 0.2) (layer "F.Cu") (net 3) (tstamp 3fa85f3e-22d0-42ae-84af-4ee5a9543660))
(segment (start 138.595 91.13) (end 139.565 92.1) (width 0.2) (layer "F.Cu") (net 3) (tstamp 40dfe75d-418e-4cbd-992d-91233fccd29b))
(segment (start 139.565 92.1) (end 144.255 92.1) (width 0.2) (layer "F.Cu") (net 3) (tstamp 64345fed-1a9b-4b09-a1f9-cc9338876d15))
(segment (start 137.9346 96.21) (end 138.2246 96.5) (width 0.2) (layer "F.Cu") (net 3) (tstamp 7b224fc6-7eba-4e17-8a9a-5a2d0e2418e7))
(segment (start 144.255 92.1) (end 144.915 92.76) (width 0.2) (layer "F.Cu") (net 3) (tstamp 8128573c-f5ca-4d2f-9ff6-f99c842028b1))
(segment (start 138.595 93.8986) (end 137.9346 94.559) (width 0.2) (layer "F.Cu") (net 3) (tstamp b24eb894-a0ba-4c61-a9df-b9a89e530a8c))
(segment (start 160.025 100) (end 158.575 100) (width 0.2) (layer "F.Cu") (net 4) (tstamp 14d06d24-5488-4262-821f-109896f55b51))
(segment (start 161.455 101.43) (end 160.025 100) (width 0.2) (layer "F.Cu") (net 4) (tstamp 232a3401-8ed5-472e-b2d3-f4cbbedead82))
(segment (start 157.975 100) (end 157.475 100.5) (width 0.2) (layer "F.Cu") (net 4) (tstamp 4baea0f8-8966-42ad-8737-2adae1d85da1))
(segment (start 157.475 100.5) (end 157.475 101.1) (width 0.2) (layer "F.Cu") (net 4) (tstamp 4fd75e4a-92d7-4334-a27c-83efb32eaeae))
(segment (start 156.015 102.56) (end 155.5625 102.56) (width 0.2) (layer "F.Cu") (net 4) (tstamp 6ebecc06-26eb-4f34-8c90-d825e0ef684f))
(segment (start 157.475 101.1) (end 156.015 102.56) (width 0.2) (layer "F.Cu") (net 4) (tstamp 7a46b80d-088f-4966-8445-af44129bf83e))
(segment (start 154.343 101.118) (end 154.343 101.7726) (width 0.2) (layer "F.Cu") (net 4) (tstamp 81586494-d976-46aa-a8ca-6425f0393439))
(segment (start 161.455 106.37) (end 161.455 101.43) (width 0.2) (layer "F.Cu") (net 4) (tstamp 9766f773-e938-49d8-b1c7-128c1768f335))
(segment (start 154.343 101.7726) (end 155.1304 102.56) (width 0.2) (layer "F.Cu") (net 4) (tstamp ac8c11e5-8aec-4cd6-a4ee-327150786128))
(segment (start 153.225 100) (end 154.343 101.118) (width 0.2) (layer "F.Cu") (net 4) (tstamp bbe92d45-a42a-4fad-9beb-2ca5799dedde))
(segment (start 152.575 100) (end 153.225 100) (width 0.2) (layer "F.Cu") (net 4) (tstamp dd5a420d-5d68-4fa3-82f9-0532cf4d2131))
(segment (start 155.1304 102.56) (end 155.5625 102.56) (width 0.2) (layer "F.Cu") (net 4) (tstamp e238dc88-e441-41c4-9ae7-58e3663fa900))
(segment (start 158.575 100) (end 157.975 100) (width 0.2) (layer "F.Cu") (net 4) (tstamp f091ffa5-6ea8-417d-a1d6-8b9fde3c3dec))
(segment (start 146.185 96.21) (end 143.3702 96.21) (width 0.2) (layer "F.Cu") (net 5) (tstamp 2d35ed5a-fe4f-4c60-b96f-f7e308c7dcc3))
(segment (start 142.7352 95.575) (end 140.72 95.575) (width 0.2) (layer "F.Cu") (net 5) (tstamp 55561512-23c7-442f-b41e-d45548667e63))
(segment (start 143.3702 96.21) (end 142.7352 95.575) (width 0.2) (layer "F.Cu") (net 5) (tstamp 96227481-42c9-4b6c-823a-fca579d1d254))
(segment (start 140.72 95.575) (end 140.295 96) (width 0.2) (layer "F.Cu") (net 5) (tstamp c0b4e916-4d5b-44d2-983b-acd9db52ea24))
(segment (start 140.295 96) (end 138.875 96) (width 0.2) (layer "F.Cu") (net 5) (tstamp eebd8c7f-4806-4e46-a89a-fbce363e459b))
(via (at 146.185 96.21) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 5) (tstamp 02f05bd2-03a0-4622-9dd8-eb3ddb3950cb))
(via (at 146.185 93.1875) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 5) (tstamp a39b400e-09f0-4924-b323-64d27aa291fe))
(segment (start 142.455 92.45) (end 141.135 91.13) (width 0.2) (layer "B.Cu") (net 5) (tstamp 2fedee3e-062e-49e6-b1c4-35fb868fdf24))