-
Notifications
You must be signed in to change notification settings - Fork 9
/
usb_phy.kicad_sch
2035 lines (1988 loc) · 75.5 KB
/
usb_phy.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 8596d885-19f7-4887-815e-f1fa758334bc)
(paper "A4")
(title_block
(title "${TITLE}")
(date "${DATE}")
(rev "${VERSION}")
(company "${COPYRIGHT}")
(comment 1 "${LICENSE}")
)
(lib_symbols
(symbol "Connector:TestPoint" (pin_numbers hide) (pin_names (offset 0.762) hide) (in_bom yes) (on_board yes)
(property "Reference" "TP" (at 0 6.858 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "TestPoint" (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 5.08 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 5.08 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "test point tp" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "test point" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Pin* Test*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TestPoint_0_1"
(circle (center 0 3.302) (radius 0.762)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "TestPoint_1_1"
(pin passive line (at 0 0 90) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (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))))
)
)
)
(symbol "Device:R_Pack04" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "RN" (at -7.62 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R_Pack04" (at 5.08 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 6.985 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 network parallel topology isolated" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "4 resistor network, parallel topology" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "DIP* SOIC* R*Array*Concave* R*Array*Convex*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_Pack04_0_1"
(rectangle (start -6.35 -2.413) (end 3.81 2.413)
(stroke (width 0.254) (type default))
(fill (type background))
)
(rectangle (start -5.715 1.905) (end -4.445 -1.905)
(stroke (width 0.254) (type default))
(fill (type none))
)
(rectangle (start -3.175 1.905) (end -1.905 -1.905)
(stroke (width 0.254) (type default))
(fill (type none))
)
(rectangle (start -0.635 1.905) (end 0.635 -1.905)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -5.08 -2.54)
(xy -5.08 -1.905)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -5.08 1.905)
(xy -5.08 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.54 -2.54)
(xy -2.54 -1.905)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.54 1.905)
(xy -2.54 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 -2.54)
(xy 0 -1.905)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 1.905)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 -2.54)
(xy 2.54 -1.905)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 1.905)
(xy 2.54 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start 1.905 1.905) (end 3.175 -1.905)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "R_Pack04_1_1"
(pin passive line (at -5.08 -5.08 90) (length 2.54)
(name "R1.1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -2.54 -5.08 90) (length 2.54)
(name "R2.1" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -5.08 90) (length 2.54)
(name "R3.1" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 -5.08 90) (length 2.54)
(name "R4.1" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 5.08 270) (length 2.54)
(name "R4.2" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 5.08 270) (length 2.54)
(name "R3.2" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -2.54 5.08 270) (length 2.54)
(name "R2.2" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 5.08 270) (length 2.54)
(name "R1.2" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3V3" (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" "global power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+3V3\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3V3_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(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 "+3V3_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3V3" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power: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" "global power" (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 "usb:USB3343" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at -12.7 -24.13 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "USB3343" (at 8.89 -24.13 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -16.51 22.86 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/334x.pdf" (at 0 1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "USB, PHY" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "ULPI USB Transciever (PHY)" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "USB3343_0_1"
(rectangle (start -13.97 22.86) (end 13.97 -22.86)
(stroke (width 0) (type default))
(fill (type background))
)
)
(symbol "USB3343_1_1"
(pin output line (at -16.51 -7.62 0) (length 2.54)
(name "DIR" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -16.51 7.62 0) (length 2.54)
(name "DATA5" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -16.51 5.08 0) (length 2.54)
(name "DATA6" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -16.51 2.54 0) (length 2.54)
(name "DATA7" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 16.51 5.08 180) (length 2.54)
(name "D-" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 16.51 7.62 180) (length 2.54)
(name "D+" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 16.51 -20.32 180) (length 2.54)
(name "VDD33" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 16.51 20.32 180) (length 2.54)
(name "VBAT" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 16.51 10.16 180) (length 2.54)
(name "VBUS" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin input line (at 16.51 2.54 180) (length 2.54)
(name "ID" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin input line (at 16.51 -3.81 180) (length 2.54)
(name "RBIAS" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -16.51 -10.16 0) (length 2.54)
(name "CLKOUT" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin output line (at 16.51 -8.89 180) (length 2.54)
(name "XO" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin input line (at 16.51 -11.43 180) (length 2.54)
(name "REFCLK/XI" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin input line (at -16.51 -16.51 0) (length 2.54)
(name "~{RESET}" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 16.51 -17.78 180) (length 2.54)
(name "VDD18" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin input line (at -16.51 -2.54 0) (length 2.54)
(name "STP" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 16.51 15.24 180) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin output line (at -16.51 -5.08 0) (length 2.54)
(name "NXT" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -16.51 20.32 0) (length 2.54)
(name "DATA0" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -16.51 17.78 0) (length 2.54)
(name "DATA1" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -16.51 15.24 0) (length 2.54)
(name "DATA2" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -16.51 12.7 0) (length 2.54)
(name "DATA3" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -16.51 10.16 0) (length 2.54)
(name "DATA4" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 16.51 17.78 180) (length 2.54)
(name "VDDIO" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 179.07 59.69) (diameter 0) (color 0 0 0 0)
(uuid 1689bbda-837d-48cb-b026-237b14f68abf)
)
(junction (at 204.47 100.33) (diameter 0) (color 0 0 0 0)
(uuid 1f1de92c-3307-425d-86c8-0433d274a970)
)
(junction (at 143.51 151.13) (diameter 0) (color 0 0 0 0)
(uuid 50755080-413a-4f33-9561-4e5dbe2da87a)
)
(junction (at 143.51 161.29) (diameter 0) (color 0 0 0 0)
(uuid 6d92f2fc-44fe-4afb-902d-178895a1261c)
)
(junction (at 195.58 97.79) (diameter 0) (color 0 0 0 0)
(uuid 98d53957-679e-42c7-9f8c-06c152475d58)
)
(junction (at 125.73 102.87) (diameter 0) (color 0 0 0 0)
(uuid a851cbb6-ea85-41c6-867a-3408fc8ccaa8)
)
(junction (at 184.15 100.33) (diameter 0) (color 0 0 0 0)
(uuid ca93f791-60d7-4e42-ac34-1921c21ba4e5)
)
(no_connect (at 173.99 88.9) (uuid 7ef69f77-6dff-40b4-8ef1-0fc19e4c55d2))
(bus_entry (at 86.36 77.47) (size 2.54 -2.54)
(stroke (width 0) (type default))
(uuid 01f8ee76-8691-4754-9e8e-5db3cc1dfeb6)
)
(bus_entry (at 88.9 53.34) (size -2.54 2.54)
(stroke (width 0) (type default))
(uuid 2012bac7-f99b-43bb-832c-3b382cc2e8a7)
)
(bus_entry (at 86.36 58.42) (size 2.54 -2.54)
(stroke (width 0) (type default))
(uuid 2633e139-8d16-493b-84cb-be816b244213)
)
(bus_entry (at 86.36 74.93) (size 2.54 -2.54)
(stroke (width 0) (type default))
(uuid 3ab6bbb2-05be-4d3b-81cf-124968d43d2e)
)
(bus_entry (at 86.36 63.5) (size 2.54 -2.54)
(stroke (width 0) (type default))
(uuid 3d82c81f-0c53-408a-8ab8-9c3526d20046)
)
(bus_entry (at 86.36 92.71) (size 2.54 -2.54)
(stroke (width 0) (type default))
(uuid 408f42f4-4d5a-48a2-a417-f962515fee8d)
)
(bus_entry (at 86.36 97.79) (size 2.54 -2.54)
(stroke (width 0) (type default))
(uuid 5d310e92-954f-496a-a0ef-967ceb7f18c9)
)
(bus_entry (at 86.36 105.41) (size 2.54 -2.54)
(stroke (width 0) (type default))
(uuid 64301742-49bc-4ee2-8358-a810102c80f3)
)
(bus_entry (at 86.36 72.39) (size 2.54 -2.54)
(stroke (width 0) (type default))
(uuid 6e20cb3f-edf2-43fe-aa68-1b2437a1acf5)
)
(bus_entry (at 88.9 97.79) (size -2.54 2.54)
(stroke (width 0) (type default))
(uuid ac3c1934-1713-4f79-a5a0-292ba651fcec)
)
(bus_entry (at 86.36 80.01) (size 2.54 -2.54)
(stroke (width 0) (type default))
(uuid bfd34920-4a00-48a5-bbe8-b0fc0a04bc83)
)
(bus_entry (at 86.36 95.25) (size 2.54 -2.54)
(stroke (width 0) (type default))
(uuid d45f9331-dddb-46d3-ab96-ec2c359b8239)
)
(bus_entry (at 86.36 60.96) (size 2.54 -2.54)
(stroke (width 0) (type default))
(uuid e8a4aa52-783b-4759-b279-af1929927cc2)
)
(wire (pts (xy 140.97 82.55) (xy 120.65 82.55))
(stroke (width 0) (type default))
(uuid 02321532-236d-4a91-aefb-79a76a60b9dc)
)
(wire (pts (xy 201.93 62.23) (xy 203.2 62.23))
(stroke (width 0) (type default))
(uuid 032ec50f-6974-4d2f-8fbd-06f7ee0dfed3)
)
(wire (pts (xy 187.96 83.82) (xy 173.99 83.82))
(stroke (width 0) (type default))
(uuid 0499443f-c4e1-4834-ae7b-41d3f0050325)
)
(wire (pts (xy 173.99 100.33) (xy 184.15 100.33))
(stroke (width 0) (type default))
(uuid 0b0821c1-fa32-415b-8711-0af4011de9fa)
)
(bus (pts (xy 86.36 97.79) (xy 86.36 100.33))
(stroke (width 0) (type default))
(uuid 0c8ac939-eda2-44b4-8d3b-5d2a4aa1f4cf)
)
(wire (pts (xy 195.58 110.49) (xy 195.58 109.22))
(stroke (width 0) (type default))
(uuid 0e7d24f0-c690-4b9a-aadb-1ede5652b9a5)
)
(wire (pts (xy 207.01 102.87) (xy 204.47 102.87))
(stroke (width 0) (type default))
(uuid 12d729a2-3d95-4fd8-8ed3-822b894defb3)
)
(wire (pts (xy 120.65 92.71) (xy 118.11 92.71))
(stroke (width 0) (type default))
(uuid 14b66e36-313e-4f1a-8e6f-a6aa581389c5)
)
(wire (pts (xy 173.99 59.69) (xy 179.07 59.69))
(stroke (width 0) (type default))
(uuid 1735ebc9-4097-4ab0-b6bb-94097522b5fe)
)
(bus (pts (xy 86.36 58.42) (xy 86.36 60.96))
(stroke (width 0) (type default))
(uuid 2003ebcd-c651-4de1-ba38-4216739a56e6)
)
(bus (pts (xy 86.36 72.39) (xy 86.36 74.93))
(stroke (width 0) (type default))
(uuid 202690ed-f206-46ff-b1b2-6bd6b4f4b39e)
)
(wire (pts (xy 107.95 97.79) (xy 88.9 97.79))
(stroke (width 0) (type default))
(uuid 252f1599-2091-4713-bb4f-f0747600d19e)
)
(wire (pts (xy 173.99 74.93) (xy 175.26 74.93))
(stroke (width 0) (type default))
(uuid 26258a44-095b-4ecd-bc88-59ad2b2790dd)
)
(wire (pts (xy 195.58 97.79) (xy 207.01 97.79))
(stroke (width 0) (type default))
(uuid 28b7b3a8-6d55-4870-8aca-0b612cbd3e7a)
)
(wire (pts (xy 154.94 161.29) (xy 143.51 161.29))
(stroke (width 0) (type default))
(uuid 29f6c7f6-3134-4a28-ad00-1c0e0449f08c)
)
(wire (pts (xy 118.11 90.17) (xy 128.27 90.17))
(stroke (width 0) (type default))
(uuid 2eac1949-3079-4b03-83f0-7aa3f029302a)
)
(wire (pts (xy 125.73 102.87) (xy 135.89 102.87))
(stroke (width 0) (type default))
(uuid 33323616-030e-48ed-af95-73cac4bac30c)
)
(wire (pts (xy 125.73 55.88) (xy 125.73 62.23))
(stroke (width 0) (type default))
(uuid 3408f67a-e029-4c7c-8325-e1ac7a327089)
)
(wire (pts (xy 125.73 114.3) (xy 125.73 113.03))
(stroke (width 0) (type default))
(uuid 34d0576c-cd99-4810-aa04-88342d9a5622)
)
(wire (pts (xy 107.95 74.93) (xy 88.9 74.93))
(stroke (width 0) (type default))
(uuid 36c500ad-9217-4801-aeab-fb5f1753f045)
)
(wire (pts (xy 140.97 87.63) (xy 123.19 87.63))
(stroke (width 0) (type default))
(uuid 373ca372-2c49-45fa-b942-4717909b5073)
)
(wire (pts (xy 179.07 59.69) (xy 179.07 53.34))
(stroke (width 0) (type default))
(uuid 3d0ccf56-3da9-4655-9aaf-1cbd9e84cb5d)
)
(wire (pts (xy 143.51 160.02) (xy 143.51 161.29))
(stroke (width 0) (type default))
(uuid 3f7f06e2-d5c2-42cc-b83e-98de5fb1ab6e)
)
(wire (pts (xy 184.15 100.33) (xy 184.15 101.6))
(stroke (width 0) (type default))
(uuid 427aa117-b294-4163-92ae-1beaa4aed924)
)
(wire (pts (xy 88.9 60.96) (xy 107.95 60.96))
(stroke (width 0) (type default))
(uuid 445f30c6-7994-48e4-a817-fdac42ff4575)
)
(wire (pts (xy 204.47 100.33) (xy 204.47 95.25))
(stroke (width 0) (type default))
(uuid 461d0b56-8196-4ca9-aec8-ceca870b6435)
)
(wire (pts (xy 204.47 100.33) (xy 184.15 100.33))
(stroke (width 0) (type default))
(uuid 469d2e40-fb51-4f13-a77b-6ee48c462da2)
)
(wire (pts (xy 107.95 92.71) (xy 88.9 92.71))
(stroke (width 0) (type default))
(uuid 50e1fbbb-99ac-4eea-9355-619c98adc5dc)
)
(wire (pts (xy 184.15 110.49) (xy 184.15 109.22))
(stroke (width 0) (type default))
(uuid 518a89df-1afe-41ad-a3a3-ba15f982db26)
)
(wire (pts (xy 135.89 102.87) (xy 135.89 96.52))
(stroke (width 0) (type default))
(uuid 52e64678-9c1b-48a3-80bf-8b5372a10f39)
)
(wire (pts (xy 128.27 90.17) (xy 128.27 105.41))
(stroke (width 0) (type default))
(uuid 55f0293b-daed-4ee0-b516-f7f52e8f7e5f)
)
(wire (pts (xy 173.99 77.47) (xy 175.26 77.47))
(stroke (width 0) (type default))
(uuid 56ce0064-1b3e-4cb0-873d-b126c753949d)
)
(wire (pts (xy 123.19 58.42) (xy 123.19 64.77))
(stroke (width 0) (type default))
(uuid 574ff51b-4abf-4b0c-8e55-0dc99c3e9736)
)
(wire (pts (xy 107.95 69.85) (xy 88.9 69.85))
(stroke (width 0) (type default))
(uuid 57d54e28-b4fd-4089-82cc-0eb38e95f7ac)
)
(wire (pts (xy 179.07 62.23) (xy 179.07 59.69))
(stroke (width 0) (type default))
(uuid 57ef3721-d3c8-4fbc-9380-161a1ae4e42d)
)
(wire (pts (xy 154.94 151.13) (xy 154.94 152.4))
(stroke (width 0) (type default))
(uuid 58e0c1c4-dfde-4e11-807f-e5138919a658)
)
(bus (pts (xy 86.36 95.25) (xy 86.36 97.79))
(stroke (width 0) (type default))
(uuid 5937b655-5121-46cf-a91f-064446f460b0)
)
(wire (pts (xy 107.95 53.34) (xy 88.9 53.34))
(stroke (width 0) (type default))
(uuid 5c5ef18c-0932-4c5c-a7dd-9c5df6566a48)
)
(bus (pts (xy 86.36 105.41) (xy 86.36 107.95))
(stroke (width 0) (type default))
(uuid 5c8e879c-4a0a-49f0-aa07-5241a5a7c1b6)
)
(wire (pts (xy 143.51 151.13) (xy 143.51 152.4))
(stroke (width 0) (type default))
(uuid 5d025024-7df2-490d-b303-d0fc7b683575)
)
(wire (pts (xy 191.77 69.85) (xy 173.99 69.85))
(stroke (width 0) (type default))
(uuid 5d11d597-aa82-4276-b4a8-edabb035d9a6)
)
(wire (pts (xy 107.95 72.39) (xy 88.9 72.39))
(stroke (width 0) (type default))
(uuid 5dfe3b05-4050-495d-bf86-f91d73afc04c)
)
(bus (pts (xy 86.36 74.93) (xy 86.36 77.47))
(stroke (width 0) (type default))
(uuid 658af57e-06d3-4b82-a0a4-0fa97a408f3a)
)
(wire (pts (xy 118.11 60.96) (xy 120.65 60.96))
(stroke (width 0) (type default))
(uuid 69cc0f91-03c1-4123-8496-46cae1155e47)
)
(wire (pts (xy 125.73 85.09) (xy 125.73 97.79))
(stroke (width 0) (type default))
(uuid 716844f3-c455-4c4b-9d93-0282625a7fd4)
)
(bus (pts (xy 86.36 80.01) (xy 86.36 92.71))
(stroke (width 0) (type default))
(uuid 73e71da5-b84c-4ecc-9b58-f8e3322e757b)
)
(wire (pts (xy 143.51 151.13) (xy 154.94 151.13))
(stroke (width 0) (type default))
(uuid 7b0f30a0-c7c8-438d-8f44-ff5783121267)
)
(wire (pts (xy 173.99 64.77) (xy 175.26 64.77))
(stroke (width 0) (type default))
(uuid 7dda30e9-f3b6-4846-80cb-ae6a3e595240)
)
(bus (pts (xy 86.36 100.33) (xy 86.36 105.41))
(stroke (width 0) (type default))
(uuid 7f32d4e4-e8b4-4769-896a-2974b9cf136e)
)
(wire (pts (xy 154.94 160.02) (xy 154.94 161.29))
(stroke (width 0) (type default))
(uuid 85346c13-bb69-4430-b53f-4dddbb1951b9)
)
(wire (pts (xy 140.97 72.39) (xy 118.11 72.39))
(stroke (width 0) (type default))
(uuid 857f438a-2d36-4604-bfbd-ec7dbc084d0e)
)
(wire (pts (xy 88.9 102.87) (xy 125.73 102.87))
(stroke (width 0) (type default))
(uuid 8dbbd5c3-7df9-4155-935a-3b25f56b63de)
)
(bus (pts (xy 86.36 92.71) (xy 86.36 95.25))
(stroke (width 0) (type default))
(uuid 8e2c076b-596e-4b84-add8-7cc1cb942428)
)
(wire (pts (xy 191.77 69.85) (xy 191.77 62.23))
(stroke (width 0) (type default))
(uuid 8fc5ab63-7d0a-4250-ae84-f7bdef78819f)
)
(wire (pts (xy 140.97 69.85) (xy 118.11 69.85))
(stroke (width 0) (type default))
(uuid 903b28fd-a329-4ed4-bd3a-682ac71327db)
)
(wire (pts (xy 179.07 62.23) (xy 173.99 62.23))
(stroke (width 0) (type default))
(uuid 91042ce4-d725-43cd-9c40-3fad8cdbae6c)
)
(wire (pts (xy 125.73 105.41) (xy 125.73 102.87))
(stroke (width 0) (type default))
(uuid 934e3bae-1d50-4834-9aa5-2f6fc0ce462d)
)
(wire (pts (xy 118.11 58.42) (xy 123.19 58.42))
(stroke (width 0) (type default))
(uuid 979d5f62-3e58-483d-8f29-4c54e1f4e493)
)
(wire (pts (xy 173.99 97.79) (xy 195.58 97.79))
(stroke (width 0) (type default))
(uuid 9b5c21a9-1bdb-4405-8e6f-fcadbc016ab9)
)
(wire (pts (xy 191.77 62.23) (xy 194.31 62.23))
(stroke (width 0) (type default))
(uuid 9bd7943e-0ca6-4cff-8cf6-7b9183d78d4b)
)
(wire (pts (xy 128.27 105.41) (xy 176.53 105.41))
(stroke (width 0) (type default))
(uuid 9d079327-9849-42f8-a412-feac4045daa4)
)
(wire (pts (xy 204.47 102.87) (xy 204.47 100.33))
(stroke (width 0) (type default))
(uuid 9e795534-19a6-4822-970d-192870a1ff26)
)
(wire (pts (xy 107.95 58.42) (xy 88.9 58.42))
(stroke (width 0) (type default))
(uuid 9f77fc19-d71a-4311-aff0-046777eb8580)
)
(wire (pts (xy 107.95 77.47) (xy 88.9 77.47))
(stroke (width 0) (type default))
(uuid 9fbc416e-15f1-4869-a7db-dcec0f0f4182)
)
(wire (pts (xy 125.73 62.23) (xy 140.97 62.23))
(stroke (width 0) (type default))
(uuid a34c65e4-33b9-418d-b22a-9ae01e8681b3)
)
(wire (pts (xy 140.97 96.52) (xy 135.89 96.52))
(stroke (width 0) (type default))
(uuid a8574629-fc3c-4f26-879d-e2164741c46f)
)
(wire (pts (xy 140.97 74.93) (xy 118.11 74.93))
(stroke (width 0) (type default))
(uuid a88b8ff1-64af-4d98-94de-eeb752cc6c66)
)
(wire (pts (xy 128.27 59.69) (xy 140.97 59.69))
(stroke (width 0) (type default))
(uuid ab5dbe49-ecdb-448d-b7f2-8f34abf43dda)
)
(bus (pts (xy 83.82 107.95) (xy 86.36 107.95))
(stroke (width 0) (type default))
(uuid acd9862a-a2f7-4350-9d98-fc2e92329a63)
)
(wire (pts (xy 120.65 82.55) (xy 120.65 92.71))
(stroke (width 0) (type default))
(uuid aee7ef79-9145-453d-8049-0507d10473a6)
)
(wire (pts (xy 120.65 60.96) (xy 120.65 67.31))
(stroke (width 0) (type default))
(uuid b16356ec-8358-4b94-b6c6-899090fbb0bd)
)
(wire (pts (xy 118.11 55.88) (xy 125.73 55.88))
(stroke (width 0) (type default))
(uuid b630f551-335d-4c5d-849b-d4c5f2cded9b)
)
(bus (pts (xy 86.36 63.5) (xy 86.36 72.39))
(stroke (width 0) (type default))
(uuid b6a4cd0e-0a52-423a-88b0-2a9d1a122d84)
)
(wire (pts (xy 118.11 53.34) (xy 128.27 53.34))
(stroke (width 0) (type default))
(uuid baf12968-9e18-4f30-8feb-9ad7cb1b651d)
)
(wire (pts (xy 128.27 53.34) (xy 128.27 59.69))
(stroke (width 0) (type default))
(uuid c3261d87-0a37-4162-85ae-baeae7770051)
)
(wire (pts (xy 123.19 95.25) (xy 118.11 95.25))
(stroke (width 0) (type default))
(uuid c4fa97cb-9349-42b3-bea2-5a01b636d3dd)
)
(bus (pts (xy 86.36 60.96) (xy 86.36 63.5))
(stroke (width 0) (type default))
(uuid c81bd7dd-aa28-4155-ae37-ae0b37f42b91)
)
(wire (pts (xy 176.53 105.41) (xy 176.53 91.44))
(stroke (width 0) (type default))
(uuid c84c915a-c1d6-4012-b079-b0fdbde1e4a1)
)
(wire (pts (xy 125.73 97.79) (xy 118.11 97.79))
(stroke (width 0) (type default))
(uuid c98830f3-135c-43ee-b606-6004c05e2996)
)
(wire (pts (xy 88.9 55.88) (xy 107.95 55.88))
(stroke (width 0) (type default))
(uuid c9a7c19d-a4b9-4c1f-82ad-447c23b2bd1c)
)
(wire (pts (xy 107.95 90.17) (xy 88.9 90.17))
(stroke (width 0) (type default))
(uuid cc193e0b-f1e9-44ce-9905-ec1059b5e7a8)
)
(wire (pts (xy 173.99 91.44) (xy 176.53 91.44))
(stroke (width 0) (type default))
(uuid d5613870-6a5d-4dce-b81a-5141d9ee83b5)
)
(wire (pts (xy 195.58 101.6) (xy 195.58 97.79))
(stroke (width 0) (type default))
(uuid d9fe1812-1d02-4e55-8303-5bea019dea63)
)
(wire (pts (xy 118.11 77.47) (xy 140.97 77.47))
(stroke (width 0) (type default))
(uuid dc4b182b-cab9-45ef-8b5c-267b538831b4)
)
(wire (pts (xy 120.65 67.31) (xy 140.97 67.31))
(stroke (width 0) (type default))
(uuid dd628f62-4ff5-4bc1-88f2-8d15176de78e)
)
(bus (pts (xy 86.36 55.88) (xy 86.36 58.42))
(stroke (width 0) (type default))
(uuid de70d816-f5f7-4837-a15e-d2d25030794f)
)
(wire (pts (xy 143.51 149.86) (xy 143.51 151.13))
(stroke (width 0) (type default))
(uuid e10da35c-8206-4665-8b5e-a393518bf6fd)
)
(wire (pts (xy 107.95 95.25) (xy 88.9 95.25))
(stroke (width 0) (type default))
(uuid e2a30cc0-1c0c-4040-8728-7cdfd7ecf5ea)
)
(wire (pts (xy 123.19 64.77) (xy 140.97 64.77))
(stroke (width 0) (type default))
(uuid eab2eba9-899f-4fe4-be34-8bc253200dfb)
)
(bus (pts (xy 86.36 77.47) (xy 86.36 80.01))
(stroke (width 0) (type default))
(uuid eb2d96e6-25b7-46f5-a4a5-3c83dd15bd73)
)
(wire (pts (xy 200.66 83.82) (xy 195.58 83.82))
(stroke (width 0) (type default))
(uuid f238ae02-e76b-4e76-9904-ec8d8256edd8)
)
(wire (pts (xy 123.19 87.63) (xy 123.19 95.25))
(stroke (width 0) (type default))
(uuid f266c67e-c508-4c21-8e5b-c8c1163966ea)
)
(wire (pts (xy 140.97 90.17) (xy 139.7 90.17))
(stroke (width 0) (type default))
(uuid f474007d-a4c4-442c-842b-d4e82fea8e06)
)
(wire (pts (xy 143.51 161.29) (xy 143.51 162.56))
(stroke (width 0) (type default))
(uuid f6c4826c-4b68-42bc-9f4b-df3cf56494b8)
)
(wire (pts (xy 140.97 85.09) (xy 125.73 85.09))
(stroke (width 0) (type default))
(uuid f72be80c-c56f-4c50-bb18-bd929f85abc5)
)
(wire (pts (xy 173.99 72.39) (xy 175.26 72.39))
(stroke (width 0) (type default))
(uuid fbb3c6ff-648c-40ea-ab23-34886a4db506)
)
(label "PHY.DATA1" (at 92.71 55.88 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 34981474-0566-4c2b-809b-816d797e09ec)
)
(label "PHY.DATA4" (at 92.71 69.85 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 54267761-5a16-4129-9010-0d17579f3a3f)
)
(label "CLK" (at 130.81 105.41 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 6c1300f2-9dbd-4db6-b11e-44584dac93f9)
)
(label "PHY.DIR" (at 92.71 95.25 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 6d634a25-76b8-46e8-8df7-e602c1c529c5)
)
(label "NXT" (at 130.81 85.09 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 73113922-49cb-4797-9589-43a078bf47aa)
)