-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmouse2016_1.ses
5091 lines (5090 loc) · 109 KB
/
mouse2016_1.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 F.Cu 4400
1583465 -1055623
1583465 -1139306
1583220 -1139551
)
)
(wire
(path F.Cu 4400
1575285 -1042550
1583465 -1050730
1583465 -1055623
)
)
(wire
(path F.Cu 4400
1583465 -1055623
1589967 -1055623
)
)
(wire
(path B.Cu 4400
1589967 -1055623
1635646 -1055623
1640684 -1060661
)
)
(wire
(path F.Cu 4400
1643047 -1059300
1641686 -1060661
1640684 -1060661
)
)
(wire
(path F.Cu 4400
1651000 -1059300
1643047 -1059300
)
)
(via "Via[0-1]_400:300_um" 1640684 -1060661
)
(via "Via[0-1]_400:300_um" 1589967 -1055623
)
(wire
(path F.Cu 4400
1594900 -1229062
1594900 -1157254
)
)
(wire
(path B.Cu 4400
1583220 -1139551
1594900 -1151231
1594900 -1157254
)
)
(wire
(path F.Cu 4400
1594900 -1229062
1611485 -1229062
1612900 -1230477
)
)
(wire
(path F.Cu 4400
1575050 -1241023
1587011 -1229062
1594900 -1229062
)
)
(via "Via[0-1]_400:300_um" 1594900 -1157254
)
(wire
(path B.Cu 4400
1572814 -1139551
1583220 -1139551
)
)
(wire
(path F.Cu 4400
1575050 -1241023
1569074 -1235047
1562350 -1235047
)
)
(wire
(path F.Cu 4400
1528800 -1093078
1572814 -1137092
1572814 -1139551
)
)
(wire
(path F.Cu 4400
1528800 -1090552
1528800 -1093078
)
)
(wire
(path F.Cu 4400
1528800 -1093078
1391854 -1093078
)
)
(wire
(path B.Cu 4400
1391854 -1093078
1391854 -1069250
1391913 -1069191
)
)
(via "Via[0-1]_400:300_um" 1391854 -1093078
)
(wire
(path F.Cu 4400
1406140 -1062990
1399939 -1069191
1391913 -1069191
)
)
(wire
(path F.Cu 4400
1719580 -1240046
1710011 -1230477
1612900 -1230477
)
)
(wire
(path F.Cu 4400
1719580 -1240046
1741223 -1218403
1746250 -1218403
)
)
(wire
(path F.Cu 4400
1719580 -1316040
1719580 -1240046
)
)
(wire
(path F.Cu 4400
1746250 -1211700
1746250 -1218403
)
)
(wire
(path F.Cu 4400
1612900 -1239680
1612900 -1230477
)
)
(wire
(path F.Cu 4400
1562350 -1247000
1562350 -1235047
)
)
(wire
(path F.Cu 4400
1575050 -1247000
1575050 -1241023
)
)
(wire
(path F.Cu 2900
1575285 -1042550
1571960 -1042550
1570810 -1043700
1542000 -1043700
)
(type protect)
)
(via "Via[0-1]_400:300_um" 1572814 -1139551
)
(via "Via[0-1]_400:300_um" 1583220 -1139551
)
(wire
(path B.Cu 4400
1357297 -1059484
1382206 -1059484
1391913 -1069191
)
)
(wire
(path F.Cu 2900
1428000 -1043700
1428000 -1047850
1412860 -1062990
1406140 -1062990
)
(type protect)
)
(wire
(path F.Cu 2498
1428454 -1044154
1428000 -1043700
)
)
(wire
(path F.Cu 4400
1429963 -949200
1429963 -954607
1437204 -961848
1437204 -1041967
1435017 -1044154
1428454 -1044154
)
)
(wire
(path F.Cu 2900
1429963 -949200
1423050 -949200
1396000 -976250
1396000 -976500
)
(type protect)
)
(wire
(path F.Cu 2900
1439199 -949200
1429963 -949200
)
(type protect)
)
(wire
(path F.Cu 4400
1528800 -1084200
1528800 -1090552
)
)
(wire
(path F.Cu 4400
1483900 -884600
1484662 -884600
1508760 -908698
1508760 -922020
)
)
(wire
(path F.Cu 1900
1475000 -873921
1475000 -875950
1483650 -884600
1483900 -884600
)
(type protect)
)
(wire
(path F.Cu 2900
1578610 -1042550
1575285 -1042550
)
(type protect)
)
(wire
(path F.Cu 4400
1463356 -838900
1463617 -839161
1463617 -841747
)
)
(wire
(path B.Cu 4400
1463617 -873921
1463617 -841747
)
)
(wire
(path B.Cu 4400
1443657 -895989
1463617 -876029
1463617 -873921
)
)
(wire
(path B.Cu 4400
1463617 -873921
1475000 -873921
)
)
(wire
(path F.Cu 1900
1475000 -859900
1475000 -873921
)
(type protect)
)
(via "Via[0-1]_400:300_um" 1475000 -873921
)
(wire
(path F.Cu 4400
1439199 -949200
1439199 -900447
1443657 -895989
)
)
(via "Via[0-1]_400:300_um" 1443657 -895989
)
(wire
(path F.Cu 2900
1447500 -949200
1439199 -949200
)
(type protect)
)
(wire
(path F.Cu 4400
1354153 -1059300
1354336 -1059483
1357297 -1059483
1357297 -1059484
)
)
(wire
(path F.Cu 4400
1346200 -1059300
1354153 -1059300
)
)
(via "Via[0-1]_400:300_um" 1357297 -1059484
)
(via "Via[0-1]_400:300_um" 1391913 -1069191
)
(wire
(path F.Cu 2900
1406140 -1062990
1399420 -1062990
)
(type protect)
)
(wire
(path F.Cu 1900
1463356 -838900
1461980 -838900
1445260 -822180
1445260 -821930
)
(type protect)
)
(wire
(path F.Cu 1900
1470000 -838900
1463356 -838900
)
(type protect)
)
(via "Via[0-1]_400:300_um" 1463617 -841747
)
(wire
(path F.Cu 2900
1522500 -1063200
1522500 -1077900
1528800 -1084200
)
(type protect)
)
(wire
(path F.Cu 2900
1651000 -1059300
1651000 -1059550
1639700 -1070850
1639700 -1074060
1637460 -1076300
1631750 -1076300
)
(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
1512500 -949200
1512500 -925760
1508760 -922020
)
(type protect)
)
(wire
(path F.Cu 2900
1651000 -1060400
1651000 -1059300
)
(type protect)
)
)
(net GND
(wire
(path F.Cu 4400
1463052 -736600
1438952 -712500
1425000 -712500
)
)
(wire
(path F.Cu 4400
1463052 -736600
1467403 -736600
)
)
(wire
(path F.Cu 4400
1458700 -736600
1463052 -736600
)
)
(wire
(path F.Cu 4400
1357750 -1257300
1364453 -1257300
)
)
(wire
(path F.Cu 4400
1412685 -1231094
1385632 -1231094
1364453 -1252273
1364453 -1257300
)
)
(wire
(path F.Cu 4400
1357750 -1257300
1349046 -1248596
1332750 -1248596
)
)
(wire
(path B.Cu 4400
1412685 -1231094
1412685 -1267045
1423260 -1277620
)
)
(via "Via[0-1]_400:300_um" 1412685 -1231094
)
(wire
(path F.Cu 4400
1450020 -1338577
1414957 -1303514
1414957 -1285923
1423260 -1277620
)
)
(wire
(path F.Cu 4400
1341000 -1282700
1357750 -1282700
)
)
(wire
(path F.Cu 4400
1485900 -760497
1485900 -762098
)
)
(wire
(path F.Cu 4400
1497750 -727080
1497750 -748647
1485900 -760497
)
)
(wire
(path F.Cu 4400
1280900 -774361
1328314 -774361
1333500 -779547
)
)
(wire
(path F.Cu 4400
1271270 -774361
1280900 -774361
)
)
(wire
(path F.Cu 4400
1280900 -774361
1280900 -850900
)
)
(wire
(path F.Cu 4400
1282021 -875508
1282021 -1051516
1297305 -1066800
)
)
(wire
(path F.Cu 4400
1313497 -1250293
1313497 -1269523
1303020 -1280000
)
)
(wire
(path F.Cu 4400
1332750 -1248596
1315194 -1248596
1313497 -1250293
)
)
(wire
(path F.Cu 4400
1313497 -1250293
1252125 -1250293
1239853 -1262565
)
)
(wire
(path F.Cu 4400
1239853 -1262565
1239853 -1283850
)
)
(wire
(path F.Cu 4400
1204550 -1259962
1237250 -1259962
1239853 -1262565
)
)
(wire
(path F.Cu 4400
1231900 -1283850
1239853 -1283850
)
)
(wire
(path F.Cu 4400
1204550 -1259962
1204550 -1257974
)
)
(wire
(path F.Cu 4400
1204550 -1261950
1204550 -1259962
)
)
(wire
(path F.Cu 4400
1518447 -933983
1563477 -933983
1574018 -944524
)
)
(wire
(path B.Cu 4400
1574018 -944524
1574018 -973154
1579035 -978171
)
)
(wire
(path F.Cu 4400
1497750 -727080
1521717 -727080
1536297 -712500
)
)
(wire
(path F.Cu 4400
1341000 -1282700
1334297 -1282700
)
)
(wire
(path F.Cu 4400
1334297 -1282700
1332750 -1281153
1332750 -1248596
)
)
(wire
(path F.Cu 4400
1175000 -1242851
1189427 -1242851
1204550 -1257974
)
)
(wire
(path F.Cu 4400
1152703 -1239500
1156054 -1242851
1175000 -1242851
)
)
(wire
(path F.Cu 4400
1301950 -1066800
1297305 -1066800
)
)
(wire
(path F.Cu 4400
1306950 -1066800
1301950 -1066800
)
)
(wire
(path F.Cu 4400
1301950 -1066800
1301950 -1064005
)
)
(wire
(path F.Cu 2798
1301950 -1064005
1301950 -1057300
)
)
(wire
(path F.Cu 4400
1314450 -1066800
1306950 -1066800
)
)
(wire
(path F.Cu 4400
1297305 -1066800
1269578 -1094527
1269578 -1141578
1240327 -1170829
1144229 -1170829
1135296 -1179762
1135296 -1229120
1138973 -1232797
1144000 -1232797
)
)
(wire
(path F.Cu 4400
1280900 -863603
1282021 -864724
1282021 -875508
)
)
(wire
(path F.Cu 4400
1282021 -875508
1303207 -875508
1316699 -889000
1320800 -889000
)
)
(wire
(path F.Cu 4400
1280900 -850900
1280900 -863603
)
)
(wire
(path F.Cu 4400
1467403 -736600
1480107 -723896
1494566 -723896
1497750 -727080
)
)
(wire
(path F.Cu 4400
1485900 -767200
1485900 -762098
)
)
(wire
(path F.Cu 4400
1485900 -773903
1480339 -773903
1476758 -777484
1476758 -779347
)
)
(wire
(path B.Cu 4400
1457211 -826843
1476758 -807296
1476758 -779347
)
)
(wire
(path F.Cu 4400
1485900 -767200
1485900 -773903
)
)
(via "Via[0-1]_400:300_um" 1476758 -779347
)
(wire
(path B.Cu 4400
1455067 -840128
1455067 -828987
1457211 -826843
)
)
(wire
(path F.Cu 4400
1411300 -793750
1423253 -793750
)
)
(wire
(path F.Cu 4400
1485900 -760497
1453805 -760497
1423253 -791049
1423253 -793750
)
)
(wire
(path F.Cu 4400
1611949 -850534
1650415 -889000
1651000 -889000
)
)
(wire
(path F.Cu 4400
1599834 -850534
1611949 -850534
)
)
(wire
(path F.Cu 4400
1599834 -850534
1595583 -846283
1595583 -845820
)
)
(wire
(path F.Cu 4400
1563800 -876300
1590967 -876300
1599834 -867433
1599834 -850534
)
)
(wire
(path F.Cu 4400
1559049 -876300
1563800 -876300
)
)
(wire
(path F.Cu 4400
1559049 -876300
1554297 -876300
)
)
(wire
(path F.Cu 4400
1384420 -1070943
1389430 -1075953
1412013 -1075953
1415562 -1072404
1502500 -1072404
)
)
(wire
(path F.Cu 4400
1373203 -1074300
1376560 -1070943
1384420 -1070943
)
)
(wire
(path F.Cu 4400
1648580 -1297177
1648580 -1285240
)
)
(wire
(path F.Cu 4400
1624430 -1321327
1648580 -1297177
)
)
(wire
(path F.Cu 4400
1648580 -1297177
1676801 -1325398
1744505 -1325398
1769700 -1300203
)
)
(wire
(path F.Cu 4400
1769700 -1290750
1769700 -1300203
)
)
(wire
(path F.Cu 4400
1592250 -987900
1582521 -978171
1579035 -978171
)
)
(wire
(path F.Cu 4400
1623491 -830700
1623491 -810378
1620833 -807720
)
)