-
Notifications
You must be signed in to change notification settings - Fork 3
/
M5Stack_WiSUN.ses
1718 lines (1717 loc) · 36.4 KB
/
M5Stack_WiSUN.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 M5Stack_WiSUN.ses
(base_design M5Stack_WiSUN.dsn)
(placement
(resolution um 10)
(component local:MBUS_Socket
(place J2 540500 -650000 back 0)
)
(component local:MBUS_Header
(place J1 540500 -650000 front 0)
)
(component MountingHole:MountingHole_3mm
(place MH1 130000 -870000 front 0)
(place MH3 130000 -430000 front 0)
)
(component MountingHole:MountingHole_3mm::1
(place MH2 570000 -870000 front 0)
(place MH4 570000 -430000 front 0)
)
(component local:BP35A1
(place U1 350000 -710000 front 0)
)
(component "Package_QFP:LQFP-32_7x7mm_P0.8mm"
(place U2 350000 -824000 front 270)
)
(component MountingHole:MountingHole_2.5mm
(place MH5 170000 -870000 front 0)
)
(component MountingHole:MountingHole_2.5mm::1
(place MH6 530000 -870000 front 0)
)
(component Connector_PinHeader_2.54mm:PinHeader_1x09_P2.54mm_Vertical
(place J3 140000 -548400 front 0)
)
(component Capacitor_SMD:C_0402_1005Metric
(place C1 350000 -846000 back 180)
(place C3 340000 -805000 back 180)
(place R1 459000 -780000 front 180)
(place R2 459000 -792000 front 180)
(place R4 459000 -754000 front 180)
)
(component Capacitor_SMD:C_0402_1005Metric::1
(place C2 345000 -835000 back 180)
(place C4 360000 -805000 back 180)
(place R3 423000 -798150 front 90)
(place R5 459000 -766000 front 180)
(place R6 411000 -798150 front 90)
)
(component Inductor_SMD:L_0603_1608Metric
(place L1 327000 -831000 back 270)
)
(component Connector_PinHeader_2.54mm:PinHeader_2x03_P2.54mm_Vertical
(place J4 220500 -814500 front 0)
)
)
(was_is
)
(routes
(resolution um 10)
(parser
(host_cad "KiCad's Pcbnew")
(host_version "(5.0.0)")
)
(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 GND
(via "Via[0-1]_800:400_um" 540500 -472200
(type protect)
)
(via "Via[0-1]_800:400_um" 540500 -497600
(type protect)
)
(via "Via[0-1]_800:400_um" 540500 -523000
(type protect)
)
(via "Via[0-1]_800:400_um" 335000 -679500
(type protect)
)
(via "Via[0-1]_800:400_um" 370000 -679500
(type protect)
)
(via "Via[0-1]_800:400_um" 332500 -741000
(type protect)
)
(via "Via[0-1]_800:400_um" 355000 -856000
(type protect)
)
(via "Via[0-1]_800:400_um" 365000 -794000
(type protect)
)
(via "Via[0-1]_800:400_um" 345000 -794000
(type protect)
)
(via "Via[0-1]_800:400_um" 346000 -768000
(type protect)
)
(via "Via[0-1]_800:400_um" 362000 -768000
(type protect)
)
(via "Via[0-1]_800:400_um" 370000 -741000
(type protect)
)
(via "Via[0-1]_800:400_um" 360000 -741000
(type protect)
)
(wire
(path B.Cu 4000
540500 -472200
565750 -472200
)
(type protect)
)
(wire
(path F.Cu 4000
565750 -472200
540500 -472200
)
(type protect)
)
(wire
(path F.Cu 4000
540500 -497600
565750 -497600
)
(type protect)
)
(wire
(path B.Cu 4000
565750 -497600
540500 -497600
)
(type protect)
)
(wire
(path B.Cu 4000
540500 -523000
565750 -523000
)
(type protect)
)
(wire
(path F.Cu 4000
565750 -523000
540500 -523000
)
(type protect)
)
(wire
(path F.Cu 2000
332500 -690500
332500 -682000
335000 -679500
)
(type protect)
)
(wire
(path F.Cu 2000
337500 -690500
337500 -682000
335000 -679500
)
(type protect)
)
(wire
(path F.Cu 2000
367500 -690500
367500 -682000
370000 -679500
)
(type protect)
)
(wire
(path F.Cu 2000
372500 -690500
372500 -682000
370000 -679500
)
(type protect)
)
(wire
(path F.Cu 2000
332500 -729500
332500 -741000
)
(type protect)
)
(wire
(path B.Cu 2500
355000 -856000
355000 -846150
354850 -846000
)
(type protect)
)
(wire
(path F.Cu 2500
354000 -866500
354000 -857000
355000 -856000
)
(type protect)
)
(wire
(path B.Cu 2500
365000 -794000
365000 -804850
364850 -805000
)
(type protect)
)
(wire
(path F.Cu 2500
362000 -781500
362000 -791000
365000 -794000
)
(type protect)
)
(wire
(path B.Cu 2500
345000 -794000
345000 -804850
344850 -805000
)
(type protect)
)
(wire
(path F.Cu 2500
346000 -781500
346000 -793000
345000 -794000
)
(type protect)
)
(wire
(path F.Cu 2500
346000 -781500
346000 -768000
)
(type protect)
)
(wire
(path F.Cu 2500
362000 -781500
362000 -768000
)
(type protect)
)
(wire
(path F.Cu 2000
372500 -729500
372500 -738500
370000 -741000
)
(type protect)
)
(wire
(path F.Cu 2000
367500 -729500
367500 -738500
370000 -741000
)
(type protect)
)
(wire
(path F.Cu 2000
362500 -729500
362500 -738500
360000 -741000
)
(type protect)
)
(wire
(path F.Cu 2000
357500 -729500
357500 -738500
360000 -741000
)
(type protect)
)
)
(net "Net-(C1-Pad1)"
(via "Via[0-1]_800:400_um" 345000 -856000
(type protect)
)
(wire
(path B.Cu 2500
345000 -856000
345000 -846150
345150 -846000
)
(type protect)
)
(wire
(path F.Cu 2500
346000 -866500
346000 -857000
345000 -856000
)
(type protect)
)
)
(net "Net-(C2-Pad1)"
(via "Via[0-1]_800:400_um" 330000 -853000
(type protect)
)
(wire
(path B.Cu 2500
327000 -838875
332750 -838875
334000 -837625
334000 -837200
336200 -835000
340150 -835000
)
(type protect)
)
(wire
(path B.Cu 2500
330000 -853000
330000 -841875
327000 -838875
)
(type protect)
)
(wire
(path F.Cu 2500
330000 -866500
330000 -853000
)
(type protect)
)
)
(net +3V3
(via "Via[0-1]_800:400_um" 492000 -599500
(type protect)
)
(via "Via[0-1]_800:400_um" 324000 -656000
(type protect)
)
(via "Via[0-1]_800:400_um" 321000 -729500
(type protect)
)
(via "Via[0-1]_800:400_um" 324000 -679500
(type protect)
)
(via "Via[0-1]_800:400_um" 355000 -794000
(type protect)
)
(via "Via[0-1]_800:400_um" 335000 -794000
(type protect)
)
(wire
(path F.Cu 8000
492000 -599500
514950 -599500
515250 -599200
)
(type protect)
)
(wire
(path B.Cu 8000
492000 -599500
514950 -599500
515250 -599200
)
(type protect)
)
(wire
(path F.Cu 8000
324000 -656000
328000 -652000
429000 -652000
481500 -599500
492000 -599500
)
(type protect)
)
(wire
(path B.Cu 8000
324000 -679500
324000 -656000
)
(type protect)
)
(wire
(path F.Cu 8000
245900 -814500
245900 -802479
169621 -726200
140000 -726200
)
(type protect)
)
(wire
(path B.Cu 8000
327000 -823125
270125 -823125
261500 -814500
245900 -814500
)
(type protect)
)
(wire
(path B.Cu 6000
335000 -794000
335000 -804850
335150 -805000
)
(type protect)
)
(wire
(path B.Cu 6000
335000 -794000
335000 -788343
341343 -782000
348657 -782000
355000 -788343
355000 -794000
)
(type protect)
)
(wire
(path B.Cu 6000
321000 -729500
321000 -780000
335000 -794000
)
(type protect)
)
(wire
(path B.Cu 6000
321000 -729500
314000 -722500
314000 -689500
324000 -679500
)
(type protect)
)
(wire
(path F.Cu 2000
327500 -729500
321000 -729500
)
(type protect)
)
(wire
(path F.Cu 2000
327500 -690500
327500 -683000
324000 -679500
)
(type protect)
)
(wire
(path B.Cu 6000
327000 -823125
335150 -814975
335150 -805000
)
(type protect)
)
(wire
(path B.Cu 2500
355000 -794000
355000 -804850
355150 -805000
)
(type protect)
)
(wire
(path F.Cu 2500
354000 -781500
354000 -793000
355000 -794000
)
(type protect)
)
(wire
(path F.Cu 2500
338000 -781500
338000 -791000
335000 -794000
)
(type protect)
)
)
(net /HPWR
(wire
(path B.Cu 6000
565750 -802400
565750 -777000
)
(type protect)
)
(wire
(path B.Cu 6000
565750 -827800
565750 -802400
)
(type protect)
)
(via "Via[0-1]_800:400_um" 540500 -777000
(type protect)
)
(via "Via[0-1]_800:400_um" 540500 -802400
(type protect)
)
(via "Via[0-1]_800:400_um" 540500 -827800
(type protect)
)
(wire
(path F.Cu 6000
565750 -802400
565750 -827800
)
(type protect)
)
(wire
(path F.Cu 6000
565750 -802400
565750 -777000
)
(type protect)
)
(wire
(path F.Cu 4000
540500 -777000
565750 -777000
)
(type protect)
)
(wire
(path B.Cu 4000
565750 -777000
540500 -777000
)
(type protect)
)
(wire
(path B.Cu 4000
540500 -802400
565750 -802400
)
(type protect)
)
(wire
(path F.Cu 4000
565750 -802400
540500 -802400
)
(type protect)
)
(wire
(path F.Cu 4000
540500 -827800
565750 -827800
)
(type protect)
)
(wire
(path B.Cu 4000
565750 -827800
540500 -827800
)
(type protect)
)
)
(net /BATTERY
(via "Via[0-1]_800:400_um" 489700 -827800
(type protect)
)
(wire
(path B.Cu 4000
489700 -827800
515250 -827800
)
(type protect)
)
(wire
(path F.Cu 4000
515250 -827800
489700 -827800
)
(type protect)
)
)
(net +5V
(via "Via[0-1]_800:400_um" 515250 -814950
(type protect)
)
(wire
(path F.Cu 4000
515250 -814950
515250 -802400
)
(type protect)
)
(wire
(path B.Cu 4000
515250 -802400
515250 -814950
)
(type protect)
)
)
(net /IIS_IN
(via "Via[0-1]_800:400_um" 515100 -789700
(type protect)
)
(wire
(path B.Cu 4000
515100 -789700
515100 -777150
515250 -777000
)
(type protect)
)
(wire
(path F.Cu 4000
515250 -777000
515250 -789550
515100 -789700
)
(type protect)
)
)
(net /IIS_OUT
(via "Via[0-1]_800:400_um" 565900 -764300
(type protect)
)
(wire
(path B.Cu 4000
565900 -764300
565900 -751750
565750 -751600
)
(type protect)
)
(wire
(path F.Cu 4000
565750 -751600
565750 -764150
565900 -764300
)
(type protect)
)
)
(net /IIS_MK
(via "Via[0-1]_800:400_um" 515000 -741700
(type protect)
)
(wire
(path B.Cu 2500
515000 -741700
515000 -751350
515250 -751600
)
(type protect)
)
(wire
(path F.Cu 2500
515250 -751600
515250 -741950
515000 -741700
)
(type protect)
)
)
(net /IIS_SK
(wire
(path B.Cu 2500
565750 -738750
561450 -734450
489550 -734450
482000 -742000
)
(type protect)
)
(wire
(path B.Cu 2500
566000 -739000
565750 -738750
)
(type protect)
)
(via "Via[0-1]_800:400_um" 566000 -739000
(type protect)
)
(via "Via[0-1]_800:400_um" 482000 -742000
(type protect)
)
(wire
(path B.Cu 4000
565750 -726200
565750 -738750
)
(type protect)
)
(wire
(path B.Cu 4000
565750 -738750
566000 -739000
)
(type protect)
)
(wire
(path F.Cu 2500
566000 -739000
566000 -726450
565750 -726200
)
(type protect)
)
(wire
(path F.Cu 2500
463850 -766000
482000 -747850
482000 -742000
)
(type protect)
)
)
(net /IIS_WS
(wire
(path B.Cu 2500
515250 -726200
489700 -726200
)
(type protect)
)
(wire
(path B.Cu 2500
515100 -726350
515250 -726200
)
(type protect)
)
(wire
(path F.Cu 2500
504500 -726200
515250 -726200
)
(type protect)
)
(wire
(path F.Cu 2500
489700 -726200
504500 -726200
)
(type protect)
)
(via "Via[0-1]_800:400_um" 489700 -726200
(type protect)
)
(wire
(path F.Cu 2500
463850 -792000
480500 -775350
480500 -769136
496250 -753386
496250 -734450
504500 -726200
)
(type protect)
)
(wire
(path F.Cu 2500
504500 -726200
515250 -726200
)
(type protect)
)
)
(net /GPIO_G2
(via "Via[0-1]_800:400_um" 479947 -714970
(type protect)
)
(via "Via[0-1]_800:400_um" 566000 -713000
(type protect)
)
(wire
(path F.Cu 2500
463850 -754000
463850 -731067
479947 -714970
)
(type protect)
)
(wire
(path B.Cu 2500
566000 -713000
481917 -713000
479947 -714970
)
(type protect)
)
(wire
(path B.Cu 2500
565750 -700800
565750 -712750
566000 -713000
)
(type protect)
)
(wire
(path F.Cu 2500
566000 -713000
566000 -701050
565750 -700800
)
(type protect)
)
)
(net /GPIO_G5
(wire
(path F.Cu 2500
504500 -700800
489700 -700800
)
(type protect)
)
(wire
(path F.Cu 2500
515250 -700800
504500 -700800
)
(type protect)
)
(via "Via[0-1]_800:400_um" 489700 -700800
(type protect)
)
(wire
(path F.Cu 2500
463850 -780000
467192 -776658
467192 -776080
489700 -753572
489700 -736930
482450 -729680
482450 -722720
489700 -715470
489700 -700800
)
(type protect)
)
(wire
(path B.Cu 2500
489700 -700800
515250 -700800
)
(type protect)
)
(wire
(path F.Cu 2500
504500 -700800
515250 -700800
)
(type protect)
)
)
(net /SDA
(via "Via[0-1]_800:400_um" 540500 -675400
(type protect)
)
(wire
(path F.Cu 4000
540500 -675400
565750 -675400
)
(type protect)
)
(wire
(path B.Cu 4000
565750 -675400
540500 -675400
)
(type protect)
)
(wire
(path F.Cu 4000
565900 -675550
565750 -675400
)
(type protect)
)
(wire
(path F.Cu 2500
565750 -675400
555000 -675400
545000 -685400
545000 -754814
531064 -768750
497614 -768750
491500 -774864
491500 -808500
464000 -836000
392500 -836000
)
(type protect)
)
)
(net /SCL
(via "Via[0-1]_800:400_um" 489700 -675400
(type protect)
)
(wire
(path B.Cu 4000
489700 -675400
515250 -675400
)
(type protect)
)
(wire
(path F.Cu 4000
515250 -675400
489700 -675400
)
(type protect)
)
(wire
(path F.Cu 2500
392500 -828000
459000 -828000
485000 -802000
485000 -775000
500150 -759850
533600 -759850
539000 -754450
539000 -688400
526000 -675400
515250 -675400
)
(type protect)
)
)
(net /RXD2
(via "Via[0-1]_800:400_um" 540500 -650000
(type protect)
)
(wire
(path B.Cu 4000
540500 -650000
565750 -650000
)
(type protect)
)
(wire
(path F.Cu 4000
565750 -650000
540500 -650000
)
(type protect)
)
(wire
(path B.Cu 4000
565900 -650150
565750 -650000
)
(type protect)
)
)
(net /TXD2
(via "Via[0-1]_800:400_um" 489700 -650000
(type protect)
)
(wire
(path F.Cu 4000
489700 -650000
515250 -650000
)
(type protect)
)
(wire
(path B.Cu 4000
515250 -650000
489700 -650000
)
(type protect)
)
(wire
(path F.Cu 4000
515100 -650150
515250 -650000
)
(type protect)
)
)
(net /RXD0
(via "Via[0-1]_800:400_um" 540500 -624600