-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSTM2_CAN.kicad_sch
1733 lines (1677 loc) · 68.4 KB
/
STM2_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 9c2999b2-1cf1-4204-9d23-243401b77aa3)
(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 121.666 170.18) (diameter 0) (color 0 0 0 0)
(uuid 067adaf0-402b-4fc7-bf4b-c328631d3fee)
)
(junction (at 62.738 50.8) (diameter 0) (color 0 0 0 0)
(uuid 071b286c-9604-419b-91a6-2f2d22d20568)
)
(junction (at 75.946 40.64) (diameter 0) (color 0 0 0 0)
(uuid 07490023-f6e1-4395-8477-7c0faa361492)
)
(junction (at 78.486 40.64) (diameter 0) (color 0 0 0 0)
(uuid 08adcb88-1542-4935-b57e-76fb6011ec40)
)
(junction (at 75.946 116.84) (diameter 0) (color 0 0 0 0)
(uuid 1138f1a9-da72-48c3-a562-3889e92d948e)
)
(junction (at 81.026 40.64) (diameter 0) (color 0 0 0 0)
(uuid 41bbdbd1-f537-490e-a7da-ffc5be0aad0c)
)
(junction (at 83.566 40.64) (diameter 0) (color 0 0 0 0)
(uuid 55483b92-d84a-42dd-b194-5338cb499212)
)
(junction (at 136.652 156.718) (diameter 0) (color 0 0 0 0)
(uuid 69d23287-e5f7-4677-a502-9ce4245aefac)
)
(junction (at 78.486 116.84) (diameter 0) (color 0 0 0 0)
(uuid 9ddf8d0d-0e74-47a8-a83a-a4d258cd286f)
)
(junction (at 136.652 161.798) (diameter 0) (color 0 0 0 0)
(uuid b9de1f41-bea9-439b-a46c-3eefee2e4d1d)
)
(junction (at 81.026 116.84) (diameter 0) (color 0 0 0 0)
(uuid f1d967c7-5387-435a-9551-a3549db6a033)
)
(no_connect (at 63.246 109.22) (uuid 0be63014-81c7-4514-8e6c-54b5c6a50048))
(no_connect (at 96.266 86.36) (uuid 1dd0d2bd-4eb4-4ecc-9842-862d8e85230d))
(no_connect (at 63.246 111.76) (uuid 1f1ea63f-ba3e-4314-a276-2314718a03a3))
(no_connect (at 63.246 73.66) (uuid 2a1c651e-004a-4460-ab24-57dd24aad133))
(no_connect (at 96.266 109.22) (uuid 2ab3ef30-03ca-4b30-9c9c-0f45c1ef1e42))
(no_connect (at 96.266 106.68) (uuid 2ab3ef30-03ca-4b30-9c9c-0f45c1ef1e43))
(no_connect (at 96.266 99.06) (uuid 2fe2ef79-a0d1-4056-8ec2-7fccbf58af73))
(no_connect (at 63.246 104.14) (uuid 35b4d5dd-f11e-43a9-9a2e-cada89b877c3))
(no_connect (at 63.246 66.04) (uuid 36a5cc2d-6263-4f54-a50e-570dee203204))
(no_connect (at 96.266 83.82) (uuid 45450dcd-eddd-40b9-b837-4c8ae62e52e0))
(no_connect (at 63.246 99.06) (uuid 54d4d626-d225-4756-9ad7-8062be5bf404))
(no_connect (at 63.246 106.68) (uuid 5ae3b45a-9f0b-4b54-bc9a-b664b68c3e1c))
(no_connect (at 96.266 111.76) (uuid 631d810b-f9ba-4fe6-9354-63b57851d12e))
(no_connect (at 63.246 101.6) (uuid 6902a88f-65eb-406b-be58-5eb0164367e0))
(no_connect (at 63.246 78.74) (uuid 69f07934-dd9a-47d0-874c-9a8e9954548c))
(no_connect (at 96.266 81.28) (uuid 6baa3661-13b9-4e4f-ac3f-ba10efaf8e36))
(no_connect (at 63.246 91.44) (uuid 79e63dbd-46d6-4fee-b64c-da239e48553d))
(no_connect (at 63.246 58.42) (uuid 7a3e9ff3-707a-42f6-b59b-0adfb43ce433))
(no_connect (at 96.266 91.44) (uuid 89906018-ec3d-4fa0-a102-293bb8871063))
(no_connect (at 96.266 96.52) (uuid 899ec666-c411-475c-a627-204832ce2a02))
(no_connect (at 63.246 63.5) (uuid 8d9e1ad6-28f5-43ca-9dc1-48c8cd045343))
(no_connect (at 63.246 88.9) (uuid 9e0d16d2-7261-429e-b661-af2103db9d8d))
(no_connect (at 63.246 76.2) (uuid a2d1e8c2-9b8b-4769-8b50-91a11aeca5fe))
(no_connect (at 96.266 78.74) (uuid a35f0f32-f7c9-41f9-9a44-7db38113ac80))
(no_connect (at 96.266 88.9) (uuid aa4bd9ce-32a0-4e10-86a6-d9f7049aa0e5))
(no_connect (at 63.246 86.36) (uuid b2edefb9-c38b-41a9-9939-e7f7f8e4a25e))
(no_connect (at 96.266 93.98) (uuid b9ffa935-addc-41e7-8386-a670ad6f70bb))
(no_connect (at 63.246 81.28) (uuid c5c7ea49-f780-4f9c-9ff4-254c10b47253))
(no_connect (at 63.246 68.58) (uuid dd3e29e0-39de-4485-b9a8-4c4f72668fc7))
(no_connect (at 63.246 83.82) (uuid f797c0d6-d47a-4617-9d23-a9a221ef36db))
(no_connect (at 63.246 55.88) (uuid fb02b106-9c48-498e-ab17-e4e56665db76))
(wire (pts (xy 61.468 45.72) (xy 63.246 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0322dd28-65a4-4fb0-b2cf-cf9968cc8c23)
)
(wire (pts (xy 134.366 161.798) (xy 136.652 161.798))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 074d194e-a605-4407-acf6-8f5b7a66eda9)
)
(wire (pts (xy 108.966 170.18) (xy 121.666 170.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 08baa57b-0a28-44b0-a71b-1010a5b4778f)
)
(wire (pts (xy 44.958 159.766) (xy 44.958 162.052))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0b7d3c80-af06-4f19-b8fa-7eb896706fc7)
)
(polyline (pts (xy 152.654 179.832) (xy 152.654 136.144))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 13c67995-d231-4ed4-a058-56b5a2c44b0e)
)
(wire (pts (xy 91.694 161.29) (xy 91.694 163.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 170f1f5a-22e2-442e-9911-ef2efdb52997)
)
(wire (pts (xy 44.958 151.384) (xy 44.958 154.686))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 19773197-8c85-4151-a41b-8e20ef950d5b)
)
(wire (pts (xy 120.65 55.626) (xy 120.65 58.166))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 20bbb2f5-2cbd-4b22-a43c-ebd14405f9c7)
)
(wire (pts (xy 75.946 40.64) (xy 78.486 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 20f7de15-6fab-4847-be02-8b3c6312027e)
)
(wire (pts (xy 103.378 161.798) (xy 108.966 161.798))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 27697f1e-2141-49f6-adbc-4b0f0eb0c26e)
)
(wire (pts (xy 91.694 168.91) (xy 91.694 171.196))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2cbb51d6-0e58-4975-b240-bd9e1dda4240)
)
(wire (pts (xy 136.652 156.718) (xy 143.002 156.718))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 30de2658-f4ce-42de-9b45-72ffeab20035)
)
(polyline (pts (xy 39.116 28.956) (xy 39.116 136.144))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 38da9241-548b-4b94-83ee-bc7f77e16362)
)
(wire (pts (xy 81.026 116.84) (xy 83.566 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3ba68556-531e-4818-90ae-30437cfddab9)
)
(polyline (pts (xy 39.116 28.956) (xy 152.654 28.956))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 428967d9-d35e-4833-a8a7-481289ee9886)
)
(polyline (pts (xy 39.116 136.144) (xy 39.116 179.832))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 449b74a9-43d0-4b45-97ae-82eb2ef6a648)
)
(wire (pts (xy 52.578 45.72) (xy 56.388 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 44abf0b3-edd4-4011-bbf0-23e13b9b6159)
)
(polyline (pts (xy 39.116 179.832) (xy 152.654 179.832))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 46275f39-0a31-4c7f-874c-cfb8ce3bb458)
)
(polyline (pts (xy 39.116 136.144) (xy 152.654 136.144))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4b6472cd-a2f1-4b67-be40-dd73a4fae815)
)
(wire (pts (xy 56.134 159.766) (xy 56.134 162.052))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 606f382e-10eb-4e04-b175-ee14e7961666)
)
(wire (pts (xy 121.666 147.066) (xy 121.666 149.098))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7122e9dc-87bc-43a7-a2e4-68e61f4be502)
)
(wire (pts (xy 78.486 116.84) (xy 81.026 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 74829f8e-9be7-426a-9d6a-43da8e35c0e3)
)
(wire (pts (xy 121.666 170.18) (xy 121.666 170.942))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7530ddaf-a86a-4075-9a0b-ba8a45cfe6e7)
)
(wire (pts (xy 128.524 55.626) (xy 128.524 58.166))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7ce3f6c3-57e9-4869-8219-8cbec5c3ff56)
)
(wire (pts (xy 56.134 151.384) (xy 56.134 154.686))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7e5268c2-eb5e-4ce8-8fd0-4a2f23f7b136)
)
(polyline (pts (xy 152.654 136.144) (xy 152.654 28.956))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 81887191-7997-408d-991d-067bc9eabd93)
)
(wire (pts (xy 62.738 43.434) (xy 62.738 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 83f555c6-b441-4d0a-aa7a-bcb8d0263b00)
)
(wire (pts (xy 75.946 116.84) (xy 75.946 119.634))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 841dc418-7392-46cb-8e61-53ebb480133b)
)
(wire (pts (xy 78.486 40.64) (xy 81.026 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 84a79439-dcf0-4b16-91f1-1306d4309b27)
)
(wire (pts (xy 137.668 55.626) (xy 137.668 58.166))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 910ae169-59cd-4e9a-be95-98c6df7108b3)
)
(wire (pts (xy 62.738 36.83) (xy 62.738 38.354))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 98a2a0f3-3e5b-4df8-abdd-7ddde84cfdc2)
)
(wire (pts (xy 81.026 40.64) (xy 83.566 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9a1f3023-4010-4ce9-ba0d-8e585f2d8919)
)
(wire (pts (xy 111.76 55.626) (xy 111.76 58.166))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9d5d1ade-7e77-4b98-9de6-76328379c3e8)
)
(wire (pts (xy 103.378 63.246) (xy 103.378 65.532))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a70af6c5-aae6-4f2c-aa23-f60998bb0d23)
)
(wire (pts (xy 75.946 36.83) (xy 75.946 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a8ffc8e0-e21f-4001-9b00-ee3f65d8305d)
)
(wire (pts (xy 56.134 169.672) (xy 56.134 173.736))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b2142f9a-dd7f-4c43-a3fd-cb303169c94a)
)
(wire (pts (xy 111.76 63.246) (xy 111.76 65.532))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b368c7ad-1663-49c8-a72c-c024cbf9cbab)
)
(wire (pts (xy 52.578 50.8) (xy 54.864 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b51c4f4d-7150-44f1-bc6e-ac0259dfc865)
)
(wire (pts (xy 82.042 168.91) (xy 82.042 171.196))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b52a577f-6731-4091-9f98-4ba38f7c0f91)
)
(wire (pts (xy 137.668 63.246) (xy 137.668 65.532))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b9413e14-2f7e-47eb-9b04-b99ce1e3be86)
)
(wire (pts (xy 44.958 169.672) (xy 44.958 173.736))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c5c016f9-7fbb-45c2-900d-15854f377273)
)
(wire (pts (xy 83.566 40.64) (xy 86.106 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c6cb417c-5efe-40cf-a7e2-73887067cc2b)
)
(wire (pts (xy 120.65 63.246) (xy 120.65 65.532))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c788236e-d595-4740-8dc1-b6524a18b076)
)
(wire (pts (xy 103.378 55.626) (xy 103.378 58.166))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d6dd69a7-e43c-4cc1-94e5-a7c3ed180597)
)
(wire (pts (xy 59.944 50.8) (xy 62.738 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d6dd84d8-163c-461f-af13-6762080e6a04)
)
(wire (pts (xy 121.666 169.418) (xy 121.666 170.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d8ad09d1-7052-416d-9324-1ca29e3778eb)
)
(wire (pts (xy 75.946 116.84) (xy 78.486 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid da225c9f-771b-4a92-aa92-4887c3973ba8)
)
(wire (pts (xy 136.652 161.798) (xy 143.002 161.798))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dcc8d7c2-0e23-479d-8a89-bbf31de991f6)
)
(wire (pts (xy 128.524 63.246) (xy 128.524 65.532))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e68784d1-db27-4efd-8d10-4f9659f0b96d)
)
(wire (pts (xy 108.966 164.338) (xy 108.966 170.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ee3b87cd-3068-451b-bfcd-e3f0835ef1d5)
)
(polyline (pts (xy 71.12 136.144) (xy 71.12 179.832))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f263c218-a1eb-4d3c-a4c7-1c82633f2cb1)
)
(wire (pts (xy 134.366 156.718) (xy 136.652 156.718))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f7f0b553-1caa-4bdd-81f6-dbfa33ab6ab7)
)
(wire (pts (xy 82.042 161.29) (xy 82.042 163.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fa143245-d47f-4e94-b0b7-42eab6a55c5e)
)
(wire (pts (xy 62.738 50.8) (xy 63.246 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid faafa654-4389-4b25-a30a-41de6a2f6e88)
)
(text "MCU" (at 116.84 39.497 0)
(effects (font (size 3 3) (thickness 0.6) bold) (justify left bottom))
(uuid 20d5288d-7fc5-47a2-a62c-5423b72a12c7)
)
(text "LED" (at 40.005 142.748 0)
(effects (font (size 3 3) (thickness 0.6) bold) (justify left bottom))
(uuid 607632f2-1b5b-4f54-9e51-a30a63007b0a)
)
(text "CAN Transceiver" (at 72.39 143.002 0)
(effects (font (size 3 3) (thickness 0.6) bold) (justify left bottom))
(uuid ff102f88-5672-44d0-9ec6-0e10646a76ac)
)
(label "CAN_TX" (at 63.246 96.52 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 15db83ec-d8b8-421c-b32a-e573612fc8c1)
)
(label "LED2" (at 96.266 76.2 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 2a63a2a7-d8dd-49e0-bb2a-a9c5c70fcf91)
)
(label "LED1" (at 96.266 73.66 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 2a880c45-bb25-4c1d-adec-c65fc9824fd7)
)
(label "CAN_RX" (at 63.246 93.98 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 30cac68f-b3af-4943-93c2-d55161d1d547)
)
(label "CAN_TX" (at 108.966 154.178 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 3b459fe8-38b5-47d9-ba62-d0a6bfbe0957)
)
(label "LED1" (at 44.958 173.736 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 7d5fd47e-385b-429d-8e3e-33be2865da7c)
)
(label "CAN_RX" (at 108.966 156.718 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid ccb54866-d569-41c0-a16f-d96b8b1a76d2)
)
(label "LED2" (at 56.134 173.736 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid fa6f1d26-58e5-4f1c-a1f7-13da01897e59)
)
(hierarchical_label "USB_D-" (shape bidirectional) (at 96.266 101.6 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 1c6d0932-7d2f-4d1a-a10c-bbffc648bfee)
)
(hierarchical_label "CAN_L" (shape bidirectional) (at 143.002 161.798 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 7732351b-c136-4fd0-a0be-917db18cb759)
)
(hierarchical_label "CAN_H" (shape bidirectional) (at 143.002 156.718 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 9953b2b7-0ffe-4728-8d44-f764e9a35c4c)
)
(hierarchical_label "USB_D+" (shape bidirectional) (at 96.266 104.14 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid eba2f442-5670-4341-b943-669d3745e9c2)
)
(symbol (lib_id "power:VCC") (at 44.958 151.384 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 0f7aa2c6-6387-4f1f-9197-678ff9df4202)
(property "Reference" "#PWR031" (id 0) (at 44.958 155.194 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (id 1) (at 44.958 147.7795 0))
(property "Footprint" "" (id 2) (at 44.958 151.384 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 44.958 151.384 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0be6313d-5157-4c56-b54f-3c5e7ea8d653))
)
(symbol (lib_id "Device:C_Small") (at 91.694 166.37 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 14b7b41b-64b2-4b1f-b37a-76121acc5961)
(property "Reference" "C12" (id 0) (at 94.0181 165.4678 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100n" (id 1) (at 94.0181 168.2429 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 91.694 166.37 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 91.694 166.37 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0053758d-be66-4a34-95b5-cf82d9c16043))
(pin "2" (uuid 34657d58-1c19-4eb3-bca6-2c16fcaef19c))
)
(symbol (lib_id "Device:R_Small") (at 62.738 40.894 180) (unit 1)