-
Notifications
You must be signed in to change notification settings - Fork 0
/
can_bus.kicad_sch
1608 lines (1576 loc) · 56.5 KB
/
can_bus.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 20230121) (generator eeschema)
(uuid e3200ad6-b63e-47c3-a8a1-96069810e368)
(paper "A4")
(lib_symbols
(symbol "Connector_Generic:Conn_01x03" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x03" (at 0 -5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x03_1_1"
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 3.81) (end 1.27 -3.81)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin passive line (at -5.08 2.54 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Small" (at 0.254 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "capacitor cap" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor, small symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (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))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048) (type default))
(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:Crystal_GND2" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "Y" (at 0 5.715 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Crystal_GND2" (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "quartz ceramic resonator oscillator" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Three pin crystal, GND on pin 2" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Crystal*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Crystal_GND2_0_1"
(rectangle (start -1.143 2.54) (end 1.143 -2.54)
(stroke (width 0.3048) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.54 0)
(xy -1.905 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.905 -1.27)
(xy -1.905 1.27)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 -3.81)
(xy 0 -3.556)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.905 0)
(xy 2.54 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.905 1.27)
(xy 1.905 -1.27)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.54 -2.286)
(xy -2.54 -3.556)
(xy 2.54 -3.556)
(xy 2.54 -2.286)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "Crystal_GND2_1_1"
(pin passive line (at -3.81 0 0) (length 1.27)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -5.08 90) (length 1.27)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 1.27)
(name "3" (effects (font (size 1.27 1.27))))
(number "3" (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" (at 0.762 0.508 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_Small" (at 0.762 -1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, small symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (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))
(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:MCP25625-x-SS" (in_bom yes) (on_board yes)
(property "Reference" "U" (at -11.43 26.67 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MCP25625-x-SS" (at 15.24 26.67 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_SO:SSOP-28_5.3x10.2mm_P0.65mm" (at 2.54 -7.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/20005282B.pdf" (at 0 15.24 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "CAN Controller SPI Transceiver" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Stand-Alone CAN Controller with SPI Interface and integated Transceiver, SSOP-28" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SSOP*5.3x10.2mm*P0.65mm*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MCP25625-x-SS_0_1"
(rectangle (start -12.7 25.4) (end 12.7 -25.4)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
(symbol "MCP25625-x-SS_1_1"
(pin power_in line (at -2.54 27.94 270) (length 2.54)
(name "VIO" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -2.54 -27.94 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin output line (at -15.24 -12.7 0) (length 2.54)
(name "~{Rx1BF}" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin output line (at -15.24 -10.16 0) (length 2.54)
(name "~{Rx0BF}" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin output line (at -15.24 -17.78 0) (length 2.54)
(name "~{INT}" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 17.78 0) (length 2.54)
(name "SCK" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 15.24 0) (length 2.54)
(name "SI" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin output line (at -15.24 12.7 0) (length 2.54)
(name "SO" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 10.16 0) (length 2.54)
(name "~{CS}" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 5.08 0) (length 2.54)
(name "~{RESET}" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -5.08 27.94 270) (length 2.54)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 12.7 -15.24 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin output line (at 15.24 7.62 180) (length 2.54)
(name "TxCAN" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin input line (at 15.24 5.08 180) (length 2.54)
(name "RxCAN" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin output line (at -15.24 -22.86 0) (length 2.54)
(name "CLKOUT" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 0 0) (length 2.54)
(name "~{Tx0RTS}" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin input line (at 15.24 12.7 180) (length 2.54)
(name "TXD" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 12.7 -17.78 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 5.08 -27.94 90) (length 2.54)
(name "VSS" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 5.08 27.94 270) (length 2.54)
(name "VDDA" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin output line (at 15.24 15.24 180) (length 2.54)
(name "RXD" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 20.32 180) (length 2.54)
(name "CANL" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 22.86 180) (length 2.54)
(name "CANH" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 22.86 0) (length 2.54)
(name "STBY" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 -2.54 0) (length 2.54)
(name "~{Tx1RTS}" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 -5.08 0) (length 2.54)
(name "~{Tx2RTS}" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin output line (at 15.24 -5.08 180) (length 2.54)
(name "OSC2" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at 15.24 -12.7 180) (length 2.54)
(name "OSC1" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Jumper:SolderJumper_2_Open" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "JP" (at 0 2.032 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SolderJumper_2_Open" (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "solder jumper SPST" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Solder Jumper, 2-pole, open" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SolderJumper*Open*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SolderJumper_2_Open_0_1"
(arc (start -0.254 1.016) (mid -1.2656 0) (end -0.254 -1.016)
(stroke (width 0) (type default))
(fill (type none))
)
(arc (start -0.254 1.016) (mid -1.2656 0) (end -0.254 -1.016)
(stroke (width 0) (type default))
(fill (type outline))
)
(polyline
(pts
(xy -0.254 1.016)
(xy -0.254 -1.016)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.254 1.016)
(xy 0.254 -1.016)
)
(stroke (width 0) (type default))
(fill (type none))
)
(arc (start 0.254 -1.016) (mid 1.2656 0) (end 0.254 1.016)
(stroke (width 0) (type default))
(fill (type none))
)
(arc (start 0.254 -1.016) (mid 1.2656 0) (end 0.254 1.016)
(stroke (width 0) (type default))
(fill (type outline))
)
)
(symbol "SolderJumper_2_Open_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "A" (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 "B" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+5V\"" (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))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default))
(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" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (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" (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))
(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" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"VCC\"" (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))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default))
(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 144.78 125.73) (diameter 0) (color 0 0 0 0)
(uuid 2238fd5c-aaee-4b26-80e1-3080e745d92f)
)
(junction (at 144.78 118.11) (diameter 0) (color 0 0 0 0)
(uuid 5a37ee67-024a-46e9-bf2a-b6e0a38387c4)
)
(junction (at 177.8 105.41) (diameter 0) (color 0 0 0 0)
(uuid 9933fc94-4a99-4c03-bada-60b69c8214a8)
)
(junction (at 114.3 78.74) (diameter 0) (color 0 0 0 0)
(uuid a21dcb7b-4c1c-49f3-88bf-894c02d98049)
)
(junction (at 114.3 73.66) (diameter 0) (color 0 0 0 0)
(uuid aa2b0be2-bf38-4bd7-91f0-b25bb7c82e7f)
)
(junction (at 100.33 78.74) (diameter 0) (color 0 0 0 0)
(uuid d01605e5-11c7-470f-8b6a-49d482784fd6)
)
(junction (at 177.8 92.71) (diameter 0) (color 0 0 0 0)
(uuid eadba269-e4d4-42d4-b461-53e239025fd6)
)
(junction (at 158.75 121.92) (diameter 0) (color 0 0 0 0)
(uuid ec06912b-b49e-4e98-804f-0c9bf0e30faf)
)
(junction (at 124.46 73.66) (diameter 0) (color 0 0 0 0)
(uuid f41ead8e-e48a-4b8e-b275-5699562391f0)
)
(junction (at 114.3 83.82) (diameter 0) (color 0 0 0 0)
(uuid f7708470-6072-403a-9cf7-bdd158ece991)
)
(no_connect (at 104.14 113.03) (uuid 4ec58a7d-ed4d-480e-9439-a07dc3d768a0))
(no_connect (at 104.14 125.73) (uuid 4ec58a7d-ed4d-480e-9439-a07dc3d768a1))
(no_connect (at 104.14 115.57) (uuid 4ec58a7d-ed4d-480e-9439-a07dc3d768a2))
(no_connect (at 104.14 118.11) (uuid 4ec58a7d-ed4d-480e-9439-a07dc3d768a3))
(no_connect (at 104.14 123.19) (uuid 4ec58a7d-ed4d-480e-9439-a07dc3d768a4))
(no_connect (at 104.14 135.89) (uuid 4ec58a7d-ed4d-480e-9439-a07dc3d768a5))
(wire (pts (xy 134.62 107.95) (xy 142.24 107.95))
(stroke (width 0) (type default))
(uuid 05e6b329-bdfa-48b3-b601-53916ef3b03b)
)
(wire (pts (xy 138.43 73.66) (xy 134.62 73.66))
(stroke (width 0) (type default))
(uuid 0ad46caf-d58d-4069-8dbb-3da1ea60eca1)
)
(wire (pts (xy 177.8 92.71) (xy 187.96 92.71))
(stroke (width 0) (type default))
(uuid 13d6cb1a-dbb6-4e40-a3be-cc05ac275144)
)
(wire (pts (xy 114.3 78.74) (xy 114.3 73.66))
(stroke (width 0) (type default))
(uuid 144375cb-c148-41ea-8b03-26390ef71c09)
)
(wire (pts (xy 100.33 130.81) (xy 104.14 130.81))
(stroke (width 0) (type default))
(uuid 1d22093e-8a77-40c0-becf-98fb8a00282e)
)
(wire (pts (xy 134.62 90.17) (xy 142.24 90.17))
(stroke (width 0) (type default))
(uuid 21f296aa-ad37-463b-968e-2af6034a6aa6)
)
(wire (pts (xy 124.46 73.66) (xy 129.54 73.66))
(stroke (width 0) (type default))
(uuid 2440f789-231c-43c7-a0a1-15005e3ff602)
)
(wire (pts (xy 134.62 118.11) (xy 144.78 118.11))
(stroke (width 0) (type default))
(uuid 2644b997-8704-45c1-9e75-a691e437f9c0)
)
(wire (pts (xy 158.75 121.92) (xy 158.75 118.11))
(stroke (width 0) (type default))
(uuid 2675ef01-ab26-4500-9219-2883cbd16f25)
)
(wire (pts (xy 158.75 125.73) (xy 153.67 125.73))
(stroke (width 0) (type default))
(uuid 28cfa62c-6a64-44d9-b9b4-451c058e515e)
)
(wire (pts (xy 100.33 102.87) (xy 104.14 102.87))
(stroke (width 0) (type default))
(uuid 2bf80d43-76b0-42ec-9a99-035e7a91a0d9)
)
(wire (pts (xy 149.86 121.92) (xy 158.75 121.92))
(stroke (width 0) (type default))
(uuid 333a8d5e-178d-4b9d-be48-c0e7d638fe8b)
)
(wire (pts (xy 158.75 121.92) (xy 160.02 121.92))
(stroke (width 0) (type default))
(uuid 33dff14c-7e41-433b-8ccf-a6ad12f8d614)
)
(wire (pts (xy 134.62 100.33) (xy 139.7 100.33))
(stroke (width 0) (type default))
(uuid 399a7070-7da4-4db5-9b8a-031fedea1a10)
)
(wire (pts (xy 177.8 105.41) (xy 187.96 105.41))
(stroke (width 0) (type default))
(uuid 403b097b-2e17-4fae-9052-dca6066b7978)
)
(wire (pts (xy 158.75 118.11) (xy 153.67 118.11))
(stroke (width 0) (type default))
(uuid 464d0e06-50d2-409a-b05f-b4639273d269)
)
(wire (pts (xy 100.33 73.66) (xy 100.33 78.74))
(stroke (width 0) (type default))
(uuid 4977659e-3ab6-4af6-98ff-4b25811ce099)
)
(wire (pts (xy 207.01 107.95) (xy 213.36 107.95))
(stroke (width 0) (type default))
(uuid 4e09fac1-4e6f-4c46-8392-3b37d6691254)
)
(wire (pts (xy 134.62 105.41) (xy 139.7 105.41))
(stroke (width 0) (type default))
(uuid 525de6ff-555f-42a5-a652-454fe12b846f)
)
(wire (pts (xy 207.01 91.44) (xy 213.36 91.44))
(stroke (width 0) (type default))
(uuid 56c3ee27-da2d-43e2-b7d1-a703eaf236e7)
)
(wire (pts (xy 168.91 92.71) (xy 177.8 92.71))
(stroke (width 0) (type default))
(uuid 5a840f10-98d9-49e1-bd24-3ef6d0d742c0)
)
(wire (pts (xy 139.7 100.33) (xy 139.7 105.41))
(stroke (width 0) (type default))
(uuid 65cfce9f-61ac-4b83-bfb3-658bfff50fa5)
)
(wire (pts (xy 109.22 73.66) (xy 114.3 73.66))
(stroke (width 0) (type default))
(uuid 6cbf88ea-42f1-423e-a81d-e13cb09a464b)
)
(wire (pts (xy 207.01 93.98) (xy 213.36 93.98))
(stroke (width 0) (type default))
(uuid 7d4e2875-c1e9-4bb2-a845-4a08746b7272)
)
(wire (pts (xy 100.33 100.33) (xy 104.14 100.33))
(stroke (width 0) (type default))
(uuid 855ebe97-3c5e-48b7-8b03-af9144ac542a)
)
(wire (pts (xy 142.24 97.79) (xy 142.24 107.95))
(stroke (width 0) (type default))
(uuid 88f67829-d73e-42da-bba2-c45dc95ba7b4)
)
(wire (pts (xy 124.46 73.66) (xy 124.46 85.09))
(stroke (width 0) (type default))
(uuid 8f27de72-8512-4f57-9b6b-cb48fa0639c6)
)
(wire (pts (xy 144.78 125.73) (xy 148.59 125.73))
(stroke (width 0) (type default))
(uuid 97a41df5-0266-4893-afd1-0535f8c8dd84)
)
(wire (pts (xy 207.01 105.41) (xy 213.36 105.41))
(stroke (width 0) (type default))
(uuid 98673d1d-fe17-4d93-b493-23b32b04ce25)
)
(wire (pts (xy 76.2 107.95) (xy 104.14 107.95))
(stroke (width 0) (type default))
(uuid 98afaeb5-a2b0-4cf0-b932-e70a57f5ac54)
)
(wire (pts (xy 104.14 73.66) (xy 100.33 73.66))
(stroke (width 0) (type default))
(uuid 9b966cb2-c324-456b-b53c-24b70627175c)
)
(wire (pts (xy 144.78 118.11) (xy 148.59 118.11))
(stroke (width 0) (type default))
(uuid b1dbb43c-570d-4492-bab6-5d589d3d4dc3)
)
(wire (pts (xy 100.33 97.79) (xy 104.14 97.79))
(stroke (width 0) (type default))
(uuid b550b553-700d-4456-9d33-9bbdcb436438)
)
(wire (pts (xy 114.3 83.82) (xy 114.3 85.09))
(stroke (width 0) (type default))
(uuid c1dcc4a3-1a7e-44dd-b1b4-0562e884979a)
)
(wire (pts (xy 109.22 78.74) (xy 114.3 78.74))
(stroke (width 0) (type default))
(uuid c2dc20b8-8696-49d4-a8a7-f26878c28d8f)
)
(wire (pts (xy 158.75 125.73) (xy 158.75 121.92))
(stroke (width 0) (type default))
(uuid c8ebd743-3f9b-4046-8863-b8a594866de9)
)
(wire (pts (xy 116.84 85.09) (xy 116.84 83.82))
(stroke (width 0) (type default))
(uuid ca2d8d94-6ef8-4465-ac70-2def31263bf8)
)
(wire (pts (xy 114.3 83.82) (xy 114.3 78.74))
(stroke (width 0) (type default))
(uuid cb20ff98-2854-4fd7-b237-3ff595887a7b)
)
(wire (pts (xy 207.01 96.52) (xy 213.36 96.52))
(stroke (width 0) (type default))
(uuid ce1cc1ec-b666-45c2-b0ec-2c102c59f857)
)
(wire (pts (xy 207.01 110.49) (xy 213.36 110.49))
(stroke (width 0) (type default))
(uuid ddaa10e1-738a-4bc1-a437-11aae20b1165)
)
(wire (pts (xy 114.3 83.82) (xy 116.84 83.82))
(stroke (width 0) (type default))
(uuid e5bb510c-e871-4a94-9877-826c54158b88)
)
(wire (pts (xy 85.09 90.17) (xy 104.14 90.17))
(stroke (width 0) (type default))
(uuid e76fb14d-4d41-4e49-b118-431b5a1c0d8e)
)
(wire (pts (xy 134.62 125.73) (xy 144.78 125.73))
(stroke (width 0) (type default))
(uuid efcaa35d-5b0d-48a4-9776-865f21bb121e)
)
(wire (pts (xy 134.62 97.79) (xy 142.24 97.79))
(stroke (width 0) (type default))
(uuid f3a00219-e25d-40a3-9e71-7dcd9ce82d2a)
)
(wire (pts (xy 168.91 105.41) (xy 177.8 105.41))
(stroke (width 0) (type default))
(uuid f53515ce-ac10-4cb4-bef3-b0fc1ff95826)
)
(wire (pts (xy 134.62 92.71) (xy 142.24 92.71))
(stroke (width 0) (type default))
(uuid fa939f29-3412-4676-86ab-9588d7f6015f)
)
(wire (pts (xy 100.33 78.74) (xy 104.14 78.74))
(stroke (width 0) (type default))
(uuid fd752daa-8e87-41ff-9f49-30a10803351e)
)
(wire (pts (xy 100.33 95.25) (xy 104.14 95.25))
(stroke (width 0) (type default))
(uuid ff0d57a0-50d2-4d17-8318-4267c80100b1)
)
(text "The CLKOUT pin can provides \nthe clock to the microcontroller."
(at 74.93 144.78 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid ca7916c6-ff9f-45f8-91f2-91e30a2d1bde)
)
(label "CAN_H" (at 207.01 110.49 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 0a285425-e235-4788-923c-c0da1b699a7a)
)
(label "CAN_H" (at 168.91 92.71 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 1d7d1797-75b8-488a-bf5b-46371f22a7b6)
)
(label "CAN_L" (at 207.01 91.44 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 2ec76a41-10fe-44da-9580-2e123289c6ba)
)
(label "CAN_H" (at 207.01 96.52 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 75c4c9d1-2046-4c1f-b4e7-34a8d7476c39)
)
(label "CAN_L" (at 207.01 105.41 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 8e336746-b7a9-4b65-8a3a-b69f453cee0a)
)
(label "CAN_L" (at 168.91 105.41 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid c8126201-6d6e-4406-9382-89c5f1dbdf63)
)
(label "CAN_H" (at 142.24 90.17 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid ccf08273-cd2f-491d-9dd5-6290d9445271)
)
(label "CAN_L" (at 142.24 92.71 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid f409d676-0b49-4fd5-8f60-b33d334a2e6d)
)
(hierarchical_label "SPI_CLK" (shape input) (at 100.33 95.25 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid a6600f64-4476-4621-8aa5-72ee16f727d3)
)
(hierarchical_label "SPI_~{CS}" (shape input) (at 100.33 102.87 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid c72c7b76-315a-4eca-ad3f-be16ce87f365)
)
(hierarchical_label "SPI_MOSI" (shape input) (at 100.33 97.79 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid c83b6147-6bde-4ce2-8bb9-cbda79ea522b)
)
(hierarchical_label "SPI_MISO" (shape output) (at 100.33 100.33 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid c88ecfa6-849d-4562-b34a-b89b61a0509c)
)
(hierarchical_label "~{INT}" (shape output) (at 100.33 130.81 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid ea4a7e88-7ca9-4946-80cd-5ee02b30e0d9)
)
(symbol (lib_id "Device:Crystal_GND2") (at 144.78 121.92 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 08b912f7-bcfa-4948-983e-bd07acdf15be)
(property "Reference" "Y2" (at 140.97 120.6499 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "16MHz" (at 140.97 123.1899 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Crystal:Crystal_SMD_3225-4Pin_3.2x2.5mm" (at 144.78 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 144.78 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCPCB Part #" "C13738" (at 144.78 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MFR.Part #" "X322516MLB4SI" (at 144.78 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Basic Part" "Y" (at 144.78 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a600688d-ed30-4005-9516-fc835503551e))
(pin "2" (uuid 32e40a8a-79af-4dd5-bc33-619358b33782))
(pin "3" (uuid fb6271da-fa36-4ad8-a2f2-68a1cb749306))
(instances
(project "moco-s"
(path "/6af178d2-5089-4f26-a9dd-467044aa844a/f7ad0ebf-8e81-44cc-8ff1-e4ac32df718d"
(reference "Y2") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C_Small") (at 132.08 73.66 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 0abb14b3-1acd-45fa-80ad-6bad59300722)
(property "Reference" "C46" (at 132.08 68.58 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "100nF" (at 132.08 71.12 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 132.08 73.66 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 132.08 73.66 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLCPCB Part #" "C1525" (at 132.08 73.66 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MFR.Part #" "CL05B104KO5NNNC" (at 132.08 73.66 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Basic Part" "Y" (at 132.08 73.66 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d7a10ca5-870f-41b9-a1e8-657c6444cbd2))
(pin "2" (uuid 2886a725-2369-44a5-b63b-c74bbfb27690))
(instances
(project "moco-s"
(path "/6af178d2-5089-4f26-a9dd-467044aa844a/f7ad0ebf-8e81-44cc-8ff1-e4ac32df718d"
(reference "C46") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 85.09 90.17 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 0fb6a5ed-0fc7-4f8d-affb-2e520c78f5b6)
(property "Reference" "#PWR065" (at 85.09 96.52 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 85.09 93.98 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 85.09 90.17 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 85.09 90.17 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ac1bd30c-5542-49a1-82c2-0d08fd20e424))
(instances
(project "moco-s"
(path "/6af178d2-5089-4f26-a9dd-467044aa844a/f7ad0ebf-8e81-44cc-8ff1-e4ac32df718d"
(reference "#PWR065") (unit 1)
)
)
)
)
(symbol (lib_id "power:+5V") (at 124.46 73.66 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 1105834a-679d-46cc-bcaf-6aa636403205)
(property "Reference" "#PWR069" (at 124.46 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (at 124.46 69.85 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 124.46 73.66 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 124.46 73.66 0)
(effects (font (size 1.27 1.27)) hide)