-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterface.kicad_sch
More file actions
1734 lines (1686 loc) · 64.9 KB
/
Copy pathinterface.kicad_sch
File metadata and controls
1734 lines (1686 loc) · 64.9 KB
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 7ecce4e3-4247-4aeb-8507-cdf00355179c)
(paper "A4")
(title_block
(title "(BCC) Battery Case Controller")
(date "2022-12-06")
(rev "1")
(company "UNIMOC universal motor controller")
)
(lib_symbols
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (id 1) (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0.9652 -3.81 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" "cap capacitor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(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 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:D_TVS_Dual_AAC" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at 0 4.445 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "D_TVS_Dual_AAC" (id 1) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at -3.81 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at -3.81 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "diode TVS thyrector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Bidirectional dual transient-voltage-suppression diode, center on pin 3" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "D_TVS_Dual_AAC_0_0"
(polyline
(pts
(xy 0 -1.27)
(xy 0 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "D_TVS_Dual_AAC_0_1"
(polyline
(pts
(xy -6.35 0)
(xy 6.35 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -3.302 1.27)
(xy -3.81 1.27)
(xy -3.81 -1.27)
(xy -4.318 -1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 4.318 1.27)
(xy 3.81 1.27)
(xy 3.81 -1.27)
(xy 3.302 -1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -6.35 1.27)
(xy -1.27 -1.27)
(xy -1.27 1.27)
(xy -6.35 -1.27)
(xy -6.35 1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 6.35 1.27)
(xy 1.27 -1.27)
(xy 1.27 1.27)
(xy 6.35 -1.27)
(xy 6.35 1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 0 0) (radius 0.254)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
)
(symbol "D_TVS_Dual_AAC_1_1"
(pin passive line (at -8.89 0 0) (length 2.54)
(name "A1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 8.89 0 180) (length 2.54)
(name "A2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at 0 -3.81 90) (length 2.54)
(name "common" (effects (font (size 1.27 1.27))))
(number "3" (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 "Interface_CAN_LIN:SN65HVD230" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -2.54 10.16 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "SN65HVD230" (id 1) (at -2.54 7.62 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (id 2) (at 0 -12.7 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.ti.com/lit/ds/symlink/sn65hvd230.pdf" (id 3) (at -2.54 10.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "can transeiver ti low-power" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "CAN Bus Transceivers, 3.3V, 1Mbps, Low-Power capabilities, SOIC-8" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOIC*3.9x4.9mm*P1.27mm*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SN65HVD230_0_1"
(rectangle (start -7.62 5.08) (end 7.62 -7.62)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "SN65HVD230_1_1"
(pin input line (at -10.16 2.54 0) (length 2.54)
(name "D" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -10.16 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 7.62 270) (length 2.54)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin output line (at -10.16 0 0) (length 2.54)
(name "R" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin output line (at -10.16 -2.54 0) (length 2.54)
(name "Vref" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 10.16 -2.54 180) (length 2.54)
(name "CANL" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 10.16 0 180) (length 2.54)
(name "CANH" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -5.08 0) (length 2.54)
(name "Rs" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+3V3" (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" "+3V3" (id 1) (at 0 3.556 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" "power-flag" (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 \"+3V3\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3V3_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 "+3V3_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3V3" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GNDA" (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" "GNDA" (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" "power-flag" (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 \"GNDA\" , analog ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GNDA_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 "GNDA_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GNDA" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GNDD" (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" "GNDD" (id 1) (at 0 -3.175 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" "power-flag" (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 \"GNDD\" , digital ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GNDD_0_1"
(rectangle (start -1.27 -1.524) (end 1.27 -2.032)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type outline))
)
(polyline
(pts
(xy 0 0)
(xy 0 -1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GNDD_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GNDD" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 106.68 59.69) (diameter 0) (color 0 0 0 0)
(uuid 020ec04d-4225-452f-bae7-b1c4ba693602)
)
(junction (at 224.79 46.99) (diameter 0) (color 0 0 0 0)
(uuid 097cc183-966e-42e6-9e81-a06dcbf4d735)
)
(junction (at 199.39 87.63) (diameter 0) (color 0 0 0 0)
(uuid 0dfade73-2917-4d0d-9c20-6f8bd701620b)
)
(junction (at 39.37 25.4) (diameter 0) (color 0 0 0 0)
(uuid 104af5e5-cb87-4456-9e8c-5d25b2df6f3c)
)
(junction (at 82.55 72.39) (diameter 0) (color 0 0 0 0)
(uuid 17d7a4bf-7bd6-419c-9617-02fcd9358e63)
)
(junction (at 121.92 93.98) (diameter 0) (color 0 0 0 0)
(uuid 1bb543a2-b0da-4e53-b13f-971131d977c0)
)
(junction (at 121.92 53.34) (diameter 0) (color 0 0 0 0)
(uuid 28411b11-61d5-45a2-ac15-67fa6dc881af)
)
(junction (at 210.82 63.5) (diameter 0) (color 0 0 0 0)
(uuid 28ec4412-57fe-4fa0-93e5-623119f7e21f)
)
(junction (at 107.95 180.34) (diameter 0) (color 0 0 0 0)
(uuid 2e947e96-c464-4c2f-ae61-fa37c4e3e301)
)
(junction (at 124.46 149.86) (diameter 0) (color 0 0 0 0)
(uuid 300feaeb-25af-4674-ba37-a01e47f459b0)
)
(junction (at 44.45 25.4) (diameter 0) (color 0 0 0 0)
(uuid 41d5755d-81d1-4cd4-bc3f-40b42e1dd7bc)
)
(junction (at 49.53 25.4) (diameter 0) (color 0 0 0 0)
(uuid 4ce6f48d-e50b-4838-8ffe-47ecdf1ace49)
)
(junction (at 39.37 46.99) (diameter 0) (color 0 0 0 0)
(uuid 4df0284e-9651-4863-8b0a-e1f85d6bca98)
)
(junction (at 49.53 59.69) (diameter 0) (color 0 0 0 0)
(uuid 524e8d6c-29f0-49df-8c84-c02a95b3bbe8)
)
(junction (at 106.68 93.98) (diameter 0) (color 0 0 0 0)
(uuid 539ef1cf-5c16-4f63-8a94-03e1fe002bd1)
)
(junction (at 64.77 149.86) (diameter 0) (color 0 0 0 0)
(uuid 58c97b59-6318-4899-bd56-ae218edafc57)
)
(junction (at 44.45 53.34) (diameter 0) (color 0 0 0 0)
(uuid 5f2df3b9-ea1a-4bbe-bca0-7b65c50c58e9)
)
(junction (at 114.3 46.99) (diameter 0) (color 0 0 0 0)
(uuid 8e1046ef-6d99-41d9-a46a-33ab54b949c5)
)
(junction (at 107.95 156.21) (diameter 0) (color 0 0 0 0)
(uuid 917bd77d-bd1a-4b34-a2fe-5f10632e80f0)
)
(junction (at 97.79 156.21) (diameter 0) (color 0 0 0 0)
(uuid a49159d4-6ed8-41dd-bdfc-3a542e687347)
)
(junction (at 224.79 87.63) (diameter 0) (color 0 0 0 0)
(uuid a8a1dcc4-ace2-4b9a-a711-b476f756a580)
)
(junction (at 77.47 156.21) (diameter 0) (color 0 0 0 0)
(uuid b29657e2-b679-4fe7-b7bd-69edc0e38fc1)
)
(junction (at 54.61 66.04) (diameter 0) (color 0 0 0 0)
(uuid c5ac0b0d-e518-4ed7-be54-fcdeb486d109)
)
(junction (at 114.3 93.98) (diameter 0) (color 0 0 0 0)
(uuid e21d8904-41ad-4baf-843e-491f7a69e7bf)
)
(junction (at 54.61 156.21) (diameter 0) (color 0 0 0 0)
(uuid e83e3a8e-5f2c-4d8b-a31b-6cfa76e5defa)
)
(junction (at 185.42 60.96) (diameter 0) (color 0 0 0 0)
(uuid f024993a-47e8-45bd-b951-2458310097aa)
)
(junction (at 99.06 66.04) (diameter 0) (color 0 0 0 0)
(uuid f43122cd-541f-451a-9177-603f9f4aa3b3)
)
(no_connect (at 234.95 63.5) (uuid 50351ed7-94c6-49c3-bb7f-1643433b7ebb))
(wire (pts (xy 97.79 180.34) (xy 107.95 180.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 016483b6-ac29-4c07-8ca9-e4650397f8b7)
)
(wire (pts (xy 54.61 34.29) (xy 54.61 25.4))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0697a91e-8525-43a1-85ad-401876e24b81)
)
(wire (pts (xy 82.55 72.39) (xy 137.16 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 06b142fc-30ee-4af2-972e-8a9c065d6701)
)
(wire (pts (xy 185.42 60.96) (xy 214.63 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 076b2ade-8eba-453d-b8dc-780659ce317c)
)
(wire (pts (xy 185.42 78.74) (xy 190.5 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 07f0d89b-89e5-491b-b93f-1e65cd155912)
)
(wire (pts (xy 107.95 156.21) (xy 107.95 167.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 08b7c8c3-f62c-4f66-b85a-90d39ef241ca)
)
(wire (pts (xy 194.31 87.63) (xy 199.39 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 09310992-5ae3-43f8-b26d-335f3249dc80)
)
(wire (pts (xy 39.37 46.99) (xy 30.48 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 09d2f9b0-ba5b-40a4-8de0-b362da46f6e6)
)
(wire (pts (xy 199.39 87.63) (xy 224.79 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0aeb1bbd-bbdf-4fc0-a399-fd0ebb8c9ad1)
)
(wire (pts (xy 77.47 162.56) (xy 77.47 156.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0b7bf687-bfba-4538-9d9d-888bee85ec22)
)
(wire (pts (xy 44.45 53.34) (xy 30.48 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0bb4f806-dcf7-47e1-8e87-47f838c1ea7e)
)
(wire (pts (xy 68.58 162.56) (xy 77.47 162.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 110f983c-8403-438b-8e52-937202cc7916)
)
(wire (pts (xy 181.61 87.63) (xy 186.69 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 12c94862-ce48-4d46-b7eb-a8634d1eeb9d)
)
(wire (pts (xy 49.53 59.69) (xy 49.53 41.91))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 13e0192a-efba-488c-b247-4aeffe234639)
)
(wire (pts (xy 82.55 34.29) (xy 82.55 25.4))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 148d97ec-1846-4cce-9e31-c1c1813d921b)
)
(polyline (pts (xy 12.7 114.3) (xy 283.21 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 17b51352-21e5-4359-a24d-cd4f3852073b)
)
(wire (pts (xy 107.95 180.34) (xy 107.95 181.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 17cc24e7-966c-480a-a473-c6035bb14a43)
)
(wire (pts (xy 124.46 175.26) (xy 124.46 181.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1f3764d4-5dfe-4a26-bd2a-e4671dbdeb3b)
)
(wire (pts (xy 68.58 53.34) (xy 121.92 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2215dea5-8859-43ca-b961-b8026e87f4e5)
)
(wire (pts (xy 224.79 46.99) (xy 224.79 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 25ad5495-def4-4d30-b0b3-80d8a858337d)
)
(wire (pts (xy 181.61 63.5) (xy 210.82 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 269937da-1134-440c-92c0-170421b55566)
)
(wire (pts (xy 255.27 66.04) (xy 234.95 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 28e56b8a-67f5-4b19-bcf2-27ea16200d34)
)
(wire (pts (xy 99.06 66.04) (xy 99.06 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 29860702-bcb7-41a9-9c39-1cfb80893ae6)
)
(wire (pts (xy 114.3 46.99) (xy 114.3 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2d4f75dd-a2cd-4fdf-9429-83b5f42b4695)
)
(wire (pts (xy 185.42 60.96) (xy 181.61 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2de0bf50-c8d6-4900-9316-24e1821f1b96)
)
(wire (pts (xy 44.45 25.4) (xy 39.37 25.4))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 307651f6-6ae9-4cca-948b-3c93bbc56a8e)
)
(wire (pts (xy 262.89 66.04) (xy 271.78 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 335fa879-9f01-4765-9249-ddc9db15d80c)
)
(wire (pts (xy 77.47 156.21) (xy 68.58 156.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 36450c5b-855a-47d9-b8b2-a25dd1ffe31d)
)
(polyline (pts (xy 160.02 12.7) (xy 160.02 196.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3afd9c37-c73f-4863-82d2-b0fb7f910ab2)
)
(wire (pts (xy 106.68 93.98) (xy 114.3 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3c172663-3c43-4414-a20d-f79c1847d32c)
)
(wire (pts (xy 224.79 87.63) (xy 224.79 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3f84d1de-6039-45d8-be20-f5e3e4dc53bd)
)
(wire (pts (xy 121.92 93.98) (xy 121.92 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4166dec6-4021-4b67-84b1-e8290ba04425)
)
(wire (pts (xy 246.38 87.63) (xy 224.79 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 441d9176-d736-44ff-8320-1dd56ac1e7ba)
)
(wire (pts (xy 106.68 59.69) (xy 106.68 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 443cee9a-ed01-42f2-8e25-1ce954278b96)
)
(wire (pts (xy 234.95 58.42) (xy 271.78 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 45e92212-df13-464a-8d79-b4950e1e71f2)
)
(wire (pts (xy 185.42 60.96) (xy 185.42 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 45ec91a6-6bb2-4cf6-831b-95cfcbcafaf1)
)
(wire (pts (xy 68.58 46.99) (xy 114.3 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 48e3169e-0d09-443f-b177-353927d5b2ac)
)
(wire (pts (xy 208.28 78.74) (xy 210.82 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 51f3c7f5-36af-4f9d-aad9-a88ff8e70e10)
)
(wire (pts (xy 64.77 144.78) (xy 64.77 149.86))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 552f269b-b123-49e4-b4e2-c56eefa08fda)
)
(wire (pts (xy 68.58 66.04) (xy 99.06 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 568f1e34-502e-4924-9acd-ea5fe8d4686a)
)
(wire (pts (xy 124.46 149.86) (xy 124.46 167.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 58dd47c8-e851-490f-97b7-47abf4143017)
)
(wire (pts (xy 210.82 63.5) (xy 214.63 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5c16c30f-32e2-40bc-a8a1-c93fa0b1b5b0)
)
(wire (pts (xy 121.92 53.34) (xy 137.16 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5d714159-2c4a-4a19-a718-a29b461374f9)
)
(wire (pts (xy 39.37 34.29) (xy 39.37 25.4))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5dffd4d9-1104-41d6-a231-4fe09b334927)
)
(wire (pts (xy 246.38 46.99) (xy 246.38 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 601bccc0-55a2-4689-b775-6a8a8af7d1bd)
)
(wire (pts (xy 64.77 129.54) (xy 64.77 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 665bfdba-19a4-4f25-9db9-92496b5ceec2)
)
(wire (pts (xy 39.37 41.91) (xy 39.37 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 67e09a66-2302-495f-ad02-fbc9fff4a3e7)
)
(wire (pts (xy 114.3 93.98) (xy 121.92 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6962757b-cdbe-4913-9caa-eaf400fd28bd)
)
(wire (pts (xy 49.53 59.69) (xy 60.96 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 69b137dc-910f-401b-a756-04a9c60598f0)
)
(wire (pts (xy 107.95 156.21) (xy 134.62 156.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6a314200-34f6-4fe5-918e-bdeffedbbd3e)
)
(wire (pts (xy 82.55 72.39) (xy 82.55 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6eb145f1-eca7-4e47-8b3c-2e90a06a858d)
)
(wire (pts (xy 97.79 156.21) (xy 77.47 156.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 70134f65-5535-440e-80a1-1dfafb52d10b)
)
(wire (pts (xy 82.55 25.4) (xy 137.16 25.4))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7060349d-4027-4bb8-bd74-0ff371d18ab9)
)
(wire (pts (xy 97.79 167.64) (xy 97.79 156.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 729fefb2-aec2-4e6c-9121-5cdf8cbef29d)
)
(wire (pts (xy 97.79 175.26) (xy 97.79 180.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 75882bf6-6b75-4aa3-9658-303d67fee6a9)
)
(wire (pts (xy 99.06 66.04) (xy 137.16 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 76a70df0-85f9-4db0-8f22-e9f592aefb65)
)
(wire (pts (xy 49.53 25.4) (xy 44.45 25.4))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 796d46cd-d0e5-4ab4-9901-f691cdea1bd2)
)
(wire (pts (xy 200.66 146.05) (xy 222.25 146.05))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7a5d3d83-ea58-4b61-a829-a0f31d22babd)
)
(wire (pts (xy 114.3 46.99) (xy 137.16 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7e45180d-1d59-4b5c-b83c-3b2d1cefe6f4)
)
(wire (pts (xy 124.46 149.86) (xy 134.62 149.86))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7f683978-15fa-41a7-a889-20e35ef94aa1)
)
(wire (pts (xy 199.39 82.55) (xy 199.39 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 858a4d70-403c-4738-bdf6-9b87c17c951c)
)
(wire (pts (xy 106.68 91.44) (xy 106.68 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8c63a367-7ca5-453e-bb5a-48e57dbcc473)
)
(wire (pts (xy 39.37 25.4) (xy 39.37 21.59))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8f873556-32be-4690-b1b2-24ee4f50d1a5)
)
(wire (pts (xy 246.38 85.09) (xy 246.38 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 92f4ed5c-58fd-4690-9d75-a416d750d85a)
)
(wire (pts (xy 60.96 46.99) (xy 39.37 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9313a935-4352-471c-885c-c293a58c2b29)
)
(wire (pts (xy 60.96 72.39) (xy 30.48 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 946263ab-16c0-46ce-8474-0a558defd2e0)
)
(wire (pts (xy 54.61 66.04) (xy 30.48 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 95a692a9-f12d-4006-9ce0-a74261d583ba)
)
(wire (pts (xy 224.79 46.99) (xy 246.38 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9a5a19b4-a378-41f0-82c2-837d5ad21b64)
)
(wire (pts (xy 49.53 59.69) (xy 30.48 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9a9d22d3-c3af-4278-bc8d-76ca8084b412)
)
(wire (pts (xy 210.82 78.74) (xy 210.82 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9ffaf167-2347-41e3-bb33-3f7803e1b95f)
)
(wire (pts (xy 82.55 41.91) (xy 82.55 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b727fe19-bbad-4e5c-b5ed-74f81b408a29)
)
(wire (pts (xy 44.45 34.29) (xy 44.45 25.4))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b9a055a4-c7dd-43b0-847b-1bb9d3458e32)
)
(wire (pts (xy 44.45 53.34) (xy 60.96 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b9df86df-3dd5-4537-ad66-542f987c6b02)
)
(wire (pts (xy 54.61 25.4) (xy 49.53 25.4))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bcc0e2c5-e4b7-4abc-becf-218163f7a4ce)
)
(wire (pts (xy 106.68 59.69) (xy 137.16 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c09d711d-67d9-4b21-995d-5af741a5ba15)
)
(wire (pts (xy 54.61 66.04) (xy 54.61 41.91))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c3136632-0019-4f6c-a1bf-f9503c86c9af)
)
(wire (pts (xy 82.55 72.39) (xy 68.58 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c5c177bc-a2e6-453f-a7e0-03819d1cd47f)
)
(wire (pts (xy 60.96 156.21) (xy 54.61 156.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c7325ebf-6e99-4d83-aa0d-2ea6b42808b9)
)
(wire (pts (xy 99.06 93.98) (xy 106.68 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c791fb36-5921-4332-aa4c-1058fd4ea718)
)
(wire (pts (xy 121.92 91.44) (xy 121.92 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c7ded127-0982-4b05-b911-7d3fadff5369)
)
(wire (pts (xy 93.98 149.86) (xy 124.46 149.86))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cc66afe3-af58-47d1-a415-8ffd444ab61e)
)
(wire (pts (xy 107.95 175.26) (xy 107.95 180.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cc75f7a5-ebfa-46e4-aaf3-ec1885c25509)
)
(wire (pts (xy 99.06 91.44) (xy 99.06 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cff889bd-982c-486a-93cc-581049a7a95d)
)
(wire (pts (xy 224.79 71.12) (xy 224.79 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d04e73c0-3d96-4db3-aa56-4b8b91b53139)
)
(wire (pts (xy 54.61 162.56) (xy 60.96 162.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d16618ed-2cb3-4f46-8739-ec9019c7ce48)
)
(wire (pts (xy 234.95 60.96) (xy 271.78 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d8a92a9e-b39a-42d1-b29b-61fa5c1c6aa6)
)
(wire (pts (xy 82.55 91.44) (xy 82.55 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid df44aa3e-347b-4dce-ba3d-339b37e54d48)
)
(wire (pts (xy 224.79 41.91) (xy 224.79 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e01adfef-17ee-4813-8672-fedbc46ef0c9)
)
(wire (pts (xy 46.99 149.86) (xy 64.77 149.86))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e5392f16-573f-4ed1-9baa-1421b8e99bbe)
)
(wire (pts (xy 60.96 66.04) (xy 54.61 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e65dfbe1-56f5-4193-8bce-f0ecd5865971)
)
(wire (pts (xy 218.44 143.51) (xy 218.44 138.43))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e7db1b32-a2ae-4b10-b8cb-044850a98fce)
)
(wire (pts (xy 64.77 149.86) (xy 86.36 149.86))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e8b635e1-bc95-4d5e-990d-d08b35587649)
)
(wire (pts (xy 107.95 156.21) (xy 97.79 156.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e9302cef-aff6-43ff-880b-8ecd30391072)
)
(wire (pts (xy 229.87 146.05) (xy 243.84 146.05))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid edb81b77-a8aa-4929-a351-470dd15a7f5e)
)
(wire (pts (xy 49.53 34.29) (xy 49.53 25.4))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid edc740ec-605a-4a2f-a3f5-8a776611a197)
)
(wire (pts (xy 212.09 143.51) (xy 218.44 143.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f068ae14-11b8-4202-bcca-00f049889baa)
)
(wire (pts (xy 68.58 59.69) (xy 106.68 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f3efd800-343d-448c-b490-055ad4256821)
)
(wire (pts (xy 121.92 53.34) (xy 121.92 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f8009d81-86f7-4862-99e6-c8061599fefd)
)
(wire (pts (xy 54.61 156.21) (xy 46.99 156.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f82dbfa6-06f2-443b-aec5-ce68ea45b04e)
)
(wire (pts (xy 200.66 143.51) (xy 204.47 143.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f8a8ba03-5ebc-4b48-8121-db1f83123358)
)
(wire (pts (xy 54.61 156.21) (xy 54.61 162.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fb466b33-4017-4189-ab65-a6ec003c9f9e)
)
(wire (pts (xy 44.45 41.91) (xy 44.45 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fe6de22e-87d8-47c6-9415-490c85713b97)
)
(wire (pts (xy 114.3 91.44) (xy 114.3 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fefc6e77-b8da-40d6-a660-ef0f620855f5)
)
(hierarchical_label "PULSE_MOT" (shape output) (at 137.16 66.04 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 0bb54f58-c84a-4589-bb34-0a078f2db630)
)
(hierarchical_label "HALL_A" (shape output) (at 137.16 46.99 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 1c534cb6-0701-4d96-8fbb-39df6e402c68)
)
(hierarchical_label "HALL_B_IN" (shape input) (at 30.48 53.34 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3b1d7b83-ceec-44c3-b086-fb8d12b45423)
)
(hierarchical_label "CAN_SLP" (shape input) (at 271.78 66.04 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 3b5586af-8143-4826-846a-5f009e54dec8)
)
(hierarchical_label "TEMP_MOT_IN" (shape input) (at 30.48 72.39 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 452b3a9c-adc1-4278-aa34-d36126d345e1)
)
(hierarchical_label "ENABLE-" (shape input) (at 200.66 146.05 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4ba3db00-2054-40a9-abd0-49ecb7b03dba)
)
(hierarchical_label "HALL_B" (shape output) (at 137.16 53.34 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 5199ff2a-9afb-4a8b-a668-44c4af72c2f3)
)
(hierarchical_label "CAN_RX" (shape output) (at 271.78 60.96 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 5ef1d628-72cb-4a1e-aec2-6462e5b9b542)
)
(hierarchical_label "HALL_C" (shape output) (at 137.16 59.69 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 73cd6a99-2097-44eb-ba99-a01c0722a4e5)
)
(hierarchical_label "CAN+" (shape bidirectional) (at 181.61 60.96 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 915038ee-bcbe-4a3b-a14c-f054713c409f)
)
(hierarchical_label "HALL_A_IN" (shape input) (at 30.48 46.99 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid a26084d6-79c4-4ba2-852b-8546a7be1b79)
)
(hierarchical_label "VREF" (shape input) (at 137.16 25.4 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid a2b288e5-00c9-466b-8fb6-e21286bf5683)
)
(hierarchical_label "PWM_BREAK" (shape output) (at 243.84 146.05 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid b6658107-d1e3-4e81-8c94-5629a55a1112)
)
(hierarchical_label "CAN_GND" (shape passive) (at 181.61 87.63 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid b754a15d-5153-4f27-97a0-45375c5b98b0)
)
(hierarchical_label "TORQ_CRK_IN" (shape input) (at 46.99 156.21 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid bd8adfcd-ebd3-41f2-b5ef-fa57e6854e56)
)
(hierarchical_label "TEMP_MOT" (shape output) (at 137.16 72.39 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid c61194d9-b326-4aa2-bc39-35ad965e5a36)
)
(hierarchical_label "PULSE_MOT_IN" (shape input) (at 30.48 66.04 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid c8097f26-9831-4138-b473-065460d12f30)
)
(hierarchical_label "PULSE_CRK_IN" (shape input) (at 46.99 149.86 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid cd92fedf-3590-49c5-b1a6-5f552bf08ddb)
)
(hierarchical_label "ENABLE+" (shape output) (at 200.66 143.51 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid d44b52d0-f190-4d11-b430-084a1ba06fb2)
)
(hierarchical_label "HALL_C_IN" (shape input) (at 30.48 59.69 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid d85bbe94-3725-49c4-bd22-c6539290c92a)
)
(hierarchical_label "PULSE_CRK" (shape output) (at 134.62 149.86 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid d9a72c43-6084-47d7-81d5-e9896263f415)
)
(hierarchical_label "TORQ_CRK" (shape output) (at 134.62 156.21 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid dfa5a0ac-9566-4937-9be8-f5249aa5a6ab)
)
(hierarchical_label "CAN-" (shape bidirectional) (at 181.61 63.5 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid e25c831c-111c-430a-af19-d6016efc3ded)
)
(hierarchical_label "CAN_TX" (shape input) (at 271.78 58.42 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid ecdf4669-1872-47c6-965f-6d5d40936c43)
)
(symbol (lib_id "Device:C") (at 99.06 87.63 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-000060658b7c)