-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSTM1_CAN.kicad_sch
1735 lines (1677 loc) · 68.5 KB
/
STM1_CAN.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 22c28634-55a5-4f76-9217-6b70ddd108b8)
(paper "A4")
(lib_symbols
(symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Small" (id 1) (at 0.254 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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" "capacitor cap" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor, small symbol" (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_Small_0_1"
(polyline
(pts
(xy -1.524 -0.508)
(xy 1.524 -0.508)
)
(stroke (width 0.3302) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_Small_1_1"
(pin passive line (at 0 2.54 270) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (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_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 0.762 0.508 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_Small" (id 1) (at 0.762 -1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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" "R resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, small symbol" (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_Small_0_1"
(rectangle (start -0.762 1.778) (end 0.762 -1.778)
(stroke (width 0.2032) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_Small_1_1"
(pin passive line (at 0 2.54 270) (length 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Interface_CAN_LIN:TJA1051T-3" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -10.16 8.89 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "TJA1051T-3" (id 1) (at 1.27 8.89 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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) italic) hide)
)
(property "Datasheet" "http://www.nxp.com/documents/data_sheet/TJA1051.pdf" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "High-Speed CAN Transceiver" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "High-Speed CAN Transceiver, separate VIO, silent mode, 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 "TJA1051T-3_0_1"
(rectangle (start -10.16 7.62) (end 10.16 -7.62)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "TJA1051T-3_1_1"
(pin input line (at -12.7 5.08 0) (length 2.54)
(name "TXD" (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 10.16 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 -12.7 2.54 0) (length 2.54)
(name "RXD" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -12.7 -2.54 0) (length 2.54)
(name "VIO" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 -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 12.7 2.54 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 -12.7 -5.08 0) (length 2.54)
(name "S" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "MCU_ST_STM32F0:STM32F072C8Tx" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -15.24 36.83 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "STM32F072C8Tx" (id 1) (at 7.62 36.83 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_QFP:LQFP-48_7x7mm_P0.5mm" (id 2) (at -15.24 -35.56 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
(property "Datasheet" "http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/DM00090510.pdf" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "ARM Cortex-M0 STM32F0 STM32F0x2" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "ARM Cortex-M0 MCU, 64KB flash, 16KB RAM, 48MHz, 2-3.6V, 37 GPIO, LQFP-48" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "LQFP*7x7mm*P0.5mm*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "STM32F072C8Tx_0_1"
(rectangle (start -15.24 -35.56) (end 12.7 35.56)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "STM32F072C8Tx_1_1"
(pin power_in line (at -5.08 38.1 270) (length 2.54)
(name "VBAT" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 5.08 180) (length 2.54)
(name "PA0" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 2.54 180) (length 2.54)
(name "PA1" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 0 180) (length 2.54)
(name "PA2" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -2.54 180) (length 2.54)
(name "PA3" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -5.08 180) (length 2.54)
(name "PA4" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -7.62 180) (length 2.54)
(name "PA5" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -10.16 180) (length 2.54)
(name "PA6" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -12.7 180) (length 2.54)
(name "PA7" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 5.08 0) (length 2.54)
(name "PB0" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 2.54 0) (length 2.54)
(name "PB1" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 15.24 0) (length 2.54)
(name "PC13" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 0 0) (length 2.54)
(name "PB2" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -20.32 0) (length 2.54)
(name "PB10" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -22.86 0) (length 2.54)
(name "PB11" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -5.08 -38.1 90) (length 2.54)
(name "VSS" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -2.54 38.1 270) (length 2.54)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -25.4 0) (length 2.54)
(name "PB12" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -27.94 0) (length 2.54)
(name "PB13" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -30.48 0) (length 2.54)
(name "PB14" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -33.02 0) (length 2.54)
(name "PB15" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -15.24 180) (length 2.54)
(name "PA8" (effects (font (size 1.27 1.27))))
(number "29" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 12.7 0) (length 2.54)
(name "PC14" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -17.78 180) (length 2.54)
(name "PA9" (effects (font (size 1.27 1.27))))
(number "30" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -20.32 180) (length 2.54)
(name "PA10" (effects (font (size 1.27 1.27))))
(number "31" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -22.86 180) (length 2.54)
(name "PA11" (effects (font (size 1.27 1.27))))
(number "32" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -25.4 180) (length 2.54)
(name "PA12" (effects (font (size 1.27 1.27))))
(number "33" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -27.94 180) (length 2.54)
(name "PA13" (effects (font (size 1.27 1.27))))
(number "34" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -2.54 -38.1 90) (length 2.54)
(name "VSS" (effects (font (size 1.27 1.27))))
(number "35" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 5.08 38.1 270) (length 2.54)
(name "VDDIO2" (effects (font (size 1.27 1.27))))
(number "36" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -30.48 180) (length 2.54)
(name "PA14" (effects (font (size 1.27 1.27))))
(number "37" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -33.02 180) (length 2.54)
(name "PA15" (effects (font (size 1.27 1.27))))
(number "38" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -2.54 0) (length 2.54)
(name "PB3" (effects (font (size 1.27 1.27))))
(number "39" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 10.16 0) (length 2.54)
(name "PC15" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -5.08 0) (length 2.54)
(name "PB4" (effects (font (size 1.27 1.27))))
(number "40" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -7.62 0) (length 2.54)
(name "PB5" (effects (font (size 1.27 1.27))))
(number "41" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -10.16 0) (length 2.54)
(name "PB6" (effects (font (size 1.27 1.27))))
(number "42" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -12.7 0) (length 2.54)
(name "PB7" (effects (font (size 1.27 1.27))))
(number "43" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 27.94 0) (length 2.54)
(name "BOOT0" (effects (font (size 1.27 1.27))))
(number "44" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -15.24 0) (length 2.54)
(name "PB8" (effects (font (size 1.27 1.27))))
(number "45" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -17.78 0) (length 2.54)
(name "PB9" (effects (font (size 1.27 1.27))))
(number "46" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -38.1 90) (length 2.54)
(name "VSS" (effects (font (size 1.27 1.27))))
(number "47" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 38.1 270) (length 2.54)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "48" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 22.86 0) (length 2.54)
(name "PF0" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 20.32 0) (length 2.54)
(name "PF1" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 33.02 0) (length 2.54)
(name "NRST" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 2.54 -38.1 90) (length 2.54)
(name "VSSA" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 2.54 38.1 270) (length 2.54)
(name "VDDA" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+5V" (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" "+5V" (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 \"+5V\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+5V_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 "+5V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+5V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(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" "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 \"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: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" "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 \"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))))
)
)
)
)
(junction (at 114.554 171.958) (diameter 0) (color 0 0 0 0)
(uuid 3032df23-ac19-457b-bb8a-9671db500aea)
)
(junction (at 71.374 42.418) (diameter 0) (color 0 0 0 0)
(uuid 38c579de-f585-444c-8878-e25f9811ef0b)
)
(junction (at 129.54 163.576) (diameter 0) (color 0 0 0 0)
(uuid 3dcac4b4-b2a1-4900-b9c5-d75043fca1dc)
)
(junction (at 73.914 42.418) (diameter 0) (color 0 0 0 0)
(uuid 470ce59f-b6c5-46e8-bc30-8ac321662bcf)
)
(junction (at 76.454 42.418) (diameter 0) (color 0 0 0 0)
(uuid 505e7406-bc19-4073-9242-2dfa5ac09951)
)
(junction (at 73.914 118.618) (diameter 0) (color 0 0 0 0)
(uuid 7ac57394-7d2d-4ebd-8a7a-d18d32105c78)
)
(junction (at 71.374 118.618) (diameter 0) (color 0 0 0 0)
(uuid abefc096-f002-45f0-b85b-ac91bec29e9b)
)
(junction (at 129.54 158.496) (diameter 0) (color 0 0 0 0)
(uuid af249a3c-1157-404d-885b-1509481e0e45)
)
(junction (at 68.834 118.618) (diameter 0) (color 0 0 0 0)
(uuid bca03752-b7f0-4e2c-9a48-b789bf6dae70)
)
(junction (at 55.626 52.578) (diameter 0) (color 0 0 0 0)
(uuid e41cd587-7f98-4696-8075-5be2ac5a7cb2)
)
(junction (at 68.834 42.418) (diameter 0) (color 0 0 0 0)
(uuid fbf8ac89-c320-46e2-b575-18008179d8e3)
)
(no_connect (at 56.134 70.358) (uuid 07c61ac7-4370-48b1-a9aa-ab0e58b10022))
(no_connect (at 56.134 88.138) (uuid 092408d4-b316-4272-8a61-26cd49c787e4))
(no_connect (at 56.134 77.978) (uuid 28a8156c-8d2f-4450-ad07-7f3aac7cdc92))
(no_connect (at 89.154 85.598) (uuid 36096e2b-7f21-4cf5-9966-c6029fc3bfd1))
(no_connect (at 89.154 95.758) (uuid 4b4e158a-53fd-4c90-aaf5-a8a5e85c1bec))
(no_connect (at 89.154 90.678) (uuid 4e001036-2180-4366-a0f5-0b8745896e4b))
(no_connect (at 56.134 90.678) (uuid 543f5109-0305-4425-acb2-136e7a1880c8))
(no_connect (at 56.134 93.218) (uuid 5e162f85-cd4a-4e5c-84ed-f01d03b7a18e))
(no_connect (at 56.134 85.598) (uuid 612e7b75-f92f-4a3c-a78b-f29d78089518))
(no_connect (at 89.154 108.458) (uuid 6537b589-bc22-4930-9f17-d0898b3e6529))
(no_connect (at 89.154 110.998) (uuid 6537b589-bc22-4930-9f17-d0898b3e652a))
(no_connect (at 56.134 67.818) (uuid 733cd583-6765-460e-9392-1633e8735adf))
(no_connect (at 56.134 103.378) (uuid 86b6c308-d15e-4904-b1f9-1ba72045d555))
(no_connect (at 56.134 75.438) (uuid 8c7aeafe-5ca2-4549-b229-40b5c9a78507))
(no_connect (at 56.134 113.538) (uuid 92864d3a-8e15-446e-80a5-57047f8203af))
(no_connect (at 56.134 80.518) (uuid 9763964f-54df-4089-9ebe-8bf9fbb9f1c9))
(no_connect (at 56.134 105.918) (uuid 9a2dbec5-9395-4a02-a33f-494b6fc8ee0a))
(no_connect (at 89.154 100.838) (uuid 9f582a01-020d-43ee-b626-e5b4c06bc722))
(no_connect (at 89.154 88.138) (uuid a7512e35-06f2-4a95-8334-044463dbf068))
(no_connect (at 56.134 60.198) (uuid b44eb706-cf37-4d95-985d-3238b8092dac))
(no_connect (at 89.154 113.538) (uuid b671e04d-9b1a-4001-859b-ffeb8697eb70))
(no_connect (at 56.134 108.458) (uuid c0b84bb5-0b6d-444d-83ee-f87551ebe9c3))
(no_connect (at 89.154 83.058) (uuid c2a1de62-5153-4248-bceb-d1b8febe90ee))
(no_connect (at 89.154 80.518) (uuid c702111f-bf63-4989-8915-c4230c7dd73c))
(no_connect (at 89.154 93.218) (uuid c96fcc22-65b5-4d43-a2fe-db2624fb515f))
(no_connect (at 56.134 100.838) (uuid ced75129-2d44-48b4-aa16-58cf68a5b9a5))
(no_connect (at 56.134 83.058) (uuid d3d5b494-f655-4f44-9070-fd5c95655d11))
(no_connect (at 56.134 57.658) (uuid d6f50eea-332e-4b2f-b26a-f58b3509e2fc))
(no_connect (at 56.134 65.278) (uuid d752bb41-7ff5-4569-ad74-c8db68a346a3))
(no_connect (at 56.134 110.998) (uuid dc987be8-352c-4f8f-a4bb-4e14a48ac02c))
(no_connect (at 89.154 98.298) (uuid e087e4b6-4fa4-4da0-a192-035c5bb1b897))
(wire (pts (xy 52.832 52.578) (xy 55.626 52.578))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 025242c8-8606-422b-9b57-a2cf3b7355a9)
)
(wire (pts (xy 49.022 171.45) (xy 49.022 175.514))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 05fe445b-48c3-470e-bea4-ecdb1d87ac1a)
)
(wire (pts (xy 73.914 42.418) (xy 76.454 42.418))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 096aa449-fd46-48b9-83e2-88dc7961112d)
)
(wire (pts (xy 55.626 52.578) (xy 56.134 52.578))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0d2aa0b4-f8ae-42a1-9e06-f269b66cc8d1)
)
(wire (pts (xy 54.356 47.498) (xy 56.134 47.498))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 12f64870-f6ad-4e99-a8c3-e9d00435959c)
)
(wire (pts (xy 127.254 158.496) (xy 129.54 158.496))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 17e1bfdd-9ec6-4c8b-9e56-56fe42bd8ce1)
)
(wire (pts (xy 68.834 42.418) (xy 71.374 42.418))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1bd65667-3f00-4cfb-bc37-16cde0191c17)
)
(polyline (pts (xy 64.008 137.922) (xy 64.008 181.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1c2714a0-e9fe-4d99-8bd1-81bfe9abc166)
)
(wire (pts (xy 73.914 118.618) (xy 76.454 118.618))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1c64d775-a151-4747-b360-a77fa5561c71)
)
(wire (pts (xy 114.554 171.196) (xy 114.554 171.958))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 20c40b56-75bd-4820-b4b6-5e001372aebe)
)
(wire (pts (xy 104.648 65.024) (xy 104.648 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 22bfebf0-10ca-4b90-b3bf-d133492db6df)
)
(wire (pts (xy 55.626 38.608) (xy 55.626 40.132))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 24421030-e441-4353-970a-dc6d75f0b27d)
)
(polyline (pts (xy 32.004 30.734) (xy 32.004 137.922))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2505c98d-5823-474d-b5e2-d960996cba07)
)
(wire (pts (xy 96.266 57.404) (xy 96.266 59.944))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 25545d0b-63ed-48ca-9b7e-cb0a27e59b42)
)
(polyline (pts (xy 32.004 30.734) (xy 145.542 30.734))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 27b27cf4-0c81-44fc-bb67-480b37f1f8bd)
)
(wire (pts (xy 68.834 118.618) (xy 71.374 118.618))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 301b05f4-20f5-40fc-a991-8d1ba9cfe1ff)
)
(polyline (pts (xy 32.004 137.922) (xy 145.542 137.922))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3331c383-29e1-4dc4-a0e0-cdbff47d5e40)
)
(wire (pts (xy 121.412 65.024) (xy 121.412 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3c68b5fd-f887-46ee-8662-d190bea7b712)
)
(wire (pts (xy 130.556 65.024) (xy 130.556 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3d5b92b1-8c8a-49b5-8da7-afd940465501)
)
(wire (pts (xy 49.022 153.162) (xy 49.022 156.464))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 40c9c017-d4fa-46c1-9560-cff9d6dbb03b)
)
(wire (pts (xy 129.54 158.496) (xy 135.89 158.496))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 44c799bf-4503-4aa1-bf13-50dec4a34d00)
)
(wire (pts (xy 71.374 42.418) (xy 73.914 42.418))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 517bdb8a-2e77-4459-82d9-89c75d626437)
)
(wire (pts (xy 84.582 170.688) (xy 84.582 172.974))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5337b05d-f340-4597-9bee-253393aeb929)
)
(wire (pts (xy 121.412 57.404) (xy 121.412 59.944))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 578ab3c1-7bb4-4f51-b36e-0674f63e6b0e)
)
(wire (pts (xy 104.648 57.404) (xy 104.648 59.944))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 59fff83b-b91b-4338-a572-dca004d974c6)
)
(wire (pts (xy 37.846 161.544) (xy 37.846 163.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6341adf7-15a3-420c-8496-dc68a5a0f167)
)
(wire (pts (xy 37.846 171.45) (xy 37.846 175.514))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 67e5abec-f0a1-4faa-829c-13ad7561ae24)
)
(wire (pts (xy 101.854 171.958) (xy 114.554 171.958))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 68d17d31-d25a-4e70-bfba-6ad95a2d45b0)
)
(wire (pts (xy 76.454 42.418) (xy 78.994 42.418))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7c5d3585-c808-49dc-90b0-05d067da9e51)
)
(polyline (pts (xy 32.004 137.922) (xy 32.004 181.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7f8a5587-b786-42d8-8766-d10bc9ce032b)
)
(wire (pts (xy 101.854 166.116) (xy 101.854 171.958))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 84f20f8f-fec3-4dca-a882-ee84853e8e1b)
)
(polyline (pts (xy 145.542 137.922) (xy 145.542 30.734))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8c720165-7e83-498d-baaa-489fcf7bb69a)
)
(wire (pts (xy 45.466 47.498) (xy 49.276 47.498))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8decdc71-539f-4cc2-ad99-0dad0af64e4f)
)
(wire (pts (xy 68.834 118.618) (xy 68.834 121.412))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8e2f09aa-fb79-47ca-b6aa-f2db4c8c5c04)
)
(wire (pts (xy 113.538 57.404) (xy 113.538 59.944))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9177e20f-cee1-48a3-b6ce-8d9ef3385007)
)
(wire (pts (xy 129.54 163.576) (xy 135.89 163.576))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 95af7cb2-ae26-4ec0-aa09-c81279cf0d94)
)
(wire (pts (xy 55.626 45.212) (xy 55.626 52.578))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 98870ea9-ac2b-40a8-89d1-2dbba6f8a7fe)
)
(polyline (pts (xy 32.004 181.61) (xy 145.542 181.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 98d67350-3951-437b-84bd-d0db9a42e329)
)
(wire (pts (xy 84.582 163.068) (xy 84.582 165.608))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9a4ca837-e99c-4be7-a02f-8008d620be03)
)
(wire (pts (xy 74.93 170.688) (xy 74.93 172.974))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a60cad24-5d7a-4605-8ee7-c8bc857f0bf3)
)
(wire (pts (xy 113.538 65.024) (xy 113.538 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ae95ed07-1a2c-4fb8-b076-1f926f7b4ec5)
)
(wire (pts (xy 114.554 171.958) (xy 114.554 172.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid afc30f2b-3bbf-4f18-87f7-28c7f56dac12)
)
(wire (pts (xy 130.556 57.404) (xy 130.556 59.944))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b40af5e8-5c6e-46b4-b5f9-b4716a98f7d5)
)
(wire (pts (xy 71.374 118.618) (xy 73.914 118.618))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b45c6eb3-d789-45ae-9e96-aec465702bee)
)
(wire (pts (xy 68.834 38.608) (xy 68.834 42.418))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b593c656-dd66-4e34-91b5-0c77aac223b4)
)
(wire (pts (xy 127.254 163.576) (xy 129.54 163.576))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b6962d86-ec3f-467e-9d0c-66a47b0779a1)
)
(wire (pts (xy 49.022 161.544) (xy 49.022 163.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b7efde0b-779c-44e8-8352-f6b887153b57)
)
(wire (pts (xy 74.93 163.068) (xy 74.93 165.608))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bb8d5ecf-6c32-42e3-8e36-708f3462dd42)
)
(wire (pts (xy 114.554 148.844) (xy 114.554 150.876))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c6a2ed26-611f-4162-a924-06cf5894bf62)
)
(polyline (pts (xy 145.542 181.61) (xy 145.542 137.922))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d15783db-afb2-4143-b666-812ebb6f028d)
)
(wire (pts (xy 96.266 65.024) (xy 96.266 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d7feb16d-ab1b-40ae-a96e-fc2b58c66556)
)
(wire (pts (xy 96.266 163.576) (xy 101.854 163.576))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e47b7047-7bb0-48da-8934-e59b34ded11f)
)
(wire (pts (xy 45.466 52.578) (xy 47.752 52.578))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e95d8628-d518-4d17-b13e-a78902ab9b0d)
)
(wire (pts (xy 37.846 153.162) (xy 37.846 156.464))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e9de8e45-821c-4a78-8746-fe03e3281576)
)
(text "CAN Transceiver" (at 65.278 144.78 0)
(effects (font (size 3 3) (thickness 0.6) bold) (justify left bottom))
(uuid 1d50adac-ce04-47e5-b858-265b394cfa02)
)
(text "LED" (at 32.893 144.526 0)
(effects (font (size 3 3) (thickness 0.6) bold) (justify left bottom))
(uuid 3f38011c-507a-43b1-879a-76755d092a1c)
)
(text "MCU" (at 109.728 41.275 0)
(effects (font (size 3 3) (thickness 0.6) bold) (justify left bottom))
(uuid 8eff2830-2ece-4c3b-8536-54def5632bac)
)
(label "CAN_TX" (at 56.134 98.298 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 66c72123-b9ca-4b9c-a526-d27e171912c2)
)
(label "LED2" (at 89.154 77.978 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 69fc7170-4945-4499-95dd-8cdcbf3ab7df)
)
(label "LED2" (at 49.022 175.514 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 6f46af90-605d-429a-a538-b16c03447363)
)
(label "LED1" (at 37.846 175.514 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid b16c8a44-9691-4c40-ac87-c9596468d15f)
)
(label "CAN_TX" (at 101.854 155.956 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid ccfdddb4-12ca-4ac5-b8f5-740e0444ee8d)
)
(label "LED1" (at 89.154 75.438 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid cf0bef72-ca14-4e69-be35-1f112576b0ca)
)
(label "CAN_RX" (at 101.854 158.496 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid d8651a91-bdbb-45a2-8259-5bef6cb0c790)
)
(label "CAN_RX" (at 56.134 95.758 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid fa24be1d-7b94-4b82-ab70-2ccb825215e5)
)
(hierarchical_label "CAN_L" (shape bidirectional) (at 135.89 163.576 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 17651511-cd2d-4983-90b5-0f17fc8b2ddb)
)
(hierarchical_label "CAN_H" (shape bidirectional) (at 135.89 158.496 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 67ec928b-8b6d-4931-bb99-5c8bf6e11745)
)
(hierarchical_label "USB_D+" (shape bidirectional) (at 89.154 105.918 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid ad8ebabc-01a4-4d6c-b35a-a0c0483decc1)
)
(hierarchical_label "USB_D-" (shape bidirectional) (at 89.154 103.378 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid aecc3e00-8013-4bcf-89a1-dc628bf127bb)
)
(symbol (lib_id "Device:LED") (at 49.022 167.64 90) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 009ba6d1-6340-4264-9398-2b1fbe8f6958)
(property "Reference" "D8" (id 0) (at 51.943 168.319 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "LED" (id 1) (at 51.943 171.0941 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 49.022 167.64 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 49.022 167.64 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8e187a69-36a2-4969-8d90-08ed49d1ab56))
(pin "2" (uuid 835a799e-6ee7-45e5-a1d6-45f141a5bc0f))
)
(symbol (lib_id "power:VCC") (at 49.022 153.162 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 02b0b4a9-af34-49a5-9fbe-ca3465c16a4b)
(property "Reference" "#PWR056" (id 0) (at 49.022 156.972 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (id 1) (at 49.022 149.5575 0))
(property "Footprint" "" (id 2) (at 49.022 153.162 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 49.022 153.162 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid af1c800f-b493-4b5c-a96c-b7f3734490d1))
)