-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmouse2016_2.ses
5239 lines (5238 loc) · 112 KB
/
mouse2016_2.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 mouse2016.ses
(base_design mouse2016.dsn)
(placement
(resolution um 10)
(component Capacitors_SMD:C_0603
(place C1 1445260 -829430 front 270)
(place C2 1384300 -850900 front 0)
(place C3 1445260 -864870 front 270)
(place C5 1491400 -884600 front 0)
(place C6 1365250 -1282700 front 180)
(place C7 1579880 -845820 front 0)
(place C8 1231900 -1276350 front 270)
(place C9 1454100 -920400 front 90)
(place C11 1391800 -1040130 front 180)
(place C12 1346200 -1066800 front 270)
(place C13 1536700 -882650 front 90)
(place C14 1365250 -1066800 front 270)
(place C15 1631950 -838200 front 90)
(place C16 1524000 -838200 front 90)
(place C18 1651000 -1066800 front 270)
(place C19 1670050 -1066800 front 270)
(place C21 1771650 -1219200 front 90)
(place C22 1516260 -922020 front 0)
(place C23 1521300 -1084200 front 180)
(place C24 1396000 -984000 front 270)
(place C25 1585000 -987900 front 0)
(place C26 1391920 -1062990 front 180)
(place C27 1578610 -1035050 front 90)
(place C28 1425000 -663000 front 270)
(place C29 1461000 -655000 front 180)
(place C30 1271270 -811530 front 90)
(place C31 1301750 -819150 front 180)
(place C32 1695450 -810260 front 90)
(place C33 1663700 -817880 front 0)
(place C34 1545000 -662000 front 270)
(place C35 1510000 -655000 front 0)
)
(component Capacitors_SMD:C_0805
(place C4 1303020 -1270000 front 270)
(place C10 1508000 -1272000 front 270)
(place C17 1612900 -1295400 front 270)
(place C20 1612900 -1249680 front 270)
)
(component LEDs:LED_0603
(place D1 1144000 -1193000 front 90)
(place D2 1175000 -1193000 front 90)
(place D3 1796000 -1194000 front 90)
(place D4 1826000 -1195000 front 90)
)
(component mouse_led:LED
(place D5 1738500 -909100 front 354)
(place D6 1386400 -766100 front 60)
(place D7 1205900 -912500 front 6)
(place D8 1571100 -744300 front 300)
(place D9 1368600 -755900 front 60)
(place D10 1203600 -892300 front 6)
(place D11 1740700 -889600 front 354)
(place D12 1588900 -734300 front 300)
)
(component Pin_Headers:Pin_Header_Straight_2x03
(place P2 1346200 -889000 front 270)
(place P3 1676400 -889000 front 270)
)
(component "TO_SOT_Packages_SMD:SOT-23"
(place Q1 1658620 -1252220 front 270)
(place Q2 1371600 -660400 front 270)
(place Q3 1600200 -660400 front 90)
)
(component Resistors_SMD:R_0603
(place R1 1397000 -1257300 front 180)
(place R2 1365250 -1257300 front 180)
(place R3 1333500 -1257300 front 180)
(place R4 1333500 -1282700 front 0)
(place R5 1144000 -1232000 front 270)
(place R6 1175000 -1232000 front 270)
(place R7 1796000 -1232000 front 270)
(place R8 1826000 -1232000 front 270)
(place R9 1656080 -1285240 front 180)
(place R10 1746250 -1219200 front 270)
(place R11 1459600 -891900 front 0)
(place R12 1460500 -774700 front 90)
(place R13 1485900 -774700 front 90)
(place R14 1435100 -736600 front 180)
(place R16 1333500 -825500 front 90)
(place R17 1333500 -793750 front 90)
(place R18 1339850 -850900 front 0)
(place R20 1425000 -705000 front 270)
(place R21 1462000 -700000 front 180)
(place R22 1271270 -778510 front 90)
(place R23 1301750 -783590 front 180)
(place R24 1695450 -777240 front 90)
(place R25 1663700 -782320 front 0)
(place R26 1545000 -705000 front 270)
(place R27 1508000 -700000 front 0)
)
(component Resistors_SMD:R_1206
(place R15 1473200 -736600 front 180)
(place R19 1295400 -850900 front 180)
)
(component "SMT0440SR:SMT-0440-S-R"
(place SP1 1719580 -1336040 front 270)
)
(component Buttons_Switches_ThroughHole:SW_Micro_SPST
(place SW1 1270000 -1341120 front 330)
)
(component module:SKRPACE010
(place SW2 1193800 -1282700 front 90)
(place SW3 1758950 -1270000 front 90)
)
(component drv8835:DRV8835
(place U3 1314450 -1066800 front 180)
(place U5 1619250 -1066800 front 180)
)
(component "TO_SOT_Packages_SMD:SOT-23-5"
(place U4 1574800 -876300 front 0)
)
(component "Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm"
(place U6 1556000 -1274000 front 270)
(place U8 1384300 -812800 front 180)
)
(component "Housings_QFP:LQFP-64_10x10mm_Pitch0.5mm"
(place U7 1485000 -1006200 front 180)
)
(component "Housings_SSOP:TSSOP-14_4.4x5mm_Pitch0.65mm"
(place U9 1579880 -807720 front 0)
)
(component "myfootprint:QFN-24-MPU6500"
(place U1 1485000 -844900 front 270)
)
(component "myfootprint:LXDC55FAAA-203"
(place U2 1445260 -1277620 front 180)
)
(component "Connectors_JST:JST_GH_BM03B-GHS-TBT_03x1.25mm_Straight"
(place P5 1531620 -1351280 front 0)
)
(component "Connectors_JST:JST_GH_BM04B-GHS-TBT_04x1.25mm_Straight"
(place P4 1630680 -1351280 front 0)
)
(component "Connectors_JST:JST_PH_B2B-PH-K_02x2.00mm_Straight"
(place P1 1358900 -1351280 front 0)
(place P6 1430020 -1351280 front 0)
)
)
(was_is
)
(routes
(resolution um 10)
(parser
(host_cad "KiCad's Pcbnew")
(host_version "4.0.1-stable")
)
(library_out
(padstack "Via[0-1]_400:300_um"
(shape
(circle F.Cu 4000 0 0)
)
(shape
(circle B.Cu 4000 0 0)
)
(attach off)
)
(padstack "Via[0-1]_1000:600_um"
(shape
(circle F.Cu 10000 0 0)
)
(shape
(circle B.Cu 10000 0 0)
)
(attach off)
)
(padstack "Via[0-1]_500:400_um"
(shape
(circle F.Cu 5000 0 0)
)
(shape
(circle B.Cu 5000 0 0)
)
(attach off)
)
)
(network_out
(net +3V3
(wire
(path B.Cu 4400
1598627 -1058651
1634051 -1058651
1642975 -1067575
)
)
(via "Via[0-1]_400:300_um" 1598627 -1058651
)
(wire
(path F.Cu 4400
1578610 -1042550
1582526 -1042550
1598627 -1058651
)
)
(wire
(path F.Cu 2900
1578610 -1042550
1571960 -1042550
1570810 -1043700
1542000 -1043700
)
(type protect)
)
(wire
(path F.Cu 4400
1512500 -964857
1512500 -958405
)
)
(wire
(path F.Cu 4400
1532466 -1043344
1512500 -1023378
1512500 -964857
)
)
(wire
(path F.Cu 4400
1482018 -964857
1512500 -964857
)
)
(wire
(path F.Cu 2498
1512500 -958405
1512500 -949200
)
)
(wire
(path F.Cu 4400
1508760 -922020
1508760 -914067
)
)
(wire
(path F.Cu 4400
1508760 -914067
1509527 -913300
1509527 -902008
1500072 -892553
1483900 -892553
)
)
(wire
(path F.Cu 4400
1483900 -884600
1483900 -892553
)
)
(wire
(path F.Cu 4400
1612900 -1239680
1612900 -1230477
)
)
(wire
(path F.Cu 4400
1635719 -1230423
1643326 -1230423
1645827 -1232924
1716322 -1232924
1716323 -1232924
)
)
(wire
(path F.Cu 4400
1612900 -1230477
1635665 -1230477
1635719 -1230423
)
)
(wire
(path F.Cu 4400
1635719 -1230423
1635719 -1139457
1649423 -1125753
1650131 -1125753
1672153 -1103731
1672153 -1100041
)
)
(wire
(path F.Cu 4400
1716323 -1232924
1719580 -1236182
1719580 -1306837
)
)
(wire
(path F.Cu 4400
1737547 -1211700
1716323 -1232924
)
)
(wire
(path B.Cu 4400
1642975 -1067575
1642975 -1070863
1672153 -1100041
)
)
(via "Via[0-1]_400:300_um" 1672153 -1100041
)
(wire
(path F.Cu 2498
1542000 -1043700
1533748 -1043700
)
)
(wire
(path F.Cu 2498
1532795 -1043344
1533392 -1043344
1533748 -1043700
)
)
(wire
(path F.Cu 4400
1532466 -1043344
1532466 -1053234
1524694 -1061006
)
)
(wire
(path F.Cu 4400
1532466 -1043344
1532795 -1043344
)
)
(wire
(path F.Cu 2498
1524694 -1061006
1522500 -1063200
)
)
(wire
(path F.Cu 2900
1522500 -1063200
1522500 -1077900
1528800 -1084200
)
(type protect)
)
(wire
(path F.Cu 4400
1445260 -821930
1437307 -821930
)
)
(wire
(path F.Cu 4400
1435917 -949200
1435917 -899468
1433397 -896948
1433397 -825840
1437307 -821930
)
)
(wire
(path F.Cu 2900
1435917 -949200
1423050 -949200
1401640 -970610
)
(type protect)
)
(wire
(path F.Cu 2900
1447046 -949200
1435917 -949200
)
(type protect)
)
(wire
(path F.Cu 4400
1401640 -970610
1403968 -972938
1403968 -1010622
1392473 -1022117
)
)
(wire
(path B.Cu 4400
1392473 -1022117
1355347 -1059243
)
)
(wire
(path F.Cu 4400
1354153 -1059300
1355290 -1059300
1355347 -1059243
)
)
(wire
(path F.Cu 4400
1346200 -1059300
1354153 -1059300
)
)
(via "Via[0-1]_400:300_um" 1355347 -1059243
)
(via "Via[0-1]_400:300_um" 1392473 -1022117
)
(wire
(path F.Cu 2900
1401640 -970610
1396000 -976250
1396000 -976500
)
(type protect)
)
(wire
(path F.Cu 4400
1447046 -964857
1447046 -980778
1437703 -990121
1437703 -1041422
1433350 -1045775
1428000 -1045775
)
)
(wire
(path F.Cu 4400
1447046 -949200
1447046 -964857
)
)
(wire
(path F.Cu 4400
1447046 -964857
1452297 -964857
)
)
(wire
(path B.Cu 4400
1482018 -964857
1452297 -964857
)
)
(via "Via[0-1]_400:300_um" 1452297 -964857
)
(via "Via[0-1]_400:300_um" 1482018 -964857
)
(wire
(path F.Cu 2900
1447500 -949200
1447046 -949200
)
(type protect)
)
(wire
(path F.Cu 4400
1612900 -1239680
1602447 -1239680
)
)
(wire
(path F.Cu 4400
1602447 -1239680
1597492 -1234725
1581348 -1234725
1575050 -1241023
)
)
(wire
(path F.Cu 4400
1575050 -1241023
1569074 -1235047
1562350 -1235047
)
)
(wire
(path F.Cu 4400
1562350 -1247000
1562350 -1235047
)
)
(wire
(path F.Cu 4400
1575050 -1247000
1575050 -1241023
)
)
(wire
(path F.Cu 2900
1512500 -949200
1512500 -925760
1508760 -922020
)
(type protect)
)
(wire
(path F.Cu 1900
1470000 -838900
1461980 -838900
1445260 -822180
1445260 -821930
)
(type protect)
)
(wire
(path F.Cu 1900
1475000 -859900
1475000 -875950
1483650 -884600
1483900 -884600
)
(type protect)
)
(wire
(path F.Cu 4400
1719580 -1316040
1719580 -1306837
)
)
(wire
(path F.Cu 4400
1746250 -1211700
1737547 -1211700
)
)
(wire
(path F.Cu 2900
1428000 -1045775
1428000 -1047850
1412860 -1062990
1399420 -1062990
)
(type protect)
)
(wire
(path F.Cu 2900
1428000 -1043700
1428000 -1045775
)
(type protect)
)
(via "Via[0-1]_400:300_um" 1642975 -1067575
)
(wire
(path F.Cu 2900
1642975 -1067575
1639700 -1070850
1639700 -1074060
1637460 -1076300
1631750 -1076300
)
(type protect)
)
(wire
(path F.Cu 2900
1651000 -1059300
1651000 -1059550
1642975 -1067575
)
(type protect)
)
(wire
(path F.Cu 2900
1346200 -1059300
1346200 -1059550
1334900 -1070850
1334900 -1074060
1332660 -1076300
1326950 -1076300
)
(type protect)
)
(wire
(path F.Cu 2900
1651000 -1060400
1651000 -1059300
)
(type protect)
)
)
(net GND
(wire
(path F.Cu 4400
1514263 -1083737
1522685 -1092159
1572311 -1092159
1599416 -1065054
1603294 -1065054
1606096 -1062252
)
)
(wire
(path F.Cu 4400
1494605 -816179
1468551 -816179
1457549 -827181
)
)
(wire
(path B.Cu 4400
1440363 -847150
1440363 -844367
1457549 -827181
)
)
(wire
(path F.Cu 4400
1494605 -816179
1494605 -775905
1485900 -767200
)
)
(wire
(path F.Cu 4400
1516688 -838262
1494605 -816179
)
)
(via "Via[0-1]_400:300_um" 1457549 -827181
)
(wire
(path F.Cu 1900
1516688 -838262
1524000 -830950
1524000 -830700
)
(type protect)
)
(wire
(path F.Cu 1900
1506205 -848745
1516688 -838262
)
(type protect)
)
(wire
(path F.Cu 4400
1523760 -914067
1515930 -906237
1515930 -893427
1507103 -884600
)
)
(wire
(path F.Cu 4400
1498900 -884600
1507103 -884600
)
)
(wire
(path F.Cu 4400
1606096 -1062252
1606096 -1057954
)
)
(wire
(path F.Cu 4400
1611750 -1066800
1610644 -1066800
1606096 -1062252
)
)
(wire
(path F.Cu 2900
1514263 -1083737
1513800 -1084200
)
(type protect)
)
(wire
(path F.Cu 2900
1514725 -1083275
1514263 -1083737
)
(type protect)
)
(wire
(path F.Cu 4400
1620833 -807720
1620833 -819583
1631950 -830700
)
)
(wire
(path F.Cu 4400
1620833 -807720
1640903 -787650
1640903 -774665
)
)
(wire
(path F.Cu 4400
1649463 -874623
1664354 -859732
1664354 -854184
1640870 -830700
1631950 -830700
)
)
(wire
(path F.Cu 2798
1604356 -1054906
1606750 -1057300
)
)
(wire
(path F.Cu 4400
1581526 -1027550
1581526 -1029275
1604356 -1052105
1604356 -1054906
)
)
(wire
(path F.Cu 2900
1581526 -1027550
1578610 -1027550
)
(type protect)
)
(wire
(path F.Cu 2900
1592500 -987900
1592500 -1020310
1585260 -1027550
1581526 -1027550
)
(type protect)
)
(wire
(path F.Cu 4400
1592250 -987900
1592250 -986552
1554320 -948622
1554320 -937984
1530403 -914067
1523760 -914067
)
)
(wire
(path F.Cu 4400
1595304 -872156
1595304 -861697
1587380 -853773
)
)
(wire
(path F.Cu 4400
1563800 -876300
1591160 -876300
1595304 -872156
)
)
(wire
(path F.Cu 4400
1595304 -872156
1646995 -872156
1649463 -874623
)
)
(wire
(path F.Cu 4400
1649463 -874623
1651000 -876161
)
)
(wire
(path F.Cu 4400
1506205 -858293
1499023 -865475
1495000 -865475
)
)
(wire
(path F.Cu 4400
1506205 -848745
1506205 -858293
)
)
(wire
(path F.Cu 4400
1506205 -858293
1511890 -858293
1528747 -875150
)
)
(wire
(path F.Cu 4400
1536700 -875150
1528747 -875150
)
)
(wire
(path F.Cu 2900
1592250 -987900
1592500 -987900
)
(type protect)
)
(wire
(path F.Cu 2900
1542000 -988700
1564340 -988700
1570740 -995100
1585050 -995100
1592250 -987900
)
(type protect)
)
(wire
(path F.Cu 4400
1485900 -767200
1485900 -760497
)
)
(wire
(path F.Cu 4400
1485900 -760497
1496404 -749993
1496404 -726342
1493854 -723792
1480211 -723792
1467403 -736600
)
)
(wire
(path F.Cu 4400
1458700 -736600
1467403 -736600
)
)
(wire
(path F.Cu 2900
1651000 -1074300
1651000 -1081200
1649950 -1082250
1627300 -1082250
1626750 -1081700
1626750 -1076300
)
(type protect)
)
(wire
(path F.Cu 4400
1423260 -1277620
1433760 -1277620
)
)
(wire
(path F.Cu 4400
1409976 -1290904
1423260 -1277620
)
)
(wire
(path F.Cu 1900
1440509 -847581
1445260 -842830
1445260 -837180
)
(type protect)
)
(wire
(path F.Cu 1900
1442435 -872370
1439610 -872370
1438560 -871320
1438560 -849530
1440509 -847581
)
(type protect)
)
(wire
(path F.Cu 4400
1440363 -847150
1440509 -847296
1440509 -847581
)
)
(via "Via[0-1]_400:300_um" 1440363 -847150
)
(wire
(path B.Cu 4400
1417768 -865560
1421953 -865560
1440363 -847150
)
)
(wire
(path B.Cu 4400
1366504 -859349
1372715 -865560
1417768 -865560
)
)
(wire
(path F.Cu 4400
1384420 -1062990
1384420 -1070943
)
)
(wire
(path F.Cu 4400
1365250 -1074300
1373203 -1074300
)
)
(wire
(path F.Cu 4400
1373203 -1074300
1376560 -1070943
1384420 -1070943
)
)
(wire
(path F.Cu 2900
1365250 -1074300
1346200 -1074300
)
(type protect)
)
(wire
(path F.Cu 4400
1281384 -866156
1281384 -864087
1280900 -863603
)
)
(wire
(path F.Cu 4400
1261993 -1067109
1250775 -1055891
1250775 -896765
1281384 -866156
)
)
(wire
(path F.Cu 4400
1281384 -866156
1320800 -866156
)
)
(wire
(path F.Cu 4400
1280900 -850900
1280900 -863603
)
)
(wire
(path F.Cu 4400
1280900 -850900
1272197 -850900
)
)
(wire
(path F.Cu 4400
1272197 -850900
1262566 -841269
1262566 -781117
1269322 -774361
1271270 -774361
)
)
(wire
(path F.Cu 4400
1239853 -1256469
1237482 -1254098
1204550 -1254098
)
)
(wire
(path F.Cu 4400
1204550 -1254098
1193303 -1242851
1175000 -1242851
)
)
(wire
(path F.Cu 4400
1204550 -1261950
1204550 -1254098
)
)
(wire
(path F.Cu 4400
1255735 -1240587
1280937 -1265790
1280937 -1268625
1281866 -1269554
)
)
(wire
(path F.Cu 4400
1261993 -1067109
1261993 -1230357
1255734 -1236616
1255734 -1240587
1255735 -1240587