-
Notifications
You must be signed in to change notification settings - Fork 0
/
ZX Interface 1 ROM 39SF010.kicad_sch
1995 lines (1971 loc) · 76 KB
/
ZX Interface 1 ROM 39SF010.kicad_sch
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_sch (version 20230121) (generator eeschema)
(uuid 8751c651-26dc-4d30-8f2d-d9f24098bdc5)
(paper "A4")
(title_block
(title "ZX Interface 1 ROM Replacement SST39SF0x0")
(date "2023-11-22")
(rev "1.1")
(company "Andy Potter")
(comment 1 "Add 0V connection to J1 allowing external switching of A14/A15/A16/A17 and A18.")
(comment 2 "DO NOT EXTERNALLY SWITCH A13")
)
(lib_symbols
(symbol "Connector:Conn_01x09_Pin" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 0 12.7 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x09_Pin" (at 0 -12.7 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_keywords" "connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x09, script generated" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x09_Pin_1_1"
(polyline
(pts
(xy 1.27 -10.16)
(xy 0.8636 -10.16)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -7.62)
(xy 0.8636 -7.62)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -5.08)
(xy 0.8636 -5.08)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -2.54)
(xy 0.8636 -2.54)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 0)
(xy 0.8636 0)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 2.54)
(xy 0.8636 2.54)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 5.08)
(xy 0.8636 5.08)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 7.62)
(xy 0.8636 7.62)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 10.16)
(xy 0.8636 10.16)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 0.8636 -10.033) (end 0 -10.287)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 -7.493) (end 0 -7.747)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 5.207) (end 0 4.953)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 7.747) (end 0 7.493)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 10.287) (end 0 10.033)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(pin passive line (at 5.08 10.16 180) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 7.62 180) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 5.08 180) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 2.54 180) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 0 180) (length 3.81)
(name "Pin_5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -2.54 180) (length 3.81)
(name "Pin_6" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -5.08 180) (length 3.81)
(name "Pin_7" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -7.62 180) (length 3.81)
(name "Pin_8" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -10.16 180) (length 3.81)
(name "Pin_9" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "R_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Memory_Flash:SST39SF010" (in_bom yes) (on_board yes)
(property "Reference" "U?" (at -1.27 8.128 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "SST39SF040A TSOP" (at 2.794 4.064 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0 7.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at -2.54 -17.78 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "128k flash rom" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Silicon Storage Technology (SSF) 128k x 8 Flash ROM" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SST39SF010_0_1"
(rectangle (start -10.16 33.02) (end 10.16 -10.16)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
(symbol "SST39SF010_1_0"
(pin input line (at -15.24 -7.62 0) (length 5.08)
(name "A4" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin input line (at 15.24 30.48 180) (length 5.08)
(name "0E" (effects (font (size 1.27 1.27))))
(number "32" (effects (font (size 1.27 1.27))))
)
)
(symbol "SST39SF010_1_1"
(pin input line (at -15.24 30.48 0) (length 5.08)
(name "A11" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 7.62 0) (length 5.08)
(name "A16" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 5.08 0) (length 5.08)
(name "A15" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 2.54 0) (length 5.08)
(name "A12" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 0 0) (length 5.08)
(name "A7" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 -2.54 0) (length 5.08)
(name "A6" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 -5.08 0) (length 5.08)
(name "A5" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin input line (at 15.24 -7.62 180) (length 5.08)
(name "A3" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin input line (at 15.24 -5.08 180) (length 5.08)
(name "A2" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin input line (at 15.24 -2.54 180) (length 5.08)
(name "A1" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 27.94 0) (length 5.08)
(name "A9" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at 15.24 0 180) (length 5.08)
(name "A0" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 15.24 2.54 180) (length 5.08)
(name "DQ0" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 15.24 5.08 180) (length 5.08)
(name "DQ1" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 7.62 180) (length 5.08)
(name "DQ2" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 15.24 10.16 180) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 12.7 180) (length 5.08)
(name "DQ3" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 15.24 180) (length 5.08)
(name "DQ4" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 17.78 180) (length 5.08)
(name "DQ5" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 15.24 20.32 180) (length 5.08)
(name "DQ6" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 15.24 22.86 180) (length 5.08)
(name "DQ7" (effects (font (size 1.27 1.27))))
(number "29" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 25.4 0) (length 5.08)
(name "A8" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at 15.24 25.4 180) (length 5.08)
(name "CE" (effects (font (size 1.27 1.27))))
(number "30" (effects (font (size 1.27 1.27))))
)
(pin input line (at 15.24 27.94 180) (length 5.08)
(name "A10" (effects (font (size 1.27 1.27))))
(number "31" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 22.86 0) (length 5.08)
(name "A13" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 20.32 0) (length 5.08)
(name "A14" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 17.78 0) (length 5.08)
(name "A17" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 15.24 0) (length 5.08)
(name "WE" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -15.24 12.7 0) (length 5.08)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 10.16 0) (length 5.08)
(name "A18" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "PinPIn12:BBL-112-G-E" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "J" (at -8.12 17.78 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Value" "BBL-112-G-E" (at -7.62 -17.78 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Footprint" "BBL-112-G-E:SAMTEC_BBL-112-G-E" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PARTREV" "R" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "MANUFACTURER" "Samtec" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "STANDARD" "Manufacturer Recommendations" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(symbol "BBL-112-G-E_0_0"
(rectangle (start -7.62 -15.24) (end 0 17.78)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin passive line (at -12.7 15.24 0) (length 5.08)
(name "01" (effects (font (size 1.016 1.016))))
(number "01" (effects (font (size 1.016 1.016))))
)
(pin passive line (at -12.7 12.7 0) (length 5.08)
(name "02" (effects (font (size 1.016 1.016))))
(number "02" (effects (font (size 1.016 1.016))))
)
(pin passive line (at -12.7 10.16 0) (length 5.08)
(name "03" (effects (font (size 1.016 1.016))))
(number "03" (effects (font (size 1.016 1.016))))
)
(pin passive line (at -12.7 7.62 0) (length 5.08)
(name "04" (effects (font (size 1.016 1.016))))
(number "04" (effects (font (size 1.016 1.016))))
)
(pin passive line (at -12.7 5.08 0) (length 5.08)
(name "05" (effects (font (size 1.016 1.016))))
(number "05" (effects (font (size 1.016 1.016))))
)
(pin passive line (at -12.7 2.54 0) (length 5.08)
(name "06" (effects (font (size 1.016 1.016))))
(number "06" (effects (font (size 1.016 1.016))))
)
(pin passive line (at -12.7 0 0) (length 5.08)
(name "07" (effects (font (size 1.016 1.016))))
(number "07" (effects (font (size 1.016 1.016))))
)
(pin passive line (at -12.7 -2.54 0) (length 5.08)
(name "08" (effects (font (size 1.016 1.016))))
(number "08" (effects (font (size 1.016 1.016))))
)
(pin passive line (at -12.7 -5.08 0) (length 5.08)
(name "09" (effects (font (size 1.016 1.016))))
(number "09" (effects (font (size 1.016 1.016))))
)
(pin passive line (at -12.7 -7.62 0) (length 5.08)
(name "10" (effects (font (size 1.016 1.016))))
(number "10" (effects (font (size 1.016 1.016))))
)
(pin passive line (at -12.7 -10.16 0) (length 5.08)
(name "11" (effects (font (size 1.016 1.016))))
(number "11" (effects (font (size 1.016 1.016))))
)
(pin passive line (at -12.7 -12.7 0) (length 5.08)
(name "12" (effects (font (size 1.016 1.016))))
(number "12" (effects (font (size 1.016 1.016))))
)
)
)
(symbol "Switch:PCM12SMTR" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "SW1" (at 20.32 9.398 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SW_SPDT" (at 20.32 6.858 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Switch:SW_PCM12SMTR" (at 0 0 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(property "Datasheet" "PCM12SMTR" (at 0 0 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(property "ki_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_keywords" "PCM12SMTR" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "PCM12SMTR_CNK" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PCM12SMTR_0_1"
(polyline
(pts
(xy 7.62 -7.62)
(xy 33.02 -7.62)
)
(stroke (width 0.127) (type default))
(fill (type none))
)
(polyline
(pts
(xy 7.62 5.08)
(xy 7.62 -7.62)
)
(stroke (width 0.127) (type default))
(fill (type none))
)
(polyline
(pts
(xy 33.02 -7.62)
(xy 33.02 5.08)
)
(stroke (width 0.127) (type default))
(fill (type none))
)
(polyline
(pts
(xy 33.02 5.08)
(xy 7.62 5.08)
)
(stroke (width 0.127) (type default))
(fill (type none))
)
(pin unspecified line (at 0 0 0) (length 7.62)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 40.64 -2.54 180) (length 7.62)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 40.64 0 180) (length 7.62)
(name "3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
(symbol "PCM12SMTR_1_1"
(pin power_in line (at 12.7 -15.24 90) (length 7.62)
(name "S1" (effects (font (size 1.27 1.27))))
(number "S1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 15.24 -15.24 90) (length 7.62)
(name "S2" (effects (font (size 1.27 1.27))))
(number "S2" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 17.78 -15.24 90) (length 7.62)
(name "S3" (effects (font (size 1.27 1.27))))
(number "S3" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 20.32 -15.24 90) (length 7.62)
(name "S4" (effects (font (size 1.27 1.27))))
(number "S4" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 147.32 41.402) (diameter 0) (color 0 0 0 0)
(uuid 0667d1c2-e4c0-47af-ac16-6994d9e203a1)
)
(junction (at 264.668 32.512) (diameter 0) (color 0 0 0 0)
(uuid 06ababfb-e4e4-4c96-a35a-392e8b0a5f20)
)
(junction (at 233.68 15.494) (diameter 0) (color 0 0 0 0)
(uuid 0ed6c580-bd36-4935-80f1-044fde38b85f)
)
(junction (at 172.466 149.86) (diameter 0) (color 0 0 0 0)
(uuid 0ffbd6e2-d36b-4f52-a64d-a983e889bd14)
)
(junction (at 172.466 145.034) (diameter 0) (color 0 0 0 0)
(uuid 232dd9d8-79c8-4eb1-b230-1d1bb983bf35)
)
(junction (at 200.914 35.56) (diameter 0) (color 0 0 0 0)
(uuid 2e949573-eb9f-4896-9eec-02ad7d9ca83f)
)
(junction (at 208.534 36.83) (diameter 0) (color 0 0 0 0)
(uuid 36a9aaa9-a03a-409a-98d5-3cc492d22485)
)
(junction (at 138.938 41.402) (diameter 0) (color 0 0 0 0)
(uuid 5ffb16d0-103b-4f8c-aadc-7dfcc726cef4)
)
(junction (at 211.074 38.862) (diameter 0) (color 0 0 0 0)
(uuid 6c4e682c-a5cf-44fc-b5cf-bd5f6d56f206)
)
(junction (at 205.994 30.988) (diameter 0) (color 0 0 0 0)
(uuid 6f6fc3ba-d901-449a-bd49-4500883c6a0f)
)
(junction (at 236.728 70.866) (diameter 0) (color 0 0 0 0)
(uuid 713c9163-4e11-47cc-8d4b-0e5071812ee7)
)
(junction (at 134.366 26.162) (diameter 0) (color 0 0 0 0)
(uuid 7d92e2bf-9445-4e49-a16f-14df524c12a5)
)
(junction (at 198.374 34.036) (diameter 0) (color 0 0 0 0)
(uuid 81303006-276f-4f1b-9098-b27bcfe38a2f)
)
(junction (at 242.316 15.494) (diameter 0) (color 0 0 0 0)
(uuid 84391d79-1070-4d15-ad1a-5c7ee335ee06)
)
(junction (at 221.488 15.494) (diameter 0) (color 0 0 0 0)
(uuid 862dd487-b205-4d74-ab9f-7fd5f8886453)
)
(junction (at 236.728 28.956) (diameter 0) (color 0 0 0 0)
(uuid 8d12c836-acad-4844-8a4e-22f483680bfc)
)
(junction (at 176.784 149.86) (diameter 0) (color 0 0 0 0)
(uuid 9ca8f40e-05ed-46f4-8881-08e7c10a6f2a)
)
(junction (at 175.26 15.494) (diameter 0) (color 0 0 0 0)
(uuid a48e4716-e733-4977-8514-45ac8ac7d971)
)
(junction (at 188.214 38.354) (diameter 0) (color 0 0 0 0)
(uuid bbda6ec5-a091-4f3b-9071-0948d9d5a21a)
)
(junction (at 195.834 25.654) (diameter 0) (color 0 0 0 0)
(uuid caba455e-f78d-4675-b0a4-84dcd034a7c2)
)
(junction (at 185.928 15.494) (diameter 0) (color 0 0 0 0)
(uuid d70ee24a-e8ab-4fbb-9d3a-c8db2d401c76)
)
(junction (at 149.86 41.402) (diameter 0) (color 0 0 0 0)
(uuid dfea3dd2-056d-4fdb-b463-bb3a3df816ac)
)
(junction (at 227.33 15.494) (diameter 0) (color 0 0 0 0)
(uuid e5f4aa4b-0649-4a71-b024-d3ac292fce15)
)
(junction (at 247.904 15.494) (diameter 0) (color 0 0 0 0)
(uuid e8eefcbc-3be9-4791-a386-e499a43f4998)
)
(junction (at 152.4 41.402) (diameter 0) (color 0 0 0 0)
(uuid f8cdfe19-e6e4-4b06-8827-ecf8e4c8ca81)
)
(wire (pts (xy 227.33 15.494) (xy 233.68 15.494))
(stroke (width 0) (type default))
(uuid 00a9c298-375c-432e-96f8-691b63547718)
)
(wire (pts (xy 193.294 32.512) (xy 193.294 48.514))
(stroke (width 0) (type default))
(uuid 02473188-7301-4cea-bb12-d932e698cb04)
)
(wire (pts (xy 167.894 139.954) (xy 167.894 90.424))
(stroke (width 0) (type default))
(uuid 0315c5b6-c156-45e1-b0a5-dad36cb1b57f)
)
(wire (pts (xy 205.994 81.28) (xy 251.968 81.28))
(stroke (width 0) (type default))
(uuid 032ac3eb-57cf-4942-9dfb-83b23c6e314e)
)
(wire (pts (xy 236.728 149.86) (xy 176.784 149.86))
(stroke (width 0) (type default))
(uuid 03d5aadd-f30f-46a5-8234-bca1e6d60c64)
)
(wire (pts (xy 160.274 83.82) (xy 178.054 83.82))
(stroke (width 0) (type default))
(uuid 0573ac39-a165-4733-924a-3d63e035391d)
)
(wire (pts (xy 178.816 132.334) (xy 160.274 132.334))
(stroke (width 0) (type default))
(uuid 08c6ac3a-6799-4df3-84f7-9d7f61f6eb75)
)
(wire (pts (xy 211.074 48.514) (xy 254.254 48.514))
(stroke (width 0) (type default))
(uuid 0eecf053-858a-45ed-bc00-e63e1d3179c7)
)
(wire (pts (xy 205.486 145.034) (xy 211.328 145.034))
(stroke (width 0) (type default))
(uuid 10cc230b-05d4-4424-a64b-c7de2d1862e2)
)
(wire (pts (xy 195.834 25.654) (xy 195.834 48.514))
(stroke (width 0) (type default))
(uuid 1397eedb-f658-49c1-a126-5445abb86a79)
)
(wire (pts (xy 236.728 65.532) (xy 236.728 70.866))
(stroke (width 0) (type default))
(uuid 13e49e33-8f6c-492e-b723-6e265d144b32)
)
(wire (pts (xy 203.454 38.862) (xy 211.074 38.862))
(stroke (width 0) (type default))
(uuid 1438026e-92e9-429d-a3a4-fddbe6e220c8)
)
(wire (pts (xy 154.94 127.254) (xy 154.94 78.994))
(stroke (width 0) (type default))
(uuid 158a610e-9ab2-4442-8125-cdb860b8a99c)
)
(wire (pts (xy 222.25 134.874) (xy 205.486 134.874))
(stroke (width 0) (type default))
(uuid 164c7d9a-ce56-4d55-8d7e-94d64949a66f)
)
(wire (pts (xy 195.834 21.844) (xy 195.834 25.654))
(stroke (width 0) (type default))
(uuid 1732eafe-f8d2-49f3-968a-f91ac91d3d8c)
)
(wire (pts (xy 178.816 137.414) (xy 165.608 137.414))
(stroke (width 0) (type default))
(uuid 17b2f15f-96c1-42c4-9983-b8bb04835d6f)
)
(wire (pts (xy 190.754 34.036) (xy 198.374 34.036))
(stroke (width 0) (type default))
(uuid 194bc5d2-c325-48fb-bf2f-ccb8a41ff1c8)
)
(wire (pts (xy 200.914 21.844) (xy 200.914 35.56))
(stroke (width 0) (type default))
(uuid 19f37a37-ac28-4533-a20f-6a9efd6ecf6f)
)
(wire (pts (xy 180.594 43.434) (xy 180.594 48.514))
(stroke (width 0) (type default))
(uuid 1aecbcb2-6e3e-4b07-a997-02d7771ef798)
)
(wire (pts (xy 236.728 28.956) (xy 251.968 28.956))
(stroke (width 0) (type default))
(uuid 1b17949e-9827-4dd4-9900-1e090de574da)
)
(wire (pts (xy 134.366 15.494) (xy 175.26 15.494))
(stroke (width 0) (type default))
(uuid 1c397dd8-7461-4f48-ad26-bf5d2591a4d8)
)
(wire (pts (xy 257.302 124.714) (xy 205.486 124.714))
(stroke (width 0) (type default))
(uuid 1e95d707-6ce7-4fd9-8a75-43903cbf77c0)
)
(wire (pts (xy 185.928 23.876) (xy 185.928 25.654))
(stroke (width 0) (type default))
(uuid 20b738c9-9f81-461b-9ab0-f5725e2310ec)
)
(wire (pts (xy 203.454 85.344) (xy 222.25 85.344))
(stroke (width 0) (type default))
(uuid 21aaa8a7-be88-4486-89a5-02c6089f963a)
)
(wire (pts (xy 198.374 89.408) (xy 216.662 89.408))
(stroke (width 0) (type default))
(uuid 21f7dafe-bd5a-403b-ad85-dd1a529507b9)
)
(wire (pts (xy 175.26 15.494) (xy 175.26 26.162))
(stroke (width 0) (type default))
(uuid 221c670f-8b69-468a-b765-967694f1c9ef)
)
(wire (pts (xy 260.096 122.174) (xy 205.486 122.174))
(stroke (width 0) (type default))
(uuid 23e26503-4aeb-4117-af68-8b1cffaf169b)
)
(wire (pts (xy 264.668 32.512) (xy 264.668 117.094))
(stroke (width 0) (type default))
(uuid 24566c71-af0d-4aac-9e61-d9b025f53d72)
)
(wire (pts (xy 228.6 79.502) (xy 228.6 127.254))
(stroke (width 0) (type default))
(uuid 27b60d5f-30d2-4706-8ae8-030bcaa559d3)
)
(wire (pts (xy 262.636 119.634) (xy 205.486 119.634))
(stroke (width 0) (type default))
(uuid 296ac655-89d0-4a23-8fd3-85c6b8242ede)
)
(wire (pts (xy 143.256 117.094) (xy 143.256 43.434))
(stroke (width 0) (type default))
(uuid 2a84ac2c-dc6f-4edb-8c11-4ce239ac46f6)
)
(wire (pts (xy 185.674 90.424) (xy 167.894 90.424))
(stroke (width 0) (type default))
(uuid 2c731653-675f-4c0f-94f9-95da96b89fda)
)
(wire (pts (xy 203.454 48.514) (xy 203.454 38.862))
(stroke (width 0) (type default))
(uuid 2c74bbc5-616c-4380-93d9-125e577c86ea)
)
(wire (pts (xy 203.454 21.844) (xy 203.454 28.702))
(stroke (width 0) (type default))
(uuid 2c83b58c-d302-43ad-8aeb-9304a07aff64)
)
(wire (pts (xy 170.434 142.494) (xy 170.434 92.202))
(stroke (width 0) (type default))
(uuid 30cbcf1c-a551-4dcb-ae2d-95c56bcef442)
)
(wire (pts (xy 242.316 15.494) (xy 247.904 15.494))
(stroke (width 0) (type default))
(uuid 33554c1e-05ee-4968-8e38-2461f662ddb2)
)
(wire (pts (xy 203.454 78.994) (xy 203.454 85.344))
(stroke (width 0) (type default))
(uuid 34b5e214-391c-40ee-b2c4-8e7526447f58)
)
(wire (pts (xy 205.994 30.988) (xy 233.68 30.988))
(stroke (width 0) (type default))
(uuid 34bcefab-8983-4496-bd89-fd868b9e9dbd)
)
(wire (pts (xy 178.816 142.494) (xy 170.434 142.494))
(stroke (width 0) (type default))
(uuid 36417166-51ae-4361-a3d5-66ba4b897b16)
)
(wire (pts (xy 233.68 15.494) (xy 242.316 15.494))
(stroke (width 0) (type default))
(uuid 37d1d48f-04c1-406b-a4f9-427c220728dd)
)
(wire (pts (xy 257.302 44.45) (xy 257.302 124.714))
(stroke (width 0) (type default))
(uuid 3ad92752-dcc4-496f-8285-2e590eb02d13)
)
(wire (pts (xy 175.514 81.28) (xy 175.514 78.994))
(stroke (width 0) (type default))
(uuid 3b485f79-edb9-4e47-9dab-b87e00e78064)
)
(wire (pts (xy 184.15 38.354) (xy 188.214 38.354))
(stroke (width 0) (type default))
(uuid 3ee6399d-56c4-43cb-9228-1c67921656a2)
)
(wire (pts (xy 198.374 35.56) (xy 198.374 48.514))
(stroke (width 0) (type default))
(uuid 3fcd66af-58aa-453e-9750-c1f3ebba9539)
)
(wire (pts (xy 198.374 21.844) (xy 198.374 34.036))
(stroke (width 0) (type default))
(uuid 403f6add-4fbb-4982-be60-97b65c7a653d)
)
(wire (pts (xy 149.86 41.402) (xy 152.4 41.402))
(stroke (width 0) (type default))
(uuid 41ee2b4a-1171-4c97-a852-b08af1e51b9b)
)
(wire (pts (xy 149.352 122.174) (xy 149.352 46.736))
(stroke (width 0) (type default))
(uuid 4358051d-fb03-4a33-a2c1-3ab292c5b1b7)
)
(wire (pts (xy 134.366 15.494) (xy 134.366 17.272))
(stroke (width 0) (type default))
(uuid 43b80a65-3c76-42f7-abc0-c3814b939cd6)
)
(wire (pts (xy 205.994 78.994) (xy 205.994 81.28))
(stroke (width 0) (type default))
(uuid 43eb0415-45d1-450a-a239-b4d5a765ee7f)
)
(wire (pts (xy 221.488 17.78) (xy 221.488 15.494))
(stroke (width 0) (type default))
(uuid 47478be4-f836-47bd-b3ea-23460dd223f1)
)
(wire (pts (xy 157.48 81.28) (xy 175.514 81.28))
(stroke (width 0) (type default))
(uuid 4780f4ef-7d00-4b3e-9eac-e4674b868add)
)
(wire (pts (xy 195.834 78.994) (xy 195.834 91.694))
(stroke (width 0) (type default))
(uuid 4a576c03-a9c6-40da-8f41-e00a0e6663e8)
)
(wire (pts (xy 216.662 139.954) (xy 205.486 139.954))
(stroke (width 0) (type default))
(uuid 4aa2501c-8ac9-4301-a9d8-37b4e39b25da)
)
(wire (pts (xy 260.096 46.482) (xy 208.534 46.482))
(stroke (width 0) (type default))
(uuid 4c039050-060e-4ea1-baa3-9297b9d646ef)
)
(wire (pts (xy 175.514 46.736) (xy 175.514 48.514))
(stroke (width 0) (type default))
(uuid 4e42c62f-c58f-48ce-b8e5-581be153e8e4)
)
(wire (pts (xy 175.26 15.494) (xy 185.928 15.494))
(stroke (width 0) (type default))
(uuid 4efdc87e-16f0-4a03-9775-5189036001f5)
)
(wire (pts (xy 185.674 78.994) (xy 185.674 90.424))
(stroke (width 0) (type default))
(uuid 4f96c06a-2f25-4c51-93de-bd0d994bcdf9)
)
(wire (pts (xy 254.254 132.334) (xy 205.486 132.334))
(stroke (width 0) (type default))
(uuid 519a7f08-82ba-4f7a-841e-172922a250d7)
)
(wire (pts (xy 147.32 41.402) (xy 149.86 41.402))
(stroke (width 0) (type default))
(uuid 51cecbec-c56b-4e49-972b-db895c03ce77)
)
(wire (pts (xy 190.754 34.036) (xy 190.754 48.514))
(stroke (width 0) (type default))
(uuid 546531f8-e34b-4d19-8862-302ddfaa2e42)
)
(wire (pts (xy 193.294 94.996) (xy 211.328 94.996))
(stroke (width 0) (type default))
(uuid 56a4e2e7-bf00-413c-89e6-1ecb86a9d715)
)
(wire (pts (xy 183.134 48.514) (xy 183.134 44.45))
(stroke (width 0) (type default))
(uuid 578710c9-75b4-47a8-a2de-33acdeb7ea2f)
)
(wire (pts (xy 178.816 129.794) (xy 157.48 129.794))
(stroke (width 0) (type default))
(uuid 59e50de0-2a81-403b-9179-2724b6105f64)
)
(wire (pts (xy 200.914 78.994) (xy 200.914 87.376))
(stroke (width 0) (type default))
(uuid 5b088a0c-0a3f-4327-8559-c9c05174f0d6)
)
(wire (pts (xy 260.096 46.482) (xy 260.096 122.174))
(stroke (width 0) (type default))
(uuid 5b576fdf-597c-495f-ae36-280c17a84cf3)
)
(wire (pts (xy 247.904 15.494) (xy 247.904 18.034))
(stroke (width 0) (type default))
(uuid 5c902f20-7cee-4587-9c63-b2e7d97fd211)
)
(wire (pts (xy 195.834 91.694) (xy 213.868 91.694))
(stroke (width 0) (type default))
(uuid 5cd72d3c-a81d-4d2b-92bc-7c4979b10671)
)
(wire (pts (xy 225.552 83.058) (xy 225.552 129.794))
(stroke (width 0) (type default))
(uuid 5ee63b16-a395-4944-8268-1fd9381efdab)
)
(wire (pts (xy 233.68 15.494) (xy 233.68 17.526))
(stroke (width 0) (type default))
(uuid 61cdaf96-4542-4758-aec9-fb2f1e9e2228)
)
(wire (pts (xy 152.4 41.402) (xy 154.94 41.402))
(stroke (width 0) (type default))
(uuid 627d4fe5-aaf2-4dcc-9446-0b8fedcf1c4f)
)
(wire (pts (xy 190.754 78.994) (xy 190.754 94.742))
(stroke (width 0) (type default))