forked from resterampeberlin/TMC-Breakout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TMC-Breakout.kicad_sch
1712 lines (1670 loc) · 66.8 KB
/
TMC-Breakout.kicad_sch
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
(kicad_sch (version 20211123) (generator eeschema)
(uuid 1b7796d5-2560-4667-86bc-e636eca02d06)
(paper "A4")
(title_block
(title "Breakout board for Trinamic TMC2xxx modules")
(date "2023-02-10")
(rev "1.0.0")
(company "Resterampe Berlin")
(comment 3 "https://creativecommons.org/licenses/by-nc/4.0")
(comment 4 "License CC BY-NC 4.0")
)
(lib_symbols
(symbol "Connector_Generic:Conn_01x02" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x02" (id 1) (at 0 -5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x02_1_1"
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 1.27) (end 1.27 -3.81)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector_Generic:Conn_01x08" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 10.16 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x08" (id 1) (at 0 -12.7 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x08, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x08_1_1"
(rectangle (start -1.27 -10.033) (end 0 -10.287)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -7.493) (end 0 -7.747)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 5.207) (end 0 4.953)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 7.747) (end 0 7.493)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 8.89) (end 1.27 -11.43)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin passive line (at -5.08 7.62 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 5.08 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 2.54 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -5.08 0) (length 3.81)
(name "Pin_6" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -7.62 0) (length 3.81)
(name "Pin_7" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -10.16 0) (length 3.81)
(name "Pin_8" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "LED" (id 1) (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "LED diode" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Light emitting diode" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "LED_0_1"
(polyline
(pts
(xy -1.27 -1.27)
(xy -1.27 1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 0)
(xy 1.27 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -1.27)
(xy 1.27 1.27)
(xy -1.27 0)
(xy 1.27 -1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -3.048 -0.762)
(xy -4.572 -2.286)
(xy -3.81 -2.286)
(xy -4.572 -2.286)
(xy -4.572 -1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.778 -0.762)
(xy -3.302 -2.286)
(xy -2.54 -2.286)
(xy -3.302 -2.286)
(xy -3.302 -1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "LED_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (id 1) (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Project Symbols:TMC2130_SILENTSTEPSTICK" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -12.7 19.05 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Value" "TMC2130_SILENTSTEPSTICK" (id 1) (at -12.7 -22.86 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Footprint" "Project Footprints:MODULE_TMC2130_SILENTSTEPSTICK" (id 2) (at 0 -26.67 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Datasheet" "" (id 3) (at 0 2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MANUFACTURER" "Trinamic Motion" (id 4) (at 0 -29.21 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(symbol "TMC2130_SILENTSTEPSTICK_0_0"
(rectangle (start -12.7 -20.32) (end 12.7 17.78)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin input line (at -17.78 7.62 0) (length 5.08)
(name "DIR" (effects (font (size 1.016 1.016))))
(number "JP1_1" (effects (font (size 1.016 1.016))))
)
(pin input line (at -17.78 5.08 0) (length 5.08)
(name "STEP" (effects (font (size 1.016 1.016))))
(number "JP1_2" (effects (font (size 1.016 1.016))))
)
(pin bidirectional line (at -17.78 -15.24 0) (length 5.08)
(name "DC0" (effects (font (size 1.016 1.016))))
(number "JP1_3" (effects (font (size 1.016 1.016))))
)
(pin bidirectional line (at -17.78 0 0) (length 5.08)
(name "SDO/CFG0" (effects (font (size 1.016 1.016))))
(number "JP1_4" (effects (font (size 1.016 1.016))))
)
(pin input line (at -17.78 -7.62 0) (length 5.08)
(name "CS/CFG3" (effects (font (size 1.016 1.016))))
(number "JP1_5" (effects (font (size 1.016 1.016))))
)
(pin input line (at -17.78 -5.08 0) (length 5.08)
(name "SCK/CFG2" (effects (font (size 1.016 1.016))))
(number "JP1_6" (effects (font (size 1.016 1.016))))
)
(pin input line (at -17.78 -2.54 0) (length 5.08)
(name "SDI/CFG1" (effects (font (size 1.016 1.016))))
(number "JP1_7" (effects (font (size 1.016 1.016))))
)
(pin input line (at -17.78 12.7 0) (length 5.08)
(name "EN" (effects (font (size 1.016 1.016))))
(number "JP1_8" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 17.78 12.7 180) (length 5.08)
(name "VM" (effects (font (size 1.016 1.016))))
(number "JP2_1" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 17.78 -16.51 180) (length 5.08)
(name "GND" (effects (font (size 1.016 1.016))))
(number "JP2_2" (effects (font (size 1.016 1.016))))
)
(pin passive line (at 17.78 5.08 180) (length 5.08)
(name "M2B" (effects (font (size 1.016 1.016))))
(number "JP2_3" (effects (font (size 1.016 1.016))))
)
(pin passive line (at 17.78 2.54 180) (length 5.08)
(name "M2A" (effects (font (size 1.016 1.016))))
(number "JP2_4" (effects (font (size 1.016 1.016))))
)
(pin passive line (at 17.78 0 180) (length 5.08)
(name "M1A" (effects (font (size 1.016 1.016))))
(number "JP2_5" (effects (font (size 1.016 1.016))))
)
(pin passive line (at 17.78 -2.54 180) (length 5.08)
(name "M1B" (effects (font (size 1.016 1.016))))
(number "JP2_6" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 17.78 15.24 180) (length 5.08)
(name "VIO" (effects (font (size 1.016 1.016))))
(number "JP2_7" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 17.78 -19.05 180) (length 5.08)
(name "GND" (effects (font (size 1.016 1.016))))
(number "JP2_8" (effects (font (size 1.016 1.016))))
)
(pin output line (at 17.78 -11.43 180) (length 5.08)
(name "DIAG0" (effects (font (size 1.016 1.016))))
(number "JP3_1" (effects (font (size 1.016 1.016))))
)
(pin output line (at 17.78 -8.89 180) (length 5.08)
(name "DIAG1" (effects (font (size 1.016 1.016))))
(number "JP3_2" (effects (font (size 1.016 1.016))))
)
(pin passive line (at 17.78 -13.97 180) (length 5.08)
(name "VREF" (effects (font (size 1.016 1.016))))
(number "VREF" (effects (font (size 1.016 1.016))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "#FLG" (id 0) (at 0 1.905 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "PWR_FLAG" (id 1) (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "flag power" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PWR_FLAG_0_0"
(pin power_out line (at 0 0 90) (length 0)
(name "pwr" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
(symbol "PWR_FLAG_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 1.27)
(xy -1.016 1.905)
(xy 0 2.54)
(xy 1.016 1.905)
(xy 0 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
(symbol "power:VCC" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (id 1) (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"VCC\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "VCC_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "VCC_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "VCC" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:VDD" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VDD" (id 1) (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"VDD\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "VDD_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "VDD_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "VDD" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 207.645 90.805) (diameter 0) (color 0 0 0 0)
(uuid 20a7929c-da0c-4218-a64c-b0596faa8e2b)
)
(junction (at 161.925 103.505) (diameter 0) (color 0 0 0 0)
(uuid 37776de7-2408-4ef9-97ff-858c4b52293b)
)
(junction (at 177.165 74.295) (diameter 0) (color 0 0 0 0)
(uuid 4e9e2359-1c23-4159-99c9-01729002241b)
)
(junction (at 161.925 106.045) (diameter 0) (color 0 0 0 0)
(uuid a288d78d-0fb3-40d1-b21e-246dfcde23c5)
)
(junction (at 161.925 71.755) (diameter 0) (color 0 0 0 0)
(uuid c1dbd8d8-3493-4632-9ce7-a1893ff074d0)
)
(no_connect (at 160.02 100.965) (uuid 04887507-984b-49f4-99ed-9d013f663ed3))
(wire (pts (xy 160.02 81.915) (xy 167.64 81.915))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 09f072a9-825c-4457-95fa-af315e665581)
)
(wire (pts (xy 100.965 86.995) (xy 108.585 86.995))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0e174e6b-feaa-4423-b1c8-8e53f6491899)
)
(wire (pts (xy 99.695 138.43) (xy 99.695 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0f132378-c3a1-4dc6-85e0-e9c5b9fdd7fa)
)
(wire (pts (xy 100.965 74.295) (xy 108.585 74.295))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 15da2cf1-be90-44cb-a942-3d0b774bf740)
)
(wire (pts (xy 177.165 66.675) (xy 177.165 74.295))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 16271471-6ec5-4ce7-874b-fc700c2f6810)
)
(wire (pts (xy 187.325 126.365) (xy 187.325 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1a530169-7438-46c7-8716-12e780edd6c9)
)
(wire (pts (xy 165.1 126.365) (xy 153.67 126.365))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1db09826-7f57-454e-aedf-207c9ab85b3a)
)
(wire (pts (xy 161.925 71.755) (xy 160.02 71.755))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1e554195-ff1a-419f-90b0-8d8ae089e704)
)
(wire (pts (xy 100.965 71.755) (xy 108.585 71.755))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 27ae6dd2-e86e-49ee-b98b-510a33f09fea)
)
(wire (pts (xy 124.46 74.295) (xy 116.84 74.295))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 29b1f0e5-a612-4d1b-81fb-0f415f3534f6)
)
(wire (pts (xy 209.55 80.645) (xy 201.93 80.645))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 29fd3874-4859-470c-a701-75f684a69f9a)
)
(wire (pts (xy 99.695 151.765) (xy 88.265 151.765))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2acdb720-48f4-4cdb-9ab3-4e897490c191)
)
(wire (pts (xy 207.645 90.805) (xy 207.645 92.075))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2e0ca4da-0b3b-4c7e-8f7a-e4dcde563760)
)
(wire (pts (xy 160.02 106.045) (xy 161.925 106.045))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2ec03596-09dc-4fb7-a538-6e57e0a54015)
)
(wire (pts (xy 99.695 126.365) (xy 99.695 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3046a7d0-7664-4ca8-a424-32aafa49a11d)
)
(wire (pts (xy 160.02 95.885) (xy 167.64 95.885))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 308c3e14-4a2c-4a06-82ca-29b8647f36a6)
)
(wire (pts (xy 200.025 88.265) (xy 209.55 88.265))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 32e3d83d-2645-4968-97bc-7cb1b3c854d7)
)
(wire (pts (xy 121.285 135.89) (xy 121.285 139.065))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 34926b12-6c5e-41c2-b860-388d80084585)
)
(wire (pts (xy 144.145 135.89) (xy 144.145 139.065))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3bd7d374-54ab-4a2f-bcf2-4ec26764a07d)
)
(wire (pts (xy 177.165 74.295) (xy 160.02 74.295))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4185109a-9678-435a-bc7f-20b3a8e610f9)
)
(wire (pts (xy 205.105 73.025) (xy 209.55 73.025))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4790e398-2b9d-47f6-bba2-984baf9e6a41)
)
(wire (pts (xy 209.55 104.775) (xy 201.93 104.775))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 49b0e109-74be-473f-b3e5-eb1f53cc7000)
)
(wire (pts (xy 165.1 126.365) (xy 165.1 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4c155660-2a85-443b-8584-fdd55bc6e641)
)
(wire (pts (xy 124.46 102.235) (xy 116.84 102.235))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4c98d071-c391-4192-9ea9-8d5f943949b2)
)
(wire (pts (xy 200.025 69.215) (xy 200.025 88.265))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4e08c33b-7ccb-488c-84eb-2d5c084ddeaa)
)
(wire (pts (xy 184.785 74.295) (xy 177.165 74.295))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5e62b38d-6285-43c1-becc-6aa55cdf9828)
)
(wire (pts (xy 100.965 76.835) (xy 108.585 76.835))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6113c526-2401-405b-a90d-29dfe493b5e7)
)
(wire (pts (xy 100.965 84.455) (xy 108.585 84.455))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 620a6ed4-9e56-469c-801b-6d831c60bee4)
)
(wire (pts (xy 209.55 85.725) (xy 201.93 85.725))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 62867004-0f8a-4594-9f36-548ee7ab6558)
)
(wire (pts (xy 121.285 126.365) (xy 121.285 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 67c9e049-f370-416f-a09d-d1c72eaab079)
)
(wire (pts (xy 187.325 135.89) (xy 187.325 139.065))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 69643e98-217f-44a7-be09-532e8cc94349)
)
(wire (pts (xy 165.1 146.685) (xy 165.1 151.765))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6aafe7c8-74a6-45d1-a9ec-ac0c80ccf7a9)
)
(wire (pts (xy 144.145 126.365) (xy 132.715 126.365))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6ba1dba1-7717-4644-8c25-3f8ef5fd8985)
)
(wire (pts (xy 207.01 135.89) (xy 207.01 139.065))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6d4f5ee6-ce7e-45b2-b4b1-161aebbb18f5)
)
(wire (pts (xy 100.965 81.915) (xy 108.585 81.915))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 79c441fa-207e-4276-a8a1-8b83f3779091)
)
(wire (pts (xy 187.325 146.685) (xy 187.325 151.765))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7c93517b-7059-4c41-b9af-a471d2e92dea)
)
(wire (pts (xy 209.55 78.105) (xy 201.93 78.105))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7d885588-b94e-41a2-8d72-24f73473b207)
)
(wire (pts (xy 124.46 94.615) (xy 116.84 94.615))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7dced83d-db80-4cc3-8616-4fb139c3051d)
)
(wire (pts (xy 184.785 66.675) (xy 184.785 74.295))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 836d3b51-2b43-40c8-a292-d736e3588ae9)
)
(wire (pts (xy 169.545 71.755) (xy 161.925 71.755))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8dd461cd-9a4e-4ea8-977c-3723facb188a)
)
(wire (pts (xy 100.965 79.375) (xy 108.585 79.375))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 932985b1-82e9-431d-88ef-8be9cbebe729)
)
(wire (pts (xy 205.105 69.215) (xy 205.105 73.025))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 95fcb034-6e7f-483c-9e87-1cd90c48adbf)
)
(wire (pts (xy 160.02 103.505) (xy 161.925 103.505))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 98b332ab-4113-40b7-815f-709a79bef825)
)
(wire (pts (xy 207.01 126.365) (xy 207.01 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a01696ef-3577-4344-b9b5-4a4f95e66adf)
)
(wire (pts (xy 209.55 75.565) (xy 207.645 75.565))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a175e700-76b3-44d1-b7c5-34f8caec1a6a)
)
(wire (pts (xy 144.145 126.365) (xy 144.145 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a4dedbc6-2e13-4e6c-bede-dc20136ea7e0)
)
(wire (pts (xy 160.02 84.455) (xy 167.64 84.455))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ab7c2f3d-5653-4731-8d3d-e98d89e3580f)
)
(wire (pts (xy 121.285 126.365) (xy 109.855 126.365))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ac45ddd9-732b-4f53-9382-27abdcb0dc3a)
)
(wire (pts (xy 165.1 135.89) (xy 165.1 139.065))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b23f2db8-0bde-4f57-be8f-4a693d3c737b)
)
(wire (pts (xy 209.55 83.185) (xy 201.93 83.185))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b63a6165-4da6-44dd-b56f-1c9aadb353ba)
)
(wire (pts (xy 144.145 146.685) (xy 144.145 151.765))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b8616814-16bd-4841-88ca-da7da63c2e44)
)
(wire (pts (xy 161.925 103.505) (xy 161.925 106.045))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b9b6779f-ea99-4daf-bdff-22d0f5e4ed54)
)
(wire (pts (xy 209.55 107.315) (xy 201.93 107.315))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bc649770-8c6a-4b2d-b2f6-e56d6ccb1fa1)
)
(wire (pts (xy 124.46 86.995) (xy 116.84 86.995))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bcdc4031-f32e-4202-b9c5-ee55eab439c9)
)
(wire (pts (xy 161.925 66.675) (xy 161.925 71.755))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bfdee50c-764f-42ea-9fbe-fb8c9c68bf52)
)
(wire (pts (xy 161.925 103.505) (xy 174.625 103.505))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c29fb6bc-935d-49ce-ad09-61e5596f90ed)
)
(wire (pts (xy 121.285 146.685) (xy 121.285 151.765))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c6dcd8f1-e447-49d5-a392-f2d52261441a)
)
(wire (pts (xy 160.02 86.995) (xy 167.64 86.995))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cb3d3fa6-d921-4c55-ab00-e4bce3bd8645)
)
(wire (pts (xy 99.695 146.05) (xy 99.695 151.765))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cf8bf18d-4b34-415d-b171-df3385ae3e7c)
)
(wire (pts (xy 124.46 79.375) (xy 116.84 79.375))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d2582989-be62-4c3a-b5e8-f8dd070f6404)
)
(wire (pts (xy 187.325 126.365) (xy 175.895 126.365))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d8087e60-782e-42c0-b406-80c93666da1c)
)
(wire (pts (xy 100.965 89.535) (xy 108.585 89.535))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid db4a7236-2520-46bf-b468-a794446f67ef)
)
(wire (pts (xy 124.46 81.915) (xy 116.84 81.915))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dcf6af8d-4bb2-4c94-be10-b1ee3bbe859a)
)
(wire (pts (xy 160.02 89.535) (xy 167.64 89.535))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ddcec4df-d24e-4bea-b050-2d5a68ab6af5)
)
(wire (pts (xy 124.46 89.535) (xy 116.84 89.535))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid de1f4cb7-5b27-4e2c-934c-a062f222f726)
)
(wire (pts (xy 207.01 146.685) (xy 207.01 151.765))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid deba4e06-68cb-4e73-bc00-85c5d95ef19b)
)
(wire (pts (xy 160.02 98.425) (xy 167.64 98.425))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e8369deb-d3bd-4094-b5ea-5b5a27938466)
)
(wire (pts (xy 207.645 75.565) (xy 207.645 90.805))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ebad261c-cf54-406e-a2c8-81362247d250)
)
(wire (pts (xy 161.925 106.045) (xy 161.925 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ec544b85-e673-451b-8fc7-24aab0adc498)
)
(wire (pts (xy 124.46 92.075) (xy 116.84 92.075))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f1bf6b53-b7d2-4b23-8266-c635a43ec952)
)
(wire (pts (xy 209.55 90.805) (xy 207.645 90.805))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f5916d79-3c8c-4b8e-a37a-4bdd21d1b29e)
)
(wire (pts (xy 169.545 66.675) (xy 169.545 71.755))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fd04782a-fa64-4bbb-8fbc-cc7c0c4cb9f6)
)
(label "M2B" (at 167.64 81.915 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 0279b23f-de60-472c-923f-64b73fd26079)
)
(label "DIAG1" (at 201.93 104.775 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 043b071d-44f3-428d-8140-20976bc0f4db)
)
(label "DIAG0" (at 201.93 107.315 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 05ca141d-cd8d-47d4-83b5-0d2bfb054de9)
)
(label "M1A" (at 201.93 83.185 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 09775e6f-5f70-4926-a247-876c55399e2c)
)
(label "DIR" (at 109.855 126.365 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 23080b4b-88ad-49e8-b06a-5e3dc819b805)
)
(label "DIR" (at 108.585 71.755 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 2d6263ae-262d-4937-b2c4-5e02077ba25c)
)
(label "CFG1" (at 108.585 86.995 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 3d0dc8f6-d3b1-4ba7-b3e6-bd2b855892d3)
)
(label "CFG2" (at 116.84 92.075 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 3e5ee002-9f17-4329-a578-0fb4a912579c)
)
(label "CFG0" (at 108.585 79.375 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 46ec1e4c-0dcb-48e0-af0b-d4f6bbbe0d89)
)
(label "DIR" (at 116.84 79.375 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 4fb258b2-414c-403d-8e74-352a207278f6)
)
(label "CFG1" (at 116.84 89.535 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 512750ba-4f71-49f7-b868-9fa500e96732)
)
(label "DIAG0" (at 153.67 126.365 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 53c30fd2-c6c3-4d11-9231-1265a52828ce)
)
(label "M1B" (at 201.93 85.725 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 5ed64ff7-beae-4345-aa21-98f37f4b214a)
)
(label "STEP" (at 132.715 126.365 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 600238ef-1370-49ee-8b47-593b0bcad100)
)
(label "CFG2" (at 108.585 84.455 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 6ef54b6b-e213-451f-bd78-593b59fc9424)
)
(label "~{EN}" (at 116.84 74.295 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 81a527b7-9617-4814-8108-70f100d2248c)
)
(label "M2B" (at 201.93 78.105 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 81ecfb7a-907c-422b-bbdb-305821c99231)
)
(label "M1A" (at 167.64 86.995 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 82afc305-c5ef-4e85-9bc8-023aaa0a0c0e)
)
(label "DIAG0" (at 167.64 98.425 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 8808f529-abc4-4616-b634-63a0f5d0899e)
)
(label "~{EN}" (at 108.585 89.535 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 8a8cb679-2879-451a-887c-acbea09b82d7)
)
(label "DCO" (at 116.84 102.235 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 8ca56d1f-86d8-4a2b-9a12-1098f14f27de)
)
(label "DIAG1" (at 175.895 126.365 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 9159be1e-28f1-4d9f-a1d5-b78fc3f25467)
)
(label "DIAG1" (at 167.64 95.885 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid a503843c-a4bf-4361-b2fc-21fa998b026b)
)
(label "CFG0" (at 116.84 86.995 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid af1e0f58-ce88-49f2-a345-60e208672204)
)
(label "CFG3" (at 108.585 81.915 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid c26a69ee-0748-4b60-8d25-8c05b080b040)
)
(label "DCO" (at 108.585 76.835 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid c584f0f1-b2a1-4b35-b96f-e4c20cfb4f1b)
)
(label "M2A" (at 167.64 84.455 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid c5959220-3e6a-4823-bc66-73454fb252fc)
)
(label "STEP" (at 108.585 74.295 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid cded5ad5-9fda-4db4-a356-3f09f919e8ef)
)
(label "STEP" (at 116.84 81.915 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid d58e391a-ed41-44c0-824e-a893e99365ec)
)
(label "M2A" (at 201.93 80.645 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid d5adbb6c-9700-4b7a-bf6f-b046c69aea30)
)
(label "~{EN}" (at 88.265 151.765 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid dc365361-e33a-4292-a2dd-f1f125b96bea)
)
(label "CFG3" (at 116.84 94.615 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid ddf38b88-614e-4009-b452-08e5a825efae)
)
(label "M1B" (at 167.64 89.535 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid e35e18cc-946e-4b3f-915c-3a15e4dff564)
)