-
Notifications
You must be signed in to change notification settings - Fork 0
/
mspDice.ses
1533 lines (1532 loc) · 30.6 KB
/
mspDice.ses
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
(session mspDice.ses
(base_design mspDice.dsn)
(placement
(resolution mil 10)
(component SOT23GDS
(place Q1 7550 -9350 front 180)
(place Q2 9100 -9350 front 180)
(place Q3 10650 -9350 front 180)
(place Q4 12150 -9350 front 180)
)
(component SO16N
(place U2 10325 -3375 back 180)
)
(component "SIL-2"
(place P1 16050 -9050 front 0)
)
(component "DIP-14__300_ELL"
(place U1 9250 -14350 front 180)
)
(component SM1812
(place C1 15050 -14300 front 270)
)
(component 4DIGIT
(place DIS1 9843 -3937 front 0)
)
(component R4_0805
(place R1 10225 -5875 back 180)
(place R2 10150 -14350 back 0)
(place R3 1600 -4154 back 90)
(place R4 4600 -4134 back 270)
(place R5 3600 -4134 back 270)
(place R6 2600 -4134 back 270)
(place R7 17900 -4134 back 270)
(place R8 16900 -4134 back 270)
(place R9 15900 -4134 back 270)
(place R10 14900 -4134 back 270)
)
(component PUSH_SMD6x6
(place NEXT 16929 -17717 front 0)
(place PREV 2756 -17717 front 0)
)
(component SSOP14
(place U3 13900 -14350 back 180)
)
(component "SIL-7"
(place P3 825 -12000 front 270)
(place P4 18775 -12000 front 270)
)
(component SM0805
(place C2 13800 -14350 front 270)
(place C3 7650 -4300 back 270)
)
(component "SIL-6"
(place P2 9843 -18504 front 0)
)
)
(was_is
)
(routes
(resolution mil 10)
(parser
(host_cad "Kicad's PCBNEW")
(host_version "(2011-05-25)-stable")
)
(library_out
(padstack "Via[0-1]_35:25_mil"
(shape
(circle Front 350 0 0)
)
(shape
(circle Back 350 0 0)
)
(attach off)
)
(padstack "Via[0-1]_35:0_mil"
(shape
(circle Front 350 0 0)
)
(shape
(circle Back 350 0 0)
)
(attach off)
)
(padstack "Via[0-1]_45:20_mil"
(shape
(circle Front 450 0 0)
)
(shape
(circle Back 450 0 0)
)
(attach off)
)
)
(network_out
(net GND
(via "Via[0-1]_45:20_mil" 13800 -7000
(type protect)
)
(via "Via[0-1]_45:20_mil" 12550 -5050
(type protect)
)
(wire
(path Back 250
12075 -3300
12075 -2125
)
(type protect)
)
(wire
(path Back 100
13135 -15450
13135 -15665
12950 -15850
12250 -15850
)
(type protect)
)
(wire
(path Back 250
7650 -3925
11475 -3925
12075 -3325
12075 -3825
12550 -4300
12550 -5050
)
(type protect)
)
(wire
(path Front 250
12550 -5050
12550 -5400
13650 -6500
13800 -7000
)
(type protect)
)
)
(net /AN1
(wire
(path Front 250
7550 -8950
7550 -8100
8050 -7600
13900 -7600
14450 -7050
14450 -5350
12450 -3350
8000 -3350
7343 -2693
7343 -812
)
(type protect)
)
)
(net /AN2
(wire
(path Front 250
10343 -812
10343 -2543
10750 -2950
12750 -2950
14950 -5150
14950 -7150
14148 -7952
9498 -7952
9100 -8350
9100 -8950
)
(type protect)
)
)
(net /AN3
(wire
(path Front 250
10650 -8950
10650 -8704
10854 -8500
14200 -8500
15550 -7150
15550 -5150
12850 -2450
11650 -2450
11343 -2143
11343 -812
)
(type protect)
)
)
(net /AN4
(via "Via[0-1]_45:20_mil" 13850 -9050
(type protect)
)
(wire
(path Front 250
12150 -8950
13750 -8950
13850 -9050
)
(type protect)
)
(wire
(path Back 250
13850 -9050
12343 -7493
12343 -7062
)
(type protect)
)
)
(net /CLR
(wire
(path Back 150
12225 -5875
11575 -5225
11575 -4625
)
(type protect)
)
(wire
(path Back 150
10625 -5875
12225 -5875
)
(type protect)
)
)
(net /D1IN
(via "Via[0-1]_35:25_mil" 9500 -5200
(type protect)
)
(wire
(path Front 100
5425 -7575
5400 -7600
)
(type protect)
)
(wire
(path Front 100
9500 -5200
8350 -6400
6600 -6400
5425 -7575
)
(type protect)
)
(wire
(path Back 100
14670 -15450
14670 -16630
13300 -18000
8400 -18000
6250 -15850
)
(type protect)
)
(wire
(path Back 100
9575 -4625
9575 -5175
9500 -5200
)
(type protect)
)
(wire
(path Front 100
5425 -7575
5425 -7925
4850 -8500
4850 -9800
3150 -11500
3150 -14200
4800 -15850
6250 -15850
)
(type protect)
)
(wire
(path Back 100
14670 -15450
18325 -15450
18775 -15000
)
(type protect)
)
)
(net /DIGIT1
(via "Via[0-1]_35:25_mil" 4350 -11450
(type protect)
)
(wire
(path Back 100
13650 -13250
13650 -12550
12850 -11750
11350 -11750
10250 -12850
)
(type protect)
)
(wire
(path Front 100
10250 -12850
9450 -12050
4950 -12050
4350 -11450
)
(type protect)
)
(wire
(path Front 100
4350 -11450
4800 -11450
5850 -10400
7100 -10400
7200 -10300
7200 -9750
)
(type protect)
)
(wire
(path Back 100
4350 -11450
4300 -11450
3850 -11000
825 -11000
)
(type protect)
)
)
(net /DIGIT2
(wire
(path Back 100
11000 -11500
10600 -11500
9250 -12850
)
(type protect)
)
(wire
(path Back 100
13900 -13250
13900 -12450
12950 -11500
11000 -11500
)
(type protect)
)
(via "Via[0-1]_35:25_mil" 11000 -11500
(type protect)
)
(via "Via[0-1]_35:25_mil" 3000 -14750
(type protect)
)
(wire
(path Front 100
8750 -9750
8750 -10200
8950 -10400
9900 -10400
11000 -11500
)
(type protect)
)
(wire
(path Back 100
9250 -12850
9250 -13350
8850 -13750
8100 -13750
7100 -14750
3000 -14750
)
(type protect)
)
(wire
(path Front 100
3000 -14750
2400 -14150
2400 -12400
2000 -12000
825 -12000
)
(type protect)
)
)
(net /DIGIT3
(wire
(path Back 100
14160 -13250
14160 -12310
13000 -11150
9950 -11150
8250 -12850
)
(type protect)
)
(wire
(path Back 100
825 -13000
600 -13000
150 -13450
150 -14450
350 -14650
350 -15300
650 -15600
1500 -15600
2750 -14350
6900 -14350
8250 -13000
)
(type protect)
)
(wire
(path Back 150
8250 -13000
8250 -12850
)
(type protect)
)
)
(net /DIGIT4
(wire
(path Back 100
9100 -11000
7250 -12850
)
(type protect)
)
(wire
(path Back 100
14415 -13250
14415 -12215
13100 -10900
9200 -10900
9100 -11000
)
(type protect)
)
(via "Via[0-1]_35:25_mil" 9100 -11000
(type protect)
)
(wire
(path Front 100
11800 -9750
11800 -9700
11400 -9300
10350 -9300
10250 -9200
10250 -8500
10100 -8350
9600 -8350
9450 -8500
9450 -9200
9300 -9350
8450 -9350
8250 -9550
8250 -10850
8400 -11000
9100 -11000
)
(type protect)
)
(wire
(path Back 100
825 -14000
6150 -14000
6150 -13950
7250 -12850
)
(type protect)
)
)
(net /DP
(wire
(path Back 100
14900 -6134
12666 -6134
12400 -6400
11150 -6400
10800 -6750
10800 -7350
10500 -7650
9931 -7650
9343 -7062
)
(type protect)
)
(wire
(path Back 150
14900 -6134
14900 -4534
)
(type protect)
)
)
(net /EN
(wire
(path Back 100
17750 -14950
17751 -14950
)
(type protect)
)
(wire
(path Back 100
14415 -15450
14415 -15085
14550 -14950
17750 -14950
)
(type protect)
)
(wire
(path Back 100
17751 -14950
17825 -14950
18775 -14000
)
(type protect)
)
(wire
(path Back 100
17750 -14950
17751 -14950
)
(type protect)
)
(via "Via[0-1]_35:25_mil" 10050 -5150
(type protect)
)
(wire
(path Back 100
14415 -15450
14415 -16535
13250 -17700
9100 -17700
7250 -15850
)
(type protect)
)
(wire
(path Front 100
10050 -5150
8598 -6602
6748 -6602
5852 -7498
5852 -8048
5100 -8800
5100 -10050
3500 -11650
3500 -13350
5200 -15050
6450 -15050
7250 -15850
)
(type protect)
)
(wire
(path Back 100
10075 -4625
10075 -5125
10050 -5150
)
(type protect)
)
)
(net /LATCH
(via "Via[0-1]_35:25_mil" 10750 -5200
(type protect)
)
(via "Via[0-1]_35:25_mil" 13250 -7150
(type protect)
)
(via "Via[0-1]_35:25_mil" 6100 -11350
(type protect)
)
(wire
(path Back 100
13390 -13250
13390 -12690
12700 -12000
11700 -12000
11250 -12450
11250 -12850
)
(type protect)
)
(wire
(path Back 100
13390 -13250
13390 -13640
13596 -13846
14954 -13846
15350 -13450
15350 -9800
13450 -7450
13250 -7150
)
(type protect)
)
(wire
(path Back 100
10575 -4625
10575 -5175
10750 -5200
)
(type protect)
)
(wire
(path Front 100
13250 -7150
12750 -6600
11700 -6600
11100 -6000
11100 -5750
10750 -5200
)
(type protect)
)
(wire
(path Front 100
11250 -12850
11250 -12300
10600 -11650
6450 -11650
6100 -11350
)
(type protect)
)
(wire
(path Back 100
6100 -11350
5500 -10700
4700 -10700
4000 -10000
825 -10000
)
(type protect)
)
)
(net /NEXT
(wire
(path Back 100
13390 -15450
13390 -15960
12700 -16650
11800 -16650
11250 -16100
11250 -15850
)
(type protect)
)
(wire
(path Front 150
15275 -18603
13203 -18603
11250 -16650
11250 -15850
)
(type protect)
)
(wire
(path Front 80
15275 -18603
18583 -18603
)
(type protect)
)
(wire
(path Back 100
13390 -15450
13390 -14708
14050 -14048
17002 -14048
17650 -13400
17650 -11050
18700 -10000
18775 -10000
)
(type protect)
)
)
(net /PREV
(wire
(path Back 100
13645 -15450
13645 -16155
12850 -16950
11350 -16950
10250 -15850
)
(type protect)
)
(wire
(path Front 80
1102 -18603
4410 -18603
)
(type protect)
)
(wire
(path Back 100
13645 -15450
13645 -14805
14200 -14250
17150 -14250
17900 -13500
17900 -11875
18775 -11000
)
(type protect)
)
(wire
(path Front 100
10250 -15850
10250 -17450
10850 -18050
10850 -18850
10400 -19300
6350 -19300
5653 -18603
4410 -18603
)
(type protect)
)
)
(net /RESET
(wire
(path Back 100
17300 -14748
14352 -14748
14160 -14940
14160 -15450
)
(type protect)
)
(wire
(path Back 100
17302 -14748
17300 -14748
)
(type protect)
)
(wire
(path Back 100
17300 -14748
17302 -14748
)
(type protect)
)
(wire
(path Front 150
8150 -14350
8150 -14700
8250 -14800
8250 -15850
)
(type protect)
)
(wire
(path Back 100
14160 -15450
14160 -16340
13050 -17450
9850 -17450
8250 -15850
)
(type protect)
)
(wire
(path Front 150
8250 -15850
8250 -16300
9343 -17393
9343 -18504
)
(type protect)
)
(wire
(path Back 150
9750 -14350
8150 -14350
)
(type protect)
)
(wire
(path Back 100
17302 -14748
17402 -14748
18775 -13375
18775 -13000
)
(type protect)
)
)
(net /SCLK
(wire
(path Back 100
14670 -13250
14670 -11970
13350 -10650
8450 -10650
6250 -12850
)
(type protect)
)
(wire
(path Back 100
6250 -12850
5650 -13450
800 -13450
400 -13850
400 -14350
825 -14775
825 -15000
)
(type protect)
)
)
(net /TEST
(wire
(path Back 100
13900 -15450
13900 -16200
12900 -17200
10600 -17200
9250 -15850
)
(type protect)
)
(wire
(path Front 150
8343 -18504
8404 -18504
8948 -19048
9502 -19048
9850 -18700
9850 -17100
9250 -16500
9250 -15850
)
(type protect)
)
(wire
(path Back 100
13900 -15450
13900 -14900
14300 -14500
17200 -14500
18150 -13550
18150 -12625
18775 -12000
)
(type protect)
)
)
(net "N-000001"
(wire
(path Back 100
2600 -6134
2600 -7050
3400 -7850
8100 -7850
8343 -7607
8343 -7062
)
(type protect)
)
(wire
(path Back 150
2600 -6134
2600 -4534
)
(type protect)
)
)
(net "N-000002"
(wire
(path Front 100
8246 -2699
9343 -1602
9343 -812
)
)
(via "Via[0-1]_35:25_mil" 8246 -2699
)
(wire
(path Back 100
5525 -2704
8241 -2704
8246 -2699
)
)
(via "Via[0-1]_35:25_mil" 5525 -2704
)
(wire
(path Front 100
4185 -15915
3347 -15915
1725 -14293
1725 -13248
908 -12431
424 -12431
396 -12403
396 -5874
3566 -2704
5525 -2704
)
)
(via "Via[0-1]_35:25_mil" 4185 -15915
)
(wire
(path Back 100
16900 -5939
19205 -8244
19205 -15382
15654 -18933
8120 -18933
7774 -18587
7774 -18103
7746 -18075
6345 -18075
4185 -15915
)
)
(wire
(path Back 150
16900 -5939
16900 -4534
)
(type protect)
)
(wire
(path Back 150
16900 -6134
16900 -5939
)
(type protect)
)
)
(net "N-000003"
(via "Via[0-1]_35:25_mil" 6200 -3400
(type protect)
)
(wire
(path Back 150
4600 -6134
4600 -4534
)
(type protect)
)
(wire
(path Front 100
12343 -812
12312 -812
11750 -250
7000 -250
6200 -1050
6200 -3400
)
(type protect)
)
(wire
(path Back 100
6200 -3400
6200 -5550
5616 -6134
4600 -6134
)
(type protect)
)
)
(net "N-000012"
(wire
(path Back 80
15900 -2134
15900 -1900
15500 -1500
11400 -1500
11075 -1825
11075 -2125
)
(type protect)
)
(wire
(path Back 150
15900 -2134
15900 -3734
)
(type protect)
)
)
(net "N-000013"
(wire
(path Back 80
17900 -2134
17900 -1500