max80.sch 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574
  1. EESchema Schematic File Version 4
  2. EELAYER 30 0
  3. EELAYER END
  4. $Descr A3 16535 11693
  5. encoding utf-8
  6. Sheet 1 9
  7. Title "MAX80"
  8. Date "2021-02-22"
  9. Rev "0.01"
  10. Comp "Peter o Per"
  11. Comment1 ""
  12. Comment2 ""
  13. Comment3 ""
  14. Comment4 ""
  15. $EndDescr
  16. $Comp
  17. L Oscillator:ASE-xxxMHz OSC1
  18. U 1 1 57BABF34
  19. P 14900 7350
  20. F 0 "OSC1" H 14700 7600 50 0000 C CNN
  21. F 1 "EPSON Q33310 48 MHz" H 15450 7600 50 0000 C CNN
  22. F 2 "max80:Oscillator_SMD_Abracon_ASE-4Pin_3.2x2.5mm" V 14830 7350 50 0001 C CNN
  23. F 3 "" H 14900 7350 50 0000 C CNN
  24. F 4 "C32533" V 14900 7350 50 0001 C CNN "LCSC"
  25. 1 14900 7350
  26. 1 0 0 -1
  27. $EndComp
  28. Text GLabel 15300 7350 2 50 Input ~ 0
  29. CLK0n
  30. $Sheet
  31. S 4700 9450 600 350
  32. U 6013B380
  33. F0 "abc80bus" 50
  34. F1 "abc80bus.sch" 50
  35. $EndSheet
  36. $Sheet
  37. S 3550 9450 600 350
  38. U 6013A59C
  39. F0 "POWER" 50
  40. F1 "power.sch" 50
  41. $EndSheet
  42. $Sheet
  43. S 2400 10050 550 650
  44. U 601569F0
  45. F0 "USB" 50
  46. F1 "usb.sch" 50
  47. F2 "TX0" I L 2400 10200 50
  48. F3 "RX0" I L 2400 10300 50
  49. F4 "CTS" I L 2400 10400 50
  50. F5 "RTS" I L 2400 10500 50
  51. F6 "DTR" I L 2400 10600 50
  52. $EndSheet
  53. $Sheet
  54. S 3500 10050 700 650
  55. U 602159BB
  56. F0 "ESP32" 50
  57. F1 "esp32.sch" 50
  58. F2 "RTC" I L 3500 10100 50
  59. F3 "FPGA_I2C_SDA" I L 3500 10200 50
  60. F4 "FPGA_I2C_SCL" I L 3500 10300 50
  61. $EndSheet
  62. $Comp
  63. L Connector:Micro_SD_Card J3
  64. U 1 1 6022B125
  65. P 14850 8800
  66. F 0 "J3" H 14800 9517 50 0000 C CNN
  67. F 1 "Micro_SD_Card DM3AT-SF-PEJM5" H 14800 9426 50 0000 C CNN
  68. F 2 "max80:microSD_HC_Hirose_DM3AT-SF-PEJM5" H 16000 9100 50 0001 C CNN
  69. F 3 "http://katalog.we-online.de/em/datasheet/693072010801.pdf" H 14850 8800 50 0001 C CNN
  70. F 4 "C114218" H 14850 8800 50 0001 C CNN "LCSC"
  71. 1 14850 8800
  72. 1 0 0 -1
  73. $EndComp
  74. $Sheet
  75. S 1150 10050 550 650
  76. U 6023577B
  77. F0 "RTC" 50
  78. F1 "rtc.sch" 50
  79. F2 "SCL" I L 1150 10150 50
  80. F3 "SDA" I L 1150 10250 50
  81. F4 "32KHZ" I L 1150 10350 50
  82. F5 "INT" I L 1150 10450 50
  83. $EndSheet
  84. Entry Wire Line
  85. 13750 4600 13850 4700
  86. Text Label 13850 4200 0 50 ~ 0
  87. WE#
  88. Wire Wire Line
  89. 13850 4200 14000 4200
  90. Entry Wire Line
  91. 13750 4500 13850 4600
  92. Entry Wire Line
  93. 13750 4400 13850 4500
  94. Entry Wire Line
  95. 13750 4300 13850 4400
  96. Entry Wire Line
  97. 13750 4200 13850 4300
  98. Entry Wire Line
  99. 13750 4100 13850 4200
  100. Entry Wire Line
  101. 13750 4000 13850 4100
  102. Entry Wire Line
  103. 13750 3900 13850 4000
  104. Entry Wire Line
  105. 13750 3800 13850 3900
  106. Entry Wire Line
  107. 13750 3700 13850 3800
  108. Entry Wire Line
  109. 13750 3600 13850 3700
  110. Entry Wire Line
  111. 13750 3500 13850 3600
  112. Entry Wire Line
  113. 13750 3400 13850 3500
  114. Entry Wire Line
  115. 13750 3300 13850 3400
  116. Entry Wire Line
  117. 15550 2800 15650 2700
  118. Entry Wire Line
  119. 15550 2900 15650 2800
  120. Entry Wire Line
  121. 15550 3000 15650 2900
  122. Entry Wire Line
  123. 15550 3100 15650 3000
  124. Entry Wire Line
  125. 15550 3200 15650 3100
  126. Entry Wire Line
  127. 15550 3300 15650 3200
  128. Entry Wire Line
  129. 15550 3400 15650 3300
  130. Entry Wire Line
  131. 15550 3500 15650 3400
  132. Entry Wire Line
  133. 15550 3600 15650 3500
  134. Entry Wire Line
  135. 15550 3700 15650 3600
  136. Entry Wire Line
  137. 15550 3800 15650 3700
  138. Entry Wire Line
  139. 15550 3900 15650 3800
  140. Entry Wire Line
  141. 15550 4000 15650 3900
  142. Entry Wire Line
  143. 15550 4100 15650 4000
  144. Entry Wire Line
  145. 15550 4200 15650 4100
  146. Entry Wire Line
  147. 15550 4300 15650 4200
  148. Wire Wire Line
  149. 15400 2800 15550 2800
  150. Wire Wire Line
  151. 15400 2900 15550 2900
  152. Wire Wire Line
  153. 15400 3000 15550 3000
  154. Wire Wire Line
  155. 15400 3100 15550 3100
  156. Wire Wire Line
  157. 15400 3200 15550 3200
  158. Wire Wire Line
  159. 15400 3300 15550 3300
  160. Wire Wire Line
  161. 15400 3400 15550 3400
  162. Wire Wire Line
  163. 15400 3500 15550 3500
  164. Wire Wire Line
  165. 15400 3600 15550 3600
  166. Wire Wire Line
  167. 15400 3700 15550 3700
  168. Wire Wire Line
  169. 15400 3800 15550 3800
  170. Wire Wire Line
  171. 15400 3900 15550 3900
  172. Wire Wire Line
  173. 15400 4000 15550 4000
  174. Wire Wire Line
  175. 15400 4100 15550 4100
  176. Wire Wire Line
  177. 15400 4200 15550 4200
  178. Wire Wire Line
  179. 15400 4300 15550 4300
  180. Wire Wire Line
  181. 13850 2800 14000 2800
  182. Wire Wire Line
  183. 13850 2900 14000 2900
  184. Wire Wire Line
  185. 13850 3000 14000 3000
  186. Wire Wire Line
  187. 13850 3100 14000 3100
  188. Wire Wire Line
  189. 13850 3200 14000 3200
  190. Wire Wire Line
  191. 13850 3300 14000 3300
  192. Wire Wire Line
  193. 13850 3400 14000 3400
  194. Wire Wire Line
  195. 13850 3500 14000 3500
  196. Wire Wire Line
  197. 13850 3600 14000 3600
  198. Wire Wire Line
  199. 13850 3700 14000 3700
  200. Wire Wire Line
  201. 13850 3800 14000 3800
  202. Wire Wire Line
  203. 13850 3900 14000 3900
  204. Wire Wire Line
  205. 13850 4000 14000 4000
  206. Wire Wire Line
  207. 13850 4100 14000 4100
  208. Text Label 13850 4100 0 50 ~ 0
  209. DQML
  210. Text Label 13850 4000 0 50 ~ 0
  211. A0
  212. Text Label 13850 3900 0 50 ~ 0
  213. A1
  214. Text Label 13850 3800 0 50 ~ 0
  215. A2
  216. Text Label 13850 3700 0 50 ~ 0
  217. A3
  218. Text Label 13850 3600 0 50 ~ 0
  219. A4
  220. Text Label 13850 3500 0 50 ~ 0
  221. A5
  222. Text Label 13850 3400 0 50 ~ 0
  223. A6
  224. Text Label 13850 3300 0 50 ~ 0
  225. A7
  226. Text Label 13850 3200 0 50 ~ 0
  227. A8
  228. Text Label 13850 3100 0 50 ~ 0
  229. A9
  230. Text Label 13850 3000 0 50 ~ 0
  231. A10
  232. Text Label 13850 2900 0 50 ~ 0
  233. A11
  234. Text Label 13850 2800 0 50 ~ 0
  235. A12
  236. Text Label 15550 2800 2 50 ~ 0
  237. IO15
  238. Text Label 15550 2900 2 50 ~ 0
  239. IO14
  240. Text Label 15550 3000 2 50 ~ 0
  241. IO13
  242. Text Label 15550 3100 2 50 ~ 0
  243. IO12
  244. Text Label 15550 3200 2 50 ~ 0
  245. IO11
  246. Text Label 15550 3300 2 50 ~ 0
  247. IO10
  248. Text Label 15550 3400 2 50 ~ 0
  249. IO9
  250. Text Label 15550 3500 2 50 ~ 0
  251. IO8
  252. Text Label 15550 3600 2 50 ~ 0
  253. IO7
  254. Text Label 15550 3700 2 50 ~ 0
  255. IO6
  256. Text Label 15550 3800 2 50 ~ 0
  257. IO5
  258. Text Label 15550 3900 2 50 ~ 0
  259. IO4
  260. Text Label 15550 4000 2 50 ~ 0
  261. IO3
  262. Text Label 15550 4100 2 50 ~ 0
  263. IO2
  264. Text Label 15550 4200 2 50 ~ 0
  265. IO1
  266. Text Label 15550 4300 2 50 ~ 0
  267. IO0
  268. $Comp
  269. L Device:C_Small C48
  270. U 1 1 602D0725
  271. P 14750 1300
  272. F 0 "C48" H 14842 1346 50 0000 L CNN
  273. F 1 "100nF" H 14842 1255 50 0000 L CNN
  274. F 2 "Capacitor_SMD:C_0402_1005Metric" H 14750 1300 50 0001 C CNN
  275. F 3 "~" H 14750 1300 50 0001 C CNN
  276. F 4 "C1525" H 14750 1300 50 0001 C CNN "LCSC"
  277. 1 14750 1300
  278. 1 0 0 -1
  279. $EndComp
  280. $Comp
  281. L Device:C_Small C49
  282. U 1 1 602D360C
  283. P 15150 1300
  284. F 0 "C49" H 15242 1346 50 0000 L CNN
  285. F 1 "100nF" H 15242 1255 50 0000 L CNN
  286. F 2 "Capacitor_SMD:C_0402_1005Metric" H 15150 1300 50 0001 C CNN
  287. F 3 "~" H 15150 1300 50 0001 C CNN
  288. F 4 "C1525" H 15150 1300 50 0001 C CNN "LCSC"
  289. 1 15150 1300
  290. 1 0 0 -1
  291. $EndComp
  292. $Comp
  293. L power:+3V3 #PWR0119
  294. U 1 1 602D40FB
  295. P 14750 1150
  296. F 0 "#PWR0119" H 14750 1000 50 0001 C CNN
  297. F 1 "+3V3" H 14765 1323 50 0000 C CNN
  298. F 2 "" H 14750 1150 50 0001 C CNN
  299. F 3 "" H 14750 1150 50 0001 C CNN
  300. 1 14750 1150
  301. 1 0 0 -1
  302. $EndComp
  303. $Comp
  304. L power:+3V3 #PWR0120
  305. U 1 1 602D444A
  306. P 15150 1150
  307. F 0 "#PWR0120" H 15150 1000 50 0001 C CNN
  308. F 1 "+3V3" H 15165 1323 50 0000 C CNN
  309. F 2 "" H 15150 1150 50 0001 C CNN
  310. F 3 "" H 15150 1150 50 0001 C CNN
  311. 1 15150 1150
  312. 1 0 0 -1
  313. $EndComp
  314. $Comp
  315. L power:GND #PWR0121
  316. U 1 1 602D4EF1
  317. P 14750 1450
  318. F 0 "#PWR0121" H 14750 1200 50 0001 C CNN
  319. F 1 "GND" H 14755 1277 50 0000 C CNN
  320. F 2 "" H 14750 1450 50 0001 C CNN
  321. F 3 "" H 14750 1450 50 0001 C CNN
  322. 1 14750 1450
  323. 1 0 0 -1
  324. $EndComp
  325. $Comp
  326. L power:GND #PWR0122
  327. U 1 1 602D5590
  328. P 15150 1450
  329. F 0 "#PWR0122" H 15150 1200 50 0001 C CNN
  330. F 1 "GND" H 15155 1277 50 0000 C CNN
  331. F 2 "" H 15150 1450 50 0001 C CNN
  332. F 3 "" H 15150 1450 50 0001 C CNN
  333. 1 15150 1450
  334. 1 0 0 -1
  335. $EndComp
  336. Wire Wire Line
  337. 14750 1400 14750 1450
  338. Wire Wire Line
  339. 15150 1400 15150 1450
  340. Wire Wire Line
  341. 15150 1150 15150 1200
  342. Wire Wire Line
  343. 14750 1150 14750 1200
  344. Text Label 1100 10150 2 50 ~ 0
  345. FPGA_SCL
  346. Wire Wire Line
  347. 1100 10150 1150 10150
  348. Text Label 1100 10250 2 50 ~ 0
  349. FPGA_SDA
  350. Text Label 1100 10350 2 50 ~ 0
  351. 32KHZ
  352. Text Label 1100 10450 2 50 ~ 0
  353. RTC_INT
  354. Wire Wire Line
  355. 1100 10250 1150 10250
  356. Wire Wire Line
  357. 1100 10350 1150 10350
  358. Wire Wire Line
  359. 1100 10450 1150 10450
  360. Text Label 6450 4050 2 39 ~ 0
  361. FPGA_SCL
  362. Text Label 6450 4150 2 39 ~ 0
  363. FPGA_SDA
  364. Text Label 6500 2550 2 39 ~ 0
  365. 32KHZ
  366. Text Label 13850 8500 2 50 ~ 0
  367. SD_DAT2
  368. Text Label 13850 8600 2 50 ~ 0
  369. SD_DAT3
  370. Text Label 13850 8700 2 50 ~ 0
  371. SD_CMD
  372. Text Label 13850 8900 2 50 ~ 0
  373. SD_CLK
  374. Text Label 13850 9100 2 50 ~ 0
  375. SD_DAT0
  376. Text Label 13850 9200 2 50 ~ 0
  377. SD_DAT1
  378. Wire Wire Line
  379. 13850 9200 13950 9200
  380. Wire Wire Line
  381. 13850 9100 13950 9100
  382. Wire Wire Line
  383. 13850 8900 13950 8900
  384. Wire Wire Line
  385. 13850 8700 13950 8700
  386. Wire Wire Line
  387. 13850 8600 13950 8600
  388. Wire Wire Line
  389. 13850 8500 13950 8500
  390. $Comp
  391. L power:+3V3 #PWR029
  392. U 1 1 60B4B406
  393. P 13400 8750
  394. F 0 "#PWR029" H 13400 8600 50 0001 C CNN
  395. F 1 "+3V3" H 13415 8923 50 0000 C CNN
  396. F 2 "" H 13400 8750 50 0001 C CNN
  397. F 3 "" H 13400 8750 50 0001 C CNN
  398. 1 13400 8750
  399. 1 0 0 -1
  400. $EndComp
  401. $Comp
  402. L power:GND #PWR030
  403. U 1 1 60B4BEE8
  404. P 13400 9100
  405. F 0 "#PWR030" H 13400 8850 50 0001 C CNN
  406. F 1 "GND" H 13405 8927 50 0000 C CNN
  407. F 2 "" H 13400 9100 50 0001 C CNN
  408. F 3 "" H 13400 9100 50 0001 C CNN
  409. 1 13400 9100
  410. 1 0 0 -1
  411. $EndComp
  412. Wire Wire Line
  413. 13400 8750 13400 8800
  414. Wire Wire Line
  415. 13400 8800 13950 8800
  416. Wire Wire Line
  417. 13400 9100 13400 9000
  418. Wire Wire Line
  419. 13400 9000 13950 9000
  420. $Comp
  421. L Device:C_Small C51
  422. U 1 1 60B62C42
  423. P 12950 8850
  424. F 0 "C51" H 13042 8896 50 0000 L CNN
  425. F 1 "4.7uF" H 13042 8805 50 0000 L CNN
  426. F 2 "Capacitor_SMD:C_0603_1608Metric" H 12950 8850 50 0001 C CNN
  427. F 3 "~" H 12950 8850 50 0001 C CNN
  428. F 4 "C19666" H 12950 8850 50 0001 C CNN "LCSC"
  429. 1 12950 8850
  430. 1 0 0 -1
  431. $EndComp
  432. $Comp
  433. L power:+3V3 #PWR027
  434. U 1 1 60B632F4
  435. P 12950 8700
  436. F 0 "#PWR027" H 12950 8550 50 0001 C CNN
  437. F 1 "+3V3" H 12965 8873 50 0000 C CNN
  438. F 2 "" H 12950 8700 50 0001 C CNN
  439. F 3 "" H 12950 8700 50 0001 C CNN
  440. 1 12950 8700
  441. 1 0 0 -1
  442. $EndComp
  443. $Comp
  444. L power:GND #PWR028
  445. U 1 1 60B63765
  446. P 12950 9000
  447. F 0 "#PWR028" H 12950 8750 50 0001 C CNN
  448. F 1 "GND" H 12955 8827 50 0000 C CNN
  449. F 2 "" H 12950 9000 50 0001 C CNN
  450. F 3 "" H 12950 9000 50 0001 C CNN
  451. 1 12950 9000
  452. 1 0 0 -1
  453. $EndComp
  454. Wire Wire Line
  455. 12950 8700 12950 8750
  456. Wire Wire Line
  457. 12950 8950 12950 9000
  458. $Sheet
  459. S 4700 10050 600 650
  460. U 60B94961
  461. F0 "ADAPTER_CONN" 50
  462. F1 "adapter_conn.sch" 50
  463. F2 "FPGA_SDA" I L 4700 10250 50
  464. F3 "FPGA_SCL" I L 4700 10150 50
  465. $EndSheet
  466. Text Label 6450 3350 2 39 ~ 0
  467. SD_DAT3
  468. Text Label 6450 3050 2 39 ~ 0
  469. SD_CMD
  470. Text Label 4150 8150 2 39 ~ 0
  471. SD_DAT1
  472. $Comp
  473. L power:GND #PWR0137
  474. U 1 1 60E1BB45
  475. P 15650 9450
  476. F 0 "#PWR0137" H 15650 9200 50 0001 C CNN
  477. F 1 "GND" H 15655 9277 50 0000 C CNN
  478. F 2 "" H 15650 9450 50 0001 C CNN
  479. F 3 "" H 15650 9450 50 0001 C CNN
  480. 1 15650 9450
  481. 1 0 0 -1
  482. $EndComp
  483. Wire Wire Line
  484. 15650 9400 15650 9450
  485. Text Label 3450 10100 2 50 ~ 0
  486. 32KHZ
  487. Wire Wire Line
  488. 3450 10100 3500 10100
  489. Text Label 2400 10200 2 50 ~ 0
  490. FPGA_USB_TXD
  491. Text Label 6500 2450 2 39 ~ 0
  492. FPGA_USB_TXD
  493. Text Label 6450 3250 2 39 ~ 0
  494. FPGA_USB_RXD
  495. Text Label 4650 10150 2 50 ~ 0
  496. FPGA_SCL
  497. Text Label 4650 10250 2 50 ~ 0
  498. FPGA_SDA
  499. Wire Wire Line
  500. 4650 10150 4700 10150
  501. Wire Wire Line
  502. 4650 10250 4700 10250
  503. $Comp
  504. L Device:LED D17
  505. U 1 1 6068751D
  506. P 10500 10500
  507. F 0 "D17" V 10539 10382 50 0000 R CNN
  508. F 1 "LED-Y" V 10448 10382 50 0000 R CNN
  509. F 2 "LED_SMD:LED_0603_1608Metric" H 10500 10500 50 0001 C CNN
  510. F 3 "~" H 10500 10500 50 0001 C CNN
  511. F 4 "C72038" H 10500 10500 50 0001 C CNN "LCSC"
  512. 1 10500 10500
  513. 0 -1 -1 0
  514. $EndComp
  515. $Comp
  516. L Device:R_Small R29
  517. U 1 1 6068836E
  518. P 10500 10150
  519. F 0 "R29" H 10441 10104 50 0000 R CNN
  520. F 1 "1k" H 10441 10195 50 0000 R CNN
  521. F 2 "Resistor_SMD:R_0402_1005Metric" H 10500 10150 50 0001 C CNN
  522. F 3 "~" H 10500 10150 50 0001 C CNN
  523. F 4 "C11702" H 10500 10150 50 0001 C CNN "LCSC"
  524. 1 10500 10150
  525. 1 0 0 1
  526. $EndComp
  527. Wire Wire Line
  528. 10500 10650 10500 10750
  529. $Comp
  530. L power:GND #PWR0134
  531. U 1 1 60694128
  532. P 10500 10750
  533. F 0 "#PWR0134" H 10500 10500 50 0001 C CNN
  534. F 1 "GND" H 10505 10577 50 0000 C CNN
  535. F 2 "" H 10500 10750 50 0001 C CNN
  536. F 3 "" H 10500 10750 50 0001 C CNN
  537. 1 10500 10750
  538. 1 0 0 -1
  539. $EndComp
  540. Text Label 10500 9950 1 50 ~ 0
  541. FPGA_LED1
  542. Wire Wire Line
  543. 10500 10250 10500 10350
  544. $Comp
  545. L Device:LED D22
  546. U 1 1 606A9A91
  547. P 11250 10500
  548. F 0 "D22" V 11289 10382 50 0000 R CNN
  549. F 1 "LED-G" V 11200 10400 50 0000 R CNN
  550. F 2 "LED_SMD:LED_0603_1608Metric" H 11250 10500 50 0001 C CNN
  551. F 3 "~" H 11250 10500 50 0001 C CNN
  552. F 4 "C72043" H 11250 10500 50 0001 C CNN "LCSC"
  553. 1 11250 10500
  554. 0 -1 -1 0
  555. $EndComp
  556. $Comp
  557. L Device:R_Small R30
  558. U 1 1 606A9C22
  559. P 11250 10150
  560. F 0 "R30" H 11191 10104 50 0000 R CNN
  561. F 1 "1k" H 11191 10195 50 0000 R CNN
  562. F 2 "Resistor_SMD:R_0402_1005Metric" H 11250 10150 50 0001 C CNN
  563. F 3 "~" H 11250 10150 50 0001 C CNN
  564. F 4 "C11702" H 11250 10150 50 0001 C CNN "LCSC"
  565. 1 11250 10150
  566. 1 0 0 1
  567. $EndComp
  568. Wire Wire Line
  569. 10850 10650 10850 10750
  570. $Comp
  571. L power:GND #PWR0148
  572. U 1 1 606A9C2D
  573. P 10850 10750
  574. F 0 "#PWR0148" H 10850 10500 50 0001 C CNN
  575. F 1 "GND" H 10855 10577 50 0000 C CNN
  576. F 2 "" H 10850 10750 50 0001 C CNN
  577. F 3 "" H 10850 10750 50 0001 C CNN
  578. 1 10850 10750
  579. 1 0 0 -1
  580. $EndComp
  581. Text Label 10850 9950 1 50 ~ 0
  582. FPGA_LED2
  583. Wire Wire Line
  584. 10850 10250 10850 10350
  585. $Comp
  586. L Device:LED D23
  587. U 1 1 606B64A5
  588. P 10850 10500
  589. F 0 "D23" V 10889 10382 50 0000 R CNN
  590. F 1 "LED-B" V 10798 10382 50 0000 R CNN
  591. F 2 "LED_SMD:LED_0603_1608Metric" H 10850 10500 50 0001 C CNN
  592. F 3 "~" H 10850 10500 50 0001 C CNN
  593. F 4 "C72041" H 10850 10500 50 0001 C CNN "LCSC"
  594. 1 10850 10500
  595. 0 -1 -1 0
  596. $EndComp
  597. $Comp
  598. L Device:R_Small R31
  599. U 1 1 606B666A
  600. P 10850 10150
  601. F 0 "R31" H 10791 10104 50 0000 R CNN
  602. F 1 "1k" H 10791 10195 50 0000 R CNN
  603. F 2 "Resistor_SMD:R_0402_1005Metric" H 10850 10150 50 0001 C CNN
  604. F 3 "~" H 10850 10150 50 0001 C CNN
  605. F 4 "C11702" H 10850 10150 50 0001 C CNN "LCSC"
  606. 1 10850 10150
  607. 1 0 0 1
  608. $EndComp
  609. Wire Wire Line
  610. 11250 10650 11250 10750
  611. $Comp
  612. L power:GND #PWR0149
  613. U 1 1 606B6675
  614. P 11250 10750
  615. F 0 "#PWR0149" H 11250 10500 50 0001 C CNN
  616. F 1 "GND" H 11255 10577 50 0000 C CNN
  617. F 2 "" H 11250 10750 50 0001 C CNN
  618. F 3 "" H 11250 10750 50 0001 C CNN
  619. 1 11250 10750
  620. 1 0 0 -1
  621. $EndComp
  622. Text Label 11250 9950 1 50 ~ 0
  623. FPGA_LED3
  624. Wire Wire Line
  625. 11250 10250 11250 10350
  626. Text Label 4150 8450 2 39 ~ 0
  627. FPGA_LED2
  628. Text Label 4150 7950 2 39 ~ 0
  629. FPGA_LED3
  630. Text GLabel 4150 7550 0 39 Input ~ 0
  631. FPGA_GPIO1
  632. Text Label 3450 10300 2 50 ~ 0
  633. FPGA_SCL
  634. Text Label 3450 10200 2 50 ~ 0
  635. FPGA_SDA
  636. Wire Wire Line
  637. 3450 10200 3500 10200
  638. Wire Wire Line
  639. 3450 10300 3500 10300
  640. Text Label 6450 3450 2 39 ~ 0
  641. SD_DAT0
  642. Text Label 6450 3150 2 39 ~ 0
  643. SD_CLK
  644. Text Label 6450 3550 2 39 ~ 0
  645. RTC_INT
  646. Wire Wire Line
  647. 14000 4300 13850 4300
  648. Wire Wire Line
  649. 14000 4400 13850 4400
  650. Wire Wire Line
  651. 14000 4500 13850 4500
  652. Wire Wire Line
  653. 14000 4600 13850 4600
  654. Wire Wire Line
  655. 14000 4700 13850 4700
  656. Wire Wire Line
  657. 15400 4500 15550 4500
  658. Wire Wire Line
  659. 15400 4600 15550 4600
  660. Wire Wire Line
  661. 15400 4700 15550 4700
  662. Text Label 13850 4300 0 50 ~ 0
  663. CAS#
  664. Text Label 13850 4400 0 50 ~ 0
  665. RAS#
  666. Text Label 13850 4500 0 50 ~ 0
  667. CS#
  668. Text Label 13850 4600 0 50 ~ 0
  669. BA0
  670. Text Label 13850 4700 0 50 ~ 0
  671. BA1
  672. Text Label 15550 4500 2 50 ~ 0
  673. CKE
  674. Text Label 15550 4600 2 50 ~ 0
  675. CLK
  676. Text Label 15550 4700 2 50 ~ 0
  677. DQMH
  678. Entry Wire Line
  679. 13750 3200 13850 3300
  680. Entry Wire Line
  681. 13750 3100 13850 3200
  682. Entry Wire Line
  683. 13750 3000 13850 3100
  684. Entry Wire Line
  685. 13750 2900 13850 3000
  686. Entry Wire Line
  687. 13750 2800 13850 2900
  688. Entry Wire Line
  689. 13750 2700 13850 2800
  690. Wire Bus Line
  691. 13750 1800 15650 1800
  692. Entry Wire Line
  693. 15550 4500 15650 4400
  694. Entry Wire Line
  695. 15550 4600 15650 4500
  696. Entry Wire Line
  697. 15550 4700 15650 4600
  698. $Comp
  699. L power:+3V3 #PWR0123
  700. U 1 1 605E0255
  701. P 14650 2050
  702. F 0 "#PWR0123" H 14650 1900 50 0001 C CNN
  703. F 1 "+3V3" H 14665 2223 50 0000 C CNN
  704. F 2 "" H 14650 2050 50 0001 C CNN
  705. F 3 "" H 14650 2050 50 0001 C CNN
  706. 1 14650 2050
  707. 1 0 0 -1
  708. $EndComp
  709. Wire Wire Line
  710. 14350 2350 14350 2200
  711. Wire Wire Line
  712. 14350 2200 14450 2200
  713. Wire Wire Line
  714. 14650 2200 14650 2050
  715. Wire Wire Line
  716. 14450 2350 14450 2200
  717. Connection ~ 14450 2200
  718. Wire Wire Line
  719. 14450 2200 14550 2200
  720. Connection ~ 14550 2200
  721. Wire Wire Line
  722. 14550 2200 14650 2200
  723. Wire Wire Line
  724. 14650 2350 14650 2200
  725. Connection ~ 14650 2200
  726. Wire Wire Line
  727. 14850 2200 14850 2350
  728. Wire Wire Line
  729. 14950 2350 14950 2200
  730. Wire Wire Line
  731. 14950 2200 14850 2200
  732. Connection ~ 14850 2200
  733. Wire Wire Line
  734. 15050 2350 15050 2200
  735. Wire Wire Line
  736. 15050 2200 14950 2200
  737. Connection ~ 14950 2200
  738. $Comp
  739. L power:GND #PWR0124
  740. U 1 1 6069E0B6
  741. P 14700 5300
  742. F 0 "#PWR0124" H 14700 5050 50 0001 C CNN
  743. F 1 "GND" H 14705 5127 50 0000 C CNN
  744. F 2 "" H 14700 5300 50 0001 C CNN
  745. F 3 "" H 14700 5300 50 0001 C CNN
  746. 1 14700 5300
  747. 1 0 0 -1
  748. $EndComp
  749. Wire Wire Line
  750. 14400 5150 14400 5250
  751. Wire Wire Line
  752. 14400 5250 14500 5250
  753. Wire Wire Line
  754. 14700 5250 14700 5300
  755. Wire Wire Line
  756. 14500 5150 14500 5250
  757. Connection ~ 14500 5250
  758. Wire Wire Line
  759. 14500 5250 14600 5250
  760. Wire Wire Line
  761. 14600 5150 14600 5250
  762. Connection ~ 14600 5250
  763. Wire Wire Line
  764. 14600 5250 14700 5250
  765. Wire Wire Line
  766. 14700 5150 14700 5250
  767. Connection ~ 14700 5250
  768. Wire Wire Line
  769. 14800 5250 14800 5150
  770. Wire Wire Line
  771. 14700 5250 14800 5250
  772. Wire Wire Line
  773. 14800 5250 14900 5250
  774. Wire Wire Line
  775. 14900 5250 14900 5150
  776. Connection ~ 14800 5250
  777. Wire Wire Line
  778. 15000 5250 15000 5150
  779. Wire Wire Line
  780. 14900 5250 15000 5250
  781. Connection ~ 14900 5250
  782. Wire Wire Line
  783. 15000 5250 15100 5250
  784. Wire Wire Line
  785. 15100 5250 15100 5150
  786. Connection ~ 15000 5250
  787. Wire Wire Line
  788. 14550 2200 14550 2350
  789. $Comp
  790. L Device:C_Small C56
  791. U 1 1 6091A70C
  792. P 14450 1300
  793. F 0 "C56" H 14542 1346 50 0000 L CNN
  794. F 1 "100nF" H 14542 1255 50 0000 L CNN
  795. F 2 "Capacitor_SMD:C_0402_1005Metric" H 14450 1300 50 0001 C CNN
  796. F 3 "~" H 14450 1300 50 0001 C CNN
  797. F 4 "C1525" H 14450 1300 50 0001 C CNN "LCSC"
  798. 1 14450 1300
  799. 1 0 0 -1
  800. $EndComp
  801. $Comp
  802. L power:+3V3 #PWR0135
  803. U 1 1 6091AA42
  804. P 14450 1150
  805. F 0 "#PWR0135" H 14450 1000 50 0001 C CNN
  806. F 1 "+3V3" H 14465 1323 50 0000 C CNN
  807. F 2 "" H 14450 1150 50 0001 C CNN
  808. F 3 "" H 14450 1150 50 0001 C CNN
  809. 1 14450 1150
  810. 1 0 0 -1
  811. $EndComp
  812. $Comp
  813. L power:GND #PWR0165
  814. U 1 1 6091AA4C
  815. P 14450 1450
  816. F 0 "#PWR0165" H 14450 1200 50 0001 C CNN
  817. F 1 "GND" H 14455 1277 50 0000 C CNN
  818. F 2 "" H 14450 1450 50 0001 C CNN
  819. F 3 "" H 14450 1450 50 0001 C CNN
  820. 1 14450 1450
  821. 1 0 0 -1
  822. $EndComp
  823. Wire Wire Line
  824. 14450 1400 14450 1450
  825. Wire Wire Line
  826. 14450 1150 14450 1200
  827. $Comp
  828. L Device:C_Small C46
  829. U 1 1 60932F0E
  830. P 14050 1300
  831. F 0 "C46" H 14142 1346 50 0000 L CNN
  832. F 1 "100nF" H 14142 1255 50 0000 L CNN
  833. F 2 "Capacitor_SMD:C_0402_1005Metric" H 14050 1300 50 0001 C CNN
  834. F 3 "~" H 14050 1300 50 0001 C CNN
  835. F 4 "C1525" H 14050 1300 50 0001 C CNN "LCSC"
  836. 1 14050 1300
  837. 1 0 0 -1
  838. $EndComp
  839. $Comp
  840. L power:+3V3 #PWR0166
  841. U 1 1 60933274
  842. P 14050 1150
  843. F 0 "#PWR0166" H 14050 1000 50 0001 C CNN
  844. F 1 "+3V3" H 14065 1323 50 0000 C CNN
  845. F 2 "" H 14050 1150 50 0001 C CNN
  846. F 3 "" H 14050 1150 50 0001 C CNN
  847. 1 14050 1150
  848. 1 0 0 -1
  849. $EndComp
  850. $Comp
  851. L power:GND #PWR0167
  852. U 1 1 6093327E
  853. P 14050 1450
  854. F 0 "#PWR0167" H 14050 1200 50 0001 C CNN
  855. F 1 "GND" H 14055 1277 50 0000 C CNN
  856. F 2 "" H 14050 1450 50 0001 C CNN
  857. F 3 "" H 14050 1450 50 0001 C CNN
  858. 1 14050 1450
  859. 1 0 0 -1
  860. $EndComp
  861. Wire Wire Line
  862. 14050 1400 14050 1450
  863. Wire Wire Line
  864. 14050 1150 14050 1200
  865. $Comp
  866. L Device:C_Small C45
  867. U 1 1 6094CE83
  868. P 13650 1300
  869. F 0 "C45" H 13742 1346 50 0000 L CNN
  870. F 1 "100nF" H 13742 1255 50 0000 L CNN
  871. F 2 "Capacitor_SMD:C_0402_1005Metric" H 13650 1300 50 0001 C CNN
  872. F 3 "~" H 13650 1300 50 0001 C CNN
  873. F 4 "C1525" H 13650 1300 50 0001 C CNN "LCSC"
  874. 1 13650 1300
  875. 1 0 0 -1
  876. $EndComp
  877. $Comp
  878. L power:+3V3 #PWR0168
  879. U 1 1 6094D219
  880. P 13650 1150
  881. F 0 "#PWR0168" H 13650 1000 50 0001 C CNN
  882. F 1 "+3V3" H 13665 1323 50 0000 C CNN
  883. F 2 "" H 13650 1150 50 0001 C CNN
  884. F 3 "" H 13650 1150 50 0001 C CNN
  885. 1 13650 1150
  886. 1 0 0 -1
  887. $EndComp
  888. $Comp
  889. L power:GND #PWR0169
  890. U 1 1 6094D223
  891. P 13650 1450
  892. F 0 "#PWR0169" H 13650 1200 50 0001 C CNN
  893. F 1 "GND" H 13655 1277 50 0000 C CNN
  894. F 2 "" H 13650 1450 50 0001 C CNN
  895. F 3 "" H 13650 1450 50 0001 C CNN
  896. 1 13650 1450
  897. 1 0 0 -1
  898. $EndComp
  899. Wire Wire Line
  900. 13650 1400 13650 1450
  901. Wire Wire Line
  902. 13650 1150 13650 1200
  903. $Comp
  904. L Device:C_Small C34
  905. U 1 1 6097D4FE
  906. P 13200 1300
  907. F 0 "C34" H 13292 1346 50 0000 L CNN
  908. F 1 "100nF" H 13292 1255 50 0000 L CNN
  909. F 2 "Capacitor_SMD:C_0402_1005Metric" H 13200 1300 50 0001 C CNN
  910. F 3 "~" H 13200 1300 50 0001 C CNN
  911. F 4 "C1525" H 13200 1300 50 0001 C CNN "LCSC"
  912. 1 13200 1300
  913. 1 0 0 -1
  914. $EndComp
  915. $Comp
  916. L power:+3V3 #PWR0170
  917. U 1 1 6097D8C4
  918. P 13200 1150
  919. F 0 "#PWR0170" H 13200 1000 50 0001 C CNN
  920. F 1 "+3V3" H 13215 1323 50 0000 C CNN
  921. F 2 "" H 13200 1150 50 0001 C CNN
  922. F 3 "" H 13200 1150 50 0001 C CNN
  923. 1 13200 1150
  924. 1 0 0 -1
  925. $EndComp
  926. $Comp
  927. L power:GND #PWR0171
  928. U 1 1 6097D8CE
  929. P 13200 1450
  930. F 0 "#PWR0171" H 13200 1200 50 0001 C CNN
  931. F 1 "GND" H 13205 1277 50 0000 C CNN
  932. F 2 "" H 13200 1450 50 0001 C CNN
  933. F 3 "" H 13200 1450 50 0001 C CNN
  934. 1 13200 1450
  935. 1 0 0 -1
  936. $EndComp
  937. Wire Wire Line
  938. 13200 1400 13200 1450
  939. Wire Wire Line
  940. 13200 1150 13200 1200
  941. $Comp
  942. L Device:C_Small C33
  943. U 1 1 60997E09
  944. P 12750 1300
  945. F 0 "C33" H 12842 1346 50 0000 L CNN
  946. F 1 "100nF" H 12842 1255 50 0000 L CNN
  947. F 2 "Capacitor_SMD:C_0402_1005Metric" H 12750 1300 50 0001 C CNN
  948. F 3 "~" H 12750 1300 50 0001 C CNN
  949. F 4 "C1525" H 12750 1300 50 0001 C CNN "LCSC"
  950. 1 12750 1300
  951. 1 0 0 -1
  952. $EndComp
  953. $Comp
  954. L power:+3V3 #PWR0172
  955. U 1 1 609981FF
  956. P 12750 1150
  957. F 0 "#PWR0172" H 12750 1000 50 0001 C CNN
  958. F 1 "+3V3" H 12765 1323 50 0000 C CNN
  959. F 2 "" H 12750 1150 50 0001 C CNN
  960. F 3 "" H 12750 1150 50 0001 C CNN
  961. 1 12750 1150
  962. 1 0 0 -1
  963. $EndComp
  964. $Comp
  965. L power:GND #PWR0173
  966. U 1 1 60998209
  967. P 12750 1450
  968. F 0 "#PWR0173" H 12750 1200 50 0001 C CNN
  969. F 1 "GND" H 12755 1277 50 0000 C CNN
  970. F 2 "" H 12750 1450 50 0001 C CNN
  971. F 3 "" H 12750 1450 50 0001 C CNN
  972. 1 12750 1450
  973. 1 0 0 -1
  974. $EndComp
  975. Wire Wire Line
  976. 12750 1400 12750 1450
  977. Wire Wire Line
  978. 12750 1150 12750 1200
  979. Text Label 6450 3750 2 39 ~ 0
  980. FPGA_USB_RTS
  981. Text Label 6450 3850 2 39 ~ 0
  982. FPGA_USB_CTS
  983. Text Label 4150 8350 2 39 ~ 0
  984. FPGA_USB_DTR
  985. Text Label 2400 10300 2 50 ~ 0
  986. FPGA_USB_RXD
  987. Text Label 2400 10400 2 50 ~ 0
  988. FPGA_USB_CTS
  989. Text Label 2400 10500 2 50 ~ 0
  990. FPGA_USB_RTS
  991. Text Label 2400 10600 2 50 ~ 0
  992. FPGA_USB_DTR
  993. NoConn ~ 14250 5150
  994. Text Label 8800 10550 3 50 ~ 0
  995. FPGA_USB_RTS
  996. Text Label 8950 10550 3 50 ~ 0
  997. FPGA_USB_CTS
  998. $Comp
  999. L power:+3V3 #PWR0176
  1000. U 1 1 60358512
  1001. P 8800 9850
  1002. F 0 "#PWR0176" H 8800 9700 50 0001 C CNN
  1003. F 1 "+3V3" H 8750 10000 50 0000 C CNN
  1004. F 2 "" H 8800 9850 50 0001 C CNN
  1005. F 3 "" H 8800 9850 50 0001 C CNN
  1006. 1 8800 9850
  1007. 1 0 0 -1
  1008. $EndComp
  1009. Wire Wire Line
  1010. 8800 10150 8800 10250
  1011. Wire Wire Line
  1012. 8800 10450 8800 10550
  1013. $Comp
  1014. L power:+3V3 #PWR0177
  1015. U 1 1 60382665
  1016. P 8950 9850
  1017. F 0 "#PWR0177" H 8950 9700 50 0001 C CNN
  1018. F 1 "+3V3" H 9000 10000 50 0000 C CNN
  1019. F 2 "" H 8950 9850 50 0001 C CNN
  1020. F 3 "" H 8950 9850 50 0001 C CNN
  1021. 1 8950 9850
  1022. 1 0 0 -1
  1023. $EndComp
  1024. Wire Wire Line
  1025. 8950 10450 8950 10550
  1026. Wire Wire Line
  1027. 8950 10150 8950 10250
  1028. $Comp
  1029. L Device:LED D29
  1030. U 1 1 6041A94C
  1031. P 8800 10000
  1032. F 0 "D29" V 8850 10200 50 0000 R CNN
  1033. F 1 "LED-Y" V 8750 10350 50 0000 R CNN
  1034. F 2 "LED_SMD:LED_0603_1608Metric" H 8800 10000 50 0001 C CNN
  1035. F 3 "~" H 8800 10000 50 0001 C CNN
  1036. F 4 "C72038" H 8800 10000 50 0001 C CNN "LCSC"
  1037. 1 8800 10000
  1038. 0 -1 -1 0
  1039. $EndComp
  1040. $Comp
  1041. L Device:LED D30
  1042. U 1 1 604220EF
  1043. P 8950 10000
  1044. F 0 "D30" V 8989 9882 50 0000 R CNN
  1045. F 1 "LED-Y" V 8898 9882 50 0000 R CNN
  1046. F 2 "LED_SMD:LED_0603_1608Metric" H 8950 10000 50 0001 C CNN
  1047. F 3 "~" H 8950 10000 50 0001 C CNN
  1048. F 4 "C72038" H 8950 10000 50 0001 C CNN "LCSC"
  1049. 1 8950 10000
  1050. 0 -1 -1 0
  1051. $EndComp
  1052. $Comp
  1053. L Device:R_Small R10
  1054. U 1 1 60427964
  1055. P 8950 10350
  1056. F 0 "R10" H 9150 10300 50 0000 R CNN
  1057. F 1 "1k" H 9100 10400 50 0000 R CNN
  1058. F 2 "Resistor_SMD:R_0402_1005Metric" H 8950 10350 50 0001 C CNN
  1059. F 3 "~" H 8950 10350 50 0001 C CNN
  1060. F 4 "C11702" H 8950 10350 50 0001 C CNN "LCSC"
  1061. 1 8950 10350
  1062. 1 0 0 1
  1063. $EndComp
  1064. $Comp
  1065. L Device:R_Small R8
  1066. U 1 1 6042C0DA
  1067. P 8800 10350
  1068. F 0 "R8" H 8741 10304 50 0000 R CNN
  1069. F 1 "1k" H 8741 10395 50 0000 R CNN
  1070. F 2 "Resistor_SMD:R_0402_1005Metric" H 8800 10350 50 0001 C CNN
  1071. F 3 "~" H 8800 10350 50 0001 C CNN
  1072. F 4 "C11702" H 8800 10350 50 0001 C CNN "LCSC"
  1073. 1 8800 10350
  1074. 1 0 0 1
  1075. $EndComp
  1076. Wire Wire Line
  1077. 10500 9950 10500 10050
  1078. Text Label 4150 6250 2 39 ~ 0
  1079. FPGA_LED1
  1080. $Comp
  1081. L power:GND #PWR0179
  1082. U 1 1 6035E697
  1083. P 12950 7850
  1084. F 0 "#PWR0179" H 12950 7600 50 0001 C CNN
  1085. F 1 "GND" H 12955 7677 50 0000 C CNN
  1086. F 2 "" H 12950 7850 50 0001 C CNN
  1087. F 3 "" H 12950 7850 50 0001 C CNN
  1088. 1 12950 7850
  1089. 1 0 0 -1
  1090. $EndComp
  1091. Wire Wire Line
  1092. 12950 7750 12950 7850
  1093. Wire Wire Line
  1094. 13700 7450 13700 7550
  1095. Wire Wire Line
  1096. 13700 7550 13450 7550
  1097. Wire Wire Line
  1098. 13450 7450 13700 7450
  1099. $Comp
  1100. L power:+3V3 #PWR0180
  1101. U 1 1 603A1FB2
  1102. P 12950 6900
  1103. F 0 "#PWR0180" H 12950 6750 50 0001 C CNN
  1104. F 1 "+3V3" H 12965 7073 50 0000 C CNN
  1105. F 2 "" H 12950 6900 50 0001 C CNN
  1106. F 3 "" H 12950 6900 50 0001 C CNN
  1107. 1 12950 6900
  1108. 1 0 0 -1
  1109. $EndComp
  1110. Wire Wire Line
  1111. 12950 6900 12950 6950
  1112. $Comp
  1113. L power:+3V3 #PWR0181
  1114. U 1 1 603B881A
  1115. P 14050 7550
  1116. F 0 "#PWR0181" H 14050 7400 50 0001 C CNN
  1117. F 1 "+3V3" H 14065 7723 50 0000 C CNN
  1118. F 2 "" H 14050 7550 50 0001 C CNN
  1119. F 3 "" H 14050 7550 50 0001 C CNN
  1120. 1 14050 7550
  1121. 1 0 0 -1
  1122. $EndComp
  1123. Wire Wire Line
  1124. 13700 7550 14050 7550
  1125. Connection ~ 13700 7550
  1126. $Sheet
  1127. S 2400 9450 550 350
  1128. U 604B2191
  1129. F0 "Power FPGA" 50
  1130. F1 "power_fpga.sch" 50
  1131. $EndSheet
  1132. $Comp
  1133. L max80:EP4CE15F17C8N U13
  1134. U 6 1 6054E41F
  1135. P 7350 3200
  1136. F 0 "U13" H 6650 5100 50 0000 L CNN
  1137. F 1 "EP4CE15F17C8N" H 7350 5100 50 0000 L CNN
  1138. F 2 "" H 6000 3550 50 0001 L CNN
  1139. F 3 "" H 6000 3550 50 0001 L CNN
  1140. 6 7350 3200
  1141. 1 0 0 -1
  1142. $EndComp
  1143. $Comp
  1144. L max80:EP4CE15F17C8N U13
  1145. U 2 1 6055A8B6
  1146. P 2450 7200
  1147. F 0 "U13" H 2850 9050 50 0000 L CNN
  1148. F 1 "EP4CE15F17C8N" H 1700 9050 50 0000 L CNN
  1149. F 2 "" H 1100 7550 50 0001 L CNN
  1150. F 3 "" H 1100 7550 50 0001 L CNN
  1151. 2 2450 7200
  1152. 1 0 0 -1
  1153. $EndComp
  1154. $Comp
  1155. L max80:EP4CE15F17C8N U13
  1156. U 7 1 6057245D
  1157. P 10150 7200
  1158. F 0 "U13" H 9450 9100 50 0000 L CNN
  1159. F 1 "EP4CE15F17C8N" H 10150 9100 50 0000 L CNN
  1160. F 2 "" H 8800 7550 50 0001 L CNN
  1161. F 3 "" H 8800 7550 50 0001 L CNN
  1162. 7 10150 7200
  1163. 1 0 0 -1
  1164. $EndComp
  1165. Wire Wire Line
  1166. 6050 2650 6050 2550
  1167. $Comp
  1168. L Device:R_Small R38
  1169. U 1 1 604A56EE
  1170. P 5850 2450
  1171. F 0 "R38" H 5900 2550 50 0000 L CNN
  1172. F 1 "10k" H 5909 2405 50 0000 L CNN
  1173. F 2 "Resistor_SMD:R_0402_1005Metric" H 5850 2450 50 0001 C CNN
  1174. F 3 "~" H 5850 2450 50 0001 C CNN
  1175. F 4 "C25744" H 5850 2450 50 0001 C CNN "LCSC"
  1176. 1 5850 2450
  1177. 1 0 0 -1
  1178. $EndComp
  1179. $Comp
  1180. L power:+3V3 #PWR0189
  1181. U 1 1 604A7BF7
  1182. P 5850 2350
  1183. F 0 "#PWR0189" H 5850 2200 50 0001 C CNN
  1184. F 1 "+3V3" H 5865 2523 50 0000 C CNN
  1185. F 2 "" H 5850 2350 50 0001 C CNN
  1186. F 3 "" H 5850 2350 50 0001 C CNN
  1187. 1 5850 2350
  1188. 1 0 0 -1
  1189. $EndComp
  1190. Wire Wire Line
  1191. 9850 10400 9850 10550
  1192. Wire Wire Line
  1193. 9850 10100 9850 10200
  1194. $Comp
  1195. L power:+3V3 #PWR026
  1196. U 1 1 60ABEF27
  1197. P 9850 10100
  1198. F 0 "#PWR026" H 9850 9950 50 0001 C CNN
  1199. F 1 "+3V3" H 9865 10273 50 0000 C CNN
  1200. F 2 "" H 9850 10100 50 0001 C CNN
  1201. F 3 "" H 9850 10100 50 0001 C CNN
  1202. 1 9850 10100
  1203. 1 0 0 -1
  1204. $EndComp
  1205. Wire Wire Line
  1206. 9550 10100 9550 10200
  1207. $Comp
  1208. L power:+3V3 #PWR025
  1209. U 1 1 60AB5E46
  1210. P 9550 10100
  1211. F 0 "#PWR025" H 9550 9950 50 0001 C CNN
  1212. F 1 "+3V3" H 9565 10273 50 0000 C CNN
  1213. F 2 "" H 9550 10100 50 0001 C CNN
  1214. F 3 "" H 9550 10100 50 0001 C CNN
  1215. 1 9550 10100
  1216. 1 0 0 -1
  1217. $EndComp
  1218. Text Label 9850 10550 3 50 ~ 0
  1219. FPGA_SDA
  1220. Wire Wire Line
  1221. 9550 10400 9550 10550
  1222. Text Label 9550 10550 3 50 ~ 0
  1223. FPGA_SCL
  1224. $Comp
  1225. L Device:R_Small R14
  1226. U 1 1 60A915FC
  1227. P 9850 10300
  1228. F 0 "R14" H 9650 10350 50 0000 L CNN
  1229. F 1 "6.2k" H 9650 10250 50 0000 L CNN
  1230. F 2 "Resistor_SMD:R_0402_1005Metric" H 9850 10300 50 0001 C CNN
  1231. F 3 "~" H 9850 10300 50 0001 C CNN
  1232. F 4 "C25915" H 9850 10300 50 0001 C CNN "LCSC"
  1233. 1 9850 10300
  1234. 1 0 0 -1
  1235. $EndComp
  1236. $Comp
  1237. L Device:R_Small R12
  1238. U 1 1 60A90B03
  1239. P 9550 10300
  1240. F 0 "R12" H 9491 10254 50 0000 R CNN
  1241. F 1 "6.2k" H 9491 10345 50 0000 R CNN
  1242. F 2 "Resistor_SMD:R_0402_1005Metric" H 9550 10300 50 0001 C CNN
  1243. F 3 "~" H 9550 10300 50 0001 C CNN
  1244. F 4 "C25915" H 9550 10300 50 0001 C CNN "LCSC"
  1245. 1 9550 10300
  1246. 1 0 0 1
  1247. $EndComp
  1248. Wire Wire Line
  1249. 7250 10300 7250 10450
  1250. Wire Wire Line
  1251. 7250 10000 7250 10100
  1252. $Comp
  1253. L power:+3V3 #PWR02
  1254. U 1 1 605E302D
  1255. P 7250 10000
  1256. F 0 "#PWR02" H 7250 9850 50 0001 C CNN
  1257. F 1 "+3V3" H 7265 10173 50 0000 C CNN
  1258. F 2 "" H 7250 10000 50 0001 C CNN
  1259. F 3 "" H 7250 10000 50 0001 C CNN
  1260. 1 7250 10000
  1261. 1 0 0 -1
  1262. $EndComp
  1263. Wire Wire Line
  1264. 6950 10000 6950 10100
  1265. $Comp
  1266. L power:+3V3 #PWR01
  1267. U 1 1 605E3038
  1268. P 6950 10000
  1269. F 0 "#PWR01" H 6950 9850 50 0001 C CNN
  1270. F 1 "+3V3" H 6965 10173 50 0000 C CNN
  1271. F 2 "" H 6950 10000 50 0001 C CNN
  1272. F 3 "" H 6950 10000 50 0001 C CNN
  1273. 1 6950 10000
  1274. 1 0 0 -1
  1275. $EndComp
  1276. Wire Wire Line
  1277. 6950 10300 6950 10450
  1278. $Comp
  1279. L Device:R_Small R40
  1280. U 1 1 605E3046
  1281. P 7250 10200
  1282. F 0 "R40" H 7050 10250 50 0000 L CNN
  1283. F 1 "10k" H 7050 10150 50 0000 L CNN
  1284. F 2 "Resistor_SMD:R_0402_1005Metric" H 7250 10200 50 0001 C CNN
  1285. F 3 "~" H 7250 10200 50 0001 C CNN
  1286. F 4 "C25744" H 7250 10200 50 0001 C CNN "LCSC"
  1287. 1 7250 10200
  1288. 1 0 0 -1
  1289. $EndComp
  1290. $Comp
  1291. L Device:R_Small R39
  1292. U 1 1 605E3051
  1293. P 6950 10200
  1294. F 0 "R39" H 6891 10154 50 0000 R CNN
  1295. F 1 "10k" H 6891 10245 50 0000 R CNN
  1296. F 2 "Resistor_SMD:R_0402_1005Metric" H 6950 10200 50 0001 C CNN
  1297. F 3 "~" H 6950 10200 50 0001 C CNN
  1298. F 4 "C25744" H 6950 10200 50 0001 C CNN "LCSC"
  1299. 1 6950 10200
  1300. 1 0 0 1
  1301. $EndComp
  1302. Text GLabel 6950 10450 3 50 Input ~ 0
  1303. FPGA_TDI
  1304. Text GLabel 7250 10450 3 50 Input ~ 0
  1305. FPGA_TMS
  1306. $Comp
  1307. L Device:R_Small R42
  1308. U 1 1 60654523
  1309. P 7500 10450
  1310. F 0 "R42" H 7700 10400 50 0000 R CNN
  1311. F 1 "1k" H 7650 10500 50 0000 R CNN
  1312. F 2 "Resistor_SMD:R_0402_1005Metric" H 7500 10450 50 0001 C CNN
  1313. F 3 "~" H 7500 10450 50 0001 C CNN
  1314. F 4 "C11702" H 7500 10450 50 0001 C CNN "LCSC"
  1315. 1 7500 10450
  1316. 1 0 0 1
  1317. $EndComp
  1318. $Comp
  1319. L power:GND #PWR05
  1320. U 1 1 60655C2F
  1321. P 7500 10650
  1322. F 0 "#PWR05" H 7500 10400 50 0001 C CNN
  1323. F 1 "GND" H 7505 10477 50 0000 C CNN
  1324. F 2 "" H 7500 10650 50 0001 C CNN
  1325. F 3 "" H 7500 10650 50 0001 C CNN
  1326. 1 7500 10650
  1327. 1 0 0 -1
  1328. $EndComp
  1329. Wire Wire Line
  1330. 7500 10550 7500 10650
  1331. Text GLabel 7500 10250 1 50 Input ~ 0
  1332. FPGA_TCK
  1333. Wire Wire Line
  1334. 7500 10250 7500 10350
  1335. Text GLabel 13900 7150 2 50 Input ~ 0
  1336. ASD0
  1337. Text GLabel 13850 7250 2 50 Input ~ 0
  1338. DATA0
  1339. $Comp
  1340. L Device:R_Small R41
  1341. U 1 1 607B9EC1
  1342. P 13600 7250
  1343. F 0 "R41" V 13650 7100 50 0000 C CNN
  1344. F 1 "25" V 13650 7400 50 0000 C CNN
  1345. F 2 "Resistor_SMD:R_0402_1005Metric" H 13600 7250 50 0001 C CNN
  1346. F 3 "~" H 13600 7250 50 0001 C CNN
  1347. 1 13600 7250
  1348. 0 1 1 0
  1349. $EndComp
  1350. Wire Wire Line
  1351. 13450 7250 13500 7250
  1352. Wire Wire Line
  1353. 13700 7250 13750 7250
  1354. Text GLabel 12100 7450 0 50 Input ~ 0
  1355. DLCK
  1356. Text GLabel 12100 7250 0 50 Input ~ 0
  1357. nCE0
  1358. $Comp
  1359. L Device:C_Small C2
  1360. U 1 1 6082407C
  1361. P 12650 6350
  1362. F 0 "C2" H 12742 6396 50 0000 L CNN
  1363. F 1 "100nF" H 12742 6305 50 0000 L CNN
  1364. F 2 "Capacitor_SMD:C_0402_1005Metric" H 12650 6350 50 0001 C CNN
  1365. F 3 "~" H 12650 6350 50 0001 C CNN
  1366. F 4 "C1525" H 12650 6350 50 0001 C CNN "LCSC"
  1367. 1 12650 6350
  1368. 1 0 0 -1
  1369. $EndComp
  1370. $Comp
  1371. L power:+3V3 #PWR03
  1372. U 1 1 60824E14
  1373. P 12650 6200
  1374. F 0 "#PWR03" H 12650 6050 50 0001 C CNN
  1375. F 1 "+3V3" H 12665 6373 50 0000 C CNN
  1376. F 2 "" H 12650 6200 50 0001 C CNN
  1377. F 3 "" H 12650 6200 50 0001 C CNN
  1378. 1 12650 6200
  1379. 1 0 0 -1
  1380. $EndComp
  1381. Wire Wire Line
  1382. 12650 6200 12650 6250
  1383. $Comp
  1384. L power:GND #PWR04
  1385. U 1 1 60836309
  1386. P 12650 6500
  1387. F 0 "#PWR04" H 12650 6250 50 0001 C CNN
  1388. F 1 "GND" H 12655 6327 50 0000 C CNN
  1389. F 2 "" H 12650 6500 50 0001 C CNN
  1390. F 3 "" H 12650 6500 50 0001 C CNN
  1391. 1 12650 6500
  1392. 1 0 0 -1
  1393. $EndComp
  1394. Wire Wire Line
  1395. 12650 6450 12650 6500
  1396. $Comp
  1397. L power:+3V3 #PWR0190
  1398. U 1 1 60884CB0
  1399. P 5850 2800
  1400. F 0 "#PWR0190" H 5850 2650 50 0001 C CNN
  1401. F 1 "+3V3" H 5865 2973 50 0000 C CNN
  1402. F 2 "" H 5850 2800 50 0001 C CNN
  1403. F 3 "" H 5850 2800 50 0001 C CNN
  1404. 1 5850 2800
  1405. 1 0 0 -1
  1406. $EndComp
  1407. Wire Wire Line
  1408. 5850 2850 6550 2850
  1409. Wire Wire Line
  1410. 6300 2750 6550 2750
  1411. $Comp
  1412. L power:GND #PWR0191
  1413. U 1 1 608BC961
  1414. P 5850 2950
  1415. F 0 "#PWR0191" H 5850 2700 50 0001 C CNN
  1416. F 1 "GND" H 5855 2777 50 0000 C CNN
  1417. F 2 "" H 5850 2950 50 0001 C CNN
  1418. F 3 "" H 5850 2950 50 0001 C CNN
  1419. 1 5850 2950
  1420. 1 0 0 -1
  1421. $EndComp
  1422. Wire Wire Line
  1423. 6550 2650 6050 2650
  1424. $Comp
  1425. L Memory_Flash:W25Q128JVS U7
  1426. U 1 1 6035B91A
  1427. P 12950 7350
  1428. F 0 "U7" H 12800 7750 50 0000 C CNN
  1429. F 1 "W25Q128JVS" H 13200 7750 50 0000 C CNN
  1430. F 2 "max80:SOIC-8_5.23x5.23mm_P1.27mm" H 12950 7350 50 0001 C CNN
  1431. F 3 "http://www.winbond.com/resource-files/w25q128jv_dtr%20revc%2003272018%20plus.pdf" H 12950 7350 50 0001 C CNN
  1432. F 4 "W25Q128JVSIQ" H 12950 7350 50 0001 C CNN "LCSC"
  1433. 1 12950 7350
  1434. 1 0 0 -1
  1435. $EndComp
  1436. Text Label 8900 8150 0 39 ~ 0
  1437. AD2
  1438. Text GLabel 1600 6800 0 39 Input ~ 0
  1439. ~C1_ABC_3V3
  1440. Entry Wire Line
  1441. 650 6800 750 6900
  1442. Text Label 750 6900 0 50 ~ 0
  1443. AD9
  1444. Wire Wire Line
  1445. 750 6900 1650 6900
  1446. Text GLabel 1600 7900 0 39 Input ~ 0
  1447. ~C2_ABC_3V3
  1448. Text Label 750 8000 0 50 ~ 0
  1449. AD10
  1450. Text GLabel 1600 7200 0 39 Input ~ 0
  1451. ~C3_ABC_3V3
  1452. Text Label 750 7300 0 50 ~ 0
  1453. AD11
  1454. Entry Wire Line
  1455. 650 7200 750 7300
  1456. Text GLabel 1600 7600 0 39 Input ~ 0
  1457. ~C4_ABC_3V3
  1458. Wire Wire Line
  1459. 750 7500 1650 7500
  1460. Text GLabel 1600 7400 0 39 Input ~ 0
  1461. ~INP_ABC_3V3
  1462. Wire Wire Line
  1463. 1650 6700 750 6700
  1464. Entry Wire Line
  1465. 650 7400 750 7500
  1466. Text Label 750 7500 0 50 ~ 0
  1467. AD12
  1468. Text GLabel 1600 6600 0 39 Input ~ 0
  1469. ~STATUS_ABC_3V3
  1470. Text Label 750 6700 0 50 ~ 0
  1471. AD13
  1472. Wire Wire Line
  1473. 750 7800 1650 7800
  1474. Entry Wire Line
  1475. 650 6600 750 6700
  1476. Text Label 750 7700 0 50 ~ 0
  1477. AD14
  1478. Text Label 750 7800 0 50 ~ 0
  1479. AD15
  1480. Wire Wire Line
  1481. 750 8000 1650 8000
  1482. Entry Wire Line
  1483. 650 7900 750 8000
  1484. Wire Wire Line
  1485. 750 7300 1650 7300
  1486. Wire Wire Line
  1487. 750 7700 1650 7700
  1488. Entry Wire Line
  1489. 650 7600 750 7700
  1490. Entry Wire Line
  1491. 650 7700 750 7800
  1492. Text Label 9200 7450 0 50 ~ 0
  1493. A3
  1494. Text Label 9100 5750 2 50 ~ 0
  1495. Memorybus
  1496. Wire Wire Line
  1497. 9200 5950 9350 5950
  1498. Entry Wire Line
  1499. 9200 5950 9100 6050
  1500. Entry Wire Line
  1501. 9200 6050 9100 6150
  1502. Entry Wire Line
  1503. 9200 6150 9100 6250
  1504. Wire Wire Line
  1505. 9350 6050 9200 6050
  1506. Wire Wire Line
  1507. 9350 6150 9200 6150
  1508. Text Label 9200 6750 0 50 ~ 0
  1509. IO1
  1510. Text Label 9200 6550 0 50 ~ 0
  1511. IO2
  1512. Text Label 9200 6050 0 50 ~ 0
  1513. IO3
  1514. Text Label 9200 7250 0 50 ~ 0
  1515. IO4
  1516. Text Label 9200 7150 0 50 ~ 0
  1517. IO5
  1518. Text Label 9200 7750 0 50 ~ 0
  1519. IO6
  1520. Text Label 9200 7650 0 50 ~ 0
  1521. IO7
  1522. Wire Wire Line
  1523. 9350 6250 9200 6250
  1524. Wire Wire Line
  1525. 9350 6350 9200 6350
  1526. Wire Wire Line
  1527. 9350 6450 9200 6450
  1528. Wire Wire Line
  1529. 9350 6550 9200 6550
  1530. Wire Wire Line
  1531. 9350 6650 9200 6650
  1532. Wire Wire Line
  1533. 9350 6950 9200 6950
  1534. Wire Wire Line
  1535. 9350 7050 9200 7050
  1536. Wire Wire Line
  1537. 9350 7150 9200 7150
  1538. Wire Wire Line
  1539. 9350 7250 9200 7250
  1540. Wire Wire Line
  1541. 9350 7450 9200 7450
  1542. Wire Wire Line
  1543. 9350 7550 9200 7550
  1544. Wire Wire Line
  1545. 9350 7650 9200 7650
  1546. Wire Wire Line
  1547. 9350 7750 9200 7750
  1548. Wire Wire Line
  1549. 9350 7850 9200 7850
  1550. Wire Wire Line
  1551. 9350 7950 9200 7950
  1552. Wire Wire Line
  1553. 9350 8050 9200 8050
  1554. Entry Wire Line
  1555. 9200 6250 9100 6350
  1556. Entry Wire Line
  1557. 9200 6350 9100 6450
  1558. Entry Wire Line
  1559. 9200 6450 9100 6550
  1560. Entry Wire Line
  1561. 9200 6550 9100 6650
  1562. Entry Wire Line
  1563. 9200 6650 9100 6750
  1564. Entry Wire Line
  1565. 9200 6950 9100 7050
  1566. Entry Wire Line
  1567. 9200 7050 9100 7150
  1568. Entry Wire Line
  1569. 9200 7150 9100 7250
  1570. Entry Wire Line
  1571. 9200 7250 9100 7350
  1572. Entry Wire Line
  1573. 9200 7450 9100 7550
  1574. Entry Wire Line
  1575. 9200 7550 9100 7650
  1576. Entry Wire Line
  1577. 9200 7650 9100 7750
  1578. Entry Wire Line
  1579. 9200 7750 9100 7850
  1580. Entry Wire Line
  1581. 9200 7850 9100 7950
  1582. Entry Wire Line
  1583. 9200 7950 9100 8050
  1584. Entry Wire Line
  1585. 9200 8050 9100 8150
  1586. Text Label 9200 7550 0 50 ~ 0
  1587. WE#
  1588. Text Label 9200 6850 0 50 ~ 0
  1589. DQML
  1590. Text Label 9200 6450 0 50 ~ 0
  1591. A0
  1592. Text Label 9200 6350 0 50 ~ 0
  1593. A2
  1594. Text Label 9200 8050 0 50 ~ 0
  1595. CAS#
  1596. Text Label 9200 7050 0 50 ~ 0
  1597. RAS#
  1598. Text Label 9200 5950 0 50 ~ 0
  1599. CS#
  1600. Text Label 9200 7350 0 50 ~ 0
  1601. BA0
  1602. Text Label 9200 6250 0 50 ~ 0
  1603. BA1
  1604. Text Label 9200 6950 0 50 ~ 0
  1605. IO0
  1606. Text Label 9200 6650 0 50 ~ 0
  1607. A1
  1608. Text Label 9200 7850 0 50 ~ 0
  1609. A4
  1610. Text Label 9200 7950 0 39 ~ 0
  1611. A5
  1612. Text Label 9200 6150 0 50 ~ 0
  1613. A10
  1614. Wire Wire Line
  1615. 9200 7350 9350 7350
  1616. Entry Wire Line
  1617. 9100 7450 9200 7350
  1618. Wire Wire Line
  1619. 9200 6750 9350 6750
  1620. Entry Wire Line
  1621. 9100 6850 9200 6750
  1622. Wire Wire Line
  1623. 9200 6850 9350 6850
  1624. Entry Wire Line
  1625. 9100 6950 9200 6850
  1626. Entry Wire Line
  1627. 8850 8150 8750 8050
  1628. Wire Wire Line
  1629. 6450 3550 6550 3550
  1630. Wire Wire Line
  1631. 6450 4150 6550 4150
  1632. Wire Wire Line
  1633. 6500 2550 6550 2550
  1634. Wire Wire Line
  1635. 6450 4050 6550 4050
  1636. Wire Wire Line
  1637. 6450 3850 6550 3850
  1638. Wire Wire Line
  1639. 6450 3750 6550 3750
  1640. Wire Wire Line
  1641. 5850 2800 5850 2850
  1642. Wire Wire Line
  1643. 6450 3250 6550 3250
  1644. Wire Wire Line
  1645. 6300 2950 6300 2750
  1646. Connection ~ 6300 2950
  1647. Wire Wire Line
  1648. 6300 2950 6550 2950
  1649. Wire Wire Line
  1650. 5850 2550 6050 2550
  1651. Wire Wire Line
  1652. 6450 3650 6550 3650
  1653. Wire Wire Line
  1654. 6450 3450 6550 3450
  1655. Wire Wire Line
  1656. 6450 3150 6550 3150
  1657. Wire Wire Line
  1658. 6450 3050 6550 3050
  1659. Wire Wire Line
  1660. 6450 3350 6550 3350
  1661. Text GLabel 4150 7250 0 39 Input ~ 0
  1662. ~XINPSTB_ABC_3V3
  1663. Text GLabel 4100 7450 0 39 Input ~ 0
  1664. ~XOUTSTB_ABC_3V3
  1665. Wire Wire Line
  1666. 1600 7900 1650 7900
  1667. Wire Wire Line
  1668. 1600 7600 1650 7600
  1669. Wire Wire Line
  1670. 1600 7400 1650 7400
  1671. Wire Wire Line
  1672. 1600 7200 1650 7200
  1673. Text GLabel 1600 6400 0 39 Input ~ 0
  1674. ~RST_ABC_3V3
  1675. Wire Wire Line
  1676. 1600 6400 1650 6400
  1677. Wire Wire Line
  1678. 1600 6600 1650 6600
  1679. Wire Wire Line
  1680. 1600 6800 1650 6800
  1681. Text GLabel 1600 6500 0 39 Input ~ 0
  1682. ~XMEMW800_ABC_3V3
  1683. Wire Wire Line
  1684. 1600 6300 1650 6300
  1685. Wire Wire Line
  1686. 1600 6500 1650 6500
  1687. Text GLabel 1600 6300 0 39 Input ~ 0
  1688. ~XMEMW80_ABC_3V3
  1689. Wire Wire Line
  1690. 6500 7600 6550 7600
  1691. Wire Wire Line
  1692. 6500 7700 6550 7700
  1693. Text Label 750 3700 0 50 ~ 0
  1694. AD8
  1695. Entry Wire Line
  1696. 650 3600 750 3700
  1697. Wire Wire Line
  1698. 1650 3700 750 3700
  1699. Wire Wire Line
  1700. 950 4000 1050 4000
  1701. Wire Wire Line
  1702. 1250 4000 1650 4000
  1703. Entry Wire Line
  1704. 650 2400 750 2500
  1705. Wire Wire Line
  1706. 1650 2500 750 2500
  1707. Wire Wire Line
  1708. 750 2900 1650 2900
  1709. Entry Wire Line
  1710. 650 2800 750 2900
  1711. Text Label 750 3500 0 50 ~ 0
  1712. AD7
  1713. Text Label 750 2500 0 50 ~ 0
  1714. AD6
  1715. Text Label 750 2900 0 50 ~ 0
  1716. AD5
  1717. Wire Wire Line
  1718. 750 3500 1650 3500
  1719. Entry Wire Line
  1720. 650 3400 750 3500
  1721. Text Label 750 3300 0 50 ~ 0
  1722. AD4
  1723. Wire Wire Line
  1724. 750 3300 1650 3300
  1725. Entry Wire Line
  1726. 650 3200 750 3300
  1727. Text Label 750 3100 0 50 ~ 0
  1728. AD3
  1729. Wire Wire Line
  1730. 750 3100 1650 3100
  1731. Entry Wire Line
  1732. 650 3000 750 3100
  1733. $Comp
  1734. L power:+3V3 #PWR0111
  1735. U 1 1 610A914A
  1736. P 1100 2000
  1737. F 0 "#PWR0111" H 1100 1850 50 0001 C CNN
  1738. F 1 "+3V3" H 1115 2173 50 0000 C CNN
  1739. F 2 "" H 1100 2000 50 0001 C CNN
  1740. F 3 "" H 1100 2000 50 0001 C CNN
  1741. 1 1100 2000
  1742. 1 0 0 -1
  1743. $EndComp
  1744. Wire Wire Line
  1745. 1550 3200 1650 3200
  1746. Text GLabel 650 1700 1 50 Input ~ 0
  1747. AD[0..16]
  1748. $Comp
  1749. L power:+3V3 #PWR0188
  1750. U 1 1 603EE1D1
  1751. P 950 3950
  1752. F 0 "#PWR0188" H 950 3800 50 0001 C CNN
  1753. F 1 "+3V3" H 800 4050 50 0000 C CNN
  1754. F 2 "" H 950 3950 50 0001 C CNN
  1755. F 3 "" H 950 3950 50 0001 C CNN
  1756. 1 950 3950
  1757. 1 0 0 -1
  1758. $EndComp
  1759. Wire Wire Line
  1760. 950 3950 950 4000
  1761. $Comp
  1762. L Device:R_Small R37
  1763. U 1 1 603DBC0D
  1764. P 1150 4000
  1765. F 0 "R37" V 1250 3950 50 0000 L CNN
  1766. F 1 "10k" V 1050 3950 50 0000 L CNN
  1767. F 2 "Resistor_SMD:R_0402_1005Metric" H 1150 4000 50 0001 C CNN
  1768. F 3 "~" H 1150 4000 50 0001 C CNN
  1769. F 4 "C25744" H 1150 4000 50 0001 C CNN "LCSC"
  1770. 1 1150 4000
  1771. 0 -1 -1 0
  1772. $EndComp
  1773. $Comp
  1774. L Device:R_Small R13
  1775. U 1 1 603E59B4
  1776. P 1450 3200
  1777. F 0 "R13" V 1400 2950 50 0000 L CNN
  1778. F 1 "10k" V 1500 3000 50 0000 L CNN
  1779. F 2 "Resistor_SMD:R_0402_1005Metric" H 1450 3200 50 0001 C CNN
  1780. F 3 "~" H 1450 3200 50 0001 C CNN
  1781. F 4 "C25744" H 1450 3200 50 0001 C CNN "LCSC"
  1782. 1 1450 3200
  1783. 0 1 1 0
  1784. $EndComp
  1785. $Comp
  1786. L power:+3V3 #PWR0197
  1787. U 1 1 64667F2F
  1788. P 14900 6950
  1789. F 0 "#PWR0197" H 14900 6800 50 0001 C CNN
  1790. F 1 "+3V3" H 14915 7123 50 0000 C CNN
  1791. F 2 "" H 14900 6950 50 0001 C CNN
  1792. F 3 "" H 14900 6950 50 0001 C CNN
  1793. 1 14900 6950
  1794. 1 0 0 -1
  1795. $EndComp
  1796. Wire Wire Line
  1797. 14900 6950 14900 7050
  1798. Wire Wire Line
  1799. 14600 7350 14450 7350
  1800. Wire Wire Line
  1801. 14450 7350 14450 6950
  1802. Wire Wire Line
  1803. 14450 6950 14900 6950
  1804. Connection ~ 14900 6950
  1805. Text GLabel 1600 4100 0 39 Input ~ 0
  1806. FPGA_TCK
  1807. Wire Wire Line
  1808. 1600 4100 1650 4100
  1809. Text GLabel 1600 3900 0 39 Input ~ 0
  1810. DATA0
  1811. Wire Wire Line
  1812. 1600 3900 1650 3900
  1813. Text GLabel 1600 3800 0 39 Input ~ 0
  1814. DLCK
  1815. Wire Wire Line
  1816. 1600 3800 1650 3800
  1817. Text GLabel 1600 3600 0 39 Input ~ 0
  1818. ~OUT_ABC_3V3
  1819. Wire Wire Line
  1820. 1600 3600 1650 3600
  1821. Text GLabel 1600 3400 0 39 Input ~ 0
  1822. ~CS_ABC_3V3
  1823. Wire Wire Line
  1824. 1600 3400 1650 3400
  1825. Text GLabel 1600 3000 0 39 Input ~ 0
  1826. nCE0
  1827. Wire Wire Line
  1828. 1600 3000 1650 3000
  1829. Text GLabel 1600 2800 0 39 Input ~ 0
  1830. ASD0
  1831. Wire Wire Line
  1832. 1600 2800 1650 2800
  1833. Text GLabel 1600 2400 0 39 Input ~ 0
  1834. FPGA_TDI
  1835. Wire Wire Line
  1836. 1600 2400 1650 2400
  1837. Text GLabel 1600 2300 0 39 Input ~ 0
  1838. FPGA_TDO
  1839. Wire Wire Line
  1840. 1600 2300 1650 2300
  1841. Text GLabel 1600 2100 0 39 Input ~ 0
  1842. FPGA_TMS
  1843. Wire Wire Line
  1844. 1600 2100 1650 2100
  1845. $Comp
  1846. L max80:MT48LC16M16A2P-6A U6
  1847. U 1 1 604F9283
  1848. P 14700 3800
  1849. F 0 "U6" H 14150 5100 50 0000 C CNN
  1850. F 1 "MT48LC16M16A2P-6A" H 15500 5150 50 0000 C CNN
  1851. F 2 "Package_SO:TSOP-II-54_22.2x10.16mm_P0.8mm" H 13950 3950 50 0001 C CNN
  1852. F 3 "https://www.mouser.se/datasheet/2/671/256Mb_sdr-1282350.pdf" H 13950 3950 50 0001 C CNN
  1853. F 4 "C41881" H 14700 3800 50 0001 C CNN "LCSC"
  1854. 1 14700 3800
  1855. 1 0 0 -1
  1856. $EndComp
  1857. Wire Wire Line
  1858. 14650 2200 14850 2200
  1859. Text Label 6450 3650 2 39 ~ 0
  1860. SD_DAT2
  1861. Wire Wire Line
  1862. 6500 7400 6550 7400
  1863. Text GLabel 3250 1500 1 50 Input ~ 0
  1864. DD[0..15]
  1865. Wire Wire Line
  1866. 4150 2650 4200 2650
  1867. Wire Wire Line
  1868. 4150 2550 4200 2550
  1869. Wire Wire Line
  1870. 4150 2850 4200 2850
  1871. Wire Wire Line
  1872. 4150 2750 4200 2750
  1873. Wire Wire Line
  1874. 4150 2150 4200 2150
  1875. Wire Wire Line
  1876. 4150 2050 4200 2050
  1877. Text GLabel 4150 3050 0 39 Input ~ 0
  1878. FPGA_SPI_MOSI
  1879. Text GLabel 4150 2150 0 39 Input ~ 0
  1880. FPGA_SPI_MISO
  1881. Wire Wire Line
  1882. 4150 3250 4200 3250
  1883. Wire Wire Line
  1884. 4150 3150 4200 3150
  1885. Wire Wire Line
  1886. 4150 3050 4200 3050
  1887. Wire Wire Line
  1888. 4150 2950 4200 2950
  1889. Wire Wire Line
  1890. 4150 2450 4200 2450
  1891. Text GLabel 4150 2450 0 39 Input ~ 0
  1892. FPGA_RESIN
  1893. Entry Wire Line
  1894. 3250 2250 3350 2350
  1895. Text Label 3550 2350 0 39 ~ 0
  1896. DD9
  1897. Entry Wire Line
  1898. 3250 2150 3350 2250
  1899. Text Label 3550 2250 0 39 ~ 0
  1900. DD8
  1901. Entry Wire Line
  1902. 3250 4050 3350 4150
  1903. Text Label 3350 4150 0 50 ~ 0
  1904. DD7
  1905. Entry Wire Line
  1906. 3250 3950 3350 4050
  1907. Text Label 3350 4050 0 50 ~ 0
  1908. DD6
  1909. Entry Wire Line
  1910. 3250 3750 3350 3850
  1911. Text Label 3350 3850 0 50 ~ 0
  1912. DD5
  1913. Entry Wire Line
  1914. 3250 3650 3350 3750
  1915. Text Label 3350 3750 0 50 ~ 0
  1916. DD4
  1917. Entry Wire Line
  1918. 3250 3850 3350 3950
  1919. Text Label 3350 3950 0 50 ~ 0
  1920. DD3
  1921. Entry Wire Line
  1922. 3250 4150 3350 4250
  1923. Text Label 3350 4250 0 50 ~ 0
  1924. DD2
  1925. Entry Wire Line
  1926. 3250 1850 3350 1950
  1927. Text Label 3550 1950 0 39 ~ 0
  1928. DD1
  1929. Text Label 3350 3650 0 50 ~ 0
  1930. DD0
  1931. Entry Wire Line
  1932. 3250 3550 3350 3650
  1933. Wire Wire Line
  1934. 4150 3450 4200 3450
  1935. Text GLabel 4150 3450 0 39 Input ~ 0
  1936. ABC_CLK_3V3
  1937. Wire Wire Line
  1938. 4150 3550 4200 3550
  1939. Text GLabel 4150 3550 0 39 Input ~ 0
  1940. ~XMEMFL_ABC_3V3
  1941. $Comp
  1942. L max80:EP4CE15F17C8N U13
  1943. U 3 1 60549765
  1944. P 5000 3200
  1945. F 0 "U13" H 4250 5100 50 0000 L CNN
  1946. F 1 "EP4CE15F17C8N" H 5000 5100 50 0000 L CNN
  1947. F 2 "" H 3650 3550 50 0001 L CNN
  1948. F 3 "" H 3650 3550 50 0001 L CNN
  1949. 3 5000 3200
  1950. 1 0 0 -1
  1951. $EndComp
  1952. Text GLabel 4150 3250 0 39 Input ~ 0
  1953. INT_ESP32
  1954. Text GLabel 4150 2750 0 39 Input ~ 0
  1955. FPGA_GPIO5
  1956. Text GLabel 4150 2850 0 39 Input ~ 0
  1957. FPGA_GPIO4
  1958. Text GLabel 4150 2650 0 39 Input ~ 0
  1959. FPGA_GPIO0
  1960. Text GLabel 4150 2550 0 39 Input ~ 0
  1961. FPGA_GPIO2
  1962. Text GLabel 4150 6750 0 39 Input ~ 0
  1963. FPGA_GPIO3
  1964. Text GLabel 4150 2950 0 39 Input ~ 0
  1965. ESP32_IO0
  1966. Text GLabel 4150 3150 0 39 Input ~ 0
  1967. FGPA_SPI_CS_ESP32
  1968. Text GLabel 4150 2050 0 39 Input ~ 0
  1969. FPGA_SPI_CLK
  1970. $Comp
  1971. L max80:EP4CE15F17C8N U13
  1972. U 1 1 605450B7
  1973. P 2450 3150
  1974. F 0 "U13" H 1800 5050 50 0000 L CNN
  1975. F 1 "EP4CE15F17C8N" H 2400 5050 50 0000 L CNN
  1976. F 2 "" H 1100 3500 50 0001 L CNN
  1977. F 3 "" H 1100 3500 50 0001 L CNN
  1978. 1 2450 3150
  1979. 1 0 0 -1
  1980. $EndComp
  1981. Text GLabel 6350 8000 0 39 Input ~ 0
  1982. CLK0n
  1983. $Sheet
  1984. S 1150 9450 500 350
  1985. U 650A9AE9
  1986. F0 "HDMI" 50
  1987. F1 "HDMI.sch" 50
  1988. $EndSheet
  1989. Text GLabel 6500 6600 0 39 Input ~ 0
  1990. HDMI_D2+
  1991. Text GLabel 6500 6500 0 39 Input ~ 0
  1992. HDMI_D2-
  1993. Wire Wire Line
  1994. 6500 6500 6550 6500
  1995. Text GLabel 6500 6800 0 39 Input ~ 0
  1996. HDMI_D1-
  1997. Wire Wire Line
  1998. 6500 6600 6550 6600
  1999. Text GLabel 6500 6900 0 39 Input ~ 0
  2000. HDMI_D1+
  2001. Wire Wire Line
  2002. 6500 6800 6550 6800
  2003. Text GLabel 6500 7500 0 39 Input ~ 0
  2004. HDMI_D0+
  2005. Text GLabel 6500 7700 0 39 Input ~ 0
  2006. HDMI_CK+
  2007. Text GLabel 6500 7600 0 39 Input ~ 0
  2008. HDMI_CK-
  2009. Wire Wire Line
  2010. 6500 6900 6550 6900
  2011. Wire Wire Line
  2012. 6500 7500 6550 7500
  2013. Text GLabel 4100 7850 0 39 Input ~ 0
  2014. HDMI_SDA
  2015. Text GLabel 4150 6050 0 39 Input ~ 0
  2016. HDMI_SCL
  2017. Wire Wire Line
  2018. 4150 8050 4200 8050
  2019. Wire Wire Line
  2020. 4150 7050 4200 7050
  2021. Wire Wire Line
  2022. 3350 1950 4200 1950
  2023. Wire Wire Line
  2024. 3350 2250 4200 2250
  2025. Wire Wire Line
  2026. 3350 2350 4200 2350
  2027. Wire Wire Line
  2028. 3350 3650 4200 3650
  2029. Wire Wire Line
  2030. 3350 3750 4200 3750
  2031. Wire Wire Line
  2032. 3350 3850 4200 3850
  2033. Wire Wire Line
  2034. 3350 3950 4200 3950
  2035. Wire Wire Line
  2036. 3350 4050 4200 4050
  2037. Wire Wire Line
  2038. 3350 4150 4200 4150
  2039. Wire Wire Line
  2040. 3350 4250 4200 4250
  2041. NoConn ~ 4200 5950
  2042. NoConn ~ 4200 6150
  2043. NoConn ~ 4200 6350
  2044. NoConn ~ 4200 7350
  2045. NoConn ~ 6550 6300
  2046. NoConn ~ 6550 6400
  2047. NoConn ~ 6550 6700
  2048. NoConn ~ 6550 8100
  2049. Text GLabel 4150 4350 0 39 Input ~ 0
  2050. FLASH_CS#
  2051. Wire Wire Line
  2052. 4150 4350 4200 4350
  2053. Text GLabel 8150 10250 1 39 Input ~ 0
  2054. FPGA_JTAGEN
  2055. $Comp
  2056. L Device:R_Small R24
  2057. U 1 1 66F72E4D
  2058. P 8150 10500
  2059. F 0 "R24" H 8200 10450 50 0000 L CNN
  2060. F 1 "10k" H 8200 10550 50 0000 L CNN
  2061. F 2 "Resistor_SMD:R_0402_1005Metric" H 8150 10500 50 0001 C CNN
  2062. F 3 "~" H 8150 10500 50 0001 C CNN
  2063. F 4 "C25744" H 8150 10500 50 0001 C CNN "LCSC"
  2064. 1 8150 10500
  2065. -1 0 0 1
  2066. $EndComp
  2067. $Comp
  2068. L power:GND #PWR0186
  2069. U 1 1 67041559
  2070. P 8150 10650
  2071. F 0 "#PWR0186" H 8150 10400 50 0001 C CNN
  2072. F 1 "GND" H 8155 10477 50 0000 C CNN
  2073. F 2 "" H 8150 10650 50 0001 C CNN
  2074. F 3 "" H 8150 10650 50 0001 C CNN
  2075. 1 8150 10650
  2076. 1 0 0 -1
  2077. $EndComp
  2078. Text Label 7900 10350 0 39 ~ 0
  2079. nCE
  2080. Wire Wire Line
  2081. 7900 10350 8150 10350
  2082. Connection ~ 8150 10350
  2083. Wire Wire Line
  2084. 8150 10350 8150 10400
  2085. Wire Wire Line
  2086. 8150 10600 8150 10650
  2087. Wire Wire Line
  2088. 8150 10250 8150 10350
  2089. Text Label 1600 2200 2 39 ~ 0
  2090. nCE
  2091. Wire Wire Line
  2092. 1600 2200 1650 2200
  2093. $Comp
  2094. L power:GND #PWR0209
  2095. U 1 1 6723A794
  2096. P 14900 7700
  2097. F 0 "#PWR0209" H 14900 7450 50 0001 C CNN
  2098. F 1 "GND" H 14905 7527 50 0000 C CNN
  2099. F 2 "" H 14900 7700 50 0001 C CNN
  2100. F 3 "" H 14900 7700 50 0001 C CNN
  2101. 1 14900 7700
  2102. 1 0 0 -1
  2103. $EndComp
  2104. Wire Wire Line
  2105. 14900 7650 14900 7700
  2106. Wire Wire Line
  2107. 15200 7350 15300 7350
  2108. Text GLabel 6500 7400 0 39 Input ~ 0
  2109. HDMI_D0-
  2110. Entry Wire Line
  2111. 3700 6750 3800 6850
  2112. Text Label 3800 6850 0 39 ~ 0
  2113. DD10
  2114. Text GLabel 3700 5700 1 50 Input ~ 0
  2115. DD[0..15]
  2116. Text GLabel 1650 2600 0 39 Input ~ 0
  2117. XM_ABC_3V3
  2118. Entry Wire Line
  2119. 650 2600 750 2700
  2120. Wire Wire Line
  2121. 750 2700 1650 2700
  2122. Text Label 750 2700 0 50 ~ 0
  2123. AD16
  2124. $Comp
  2125. L Device:D_Schottky D4
  2126. U 1 1 60D15E22
  2127. P 12200 6950
  2128. F 0 "D4" V 12100 6800 50 0000 L CNN
  2129. F 1 "1N5819W" V 12200 6450 50 0000 L CNN
  2130. F 2 "Diode_SMD:D_SOD-123" H 12200 6950 50 0001 C CNN
  2131. F 3 "~" H 12200 6950 50 0001 C CNN
  2132. F 4 "C963381" V 12200 6950 50 0001 C CNN "LCSC"
  2133. 1 12200 6950
  2134. 0 1 1 0
  2135. $EndComp
  2136. Wire Wire Line
  2137. 13450 7150 13550 7150
  2138. $Comp
  2139. L Device:D_Schottky D7
  2140. U 1 1 60D4872C
  2141. P 13750 6900
  2142. F 0 "D7" V 13600 7000 50 0000 L CNN
  2143. F 1 "1N5819W" V 13700 7000 50 0000 L CNN
  2144. F 2 "Diode_SMD:D_SOD-123" H 13750 6900 50 0001 C CNN
  2145. F 3 "~" H 13750 6900 50 0001 C CNN
  2146. F 4 "C963381" V 13750 6900 50 0001 C CNN "LCSC"
  2147. 1 13750 6900
  2148. 0 1 1 0
  2149. $EndComp
  2150. $Comp
  2151. L Device:D_Schottky D6
  2152. U 1 1 60D4963D
  2153. P 13550 6900
  2154. F 0 "D6" V 13400 6750 50 0000 L CNN
  2155. F 1 "1N5819W" V 13600 7200 50 0000 L CNN
  2156. F 2 "Diode_SMD:D_SOD-123" H 13550 6900 50 0001 C CNN
  2157. F 3 "~" H 13550 6900 50 0001 C CNN
  2158. F 4 "C963381" V 13550 6900 50 0001 C CNN "LCSC"
  2159. 1 13550 6900
  2160. 0 1 1 0
  2161. $EndComp
  2162. Connection ~ 13550 7150
  2163. Wire Wire Line
  2164. 13550 7150 13900 7150
  2165. Connection ~ 13750 7250
  2166. Wire Wire Line
  2167. 13750 7250 13850 7250
  2168. $Comp
  2169. L power:+3V3 #PWR0229
  2170. U 1 1 60DCB38E
  2171. P 13650 6600
  2172. F 0 "#PWR0229" H 13650 6450 50 0001 C CNN
  2173. F 1 "+3V3" H 13665 6773 50 0000 C CNN
  2174. F 2 "" H 13650 6600 50 0001 C CNN
  2175. F 3 "" H 13650 6600 50 0001 C CNN
  2176. 1 13650 6600
  2177. 1 0 0 -1
  2178. $EndComp
  2179. Wire Wire Line
  2180. 13550 6750 13550 6700
  2181. Wire Wire Line
  2182. 13550 6700 13650 6700
  2183. Wire Wire Line
  2184. 13650 6700 13650 6600
  2185. Wire Wire Line
  2186. 13650 6700 13750 6700
  2187. Wire Wire Line
  2188. 13750 6700 13750 6750
  2189. Connection ~ 13650 6700
  2190. Wire Wire Line
  2191. 12100 7450 12400 7450
  2192. Wire Wire Line
  2193. 12100 7250 12200 7250
  2194. $Comp
  2195. L Device:D_Schottky D5
  2196. U 1 1 60E7A93B
  2197. P 12400 6950
  2198. F 0 "D5" V 12300 7050 50 0000 L CNN
  2199. F 1 "1N5819W" V 12500 6250 50 0000 L CNN
  2200. F 2 "Diode_SMD:D_SOD-123" H 12400 6950 50 0001 C CNN
  2201. F 3 "~" H 12400 6950 50 0001 C CNN
  2202. F 4 "C963381" V 12400 6950 50 0001 C CNN "LCSC"
  2203. 1 12400 6950
  2204. 0 1 1 0
  2205. $EndComp
  2206. Connection ~ 12200 7250
  2207. Wire Wire Line
  2208. 12200 7250 12450 7250
  2209. Connection ~ 12400 7450
  2210. Wire Wire Line
  2211. 12400 7450 12450 7450
  2212. $Comp
  2213. L power:+3V3 #PWR0230
  2214. U 1 1 60ECB507
  2215. P 12300 6650
  2216. F 0 "#PWR0230" H 12300 6500 50 0001 C CNN
  2217. F 1 "+3V3" H 12315 6823 50 0000 C CNN
  2218. F 2 "" H 12300 6650 50 0001 C CNN
  2219. F 3 "" H 12300 6650 50 0001 C CNN
  2220. 1 12300 6650
  2221. 1 0 0 -1
  2222. $EndComp
  2223. Wire Wire Line
  2224. 12200 6800 12200 6750
  2225. Wire Wire Line
  2226. 12200 6750 12300 6750
  2227. Wire Wire Line
  2228. 12300 6750 12300 6650
  2229. Wire Wire Line
  2230. 12300 6750 12400 6750
  2231. Wire Wire Line
  2232. 12400 6750 12400 6800
  2233. Connection ~ 12300 6750
  2234. Text GLabel 8750 7850 1 50 Input ~ 0
  2235. AD[0..15]
  2236. Wire Bus Line
  2237. 8750 7850 8750 8050
  2238. Text GLabel 4150 8050 0 39 Input ~ 0
  2239. HDMI_HPD
  2240. Wire Wire Line
  2241. 4150 7250 4200 7250
  2242. Wire Wire Line
  2243. 4150 6750 4200 6750
  2244. Wire Wire Line
  2245. 4150 8450 4200 8450
  2246. Wire Wire Line
  2247. 4150 7950 4200 7950
  2248. Wire Wire Line
  2249. 4150 6250 4200 6250
  2250. NoConn ~ 6550 7000
  2251. NoConn ~ 6550 7100
  2252. NoConn ~ 6550 7200
  2253. NoConn ~ 6550 7900
  2254. Wire Wire Line
  2255. 4100 7450 4200 7450
  2256. Wire Wire Line
  2257. 4150 6050 4200 6050
  2258. Wire Wire Line
  2259. 4150 8150 4200 8150
  2260. NoConn ~ 4200 5850
  2261. Wire Wire Line
  2262. 4100 7850 4200 7850
  2263. Wire Wire Line
  2264. 9250 8150 9250 8250
  2265. Wire Wire Line
  2266. 9250 8250 9350 8250
  2267. Connection ~ 9250 8150
  2268. Wire Wire Line
  2269. 9250 8150 9350 8150
  2270. Wire Wire Line
  2271. 6350 8000 6550 8000
  2272. $Comp
  2273. L max80:EP4CE15F17C8N U13
  2274. U 5 1 60569818
  2275. P 7350 7200
  2276. F 0 "U13" H 6650 9100 50 0000 L CNN
  2277. F 1 "EP4CE15F17C8N" H 7300 9100 50 0000 L CNN
  2278. F 2 "" H 6000 7550 50 0001 L CNN
  2279. F 3 "" H 6000 7550 50 0001 L CNN
  2280. 5 7350 7200
  2281. 1 0 0 -1
  2282. $EndComp
  2283. Wire Wire Line
  2284. 6550 7800 6050 7800
  2285. NoConn ~ 6550 7300
  2286. NoConn ~ 6550 8200
  2287. Wire Wire Line
  2288. 4150 8350 4200 8350
  2289. Text GLabel 4150 7650 0 39 Input ~ 0
  2290. EXT_HA
  2291. Text GLabel 4150 6550 0 39 Input ~ 0
  2292. EXT_HB
  2293. Text GLabel 4150 6650 0 39 Input ~ 0
  2294. EXT_HC
  2295. Text GLabel 4150 6950 0 39 Input ~ 0
  2296. EXT_HD
  2297. Text GLabel 4150 7150 0 39 Input ~ 0
  2298. EXT_HE
  2299. Text GLabel 4150 7050 0 39 Input ~ 0
  2300. EXT_HF
  2301. Text GLabel 4150 7750 0 39 Input ~ 0
  2302. EXT_HG
  2303. Wire Wire Line
  2304. 4150 7750 4200 7750
  2305. Wire Wire Line
  2306. 4150 7550 4200 7550
  2307. Wire Wire Line
  2308. 4150 7150 4200 7150
  2309. Wire Wire Line
  2310. 4150 6650 4200 6650
  2311. Wire Wire Line
  2312. 4150 6550 4200 6550
  2313. Text GLabel 4150 3350 0 39 Input ~ 0
  2314. EXT_HH
  2315. Wire Wire Line
  2316. 4150 3350 4200 3350
  2317. Wire Wire Line
  2318. 4150 6950 4200 6950
  2319. $Comp
  2320. L max80:EP4CE15F17C8N U13
  2321. U 4 1 60561625
  2322. P 5000 7200
  2323. F 0 "U13" H 4300 9100 50 0000 L CNN
  2324. F 1 "EP4CE15F17C8N" H 4950 9100 50 0000 L CNN
  2325. F 2 "" H 3650 7550 50 0001 L CNN
  2326. F 3 "" H 3650 7550 50 0001 L CNN
  2327. 4 5000 7200
  2328. 1 0 0 -1
  2329. $EndComp
  2330. Wire Wire Line
  2331. 4200 8250 3500 8250
  2332. $Comp
  2333. L power:+3V3 #PWR0238
  2334. U 1 1 613FA1C3
  2335. P 3500 8150
  2336. F 0 "#PWR0238" H 3500 8000 50 0001 C CNN
  2337. F 1 "+3V3" H 3515 8323 50 0000 C CNN
  2338. F 2 "" H 3500 8150 50 0001 C CNN
  2339. F 3 "" H 3500 8150 50 0001 C CNN
  2340. 1 3500 8150
  2341. 1 0 0 -1
  2342. $EndComp
  2343. Wire Wire Line
  2344. 4150 7650 4200 7650
  2345. $Comp
  2346. L power:+3V3 #PWR0239
  2347. U 1 1 614CC048
  2348. P 3600 6350
  2349. F 0 "#PWR0239" H 3600 6200 50 0001 C CNN
  2350. F 1 "+3V3" H 3615 6523 50 0000 C CNN
  2351. F 2 "" H 3600 6350 50 0001 C CNN
  2352. F 3 "" H 3600 6350 50 0001 C CNN
  2353. 1 3600 6350
  2354. 1 0 0 -1
  2355. $EndComp
  2356. Wire Wire Line
  2357. 3600 6350 3600 6450
  2358. Wire Wire Line
  2359. 3600 6450 4200 6450
  2360. Wire Wire Line
  2361. 9350 3950 9400 3950
  2362. Wire Wire Line
  2363. 9350 3650 9400 3650
  2364. Wire Wire Line
  2365. 8800 3350 9400 3350
  2366. Entry Wire Line
  2367. 8700 3250 8800 3350
  2368. Entry Wire Line
  2369. 8700 3150 8800 3250
  2370. Wire Wire Line
  2371. 8800 3250 9400 3250
  2372. Wire Wire Line
  2373. 8800 3550 9400 3550
  2374. Wire Wire Line
  2375. 8800 2050 9400 2050
  2376. Text GLabel 9350 4050 0 39 Input ~ 0
  2377. INT_ABC_3V3
  2378. Text GLabel 9350 3950 0 39 Input ~ 0
  2379. FPGA_NMI
  2380. Text GLabel 9350 3650 0 39 Input ~ 0
  2381. ~FPGA_READY
  2382. Wire Wire Line
  2383. 9350 3750 9400 3750
  2384. Wire Wire Line
  2385. 9350 4050 9400 4050
  2386. Wire Wire Line
  2387. 9350 4250 9400 4250
  2388. NoConn ~ 9400 4150
  2389. Entry Wire Line
  2390. 8700 3750 8800 3850
  2391. Entry Wire Line
  2392. 8700 3450 8800 3550
  2393. Wire Wire Line
  2394. 8800 1950 9400 1950
  2395. Text GLabel 8500 1750 1 50 Input ~ 0
  2396. AD[0..15]
  2397. Wire Wire Line
  2398. 8800 2250 9400 2250
  2399. Wire Wire Line
  2400. 8800 2450 9400 2450
  2401. Wire Wire Line
  2402. 8800 2550 9400 2550
  2403. Wire Wire Line
  2404. 8800 2650 9400 2650
  2405. Wire Wire Line
  2406. 8800 2750 9400 2750
  2407. Wire Wire Line
  2408. 8800 2850 9400 2850
  2409. Wire Wire Line
  2410. 8800 2950 9400 2950
  2411. Wire Wire Line
  2412. 8800 3050 9400 3050
  2413. Wire Wire Line
  2414. 8800 3150 9400 3150
  2415. Wire Wire Line
  2416. 8800 3450 9400 3450
  2417. Wire Wire Line
  2418. 8800 3850 9400 3850
  2419. Entry Wire Line
  2420. 8700 2650 8800 2750
  2421. Entry Wire Line
  2422. 8700 2550 8800 2650
  2423. Entry Wire Line
  2424. 8700 2450 8800 2550
  2425. Text Label 8800 2050 0 39 ~ 0
  2426. A6
  2427. Text Label 8800 2650 0 39 ~ 0
  2428. A8
  2429. Text Label 8800 2850 0 50 ~ 0
  2430. A9
  2431. Text Label 8800 2550 0 39 ~ 0
  2432. A11
  2433. Text Label 8800 2950 0 39 ~ 0
  2434. A12
  2435. Entry Wire Line
  2436. 8700 2350 8800 2450
  2437. Entry Wire Line
  2438. 8500 2250 8600 2350
  2439. Entry Wire Line
  2440. 8700 2150 8800 2250
  2441. Entry Wire Line
  2442. 8500 2050 8600 2150
  2443. Entry Wire Line
  2444. 8700 1950 8800 2050
  2445. Entry Wire Line
  2446. 8700 1850 8800 1950
  2447. Entry Wire Line
  2448. 8700 2750 8800 2850
  2449. Entry Wire Line
  2450. 8700 2850 8800 2950
  2451. Entry Wire Line
  2452. 8700 2950 8800 3050
  2453. Entry Wire Line
  2454. 8700 3050 8800 3150
  2455. Entry Wire Line
  2456. 8700 3350 8800 3450
  2457. Text Label 8800 3850 0 39 ~ 0
  2458. IO15
  2459. Text Label 8800 2750 0 39 ~ 0
  2460. IO14
  2461. Text Label 8800 3450 0 39 ~ 0
  2462. IO13
  2463. Text Label 8800 3150 0 39 ~ 0
  2464. IO12
  2465. Text Label 8800 3550 0 39 ~ 0
  2466. IO11
  2467. Text Label 8800 3350 0 39 ~ 0
  2468. IO10
  2469. Text Label 8800 3050 0 39 ~ 0
  2470. IO9
  2471. Text Label 8800 3250 0 50 ~ 0
  2472. IO8
  2473. Text Label 8800 2250 0 39 ~ 0
  2474. CKE
  2475. Text Label 8800 1950 0 39 ~ 0
  2476. DQMH
  2477. Text Label 8800 2450 0 39 ~ 0
  2478. A7
  2479. Text Label 9350 4250 2 39 ~ 0
  2480. CLK
  2481. Text Label 8850 2350 0 39 ~ 0
  2482. AD1
  2483. Text Label 8850 2150 0 39 ~ 0
  2484. AD0
  2485. $Comp
  2486. L max80:EP4CE15F17C8N U13
  2487. U 8 1 60554149
  2488. P 10200 3150
  2489. F 0 "U13" H 10828 3171 50 0000 L CNN
  2490. F 1 "EP4CE15F17C8N" H 10828 3080 50 0000 L CNN
  2491. F 2 "" H 8850 3500 50 0001 L CNN
  2492. F 3 "" H 8850 3500 50 0001 L CNN
  2493. 8 10200 3150
  2494. 1 0 0 -1
  2495. $EndComp
  2496. Text Label 8700 1750 1 50 ~ 0
  2497. Memorybus
  2498. NoConn ~ 6550 3950
  2499. Wire Wire Line
  2500. 6500 2450 6550 2450
  2501. Text Label 14150 1800 2 50 ~ 0
  2502. Memorybus
  2503. Wire Wire Line
  2504. 10850 9950 10850 10050
  2505. Wire Wire Line
  2506. 11250 9950 11250 10050
  2507. Wire Wire Line
  2508. 5850 2950 6300 2950
  2509. Wire Wire Line
  2510. 3800 6850 4200 6850
  2511. Wire Bus Line
  2512. 3700 6750 3700 5700
  2513. NoConn ~ 1650 7000
  2514. Wire Wire Line
  2515. 12400 7100 12400 7450
  2516. Wire Wire Line
  2517. 12200 7100 12200 7250
  2518. Wire Wire Line
  2519. 13550 7050 13550 7150
  2520. Wire Wire Line
  2521. 13750 7050 13750 7250
  2522. Wire Wire Line
  2523. 1100 2000 1100 3200
  2524. Wire Wire Line
  2525. 1100 3200 1350 3200
  2526. Text GLabel 9350 3750 0 39 Input ~ 0
  2527. INT800_ABC_3V3
  2528. $Comp
  2529. L power:GND #PWR0234
  2530. U 1 1 613B076A
  2531. P 6050 8350
  2532. F 0 "#PWR0234" H 6050 8100 50 0001 C CNN
  2533. F 1 "GND" H 6055 8177 50 0000 C CNN
  2534. F 2 "" H 6050 8350 50 0001 C CNN
  2535. F 3 "" H 6050 8350 50 0001 C CNN
  2536. 1 6050 8350
  2537. 1 0 0 -1
  2538. $EndComp
  2539. Wire Wire Line
  2540. 6050 8350 6050 7800
  2541. Wire Wire Line
  2542. 3500 8150 3500 8250
  2543. Wire Bus Line
  2544. 8500 1750 8500 2250
  2545. Wire Wire Line
  2546. 8600 2150 9400 2150
  2547. Wire Wire Line
  2548. 8600 2350 9400 2350
  2549. Wire Wire Line
  2550. 8850 8150 9250 8150
  2551. Wire Bus Line
  2552. 3250 1500 3250 4300
  2553. Wire Bus Line
  2554. 650 1700 650 7900
  2555. Wire Bus Line
  2556. 8700 1750 8700 3750
  2557. Wire Bus Line
  2558. 9100 5750 9100 8150
  2559. Wire Bus Line
  2560. 15650 1800 15650 4600
  2561. Wire Bus Line
  2562. 13750 1800 13750 4600
  2563. $Comp
  2564. L Graphic:Logo_Open_Hardware_Small #LOGO1
  2565. U 1 1 60EED557
  2566. P 11650 1250
  2567. F 0 "#LOGO1" H 11650 1525 50 0001 C CNN
  2568. F 1 "Logo_Open_Hardware_Small" H 11650 1025 50 0001 C CNN
  2569. F 2 "Symbol:OSHW-Logo2_7.3x6mm_SilkScreen" H 11650 1250 50 0001 C CNN
  2570. F 3 "~" H 11650 1250 50 0001 C CNN
  2571. 1 11650 1250
  2572. 1 0 0 -1
  2573. $EndComp
  2574. $EndSCHEMATC