-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathUART0_2_USB.kicad_sch
987 lines (969 loc) · 34.8 KB
/
UART0_2_USB.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
(kicad_sch (version 20230121) (generator eeschema)
(uuid 05e85697-2169-44ce-b1a7-99412a5c69f8)
(paper "A4")
(lib_symbols
(symbol "0_power:+3V3" (power) (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -2.54 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Value" "+3V3" (at 0 1.27 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "ki_keywords" "power-flag symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "power-flag symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3V3_0_1"
(polyline
(pts
(xy -1.143 0)
(xy 1.143 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "+3V3_1_1"
(pin power_in line (at 0 -1.27 90) (length 0) hide
(name "+3V3" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "0_power:GND" (power) (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -2.54 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Value" "GND" (at 0 1.27 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "ki_keywords" "power-flag symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "power-flag symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy -1.143 0)
(xy 1.143 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.762 -0.381)
(xy 0.762 -0.381)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.381 -0.762)
(xy 0.381 -0.762)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.127 -1.143)
(xy 0.127 -1.143)
)
(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 "0_ungrouped:CH340E" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at -2.54 8.89 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "CH340E" (at 0 -8.89 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(symbol "CH340E_0_1"
(rectangle (start -6.35 7.62) (end 6.35 -7.62)
(stroke (width 0) (type default))
(fill (type background))
)
)
(symbol "CH340E_1_1"
(pin passive line (at -10.16 5.08 0) (length 3.81)
(name "UD+" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 10.16 5.08 180) (length 3.81)
(name "V3" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -10.16 2.54 0) (length 3.81)
(name "UD-" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -10.16 0 0) (length 3.81)
(name "GND" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -10.16 -2.54 0) (length 3.81)
(name "RTS#" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -10.16 -5.08 0) (length 3.81)
(name "CTS#" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 10.16 -5.08 180) (length 3.81)
(name "TNOW" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 10.16 -2.54 180) (length 3.81)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 10.16 0 180) (length 3.81)
(name "TXD" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 10.16 2.54 180) (length 3.81)
(name "RXD" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "0_ungrouped:USB_C_16P" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "J" (at -12.7 25.4 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "USB_C_16P" (at 8.89 25.4 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (at 1.27 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.usb.org/sites/default/files/documents/usb_type-c.zip" (at 1.27 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "usb universal serial bus" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "USB Type-C Plug connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "USB*C*Plug*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "USB_C_16P_0_1"
(rectangle (start -12.7 24.13) (end 10.16 -27.94)
(stroke (width 0.254) (type default))
(fill (type background))
)
(arc (start -11.43 -3.81) (mid -9.525 -5.7067) (end -7.62 -3.81)
(stroke (width 0.508) (type default))
(fill (type none))
)
(arc (start -10.16 -3.81) (mid -9.525 -4.4423) (end -8.89 -3.81)
(stroke (width 0.254) (type default))
(fill (type none))
)
(arc (start -10.16 -3.81) (mid -9.525 -4.4423) (end -8.89 -3.81)
(stroke (width 0.254) (type default))
(fill (type outline))
)
(rectangle (start -10.16 -3.81) (end -8.89 3.81)
(stroke (width 0.254) (type default))
(fill (type outline))
)
(arc (start -8.89 3.81) (mid -9.525 4.4423) (end -10.16 3.81)
(stroke (width 0.254) (type default))
(fill (type none))
)
(arc (start -8.89 3.81) (mid -9.525 4.4423) (end -10.16 3.81)
(stroke (width 0.254) (type default))
(fill (type outline))
)
(arc (start -7.62 3.81) (mid -9.525 5.7067) (end -11.43 3.81)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy -11.43 -3.81)
(xy -11.43 3.81)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy -7.62 3.81)
(xy -7.62 -3.81)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
)
(symbol "USB_C_16P_1_1"
(circle (center -5.08 1.143) (radius 0.635)
(stroke (width 0.254) (type default))
(fill (type outline))
)
(circle (center -2.54 -5.842) (radius 1.27)
(stroke (width 0) (type default))
(fill (type outline))
)
(rectangle (start -0.635 1.778) (end 0.635 3.048)
(stroke (width 0.254) (type default))
(fill (type outline))
)
(polyline
(pts
(xy -2.54 -5.842)
(xy -2.54 4.318)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.54 -3.302)
(xy -5.08 -0.762)
(xy -5.08 0.508)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.54 -2.032)
(xy 0 0.508)
(xy 0 1.778)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy -3.81 4.318)
(xy -2.54 6.858)
(xy -1.27 4.318)
(xy -3.81 4.318)
)
(stroke (width 0.254) (type default))
(fill (type outline))
)
(pin passive line (at 15.24 21.59 180) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "A1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 15.24 -21.59 180) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "A12" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 15.24 15.24 180) (length 5.08)
(name "VBUS" (effects (font (size 1.27 1.27))))
(number "A4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 15.24 6.35 180) (length 5.08)
(name "CC1" (effects (font (size 1.27 1.27))))
(number "A5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 15.24 1.27 180) (length 5.08)
(name "DP1" (effects (font (size 1.27 1.27))))
(number "A6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 15.24 -1.27 180) (length 5.08)
(name "DN1" (effects (font (size 1.27 1.27))))
(number "A7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 15.24 -6.35 180) (length 5.08)
(name "SBU1" (effects (font (size 1.27 1.27))))
(number "A8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 15.24 -15.24 180) (length 5.08)
(name "VBUS" (effects (font (size 1.27 1.27))))
(number "A9" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 15.24 -19.05 180) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "B1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 15.24 19.05 180) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "B12" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 15.24 -12.7 180) (length 5.08)
(name "VBUS" (effects (font (size 1.27 1.27))))
(number "B4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 15.24 -8.89 180) (length 5.08)
(name "CC2" (effects (font (size 1.27 1.27))))
(number "B5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 15.24 -3.81 180) (length 5.08)
(name "DP2" (effects (font (size 1.27 1.27))))
(number "B6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 15.24 3.81 180) (length 5.08)
(name "DN2" (effects (font (size 1.27 1.27))))
(number "B7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 15.24 8.89 180) (length 5.08)
(name "SBU2" (effects (font (size 1.27 1.27))))
(number "B8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 15.24 12.7 180) (length 5.08)
(name "VBUS" (effects (font (size 1.27 1.27))))
(number "B9" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 15.24 -25.4 180) (length 5.08)
(name "Shield" (effects (font (size 1.27 1.27))))
(number "S1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0.9652 -3.81 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" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (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_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -1.778 0 90)
(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 res resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (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_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "R_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 170.18 107.95) (diameter 0) (color 0 0 0 0)
(uuid 254ba890-8631-4065-a316-618fd1af72ba)
)
(junction (at 170.18 67.31) (diameter 0) (color 0 0 0 0)
(uuid 364eec96-440f-42f2-8f90-2f061f97e78e)
)
(junction (at 170.18 105.41) (diameter 0) (color 0 0 0 0)
(uuid 3977a048-34b3-4a7e-90f7-0432d9ebe96f)
)
(junction (at 152.4 80.01) (diameter 0) (color 0 0 0 0)
(uuid 3eb6b41e-c025-4e60-a306-a2444c03e4b1)
)
(junction (at 170.18 73.66) (diameter 0) (color 0 0 0 0)
(uuid 6155f4fd-dd7c-4754-9260-411e9dc60da0)
)
(junction (at 170.18 85.09) (diameter 0) (color 0 0 0 0)
(uuid 817a9ca0-1353-44aa-96c1-84a6c2f6e68c)
)
(junction (at 116.84 92.71) (diameter 0) (color 0 0 0 0)
(uuid b44b4e58-fc5e-4851-8feb-caa60b6bbcbf)
)
(junction (at 152.4 95.25) (diameter 0) (color 0 0 0 0)
(uuid bf722d79-342a-4f14-ba0b-bf5bb67ecf25)
)
(junction (at 170.18 99.06) (diameter 0) (color 0 0 0 0)
(uuid ddb701f7-d88d-4197-aa09-0f94f0821fa3)
)
(junction (at 149.86 73.66) (diameter 0) (color 0 0 0 0)
(uuid e2c6b442-5835-49f5-becc-704c6ae67c16)
)
(junction (at 167.64 87.63) (diameter 0) (color 0 0 0 0)
(uuid ec0a0e01-213b-44ea-b8f1-5343e01fe8cc)
)
(junction (at 152.4 67.31) (diameter 0) (color 0 0 0 0)
(uuid ee6e6489-f3e7-4fc2-bb3a-7b98a99da626)
)
(junction (at 119.38 92.71) (diameter 0) (color 0 0 0 0)
(uuid ee7d2a1a-f4c9-4c57-a0c8-15514c816a9b)
)
(no_connect (at 121.92 95.25) (uuid 779f7607-1f5e-4b86-b87f-e865210329b5))
(no_connect (at 172.72 77.47) (uuid 7b6b6da1-d72d-4629-b747-d8ff0a2775ca))
(no_connect (at 142.24 92.71) (uuid d1a4c9dc-dc91-4242-b08a-b7b86c963576))
(no_connect (at 172.72 92.71) (uuid d2b81ca3-2336-44a2-aff7-60840f12d102))
(no_connect (at 142.24 95.25) (uuid e1bad30e-4588-4650-b3a3-018c83c33ee8))
(wire (pts (xy 170.18 107.95) (xy 170.18 111.76))
(stroke (width 0) (type default))
(uuid 018a2a18-81fb-4d92-8c79-45f536784aa8)
)
(wire (pts (xy 152.4 67.31) (xy 152.4 80.01))
(stroke (width 0) (type default))
(uuid 0e8e987d-3a7d-45e2-8e7d-b99029b242df)
)
(wire (pts (xy 165.1 95.25) (xy 172.72 95.25))
(stroke (width 0) (type default))
(uuid 171de0fb-11ce-4168-9a0d-746ab4ddee6d)
)
(wire (pts (xy 167.64 87.63) (xy 172.72 87.63))
(stroke (width 0) (type default))
(uuid 196a4560-17f1-4278-ad5f-5c648942f514)
)
(wire (pts (xy 170.18 101.6) (xy 170.18 99.06))
(stroke (width 0) (type default))
(uuid 1ee2ee97-12a5-45b4-928e-fbf33e2b990e)
)
(wire (pts (xy 172.72 101.6) (xy 170.18 101.6))
(stroke (width 0) (type default))
(uuid 24328e1b-0bad-4731-9f26-0e162900fa20)
)
(wire (pts (xy 170.18 105.41) (xy 152.4 105.41))
(stroke (width 0) (type default))
(uuid 27f9e8b8-c2e6-4fd3-af24-e377fe8b363f)
)
(wire (pts (xy 144.78 90.17) (xy 142.24 90.17))
(stroke (width 0) (type default))
(uuid 2dcbc9ad-95c4-4ee2-ae8f-ab1c7a8a23fd)
)
(wire (pts (xy 116.84 102.87) (xy 116.84 105.41))
(stroke (width 0) (type default))
(uuid 4132c435-1639-4e6a-8b6f-603aa6e97a02)
)
(wire (pts (xy 170.18 85.09) (xy 142.24 85.09))
(stroke (width 0) (type default))
(uuid 4161ec28-b368-4706-806a-593abefdfd78)
)
(wire (pts (xy 170.18 105.41) (xy 170.18 107.95))
(stroke (width 0) (type default))
(uuid 4a863f18-83f6-45a1-987c-86c19ef3ce2e)
)
(wire (pts (xy 149.86 99.06) (xy 149.86 73.66))
(stroke (width 0) (type default))
(uuid 565d04f3-ff51-433f-b4d8-6a23efb8816a)
)
(wire (pts (xy 172.72 64.77) (xy 170.18 64.77))
(stroke (width 0) (type default))
(uuid 66fa9b2c-9129-446e-a9b5-963647fa74b5)
)
(wire (pts (xy 167.64 82.55) (xy 167.64 87.63))
(stroke (width 0) (type default))
(uuid 688eebe6-4b47-4739-bc1e-d6fab816ffc9)
)
(wire (pts (xy 119.38 85.09) (xy 121.92 85.09))
(stroke (width 0) (type default))
(uuid 6915deff-b165-4588-98c5-2153edc8a13d)
)
(bus (pts (xy 68.58 67.31) (xy 76.2 67.31))
(stroke (width 0) (type default))
(uuid 6961b3b2-9770-4dc2-babd-fe7850b09192)
)
(wire (pts (xy 172.72 85.09) (xy 170.18 85.09))
(stroke (width 0) (type default))
(uuid 6b9042ae-90c5-41a5-9e5b-c6056e7e7cb3)
)
(wire (pts (xy 170.18 67.31) (xy 172.72 67.31))
(stroke (width 0) (type default))
(uuid 6bd5506e-f408-432b-a504-cbb249236251)
)
(wire (pts (xy 172.72 105.41) (xy 170.18 105.41))
(stroke (width 0) (type default))
(uuid 6d436fda-b69f-46ec-9766-42bddec7014c)
)
(wire (pts (xy 170.18 111.76) (xy 172.72 111.76))
(stroke (width 0) (type default))
(uuid 6d4a1fed-5adf-472f-8f42-39cfaa6d11a8)
)
(wire (pts (xy 172.72 107.95) (xy 170.18 107.95))
(stroke (width 0) (type default))
(uuid 6f5b61be-9f9b-438f-96ba-2b3d2ff3249d)
)
(wire (pts (xy 170.18 85.09) (xy 170.18 90.17))
(stroke (width 0) (type default))
(uuid 792a636b-3dc5-4ea9-bb77-237aff5d8fb1)
)
(wire (pts (xy 55.88 74.93) (xy 76.2 74.93))
(stroke (width 0) (type default))
(uuid 7a74a8b3-5f24-4c9d-b389-c38bd71967af)
)
(wire (pts (xy 116.84 92.71) (xy 116.84 95.25))
(stroke (width 0) (type default))
(uuid 7bb8fad2-fa05-4d17-9201-78f52f7df979)
)
(wire (pts (xy 142.24 87.63) (xy 167.64 87.63))
(stroke (width 0) (type default))
(uuid 7bfa1175-26db-4123-a1ca-28369f9487c6)
)
(wire (pts (xy 152.4 80.01) (xy 157.48 80.01))
(stroke (width 0) (type default))
(uuid 7e9b9e25-8439-43c0-b838-b4dab76f5264)
)
(wire (pts (xy 119.38 92.71) (xy 116.84 92.71))
(stroke (width 0) (type default))
(uuid 82ed6d02-141c-4a16-ad3e-135d05bfe488)
)
(wire (pts (xy 170.18 90.17) (xy 172.72 90.17))
(stroke (width 0) (type default))
(uuid 85e95eeb-7610-4c45-9c85-39c21d562b6e)
)
(wire (pts (xy 172.72 82.55) (xy 167.64 82.55))
(stroke (width 0) (type default))
(uuid 88411597-9bb9-4645-afbb-c686cea87aa3)
)
(wire (pts (xy 165.1 80.01) (xy 172.72 80.01))
(stroke (width 0) (type default))
(uuid 8892cc4e-c9de-4fd0-9140-335bb092d1a5)
)
(wire (pts (xy 172.72 99.06) (xy 170.18 99.06))
(stroke (width 0) (type default))
(uuid 902392b6-5798-4c76-9d92-58a553694dc2)
)
(wire (pts (xy 106.68 90.17) (xy 121.92 90.17))
(stroke (width 0) (type default))
(uuid 950d4abe-0dbb-46e6-8e27-dad58d69548e)
)
(wire (pts (xy 114.3 92.71) (xy 116.84 92.71))
(stroke (width 0) (type default))
(uuid 957ceaef-6ae2-4835-8c1e-7eebdc36a549)
)
(wire (pts (xy 152.4 95.25) (xy 157.48 95.25))
(stroke (width 0) (type default))
(uuid 9aa4bd3c-b2d2-417d-8439-c53b933ef511)
)
(wire (pts (xy 170.18 71.12) (xy 170.18 73.66))
(stroke (width 0) (type default))
(uuid 9eadb535-4992-493a-bd8b-51444d7c295c)
)
(wire (pts (xy 172.72 71.12) (xy 170.18 71.12))
(stroke (width 0) (type default))
(uuid a0ce52c0-eea1-4b94-becc-cd1ec37527b1)
)
(wire (pts (xy 106.68 87.63) (xy 121.92 87.63))
(stroke (width 0) (type default))
(uuid a542242c-dd45-452e-af9d-394e289a3f2e)
)
(wire (pts (xy 152.4 95.25) (xy 152.4 105.41))
(stroke (width 0) (type default))
(uuid a7840c65-d457-4b75-9a8b-3788decaa0c9)
)
(wire (pts (xy 170.18 64.77) (xy 170.18 67.31))
(stroke (width 0) (type default))
(uuid c6a1bf54-7926-4761-a7bf-bf611ba35117)
)
(wire (pts (xy 170.18 67.31) (xy 152.4 67.31))
(stroke (width 0) (type default))
(uuid ca506ab6-2cc5-450c-9303-368782f4071e)
)
(wire (pts (xy 170.18 99.06) (xy 149.86 99.06))
(stroke (width 0) (type default))
(uuid cc392f31-f692-43f4-a8b2-2f78dfd1970c)
)
(wire (pts (xy 170.18 73.66) (xy 172.72 73.66))
(stroke (width 0) (type default))
(uuid d3f621c6-d03b-4e5f-9225-b60350acff9c)
)
(wire (pts (xy 152.4 95.25) (xy 152.4 80.01))
(stroke (width 0) (type default))
(uuid d4da9e7d-9c65-4f61-a011-3577e54b5acd)
)
(wire (pts (xy 121.92 92.71) (xy 119.38 92.71))
(stroke (width 0) (type default))
(uuid e1cf2904-5141-4177-96b2-958251c54f86)
)
(wire (pts (xy 119.38 92.71) (xy 119.38 85.09))
(stroke (width 0) (type default))
(uuid e39ef34a-c98b-49c4-9080-2eacb18946ff)
)
(wire (pts (xy 149.86 73.66) (xy 170.18 73.66))
(stroke (width 0) (type default))
(uuid e97b3e05-fcd6-4938-a6be-fb856f8d5f88)
)
(wire (pts (xy 152.4 67.31) (xy 147.32 67.31))
(stroke (width 0) (type default))
(uuid eb68a3ce-4e4a-4bf3-9ca0-ae50878ecc85)
)
(wire (pts (xy 147.32 73.66) (xy 149.86 73.66))
(stroke (width 0) (type default))
(uuid edf20cba-106b-451f-826e-4c104fe6f7a4)
)
(wire (pts (xy 55.88 77.47) (xy 76.2 77.47))
(stroke (width 0) (type default))
(uuid f8f27c23-74f7-40a6-ac43-1992d7af1ff9)
)
(label "PF12" (at 55.88 74.93 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 73590c19-d87a-4025-b1e9-f0d1d5232a5e)
)
(label "UART0_TX" (at 106.68 87.63 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 9129bcec-3d4e-42d0-bb4b-8b51987bd617)
)
(label "PF11" (at 55.88 77.47 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid abe14793-9998-47c9-a46e-84d45c0b6322)
)
(label "UART0_RX" (at 76.2 77.47 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid b0f4b488-9438-49d5-bd20-4ba0205321b5)
)
(label "UART0_RX" (at 106.68 90.17 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid c7102d98-fd20-4e1f-aa2c-689e715524a1)
)
(label "UART0_TX" (at 76.2 74.93 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid f8705c90-307e-4c79-8af8-4de0ca015831)
)
(hierarchical_label "PF[11..12]" (shape input) (at 68.58 67.31 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 7f6ff01f-b52a-452f-895c-18dbc5a082b0)
)
(hierarchical_label "UART0_2_USB_5V" (shape output) (at 147.32 73.66 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid a9818611-9c57-4145-abfa-cd7267ffc4a8)
)
(symbol (lib_id "0_ungrouped:USB_C_16P") (at 187.96 86.36 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 0cc9002f-de80-4fb4-b505-bf2cb97630d8)
(property "Reference" "J6" (at 201.422 87.4303 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "USB_C_16P" (at 201.422 89.9672 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "0_ungrouped:USB_C_16P_4Foot8.64mm" (at 186.69 86.36 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.usb.org/sites/default/files/documents/usb_type-c.zip" (at 186.69 86.36 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "A1" (uuid d1918db2-767c-4958-a9ed-502ddce68f8d))
(pin "A12" (uuid c0f2b7d5-71fe-4bc3-a618-50ad1b32de1f))
(pin "A4" (uuid ff05d58b-c0bc-4be6-a8f0-8e7868cb294e))
(pin "A5" (uuid dbdb385e-c756-4ac0-bf06-8021cc7dd666))
(pin "A6" (uuid 2562b5d4-892f-42f2-a58b-cddbc37374cf))
(pin "A7" (uuid de3dd3bb-e4e1-4377-a9f5-669eb9e5f6ed))
(pin "A8" (uuid 5fdb0294-e0f7-42bf-8679-852bc74fbdc4))
(pin "A9" (uuid 9532423b-6df8-4bcc-9c03-8be3ed4d771a))
(pin "B1" (uuid a452d879-59a6-4822-80ac-12c59133d6f0))
(pin "B12" (uuid 3db78986-f6e5-4e3f-ba4e-a25e742153e8))
(pin "B4" (uuid 2278c2a8-acaa-47c2-b763-3818551cd04a))
(pin "B5" (uuid 641f7d49-1b7c-48b8-a49a-b5bb1bdc2061))
(pin "B6" (uuid a94f5f06-c91f-4930-a160-dbc0352df06f))
(pin "B7" (uuid a4310ad8-da02-4028-9154-7ef6de986756))
(pin "B8" (uuid 91fb0fc1-11c9-42b9-a140-21922ed8e935))
(pin "B9" (uuid 5520eb51-0a68-4ff4-98e7-81ccc6eadbdb))
(pin "S1" (uuid 6d9714a0-559d-4e9e-b2bb-9c0c2620c48b))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/a2e605ad-55ff-4a42-a2d0-bdef8492ecc1"
(reference "J6") (unit 1)
)
)
)
)
(symbol (lib_id "0_power:GND") (at 147.32 67.31 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 466ec760-72c8-42a5-af68-8dd09cea798e)
(property "Reference" "#PWR025" (at 144.78 67.31 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Value" "GND" (at 148.59 67.31 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Footprint" "" (at 147.32 67.31 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 147.32 67.31 0)
(effects (font (size 1.524 1.524)) hide)
)
(pin "1" (uuid c5c2a77b-1625-4eb0-8e41-c383d226b7f3))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/a2e605ad-55ff-4a42-a2d0-bdef8492ecc1"
(reference "#PWR025") (unit 1)
)
)
)
)
(symbol (lib_id "0_ungrouped:CH340E") (at 132.08 90.17 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 61897a3d-cf70-4bf3-b363-2c9e72e9e8be)
(property "Reference" "U6" (at 128.27 81.28 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "CH340E" (at 130.81 99.06 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "Package_SO:MSOP-10_3x3mm_P0.5mm" (at 132.08 90.17 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 132.08 90.17 0)
(effects (font (size 1.524 1.524)) hide)
)
(pin "1" (uuid 40572806-ab0f-4dd8-a70a-0a45c472d679))
(pin "10" (uuid 2f4ecec4-af50-43fe-9c69-334630dd9b7c))
(pin "2" (uuid 085d1388-2022-450f-aa71-9a457b7edb24))
(pin "3" (uuid 16805092-71ae-4c7e-b188-4978ecdf8e00))
(pin "4" (uuid b1852d09-bc47-4623-9729-864b57d7c8e5))
(pin "5" (uuid 865586dd-7fbf-430a-ba69-cc17ee52920a))
(pin "6" (uuid 9858a899-b5a8-417f-8209-cc79389aa6b1))
(pin "7" (uuid 7018ddb2-2985-4e65-a635-f54ab539ce6e))
(pin "8" (uuid 4a918a2e-2384-44f2-bc09-e34b71c5bf9b))
(pin "9" (uuid da58cea3-616a-4199-85d8-efeefab5cba0))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/a2e605ad-55ff-4a42-a2d0-bdef8492ecc1"
(reference "U6") (unit 1)
)
)
)
)
(symbol (lib_id "0_power:GND") (at 144.78 90.17 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 6f9270ee-1a6d-494a-954b-e202a750549e)
(property "Reference" "#PWR024" (at 147.32 90.17 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Value" "GND" (at 143.51 90.17 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Footprint" "" (at 144.78 90.17 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 144.78 90.17 0)
(effects (font (size 1.524 1.524)) hide)
)
(pin "1" (uuid 3a321c1c-8ce3-41ab-8ffa-cebcb7b78834))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/a2e605ad-55ff-4a42-a2d0-bdef8492ecc1"
(reference "#PWR024") (unit 1)
)
)
)
)
(symbol (lib_id "0_power:GND") (at 116.84 105.41 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 81579fa5-4284-4698-9eb9-d721eb6c7157)
(property "Reference" "#PWR023" (at 116.84 107.95 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Value" "GND" (at 116.84 104.14 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Footprint" "" (at 116.84 105.41 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 116.84 105.41 0)
(effects (font (size 1.524 1.524)) hide)
)
(pin "1" (uuid 6760b1f9-03e5-4053-a236-d4c8a936e384))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/a2e605ad-55ff-4a42-a2d0-bdef8492ecc1"
(reference "#PWR023") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 116.84 99.06 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 82ff0038-9c76-4ac7-8386-f70b81a2e07b)
(property "Reference" "C40" (at 116.84 96.52 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (at 116.84 101.6 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 117.8052 102.87 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 116.84 99.06 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8b6ae928-7527-4a7d-9477-6ecc0d76ad40))
(pin "2" (uuid 5efaa5e8-b62f-4e1a-83cf-97700e86fd61))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/a2e605ad-55ff-4a42-a2d0-bdef8492ecc1"
(reference "C40") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 161.29 80.01 90) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid cbc08bec-ca16-46ce-8e7e-936309587273)
(property "Reference" "R37" (at 156.21 78.74 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "5.1K" (at 166.37 78.74 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 161.29 78.232 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 161.29 80.01 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 7440ae6c-4caa-4031-b444-a871f28ca38c))
(pin "2" (uuid c1a88411-6ff2-4d3b-97a8-66b7d063dd16))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/a2e605ad-55ff-4a42-a2d0-bdef8492ecc1"
(reference "R37") (unit 1)
)
)
)
)
(symbol (lib_id "0_power:+3V3") (at 113.03 92.71 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid dda23259-506f-4ea6-b850-2068a248a4cb)
(property "Reference" "#PWR022" (at 115.57 92.71 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Value" "+3V3" (at 113.03 92.71 90)
(effects (font (size 1.524 1.524)) (justify left))
)
(property "Footprint" "" (at 113.03 92.71 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 113.03 92.71 0)
(effects (font (size 1.524 1.524)) hide)
)
(pin "1" (uuid 73e36847-df36-4475-ac42-43d3c0a71220))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/a2e605ad-55ff-4a42-a2d0-bdef8492ecc1"
(reference "#PWR022") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 161.29 95.25 90) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid fdc26b75-4725-4665-a05e-235002d49152)
(property "Reference" "R38" (at 156.21 93.98 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "5.1K" (at 166.37 93.98 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 161.29 93.472 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 161.29 95.25 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 18526921-646a-42d9-b658-6e3b8ff8050a))
(pin "2" (uuid ff7834d8-73a4-4a22-96af-14899f9ebaed))
(instances
(project "NUC980DKxxYx_Development_Board"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/a2e605ad-55ff-4a42-a2d0-bdef8492ecc1"
(reference "R38") (unit 1)
)
)
)
)
)