max80.sch 54 KB

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