-
Notifications
You must be signed in to change notification settings - Fork 0
/
PM THT Van.ses
1907 lines (1906 loc) · 41.8 KB
/
PM THT Van.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 "PM THT Van.ses"
(base_design "PM THT Van.dsn")
(placement
(resolution um 10)
(component "MX_Only:MXOnly-2.25U-ReversedStabilizers-NoLED"
(place SW19 1365250 -1301750 front 0)
)
(component "MX_Only:MXOnly-2U-ReversedStabilizers-NoLED"
(place SW26 1770060 -1301750 front 0)
)
(component "MX_Only:MXOnly-1.75U-NoLED"
(place SW46 2651120 -730250 front 0)
(place SW40 2651120 -1301750 front 0)
(place SW3 555625 -1111250 front 0)
)
(component "MX_Only:MXOnly-1.5U-NoLED"
(place SW47 2674940 -920750 front 0)
(place SW35 2341560 -1301750 front 0)
(place SW31 2103440 -1301750 front 0)
(place SW8 769938 -1301750 front 0)
)
(component "MX_Only:MXOnly-1.25U-NoLED"
(place SW30 2079620 -1301750 front 0)
(place SW12 1031880 -1301750 front 0)
(place SW4 508000 -1301750 front 0)
(place SW2 508000 -920750 front 0)
)
(component "MX_Only:MXOnly-1U-NoLED"
(place SW53 1055690 -1301750 front 0)
(place SW52 865188 -1301750 front 0)
(place SW51 674688 -1301750 front 0)
(place SW50 484188 -1301750 front 0)
(place SW48 2722560 -1111250 front 0)
(place SW45 2389190 -730250 front 0)
(place SW44 2722560 -1301750 front 0)
(place SW43 2532060 -1111250 front 0)
(place SW42 2436810 -920750 front 0)
(place SW41 2532060 -1301750 front 0)
(place SW39 2341560 -1111250 front 0)
(place SW38 2246310 -920750 front 0)
(place SW37 2198690 -730250 front 0)
(place SW36 2341560 -1301750 front 0)
(place SW34 2151060 -1111250 front 0)
(place SW33 2055810 -920750 front 0)
(place SW32 2008190 -730250 front 0)
(place SW29 1960560 -1111250 front 0)
(place SW28 1865310 -920750 front 0)
(place SW27 1817690 -730250 front 0)
(place SW25 1770060 -1111250 front 0)
(place SW24 1674810 -920750 front 0)
(place SW23 1627190 -730250 front 0)
(place SW22 1579560 -1111250 front 0)
(place SW21 1484310 -920750 front 0)
(place SW20 1436690 -730250 front 0)
(place SW18 1389060 -1111250 front 0)
(place SW17 1293810 -920750 front 0)
(place SW16 1246190 -730250 front 0)
(place SW15 1198560 -1111250 front 0)
(place SW14 1103310 -920750 front 0)
(place SW13 1055690 -730250 front 0)
(place SW11 1008060 -1111250 front 0)
(place SW10 912812 -920750 front 0)
(place SW9 865188 -730250 front 0)
(place SW7 817562 -1111250 front 0)
(place SW6 722312 -920750 front 0)
(place SW5 674688 -730250 front 0)
(place SW1 484188 -730250 front 0)
)
(component "Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal"
(place D46 2754310 -523875 front 135)
(place D45 2754310 -555625 front 225)
(place D44 2611440 -523875 front 45)
(place D43 2579690 -555625 front 225)
(place D42 2611440 -555625 front 315)
(place D41 2579690 -523875 front 135)
(place D40 2436810 -523875 front 45)
(place D39 2405060 -555625 front 225)
(place D38 2436810 -555625 front 315)
(place D37 2405060 -523875 front 135)
(place D36 2262190 -523875 front 45)
(place D35 2230440 -555625 front 225)
(place D34 2262190 -555625 front 315)
(place D33 2230440 -523875 front 135)
(place D32 2087560 -523875 front 45)
(place D31 2055810 -555625 front 225)
(place D30 2087560 -555625 front 315)
(place D29 2055810 -523875 front 135)
(place D28 1912940 -523875 front 45)
(place D27 1881190 -555625 front 225)
(place D26 1912940 -555625 front 315)
(place D25 1881190 -523875 front 135)
(place D24 1738310 -523875 front 45)
(place D23 1706560 -555625 front 225)
(place D22 1738310 -555625 front 315)
(place D21 1706560 -523875 front 135)
(place D20 1563690 -523875 front 45)
(place D19 1531940 -555625 front 225)
(place D18 1563690 -555625 front 315)
(place D17 1531940 -523875 front 135)
(place D16 1389060 -523875 front 45)
(place D15 1357310 -555625 front 225)
(place D14 1389060 -555625 front 315)
(place D13 1357310 -523875 front 135)
(place D12 1214440 -523875 front 45)
(place D11 1182690 -555625 front 225)
(place D10 1214440 -555625 front 315)
(place D9 1182690 -523875 front 135)
(place D8 1039810 -523875 front 45)
(place D7 1008060 -555625 front 225)
(place D6 1039810 -555625 front 315)
(place D5 1008060 -523875 front 135)
(place D4 865188 -523875 front 45)
(place D3 833438 -555625 front 225)
(place D2 865188 -555625 front 315)
(place D1 833438 -523875 front 135)
)
(component "Keebio-Parts:ArduinoProMicro"
(place U1 579438 -531812 front 0)
)
)
(was_is
)
(routes
(resolution um 10)
(parser
(host_cad "KiCad's Pcbnew")
(host_version 5.1.7)
)
(library_out
(padstack "Via[0-1]_800:400_um"
(shape
(circle F.Cu 8000 0 0)
)
(shape
(circle B.Cu 8000 0 0)
)
(attach off)
)
)
(network_out
(net "Net-(D1-Pad2)"
(wire
(path B.Cu 2500
446088 -704850
528638 -622300
528638 -603596
654284 -477950
771599 -477950
)
)
(wire
(path B.Cu 2500
779556 -469993
771599 -477950
)
)
)
(net ROW0
(wire
(path B.Cu 2500
833438 -523875
825481 -531832
)
)
(wire
(path B.Cu 2500
541338 -608012
617518 -531832
825481 -531832
)
)
(wire
(path B.Cu 2500
2230440 -555625
2222483 -547668
)
)
(wire
(path B.Cu 2500
2055810 -555625
2070426 -541009
2131036 -541009
2137695 -547668
2222483 -547668
)
)
(wire
(path F.Cu 2500
2230440 -555625
2238397 -563582
)
)
(wire
(path F.Cu 2500
2579690 -555625
2560499 -574816
2249631 -574816
2238397 -563582
)
)
(wire
(path F.Cu 2500
1008060 -523875
1022735 -509200
1168015 -509200
1182690 -523875
)
)
(wire
(path F.Cu 2500
833438 -523875
848045 -509268
993453 -509268
1008060 -523875
)
)
(wire
(path F.Cu 2500
1182690 -523875
1197467 -509098
1342533 -509098
1357310 -523875
)
)
(wire
(path F.Cu 2500
2611440 -555625
2603483 -547668
)
)
(wire
(path F.Cu 2500
2579690 -555625
2587647 -547668
)
)
(wire
(path F.Cu 2500
2587647 -547668
2603483 -547668
)
)
(wire
(path F.Cu 2500
1881190 -555625
1895788 -570223
2041212 -570223
2055810 -555625
)
)
(wire
(path F.Cu 2500
1714517 -563582
1721214 -570279
1866536 -570279
1881190 -555625
)
)
(wire
(path B.Cu 2500
1563690 -523875
1571647 -515918
)
)
(wire
(path B.Cu 2500
1571647 -515918
1587902 -515918
1645093 -458727
1657808 -458727
1689378 -490297
1689378 -538443
1706560 -555625
)
)
(wire
(path F.Cu 2500
1389060 -523875
1397017 -515918
)
)
(wire
(path F.Cu 2500
1397017 -515918
1403668 -509267
1549082 -509267
1563690 -523875
)
)
(wire
(path B.Cu 2500
1389060 -523875
1381103 -531832
)
)
(wire
(path B.Cu 2500
1357310 -523875
1365267 -531832
)
)
(wire
(path B.Cu 2500
1365267 -531832
1381103 -531832
)
)
(wire
(path F.Cu 2500
1706560 -555625
1714517 -563582
)
)
)
(net "Net-(D2-Pad2)"
(wire
(path F.Cu 2500
919070 -609507
911113 -617464
)
)
(wire
(path F.Cu 2500
911113 -617464
891547 -597898
747729 -597898
745826 -595995
663295 -595995
655638 -603652
655638 -627003
469900 -812741
469900 -895350
)
)
)
(net ROW1
(wire
(path F.Cu 2500
2087560 -523875
2072858 -509173
1927642 -509173
1912940 -523875
)
)
(wire
(path F.Cu 2500
1738310 -523875
1753288 -508897
1897962 -508897
1912940 -523875
)
)
(wire
(path F.Cu 2500
1039810 -555625
1025081 -570354
978355 -570354
971583 -563582
873145 -563582
)
)
(wire
(path B.Cu 2500
2405060 -555625
2421827 -538858
2438639 -538858
2464468 -513029
2464468 -480146
2486069 -458545
2546110 -458545
2611440 -523875
)
)
(wire
(path B.Cu 2500
2087560 -523875
2095517 -531832
)
)
(wire
(path B.Cu 2500
2262190 -523875
2247307 -538758
2137407 -538758
2130481 -531832
2095517 -531832
)
)
(wire
(path F.Cu 2500
1214440 -555625
1229008 -541057
1374492 -541057
1389060 -555625
)
)
(wire
(path F.Cu 2500
1389060 -555625
1412853 -531832
1523983 -531832
)
)
(wire
(path F.Cu 2500
1039810 -555625
1054693 -540742
1199557 -540742
1214440 -555625
)
)
(wire
(path B.Cu 2500
566738 -608012
579091 -620365
622295 -620365
630238 -612422
630238 -603024
642785 -590477
830336 -590477
865188 -555625
)
)
(wire
(path F.Cu 2500
2262190 -523875
2270147 -531832
)
)
(wire
(path F.Cu 2500
2270147 -531832
2381267 -531832
2405060 -555625
)
)
(wire
(path F.Cu 2500
1706560 -527529
1698789 -527529
1687874 -538444
1546509 -538444
1539897 -531832
)
)
(wire
(path F.Cu 2500
1531940 -523875
1523983 -531832
)
)
(wire
(path F.Cu 2500
1531940 -523875
1539897 -531832
)
)
(wire
(path F.Cu 2500
865188 -555625
873145 -563582
)
)
(wire
(path F.Cu 2500
1738310 -523875
1730353 -531832
)
)
(wire
(path F.Cu 2500
1706560 -527529
1726050 -527529
1730353 -531832
)
)
(wire
(path F.Cu 2500
1706560 -527529
1706560 -523875
)
)
)
(net "Net-(D3-Pad2)"
(wire
(path B.Cu 2500
779556 -609507
737566 -651497
668998 -651497
571607 -748888
571607 -925012
517525 -979094
517525 -1085850
)
)
)
(net ROW2
(wire
(path F.Cu 2500
833438 -555625
848266 -540797
993232 -540797
1008060 -555625
)
)
(wire
(path B.Cu 2500
592138 -608012
636568 -563582
825481 -563582
)
)
(wire
(path F.Cu 2500
1357310 -555625
1372219 -570534
1548781 -570534
1563690 -555625
)
)
(wire
(path F.Cu 2500
1182690 -555625
1197599 -570534
1342401 -570534
1357310 -555625
)
)
(wire
(path F.Cu 2500
1730353 -540695
1694245 -540695
1687272 -547668
1571647 -547668
)
)
(wire
(path F.Cu 2500
1873233 -531832
1864370 -540695
1730353 -540695
)
)
(wire
(path F.Cu 2500
1730353 -547668
1730353 -540695
)
)
(wire
(path F.Cu 2500
1738310 -555625
1730353 -547668
)
)
(wire
(path F.Cu 2500
1563690 -555625
1571647 -547668
)
)
(wire
(path F.Cu 2500
1881190 -523875
1873233 -531832
)
)
(wire
(path B.Cu 2500
2436810 -523875
2428853 -531832
)
)
(wire
(path B.Cu 2500
2405060 -523875
2413017 -531832
)
)
(wire
(path B.Cu 2500
2413017 -531832
2428853 -531832
)
)
(wire
(path F.Cu 2500
2230440 -523875
2245204 -509111
2390296 -509111
2405060 -523875
)
)
(wire
(path B.Cu 2500
833438 -555625
825481 -563582
)
)
(wire
(path F.Cu 2500
2754310 -555625
2739742 -541057
2453992 -541057
2436810 -523875
)
)
(wire
(path B.Cu 2500
2055810 -523875
2070407 -509278
2215843 -509278
2230440 -523875
)
)
(wire
(path F.Cu 2500
1881190 -523875
1895962 -538647
2041038 -538647
2055810 -523875
)
)
(wire
(path B.Cu 2500
1008060 -555625
1022943 -540742
1167807 -540742
1182690 -555625
)
)
)
(net "Net-(D4-Pad2)"
(wire
(path B.Cu 2500
919070 -469993
927027 -477950
)
)
(wire
(path B.Cu 2500
927027 -477950
927027 -561336
655004 -833359
655004 -914772
550869 -1018907
550869 -1082183
469900 -1163152
469900 -1276350
)
)
(wire
(path F.Cu 2500
446088 -1276350
469900 -1276350
)
)
)
(net ROW3
(wire
(path B.Cu 2500
2087560 -555625
2102655 -570720
2247095 -570720
2262190 -555625
)
)
(wire
(path F.Cu 2500
2428853 -563582
2422122 -570313
2276878 -570313
2262190 -555625
)
)
(wire
(path F.Cu 2500
865188 -523875
873145 -531832
)
)
(wire
(path F.Cu 2500
873145 -531832
997569 -531832
1004384 -538647
1025038 -538647
1039810 -523875
)
)
(wire
(path F.Cu 2500
2436810 -555625
2428853 -563582
)
)
(wire
(path B.Cu 2500
1514758 -490308
1514758 -538443
1531940 -555625
)
)
(wire
(path B.Cu 2500
1222397 -515918
1222397 -493429
1261973 -453853
1478303 -453853
1514758 -490308
)
)
(wire
(path B.Cu 2500
1912940 -555625
1897065 -539750
1897065 -523361
1827520 -453816
1551250 -453816
1514758 -490308
)
)
(wire
(path B.Cu 2500
1214440 -523875
1222397 -515918
)
)
(wire
(path B.Cu 2500
1047767 -531832
1172199 -531832
1179172 -538805
1199510 -538805
1214440 -523875
)
)
(wire
(path F.Cu 2500
2579690 -523875
2564896 -509081
2435551 -509081
2422109 -522523
2422109 -540924
2436810 -555625
)
)
(wire
(path F.Cu 2500
2579690 -523875
2594298 -509267
2739702 -509267
2746353 -515918
)
)
(wire
(path B.Cu 2500
1039810 -523875
1047767 -531832
)
)
(wire
(path B.Cu 2500
865188 -523875
849313 -539750
849313 -556100
835153 -570260
655290 -570260
617538 -608012
)
)
(wire
(path F.Cu 2500
2754310 -523875
2746353 -515918
)
)
(wire
(path F.Cu 2500
1920897 -547668
2047417 -547668
2054343 -540742
2072677 -540742
2087560 -555625
)
)
(wire
(path F.Cu 2500
1912940 -555625
1920897 -547668
)
)
)
(net "Net-(D5-Pad2)"
(wire
(path B.Cu 2500
954178 -469993
942565 -458380
914038 -458380
883566 -488852
883566 -553491
732207 -704850
636588 -704850
)
)
)
(net "Net-(D6-Pad2)"
(wire
(path B.Cu 2500
1093692 -609507
1082430 -598245
949032 -598245
849717 -697560
849717 -711897
684212 -877402
684212 -895350
)
)
)
(net "Net-(D7-Pad2)"
(wire
(path B.Cu 2500
954178 -609507
946222 -617463
)
)
(wire
(path B.Cu 2500
946222 -617463
946222 -617464
946222 -735862
897977 -784107
897977 -892597
879989 -910585
879989 -1044185
838324 -1085850
779462 -1085850
)
)
)
(net "Net-(D8-Pad2)"
(wire
(path B.Cu 2500
649582 -1263356
647695 -1261470
647695 -1160368
659508 -1148555
659508 -852735
664010 -848233
664010 -841864
1043838 -462036
1085735 -462036
)
)
(wire
(path B.Cu 2500
649582 -1263356
662575 -1276350
731838 -1276350
)
)
(wire
(path B.Cu 2500
636588 -1276350
649582 -1263356
)
)
(wire
(path B.Cu 2500
1093692 -469993
1085735 -462036
)
)
)
(net "Net-(D9-Pad2)"
(wire
(path B.Cu 2500
827088 -704850
827088 -685206
973851 -538443
1009536 -538443
1025242 -522737
1025242 -522036
1053247 -494031
1104770 -494031
1128808 -469993
)
)
)
(net "Net-(D10-Pad2)"
(wire
(path F.Cu 2500
1268322 -609507
1286099 -627284
1286099 -685468
1269013 -702554
1240787 -702554
1065673 -877668
962324 -877668
944642 -895350
874712 -895350
)
)
)
(net "Net-(D11-Pad2)"
(wire
(path B.Cu 2500
1128808 -609507
1120852 -617463
)
)
(wire
(path B.Cu 2500
1120852 -617463
1120851 -617463
1116112 -617463
1032497 -701078
1032497 -724593
923633 -833457
923633 -898627
969960 -944954
969960 -1085850
)
)
)
(net "Net-(D12-Pad2)"
(wire
(path B.Cu 2500
1268322 -469993
1276279 -477950
)
)
(wire
(path B.Cu 2500
1276279 -477950
1276279 -510422
1144166 -642535
1097492 -642535
1066489 -673538
1066489 -707225
1080272 -721008
1080272 -909965
1049842 -940395
1049842 -1064666
1037444 -1077064
1009206 -1077064
827088 -1259182
827088 -1276350
)
)
)
(net "Net-(D13-Pad2)"
(wire
(path B.Cu 2500
1303428 -469993
1291792 -458357
1263845 -458357
1229785 -492417
1229785 -524880
1214915 -539750
1213965 -539750
1198565 -555150
1198565 -555972
1171254 -583283
1138325 -583283
1017590 -704018
1017590 -704850
)
)
)
(net "Net-(D14-Pad2)"
(wire
(path F.Cu 2500
1065210 -895350
1191119 -895350
)
)
(wire
(path B.Cu 2500
1442942 -609507
1287239 -765210
1287239 -884478
1261719 -909998
1249235 -909998
1234587 -895350
1191119 -895350
)
)
(via "Via[0-1]_800:400_um" 1191119 -895350
)
)
(net "Net-(D15-Pad2)"
(wire
(path F.Cu 2500
1303428 -609507
1295472 -617463
)
)
(wire