-
Notifications
You must be signed in to change notification settings - Fork 3
/
mainboard.kicad_sch
1324 lines (1274 loc) · 44.6 KB
/
mainboard.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 fb621148-8145-4217-9712-738e1b5a4823)
(paper "A4")
(title_block
(title "${TITLE}")
(date "${DATE}")
(rev "${VERSION}")
(company "${COPYRIGHT}")
(comment 1 "${LICENSE}")
)
(lib_symbols
(symbol "Graphic:Logo_Open_Hardware_Small" (in_bom no) (on_board no)
(property "Reference" "#SYM" (at 0 6.985 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "Logo_Open_Hardware_Small" (at 0 -5.715 0)
(effects (font (size 1.27 1.27)) hide)
)
(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 "Sim.Enable" "0" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "Logo" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Open Hardware logo, small" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Logo_Open_Hardware_Small_0_1"
(polyline
(pts
(xy 3.3528 -4.3434)
(xy 3.302 -4.318)
(xy 3.175 -4.2418)
(xy 2.9972 -4.1148)
(xy 2.7686 -3.9624)
(xy 2.54 -3.81)
(xy 2.3622 -3.7084)
(xy 2.2352 -3.6068)
(xy 2.1844 -3.5814)
(xy 2.159 -3.6068)
(xy 2.0574 -3.6576)
(xy 1.905 -3.7338)
(xy 1.8034 -3.7846)
(xy 1.6764 -3.8354)
(xy 1.6002 -3.8354)
(xy 1.6002 -3.8354)
(xy 1.5494 -3.7338)
(xy 1.4732 -3.5306)
(xy 1.3462 -3.302)
(xy 1.2446 -3.0226)
(xy 1.1176 -2.7178)
(xy 0.9652 -2.413)
(xy 0.8636 -2.1082)
(xy 0.7366 -1.8288)
(xy 0.6604 -1.6256)
(xy 0.6096 -1.4732)
(xy 0.5842 -1.397)
(xy 0.5842 -1.397)
(xy 0.6604 -1.3208)
(xy 0.7874 -1.2446)
(xy 1.0414 -1.016)
(xy 1.2954 -0.6858)
(xy 1.4478 -0.3302)
(xy 1.524 0.0762)
(xy 1.4732 0.4572)
(xy 1.3208 0.8128)
(xy 1.0668 1.143)
(xy 0.762 1.3716)
(xy 0.4064 1.524)
(xy 0 1.5748)
(xy -0.381 1.5494)
(xy -0.7366 1.397)
(xy -1.0668 1.143)
(xy -1.2192 0.9906)
(xy -1.397 0.6604)
(xy -1.524 0.3048)
(xy -1.524 0.2286)
(xy -1.4986 -0.1778)
(xy -1.397 -0.5334)
(xy -1.1938 -0.8636)
(xy -0.9144 -1.143)
(xy -0.8636 -1.1684)
(xy -0.7366 -1.27)
(xy -0.635 -1.3462)
(xy -0.5842 -1.397)
(xy -1.0668 -2.5908)
(xy -1.143 -2.794)
(xy -1.2954 -3.1242)
(xy -1.397 -3.4036)
(xy -1.4986 -3.6322)
(xy -1.5748 -3.7846)
(xy -1.6002 -3.8354)
(xy -1.6002 -3.8354)
(xy -1.651 -3.8354)
(xy -1.7272 -3.81)
(xy -1.905 -3.7338)
(xy -2.0066 -3.683)
(xy -2.1336 -3.6068)
(xy -2.2098 -3.5814)
(xy -2.2606 -3.6068)
(xy -2.3622 -3.683)
(xy -2.54 -3.81)
(xy -2.7686 -3.9624)
(xy -2.9718 -4.0894)
(xy -3.1496 -4.2164)
(xy -3.302 -4.318)
(xy -3.3528 -4.3434)
(xy -3.3782 -4.3434)
(xy -3.429 -4.318)
(xy -3.5306 -4.2164)
(xy -3.7084 -4.064)
(xy -3.937 -3.8354)
(xy -3.9624 -3.81)
(xy -4.1656 -3.6068)
(xy -4.318 -3.4544)
(xy -4.4196 -3.3274)
(xy -4.445 -3.2766)
(xy -4.445 -3.2766)
(xy -4.4196 -3.2258)
(xy -4.318 -3.0734)
(xy -4.2164 -2.8956)
(xy -4.064 -2.667)
(xy -3.6576 -2.0828)
(xy -3.8862 -1.5494)
(xy -3.937 -1.3716)
(xy -4.0386 -1.1684)
(xy -4.0894 -1.0414)
(xy -4.1148 -0.9652)
(xy -4.191 -0.9398)
(xy -4.318 -0.9144)
(xy -4.5466 -0.8636)
(xy -4.8006 -0.8128)
(xy -5.0546 -0.7874)
(xy -5.2578 -0.7366)
(xy -5.4356 -0.7112)
(xy -5.5118 -0.6858)
(xy -5.5118 -0.6858)
(xy -5.5372 -0.635)
(xy -5.5372 -0.5588)
(xy -5.5372 -0.4318)
(xy -5.5626 -0.2286)
(xy -5.5626 0.0762)
(xy -5.5626 0.127)
(xy -5.5372 0.4064)
(xy -5.5372 0.635)
(xy -5.5372 0.762)
(xy -5.5372 0.8382)
(xy -5.5372 0.8382)
(xy -5.461 0.8382)
(xy -5.3086 0.889)
(xy -5.08 0.9144)
(xy -4.826 0.9652)
(xy -4.8006 0.9906)
(xy -4.5466 1.0414)
(xy -4.318 1.0668)
(xy -4.1656 1.1176)
(xy -4.0894 1.143)
(xy -4.0894 1.143)
(xy -4.0386 1.2446)
(xy -3.9624 1.4224)
(xy -3.8608 1.6256)
(xy -3.7846 1.8288)
(xy -3.7084 2.0066)
(xy -3.6576 2.159)
(xy -3.6322 2.2098)
(xy -3.6322 2.2098)
(xy -3.683 2.286)
(xy -3.7592 2.413)
(xy -3.8862 2.5908)
(xy -4.064 2.8194)
(xy -4.064 2.8448)
(xy -4.2164 3.0734)
(xy -4.3434 3.2512)
(xy -4.4196 3.3782)
(xy -4.445 3.4544)
(xy -4.445 3.4544)
(xy -4.3942 3.5052)
(xy -4.2926 3.6322)
(xy -4.1148 3.81)
(xy -3.937 4.0132)
(xy -3.8608 4.064)
(xy -3.6576 4.2926)
(xy -3.5052 4.4196)
(xy -3.4036 4.4958)
(xy -3.3528 4.5212)
(xy -3.3528 4.5212)
(xy -3.302 4.4704)
(xy -3.1496 4.3688)
(xy -2.9718 4.2418)
(xy -2.7432 4.0894)
(xy -2.7178 4.0894)
(xy -2.4892 3.937)
(xy -2.3114 3.81)
(xy -2.1844 3.7084)
(xy -2.1336 3.683)
(xy -2.1082 3.683)
(xy -2.032 3.7084)
(xy -1.8542 3.7592)
(xy -1.6764 3.8354)
(xy -1.4732 3.937)
(xy -1.27 4.0132)
(xy -1.143 4.064)
(xy -1.0668 4.1148)
(xy -1.0668 4.1148)
(xy -1.0414 4.191)
(xy -1.016 4.3434)
(xy -0.9652 4.572)
(xy -0.9144 4.8514)
(xy -0.889 4.9022)
(xy -0.8382 5.1562)
(xy -0.8128 5.3848)
(xy -0.7874 5.5372)
(xy -0.762 5.588)
(xy -0.7112 5.6134)
(xy -0.5842 5.6134)
(xy -0.4064 5.6134)
(xy -0.1524 5.6134)
(xy 0.0762 5.6134)
(xy 0.3302 5.6134)
(xy 0.5334 5.6134)
(xy 0.6858 5.588)
(xy 0.7366 5.588)
(xy 0.7366 5.588)
(xy 0.762 5.5118)
(xy 0.8128 5.334)
(xy 0.8382 5.1054)
(xy 0.9144 4.826)
(xy 0.9144 4.7752)
(xy 0.9652 4.5212)
(xy 1.016 4.2926)
(xy 1.0414 4.1402)
(xy 1.0668 4.0894)
(xy 1.0668 4.0894)
(xy 1.1938 4.0386)
(xy 1.3716 3.9624)
(xy 1.5748 3.8608)
(xy 2.0828 3.6576)
(xy 2.7178 4.0894)
(xy 2.7686 4.1402)
(xy 2.9972 4.2926)
(xy 3.175 4.4196)
(xy 3.302 4.4958)
(xy 3.3782 4.5212)
(xy 3.3782 4.5212)
(xy 3.429 4.4704)
(xy 3.556 4.3434)
(xy 3.7338 4.191)
(xy 3.9116 3.9878)
(xy 4.064 3.8354)
(xy 4.2418 3.6576)
(xy 4.3434 3.556)
(xy 4.4196 3.4798)
(xy 4.4196 3.429)
(xy 4.4196 3.4036)
(xy 4.3942 3.3274)
(xy 4.2926 3.2004)
(xy 4.1656 2.9972)
(xy 4.0132 2.794)
(xy 3.8862 2.5908)
(xy 3.7592 2.3876)
(xy 3.6576 2.2352)
(xy 3.6322 2.159)
(xy 3.6322 2.1336)
(xy 3.683 2.0066)
(xy 3.7592 1.8288)
(xy 3.8608 1.6002)
(xy 4.064 1.1176)
(xy 4.3942 1.0414)
(xy 4.5974 1.016)
(xy 4.8768 0.9652)
(xy 5.1308 0.9144)
(xy 5.5372 0.8382)
(xy 5.5626 -0.6604)
(xy 5.4864 -0.6858)
(xy 5.4356 -0.6858)
(xy 5.2832 -0.7366)
(xy 5.0546 -0.762)
(xy 4.8006 -0.8128)
(xy 4.5974 -0.8636)
(xy 4.3688 -0.9144)
(xy 4.2164 -0.9398)
(xy 4.1402 -0.9398)
(xy 4.1148 -0.9652)
(xy 4.064 -1.0668)
(xy 3.9878 -1.2446)
(xy 3.9116 -1.4478)
(xy 3.81 -1.651)
(xy 3.7338 -1.8542)
(xy 3.683 -2.0066)
(xy 3.6576 -2.0828)
(xy 3.683 -2.1336)
(xy 3.7846 -2.2606)
(xy 3.8862 -2.4638)
(xy 4.0386 -2.667)
(xy 4.191 -2.8956)
(xy 4.318 -3.0734)
(xy 4.3942 -3.2004)
(xy 4.445 -3.2766)
(xy 4.4196 -3.3274)
(xy 4.3434 -3.429)
(xy 4.1656 -3.5814)
(xy 3.937 -3.8354)
(xy 3.8862 -3.8608)
(xy 3.683 -4.064)
(xy 3.5306 -4.2164)
(xy 3.4036 -4.318)
(xy 3.3528 -4.3434)
)
(stroke (width 0) (type default))
(fill (type outline))
)
)
)
)
(bus_alias "JTAG" (members "TMS" "TCK" "TDI" "TDO"))
(bus_alias "SPI" (members "POCI" "PICO" "SCK" "~{CS}"))
(bus_alias "Type_C" (members "SDA" "SCL" "SBU1S" "SBU2S" "~{INT}" "~{FAULT}"))
(bus_alias "ULPI" (members "DATA[0..7]" "CLK" "DIR" "STP" "NXT" "~{RESET}"))
(junction (at 96.52 57.15) (diameter 0) (color 0 0 0 0)
(uuid 20f7eba1-3a56-410e-8b6e-24f9c63d4f27)
)
(wire (pts (xy 93.98 82.55) (xy 102.87 82.55))
(stroke (width 0) (type default))
(uuid 063c36d6-f6b2-4dfc-be96-2b59730b9f7f)
)
(wire (pts (xy 78.74 74.93) (xy 81.28 74.93))
(stroke (width 0) (type default))
(uuid 08f16ff7-551b-4bae-b076-0937f123b890)
)
(wire (pts (xy 78.74 144.78) (xy 120.65 144.78))
(stroke (width 0) (type default))
(uuid 0a9e5fe8-bd76-419e-ae7a-a7804081b51d)
)
(wire (pts (xy 25.4 67.31) (xy 25.4 161.29))
(stroke (width 0) (type default))
(uuid 0ded7616-76b6-4a72-9953-2ad89499b3a8)
)
(bus (pts (xy 208.28 93.98) (xy 208.28 137.16))
(stroke (width 0) (type default))
(uuid 0e71e10d-c576-41ba-a9d9-131d4e5d4710)
)
(wire (pts (xy 200.66 142.24) (xy 172.72 142.24))
(stroke (width 0) (type default))
(uuid 119d7a5d-3c87-4e0e-8cc3-3a9b5094d7b3)
)
(bus (pts (xy 210.82 134.62) (xy 172.72 134.62))
(stroke (width 0) (type default))
(uuid 12539975-8dd5-43ba-9847-c624af32d0f4)
)
(bus (pts (xy 213.36 132.08) (xy 172.72 132.08))
(stroke (width 0) (type default))
(uuid 14503b4b-fa50-43c3-90be-05ea62bbdbc0)
)
(wire (pts (xy 78.74 139.7) (xy 120.65 139.7))
(stroke (width 0) (type default))
(uuid 1709ca59-762a-4754-b25e-603a9200394e)
)
(wire (pts (xy 83.82 87.63) (xy 78.74 87.63))
(stroke (width 0) (type default))
(uuid 175a6ab5-3998-48bf-adf0-33e399fa7c89)
)
(wire (pts (xy 81.28 137.16) (xy 81.28 100.33))
(stroke (width 0) (type default))
(uuid 17efc0e0-ceab-432a-a1f0-7e5ef8b119f3)
)
(bus (pts (xy 35.56 54.61) (xy 33.02 54.61))
(stroke (width 0) (type default))
(uuid 1c5c154a-de7d-4b1d-81c0-609f602e6246)
)
(bus (pts (xy 208.28 137.16) (xy 172.72 137.16))
(stroke (width 0) (type default))
(uuid 1d2b7486-504f-47c3-9953-7cbbf61010ff)
)
(wire (pts (xy 83.82 72.39) (xy 83.82 87.63))
(stroke (width 0) (type default))
(uuid 1f607821-edf8-437e-89d0-916d41180111)
)
(wire (pts (xy 78.74 72.39) (xy 83.82 72.39))
(stroke (width 0) (type default))
(uuid 223c8987-88f6-4b3f-b33a-df9a0e851124)
)
(wire (pts (xy 35.56 59.69) (xy 30.48 59.69))
(stroke (width 0) (type default))
(uuid 2c115bc0-65c1-494d-ba1d-2939c56cedc4)
)
(wire (pts (xy 27.94 38.1) (xy 35.56 38.1))
(stroke (width 0) (type default))
(uuid 2e11cb94-54e3-49f2-a659-1fb3c4cbd4a1)
)
(bus (pts (xy 198.12 110.49) (xy 198.12 144.78))
(stroke (width 0) (type default))
(uuid 31a88fa7-3212-4686-8bf8-8826cd6080d4)
)
(wire (pts (xy 241.3 133.35) (xy 236.22 133.35))
(stroke (width 0) (type default))
(uuid 38410f2d-8112-435f-b952-21da0da9fff0)
)
(polyline (pts (xy 99.06 38.1) (xy 193.04 38.1))
(stroke (width 0) (type default))
(uuid 3d2521b1-5ed1-4c9f-bb20-da50b880e85f)
)
(bus (pts (xy 102.87 110.49) (xy 93.98 110.49))
(stroke (width 0) (type default))
(uuid 3d83dc0a-16ca-46cc-973c-b9a83d24f76a)
)
(bus (pts (xy 33.02 33.02) (xy 35.56 33.02))
(stroke (width 0) (type default))
(uuid 3d983873-b764-406b-b27c-80b585672b81)
)
(bus (pts (xy 33.02 54.61) (xy 33.02 33.02))
(stroke (width 0) (type default))
(uuid 40aee957-c21d-47e0-a08a-dca580b5c6a0)
)
(wire (pts (xy 33.02 90.17) (xy 35.56 90.17))
(stroke (width 0) (type default))
(uuid 40b4a4d7-371c-4ff8-b044-10e2104caecc)
)
(wire (pts (xy 91.44 107.95) (xy 91.44 129.54))
(stroke (width 0) (type default))
(uuid 45200048-3bf5-429f-9934-72ce7d05de6e)
)
(bus (pts (xy 195.58 113.03) (xy 195.58 147.32))
(stroke (width 0) (type default))
(uuid 46942342-305a-4114-959b-05e598a4bc8d)
)
(bus (pts (xy 102.87 80.01) (xy 96.52 80.01))
(stroke (width 0) (type default))
(uuid 48640e75-0c0e-4ce5-b5a4-6f3cb5458096)
)
(wire (pts (xy 236.22 130.81) (xy 241.3 130.81))
(stroke (width 0) (type default))
(uuid 492697e1-a6f8-432d-afa5-75f727a798c4)
)
(wire (pts (xy 88.9 158.75) (xy 236.22 158.75))
(stroke (width 0) (type default))
(uuid 4ce33574-2d50-4c17-b199-7d8a0f62d8c6)
)
(bus (pts (xy 189.23 88.9) (xy 213.36 88.9))
(stroke (width 0) (type default))
(uuid 4d3ec9c4-6de5-4930-8cd8-b4fc3d46967b)
)
(wire (pts (xy 78.74 149.86) (xy 120.65 149.86))
(stroke (width 0) (type default))
(uuid 502abb8f-06bb-4a9e-9134-66eefd6337c3)
)
(wire (pts (xy 236.22 133.35) (xy 236.22 158.75))
(stroke (width 0) (type default))
(uuid 52e8819b-be4d-4af1-bac8-139932f4295f)
)
(bus (pts (xy 96.52 80.01) (xy 96.52 57.15))
(stroke (width 0) (type default))
(uuid 53f7e872-9be8-431a-9338-8fd485b2a1a3)
)
(wire (pts (xy 238.76 102.87) (xy 238.76 128.27))
(stroke (width 0) (type default))
(uuid 5b57e379-9b2f-400f-873a-7bec9b7f30a0)
)
(bus (pts (xy 102.87 57.15) (xy 96.52 57.15))
(stroke (width 0) (type default))
(uuid 600318fc-f188-4a36-b2c1-a9b0a9d0fee5)
)
(polyline (pts (xy 99.06 38.1) (xy 99.06 120.65))
(stroke (width 0) (type default))
(uuid 669ecb88-aca3-4df0-8453-4a0a9bbc1220)
)
(bus (pts (xy 78.74 54.61) (xy 102.87 54.61))
(stroke (width 0) (type default))
(uuid 699364d6-7838-47d1-8889-d4d767a222f8)
)
(wire (pts (xy 238.76 148.59) (xy 241.3 148.59))
(stroke (width 0) (type default))
(uuid 69a4b727-2cb0-4626-9346-7ec82f63f387)
)
(wire (pts (xy 78.74 33.02) (xy 88.9 33.02))
(stroke (width 0) (type default))
(uuid 6aa902f2-c16c-4467-b32f-3ceea9fca99b)
)
(wire (pts (xy 189.23 107.95) (xy 200.66 107.95))
(stroke (width 0) (type default))
(uuid 6cacd978-ec4d-466f-b97f-26e390d56f45)
)
(wire (pts (xy 25.4 67.31) (xy 35.56 67.31))
(stroke (width 0) (type default))
(uuid 72edff28-2271-4683-8618-02bf09fcc67a)
)
(wire (pts (xy 91.44 129.54) (xy 120.65 129.54))
(stroke (width 0) (type default))
(uuid 732dcfa9-6bdd-41ff-be88-886c9b609a58)
)
(wire (pts (xy 238.76 128.27) (xy 241.3 128.27))
(stroke (width 0) (type default))
(uuid 73677355-0302-4e7e-a944-c6a8a1321b37)
)
(wire (pts (xy 238.76 135.89) (xy 238.76 148.59))
(stroke (width 0) (type default))
(uuid 748cb044-af31-4c70-a60a-ae93667c8841)
)
(wire (pts (xy 88.9 105.41) (xy 88.9 158.75))
(stroke (width 0) (type default))
(uuid 76d5851a-f058-4eb6-9877-fe44de418073)
)
(bus (pts (xy 189.23 93.98) (xy 208.28 93.98))
(stroke (width 0) (type default))
(uuid 785a0373-6c7d-4c83-822a-f3516857514c)
)
(bus (pts (xy 189.23 110.49) (xy 198.12 110.49))
(stroke (width 0) (type default))
(uuid 7892321b-50ff-460e-ab00-3b67e46abca8)
)
(bus (pts (xy 198.12 144.78) (xy 172.72 144.78))
(stroke (width 0) (type default))
(uuid 7bf6f571-ea4f-4639-bfe0-a2c7c2dcc2a9)
)
(wire (pts (xy 91.44 62.23) (xy 78.74 62.23))
(stroke (width 0) (type default))
(uuid 7d469d1d-0484-4f12-ba66-fd5da670b374)
)
(wire (pts (xy 33.02 74.93) (xy 33.02 90.17))
(stroke (width 0) (type default))
(uuid 7e990bb5-879f-4503-96f6-08cf3df64734)
)
(wire (pts (xy 236.22 105.41) (xy 236.22 130.81))
(stroke (width 0) (type default))
(uuid 81cb94c9-4b02-4372-a8a7-bba9ba9bd02b)
)
(bus (pts (xy 189.23 113.03) (xy 195.58 113.03))
(stroke (width 0) (type default))
(uuid 8260f92c-2406-4f66-8215-948e63dc2f2f)
)
(wire (pts (xy 102.87 105.41) (xy 88.9 105.41))
(stroke (width 0) (type default))
(uuid 850bf2d4-2bff-492c-a63b-e59c25086fce)
)
(wire (pts (xy 33.02 74.93) (xy 35.56 74.93))
(stroke (width 0) (type default))
(uuid 86656ab1-af10-4635-9a75-b18d892352d9)
)
(bus (pts (xy 210.82 91.44) (xy 210.82 134.62))
(stroke (width 0) (type default))
(uuid 8b528e48-eb95-4659-ae05-738e1211783c)
)
(wire (pts (xy 238.76 161.29) (xy 25.4 161.29))
(stroke (width 0) (type default))
(uuid 8c4cd03f-cc7a-4b63-8a65-148852511de5)
)
(bus (pts (xy 93.98 132.08) (xy 120.65 132.08))
(stroke (width 0) (type default))
(uuid 9b3352be-37f8-4bdb-a779-c821c71440dc)
)
(wire (pts (xy 91.44 85.09) (xy 91.44 62.23))
(stroke (width 0) (type default))
(uuid 9d0d2424-f087-46c6-8c8a-495c58b4567c)
)
(bus (pts (xy 93.98 110.49) (xy 93.98 132.08))
(stroke (width 0) (type default))
(uuid 9efb48c7-605f-4a5c-82da-f4ef1871eea8)
)
(wire (pts (xy 200.66 107.95) (xy 200.66 142.24))
(stroke (width 0) (type default))
(uuid 9f10c19b-304f-42f1-82f1-d8d32c1d0162)
)
(wire (pts (xy 30.48 40.64) (xy 35.56 40.64))
(stroke (width 0) (type default))
(uuid a03359aa-d339-47bc-84eb-d4f5fdb25395)
)
(wire (pts (xy 35.56 57.15) (xy 27.94 57.15))
(stroke (width 0) (type default))
(uuid a03af5bc-7fd7-467a-9ace-07f1e07ec934)
)
(wire (pts (xy 81.28 100.33) (xy 102.87 100.33))
(stroke (width 0) (type default))
(uuid a1f88769-940a-4c33-9a41-cb18efc45fb6)
)
(wire (pts (xy 30.48 40.64) (xy 30.48 59.69))
(stroke (width 0) (type default))
(uuid a3cabf92-87af-445d-9b08-7db77309be0e)
)
(bus (pts (xy 102.87 95.25) (xy 78.74 95.25))
(stroke (width 0) (type default))
(uuid a5c9445a-84e1-4eda-b66e-74b5a426a5fe)
)
(bus (pts (xy 96.52 134.62) (xy 120.65 134.62))
(stroke (width 0) (type default))
(uuid a8eed6a8-253c-466c-a456-cf84373c2107)
)
(wire (pts (xy 241.3 151.13) (xy 238.76 151.13))
(stroke (width 0) (type default))
(uuid aa866993-dd10-4892-9ab1-14987ea02fcb)
)
(wire (pts (xy 189.23 105.41) (xy 236.22 105.41))
(stroke (width 0) (type default))
(uuid ad1bde97-3bc7-42ff-b53a-40599e27de7d)
)
(bus (pts (xy 102.87 113.03) (xy 96.52 113.03))
(stroke (width 0) (type default))
(uuid afc485ba-92fb-47d7-b232-c5cbd180b7af)
)
(wire (pts (xy 102.87 67.31) (xy 93.98 67.31))
(stroke (width 0) (type default))
(uuid b6135409-966c-4ced-af76-27cbad5d957e)
)
(bus (pts (xy 213.36 88.9) (xy 213.36 132.08))
(stroke (width 0) (type default))
(uuid b708968d-0c56-4553-820e-32532191d7a4)
)
(wire (pts (xy 81.28 74.93) (xy 81.28 90.17))
(stroke (width 0) (type default))
(uuid b7872034-e7a3-4428-b75c-59f8c4a85a76)
)
(wire (pts (xy 189.23 86.36) (xy 215.9 86.36))
(stroke (width 0) (type default))
(uuid bbc85a5b-fe6e-41a2-9b78-dd66e546d158)
)
(wire (pts (xy 88.9 33.02) (xy 88.9 87.63))
(stroke (width 0) (type default))
(uuid bc7d02e4-8143-41b4-8284-c6b1a3dc49f8)
)
(bus (pts (xy 78.74 40.64) (xy 86.36 40.64))
(stroke (width 0) (type default))
(uuid bdf6a51e-7979-4c01-a2bb-009a88b85949)
)
(wire (pts (xy 88.9 87.63) (xy 102.87 87.63))
(stroke (width 0) (type default))
(uuid bf2e4fe9-1e38-4215-9c1a-b7704b2daaf0)
)
(polyline (pts (xy 193.04 38.1) (xy 193.04 120.65))
(stroke (width 0) (type default))
(uuid c10c7fbd-22bf-4d4b-8b38-fc3d108c4fd3)
)
(wire (pts (xy 102.87 107.95) (xy 91.44 107.95))
(stroke (width 0) (type default))
(uuid c2108e7c-7d74-4443-9d23-4142222332bd)
)
(wire (pts (xy 93.98 67.31) (xy 93.98 82.55))
(stroke (width 0) (type default))
(uuid c254aebd-3d47-4b89-87fb-dd7d773ac811)
)
(wire (pts (xy 215.9 129.54) (xy 172.72 129.54))
(stroke (width 0) (type default))
(uuid c3f78de3-aa55-4a2b-94fd-43fefcc8d80f)
)
(wire (pts (xy 102.87 85.09) (xy 91.44 85.09))
(stroke (width 0) (type default))
(uuid c51104ea-dd54-4e7a-91cd-cca5afbacbe7)
)
(wire (pts (xy 241.3 135.89) (xy 238.76 135.89))
(stroke (width 0) (type default))
(uuid c56fd154-1f04-4a80-9a84-7cabc0429c06)
)
(bus (pts (xy 96.52 57.15) (xy 78.74 57.15))
(stroke (width 0) (type default))
(uuid cdde2422-6386-4229-90e6-4222bc2c3450)
)
(bus (pts (xy 96.52 113.03) (xy 96.52 134.62))
(stroke (width 0) (type default))
(uuid cfc59ede-9c51-4f65-bb08-746ffe84a776)
)
(wire (pts (xy 30.48 72.39) (xy 30.48 87.63))
(stroke (width 0) (type default))
(uuid d06a3c46-adc3-4ae9-9ab2-94addea7764d)
)
(wire (pts (xy 30.48 87.63) (xy 35.56 87.63))
(stroke (width 0) (type default))
(uuid d0a162ef-f0f0-4621-923d-4d6a4bd8fe57)
)
(bus (pts (xy 102.87 90.17) (xy 86.36 90.17))
(stroke (width 0) (type default))
(uuid d74871b5-7fdc-4713-849a-2765a253f63a)
)
(wire (pts (xy 78.74 137.16) (xy 81.28 137.16))
(stroke (width 0) (type default))
(uuid d92336fa-416a-4da6-9759-33b031008630)
)
(bus (pts (xy 189.23 52.07) (xy 210.82 52.07))
(stroke (width 0) (type default))
(uuid d94eb360-a5af-440e-889e-ecdce0d7af58)
)
(bus (pts (xy 86.36 90.17) (xy 86.36 40.64))
(stroke (width 0) (type default))
(uuid d9fdd562-912e-44b1-8dfa-3186dad861ef)
)
(wire (pts (xy 35.56 72.39) (xy 30.48 72.39))
(stroke (width 0) (type default))
(uuid dace43e7-359a-413c-93a9-a603f2a712c8)
)
(wire (pts (xy 27.94 38.1) (xy 27.94 57.15))
(stroke (width 0) (type default))
(uuid de275eeb-6608-4680-9290-3d04c07dd4ba)
)
(wire (pts (xy 81.28 90.17) (xy 78.74 90.17))
(stroke (width 0) (type default))
(uuid defe2595-b2dd-4f51-b0d3-b9bde1d09bab)
)
(wire (pts (xy 78.74 142.24) (xy 120.65 142.24))
(stroke (width 0) (type default))
(uuid e0b7661d-9835-4b1d-8a9e-16875ebd4d94)
)
(wire (pts (xy 238.76 151.13) (xy 238.76 161.29))
(stroke (width 0) (type default))
(uuid e576d695-0170-4b79-af5d-3281deafba93)
)
(wire (pts (xy 215.9 86.36) (xy 215.9 129.54))
(stroke (width 0) (type default))
(uuid e9a07571-f749-4cc8-8a1a-791e276ed9ca)
)
(wire (pts (xy 78.74 147.32) (xy 120.65 147.32))
(stroke (width 0) (type default))
(uuid eca8716f-d408-4075-9acf-749e87c43452)
)
(bus (pts (xy 189.23 73.66) (xy 210.82 73.66))
(stroke (width 0) (type default))
(uuid f08d9d46-8de0-4ee7-80dd-ea637f1178b0)
)
(bus (pts (xy 195.58 147.32) (xy 172.72 147.32))
(stroke (width 0) (type default))
(uuid f69e4e0d-1eff-4c91-974a-c42cddbd70c2)
)
(polyline (pts (xy 193.04 120.65) (xy 99.06 120.65))
(stroke (width 0) (type default))
(uuid faa948ce-cd2a-4abb-9f78-3a4ca3a00399)
)
(bus (pts (xy 189.23 91.44) (xy 210.82 91.44))
(stroke (width 0) (type default))
(uuid fb24f3db-3f03-41d8-b3cc-dc870ef9c46a)
)
(wire (pts (xy 189.23 102.87) (xy 238.76 102.87))
(stroke (width 0) (type default))
(uuid ff638e8d-0b05-4792-92be-95813f538105)
)
(text "ECP5 FPGA" (at 102.87 44.45 0)
(effects (font (size 2.54 2.54)) (justify left bottom))
(uuid eef18601-ed5f-4925-899d-2602abcf7c46)
)
(symbol (lib_id "Graphic:Logo_Open_Hardware_Small") (at 276.86 175.26 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid da565afa-f706-47e3-ba62-3b1d11059d85)
(property "Reference" "#LOGO1" (at 276.86 168.275 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "Logo_Open_Hardware_Small" (at 276.86 180.975 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 276.86 175.26 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 276.86 175.26 0)
(effects (font (size 1.27 1.27)) hide)
)
(instances
(project "mainboard"
(path "/fb621148-8145-4217-9712-738e1b5a4823"
(reference "#LOGO1") (unit 1)
)
)
)
)
(sheet (at 241.3 146.05) (size 27.94 7.62) (fields_autoplaced)
(stroke (width 0) (type solid))
(fill (color 0 0 0 0.0000))
(uuid 00000000-0000-0000-0000-00005da7baf4)
(property "Sheetname" "Digital Power Supplies" (at 241.3 145.3384 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Sheetfile" "digital_supplies.kicad_sch" (at 241.3 154.2546 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(pin "~{POWER_GOOD}" output (at 241.3 148.59 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 3ebabbf1-1490-42ae-bd9d-1efa32f3d298)
)
(pin "~{3V3FPGA_EN}" input (at 241.3 151.13 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 3d8fc820-85d3-4451-ba4e-71701f5bf599)
)
(instances
(project "mainboard"
(path "/fb621148-8145-4217-9712-738e1b5a4823" (page "17"))
)
)
)
(sheet (at 35.56 52.07) (size 43.18 25.4) (fields_autoplaced)
(stroke (width 0) (type solid))
(fill (color 0 0 0 0.0000))
(uuid 00000000-0000-0000-0000-00005dcaa6d2)
(property "Sheetname" "Debugger" (at 35.56 51.3584 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Sheetfile" "debugger.kicad_sch" (at 35.56 78.0546 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(pin "MCU_D-" bidirectional (at 35.56 72.39 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 3c2939a1-42bc-480d-af81-df732c87de27)
)
(pin "MCU_D+" bidirectional (at 35.56 74.93 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 66278d6c-94f6-4f93-9eda-79e94cc15ed4)
)
(pin "USB_SWITCH" output (at 78.74 72.39 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid f054d600-b6d8-4178-b32e-6cbdaa0d057b)
)
(pin "USB_RESET_DETECT" input (at 78.74 74.93 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 363672de-04c4-484e-8c3d-1ba766321043)
)
(pin "~{BTN_RESET}" input (at 35.56 59.69 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 88dbb850-3bc2-406a-a079-be5f10373d02)
)
(pin "~{BTN_PROGRAM}" input (at 35.56 57.15 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 9654bd27-41bd-45a1-aee7-14226aa5d2b4)
)
(pin "FPGA_CONFIG{Config}" bidirectional (at 78.74 54.61 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 13822d1e-3fb0-4ff7-8f56-8b3d27ffca37)
)
(pin "FPGA_JTAG{JTAG}" bidirectional (at 78.74 57.15 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid e7211063-9ece-4c87-b193-c0981d270a2f)
)
(pin "FPGA_ADV" input (at 78.74 62.23 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid e59e9bbb-fada-43c9-9e70-e2b17c713f45)
)
(pin "LED[1..3]" output (at 35.56 54.61 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 62e8f267-3c99-4ff6-81b3-2eb36a789665)
)
(pin "~{3V3FPGA_EN}" output (at 35.56 67.31 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid abdd5053-a13e-4a84-b52e-f350767d0023)
)
(instances
(project "mainboard"
(path "/fb621148-8145-4217-9712-738e1b5a4823" (page "16"))
)
)
)
(sheet (at 35.56 85.09) (size 43.18 15.24) (fields_autoplaced)
(stroke (width 0) (type solid))
(fill (color 0 0 0 0.0000))
(uuid 00000000-0000-0000-0000-00005dcd9772)
(property "Sheetname" "USB" (at 35.56 84.3784 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Sheetfile" "usb.kicad_sch" (at 35.56 100.9146 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(pin "MCU_D+" bidirectional (at 35.56 90.17 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid e6f3e995-8156-4ae6-8176-c773f03c836e)
)
(pin "MCU_D-" bidirectional (at 35.56 87.63 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 9f15063a-914c-4394-bf8c-2d8f6fac2e80)
)
(pin "USB_SWITCH" input (at 78.74 87.63 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid c136b5e8-744e-4332-b681-2f7a158fb5c6)
)
(pin "USB_RESET_DETECT" output (at 78.74 90.17 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid e555a561-1c5e-4ea5-8af9-a2457867d9a3)
)
(pin "PHY{ULPI}" bidirectional (at 78.74 95.25 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 36a58934-3f32-4053-b622-beb40c4a1025)
)
(instances
(project "mainboard"
(path "/fb621148-8145-4217-9712-738e1b5a4823" (page "12"))
)
)
)
(sheet (at 210.82 71.12) (size 27.94 5.08) (fields_autoplaced)
(stroke (width 0) (type solid))
(fill (color 0 0 0 0.0000))
(uuid 00000000-0000-0000-0000-00005de77fe3)
(property "Sheetname" "RAM" (at 210.82 70.4084 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Sheetfile" "ram.kicad_sch" (at 210.82 76.7846 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(pin "RAM{HyperRAM}" bidirectional (at 210.82 73.66 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 842adbd8-7e3b-4f2b-a1fa-80176049fa69)
)
(instances
(project "mainboard"
(path "/fb621148-8145-4217-9712-738e1b5a4823" (page "13"))
)
)
)
(sheet (at 35.56 134.62) (size 43.18 17.78) (fields_autoplaced)
(stroke (width 0.1524) (type solid))
(fill (color 0 0 0 0.0000))
(uuid 07741d92-cb3b-401f-9c7e-29f688af7269)
(property "Sheetname" "Clock and Miscellaneous" (at 35.56 133.9084 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Sheetfile" "clock_misc.kicad_sch" (at 35.56 152.9846 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(pin "FPGA_CLK" output (at 78.74 137.16 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 8d6258a7-b2ac-4e6d-8f68-444d6d5a48cf)
)
(pin "AFE_CLK" output (at 78.74 139.7 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 54acb262-b2e8-4ca4-87ab-4b2d9a676699)
)
(pin "RX_RCVR_CLK" output (at 78.74 142.24 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 347418bc-65ab-4a01-8fba-8cd834ac8e29)
)
(pin "RX_MIX_CLK" output (at 78.74 144.78 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 05e063b2-91f5-4914-8b44-bae75717005d)
)
(pin "TX_XCVR_CLK" output (at 78.74 147.32 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid cf8189b8-6e16-402b-af9f-e070a591dd1c)
)
(pin "TX_MIX_CLK" output (at 78.74 149.86 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid f1574050-0696-45f5-88a3-b2cacf0eab57)
)
(instances
(project "mainboard"
(path "/fb621148-8145-4217-9712-738e1b5a4823" (page "19"))
)
)
)
(sheet (at 151.13 49.53) (size 38.1 26.67) (fields_autoplaced)
(stroke (width 0) (type solid))
(fill (color 0 0 0 0.0000))
(uuid 398ed715-d319-4823-8f52-c02f43302105)
(property "Sheetname" "FPGA Banks 6 and 7" (at 151.13 48.8184 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Sheetfile" "bank6_7.kicad_sch" (at 151.13 76.7846 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(pin "RAM{HyperRAM}" bidirectional (at 189.23 73.66 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid de652a57-3cd4-41c6-a618-0b96e2a6b59b)
)
(pin "MEZZANINE[1..30]" bidirectional (at 189.23 52.07 0)
(effects (font (size 1.27 1.27)) (justify right))