123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514 |
- EESchema Schematic File Version 4
- EELAYER 30 0
- EELAYER END
- $Descr A3 16535 11693
- encoding utf-8
- Sheet 1 9
- Title "MAX80"
- Date "2021-02-22"
- Rev "0.01"
- Comp "Peter o Per"
- Comment1 ""
- Comment2 ""
- Comment3 ""
- Comment4 ""
- $EndDescr
- $Comp
- L Oscillator:ASE-xxxMHz OSC1
- U 1 1 57BABF34
- P 14900 7350
- F 0 "OSC1" H 14700 7600 50 0000 C CNN
- F 1 "EPSON Q33310 48 MHz" H 15450 7600 50 0000 C CNN
- F 2 "max80:Oscillator_SMD_Abracon_ASE-4Pin_3.2x2.5mm" V 14830 7350 50 0001 C CNN
- F 3 "" H 14900 7350 50 0000 C CNN
- F 4 "C32533" V 14900 7350 50 0001 C CNN "LCSC"
- 1 14900 7350
- 1 0 0 -1
- $EndComp
- Text GLabel 15300 7350 2 50 Input ~ 0
- CLK0n
- $Sheet
- S 6450 10050 650 400
- U 6013B380
- F0 "abc80bus" 50
- F1 "abc80bus.sch" 50
- $EndSheet
- $Sheet
- S 3100 10050 550 400
- U 6013A59C
- F0 "POWER" 50
- F1 "power.sch" 50
- $EndSheet
- $Sheet
- S 2400 10050 550 650
- U 601569F0
- F0 "USB" 50
- F1 "usb.sch" 50
- F2 "TX0" I L 2400 10200 50
- F3 "RX0" I L 2400 10300 50
- F4 "CTS" I L 2400 10400 50
- F5 "RTS" I L 2400 10500 50
- F6 "DTR" I L 2400 10600 50
- $EndSheet
- $Sheet
- S 4200 10050 700 400
- U 602159BB
- F0 "ESP32" 50
- F1 "esp32.sch" 50
- F2 "RTC" I L 4200 10100 50
- F3 "FPGA_I2C_SDA" I L 4200 10200 50
- F4 "FPGA_I2C_SCL" I L 4200 10300 50
- $EndSheet
- $Comp
- L Connector:Micro_SD_Card J3
- U 1 1 6022B125
- P 14850 8800
- F 0 "J3" H 14800 9517 50 0000 C CNN
- F 1 "Micro_SD_Card DM3AT-SF-PEJM5" H 14800 9426 50 0000 C CNN
- F 2 "max80:microSD_HC_Hirose_DM3AT-SF-PEJM5" H 16000 9100 50 0001 C CNN
- F 3 "http://katalog.we-online.de/em/datasheet/693072010801.pdf" H 14850 8800 50 0001 C CNN
- F 4 "C114218" H 14850 8800 50 0001 C CNN "LCSC"
- 1 14850 8800
- 1 0 0 -1
- $EndComp
- $Sheet
- S 1150 10050 550 500
- U 6023577B
- F0 "RTC" 50
- F1 "rtc.sch" 50
- F2 "SCL" I L 1150 10150 50
- F3 "SDA" I L 1150 10250 50
- F4 "32KHZ" I L 1150 10350 50
- F5 "INT" I L 1150 10450 50
- $EndSheet
- Text Label 8700 1800 1 50 ~ 0
- Memorybus
- Entry Wire Line
- 13800 5700 13900 5800
- Text Label 13900 5300 0 50 ~ 0
- WE#
- Wire Wire Line
- 13900 5300 14050 5300
- Entry Wire Line
- 13800 5600 13900 5700
- Entry Wire Line
- 13800 5500 13900 5600
- Entry Wire Line
- 13800 5400 13900 5500
- Entry Wire Line
- 13800 5300 13900 5400
- Entry Wire Line
- 13800 5200 13900 5300
- Entry Wire Line
- 13800 5100 13900 5200
- Entry Wire Line
- 13800 5000 13900 5100
- Entry Wire Line
- 13800 4900 13900 5000
- Entry Wire Line
- 13800 4800 13900 4900
- Entry Wire Line
- 13800 4700 13900 4800
- Entry Wire Line
- 13800 4600 13900 4700
- Entry Wire Line
- 13800 4500 13900 4600
- Entry Wire Line
- 13800 4400 13900 4500
- Entry Wire Line
- 15600 3900 15700 3800
- Entry Wire Line
- 15600 4000 15700 3900
- Entry Wire Line
- 15600 4100 15700 4000
- Entry Wire Line
- 15600 4200 15700 4100
- Entry Wire Line
- 15600 4300 15700 4200
- Entry Wire Line
- 15600 4400 15700 4300
- Entry Wire Line
- 15600 4500 15700 4400
- Entry Wire Line
- 15600 4600 15700 4500
- Entry Wire Line
- 15600 4700 15700 4600
- Entry Wire Line
- 15600 4800 15700 4700
- Entry Wire Line
- 15600 4900 15700 4800
- Entry Wire Line
- 15600 5000 15700 4900
- Entry Wire Line
- 15600 5100 15700 5000
- Entry Wire Line
- 15600 5200 15700 5100
- Entry Wire Line
- 15600 5300 15700 5200
- Entry Wire Line
- 15600 5400 15700 5300
- Wire Wire Line
- 15450 3900 15600 3900
- Wire Wire Line
- 15450 4000 15600 4000
- Wire Wire Line
- 15450 4100 15600 4100
- Wire Wire Line
- 15450 4200 15600 4200
- Wire Wire Line
- 15450 4300 15600 4300
- Wire Wire Line
- 15450 4400 15600 4400
- Wire Wire Line
- 15450 4500 15600 4500
- Wire Wire Line
- 15450 4600 15600 4600
- Wire Wire Line
- 15450 4700 15600 4700
- Wire Wire Line
- 15450 4800 15600 4800
- Wire Wire Line
- 15450 4900 15600 4900
- Wire Wire Line
- 15450 5000 15600 5000
- Wire Wire Line
- 15450 5100 15600 5100
- Wire Wire Line
- 15450 5200 15600 5200
- Wire Wire Line
- 15450 5300 15600 5300
- Wire Wire Line
- 15450 5400 15600 5400
- Wire Wire Line
- 13900 3900 14050 3900
- Wire Wire Line
- 13900 4000 14050 4000
- Wire Wire Line
- 13900 4100 14050 4100
- Wire Wire Line
- 13900 4200 14050 4200
- Wire Wire Line
- 13900 4300 14050 4300
- Wire Wire Line
- 13900 4400 14050 4400
- Wire Wire Line
- 13900 4500 14050 4500
- Wire Wire Line
- 13900 4600 14050 4600
- Wire Wire Line
- 13900 4700 14050 4700
- Wire Wire Line
- 13900 4800 14050 4800
- Wire Wire Line
- 13900 4900 14050 4900
- Wire Wire Line
- 13900 5000 14050 5000
- Wire Wire Line
- 13900 5100 14050 5100
- Wire Wire Line
- 13900 5200 14050 5200
- Text Label 13900 5200 0 50 ~ 0
- DQML
- Text Label 13900 5100 0 50 ~ 0
- A0
- Text Label 13900 5000 0 50 ~ 0
- A1
- Text Label 13900 4900 0 50 ~ 0
- A2
- Text Label 13900 4800 0 50 ~ 0
- A3
- Text Label 13900 4700 0 50 ~ 0
- A4
- Text Label 13900 4600 0 50 ~ 0
- A5
- Text Label 13900 4500 0 50 ~ 0
- A6
- Text Label 13900 4400 0 50 ~ 0
- A7
- Text Label 13900 4300 0 50 ~ 0
- A8
- Text Label 13900 4200 0 50 ~ 0
- A9
- Text Label 13900 4100 0 50 ~ 0
- A10
- Text Label 13900 4000 0 50 ~ 0
- A11
- Text Label 13900 3900 0 50 ~ 0
- A12
- Text Label 15600 3900 2 50 ~ 0
- IO15
- Text Label 15600 4000 2 50 ~ 0
- IO14
- Text Label 15600 4100 2 50 ~ 0
- IO13
- Text Label 15600 4200 2 50 ~ 0
- IO12
- Text Label 15600 4300 2 50 ~ 0
- IO11
- Text Label 15600 4400 2 50 ~ 0
- IO10
- Text Label 15600 4500 2 50 ~ 0
- IO9
- Text Label 15600 4600 2 50 ~ 0
- IO8
- Text Label 15600 4700 2 50 ~ 0
- IO7
- Text Label 15600 4800 2 50 ~ 0
- IO6
- Text Label 15600 4900 2 50 ~ 0
- IO5
- Text Label 15600 5000 2 50 ~ 0
- IO4
- Text Label 15600 5100 2 50 ~ 0
- IO3
- Text Label 15600 5200 2 50 ~ 0
- IO2
- Text Label 15600 5300 2 50 ~ 0
- IO1
- Text Label 15600 5400 2 50 ~ 0
- IO0
- $Comp
- L Device:C_Small C48
- U 1 1 602D0725
- P 14800 2400
- F 0 "C48" H 14892 2446 50 0000 L CNN
- F 1 "100nF" H 14892 2355 50 0000 L CNN
- F 2 "Capacitor_SMD:C_0402_1005Metric" H 14800 2400 50 0001 C CNN
- F 3 "~" H 14800 2400 50 0001 C CNN
- F 4 "C1525" H 14800 2400 50 0001 C CNN "LCSC"
- 1 14800 2400
- 1 0 0 -1
- $EndComp
- $Comp
- L Device:C_Small C49
- U 1 1 602D360C
- P 15200 2400
- F 0 "C49" H 15292 2446 50 0000 L CNN
- F 1 "100nF" H 15292 2355 50 0000 L CNN
- F 2 "Capacitor_SMD:C_0402_1005Metric" H 15200 2400 50 0001 C CNN
- F 3 "~" H 15200 2400 50 0001 C CNN
- F 4 "C1525" H 15200 2400 50 0001 C CNN "LCSC"
- 1 15200 2400
- 1 0 0 -1
- $EndComp
- $Comp
- L power:+3V3 #PWR0119
- U 1 1 602D40FB
- P 14800 2250
- F 0 "#PWR0119" H 14800 2100 50 0001 C CNN
- F 1 "+3V3" H 14815 2423 50 0000 C CNN
- F 2 "" H 14800 2250 50 0001 C CNN
- F 3 "" H 14800 2250 50 0001 C CNN
- 1 14800 2250
- 1 0 0 -1
- $EndComp
- $Comp
- L power:+3V3 #PWR0120
- U 1 1 602D444A
- P 15200 2250
- F 0 "#PWR0120" H 15200 2100 50 0001 C CNN
- F 1 "+3V3" H 15215 2423 50 0000 C CNN
- F 2 "" H 15200 2250 50 0001 C CNN
- F 3 "" H 15200 2250 50 0001 C CNN
- 1 15200 2250
- 1 0 0 -1
- $EndComp
- $Comp
- L power:GND #PWR0121
- U 1 1 602D4EF1
- P 14800 2550
- F 0 "#PWR0121" H 14800 2300 50 0001 C CNN
- F 1 "GND" H 14805 2377 50 0000 C CNN
- F 2 "" H 14800 2550 50 0001 C CNN
- F 3 "" H 14800 2550 50 0001 C CNN
- 1 14800 2550
- 1 0 0 -1
- $EndComp
- $Comp
- L power:GND #PWR0122
- U 1 1 602D5590
- P 15200 2550
- F 0 "#PWR0122" H 15200 2300 50 0001 C CNN
- F 1 "GND" H 15205 2377 50 0000 C CNN
- F 2 "" H 15200 2550 50 0001 C CNN
- F 3 "" H 15200 2550 50 0001 C CNN
- 1 15200 2550
- 1 0 0 -1
- $EndComp
- Wire Wire Line
- 14800 2500 14800 2550
- Wire Wire Line
- 15200 2500 15200 2550
- Wire Wire Line
- 15200 2250 15200 2300
- Wire Wire Line
- 14800 2250 14800 2300
- Text Label 1100 10150 2 50 ~ 0
- FPGA_SCL
- Wire Wire Line
- 1100 10150 1150 10150
- Text Label 1100 10250 2 50 ~ 0
- FPGA_SDA
- Text Label 1100 10350 2 50 ~ 0
- 32KHZ
- Text Label 1100 10450 2 50 ~ 0
- RTC_INT
- Wire Wire Line
- 1100 10250 1150 10250
- Wire Wire Line
- 1100 10350 1150 10350
- Wire Wire Line
- 1100 10450 1150 10450
- Text Label 6450 4100 2 50 ~ 0
- FPGA_SCL
- Text Label 6450 4200 2 50 ~ 0
- FPGA_SDA
- Text Label 6500 2600 2 50 ~ 0
- 32KHZ
- Text Label 13850 8500 2 50 ~ 0
- SD_DAT2
- Text Label 13850 8600 2 50 ~ 0
- SD_DAT3
- Text Label 13850 8700 2 50 ~ 0
- SD_CMD
- Text Label 13850 8900 2 50 ~ 0
- SD_CLK
- Text Label 13850 9100 2 50 ~ 0
- SD_DAT0
- Text Label 13850 9200 2 50 ~ 0
- SD_DAT1
- Wire Wire Line
- 13850 9200 13950 9200
- Wire Wire Line
- 13850 9100 13950 9100
- Wire Wire Line
- 13850 8900 13950 8900
- Wire Wire Line
- 13850 8700 13950 8700
- Wire Wire Line
- 13850 8600 13950 8600
- Wire Wire Line
- 13850 8500 13950 8500
- $Comp
- L power:+3V3 #PWR029
- U 1 1 60B4B406
- P 13400 8750
- F 0 "#PWR029" H 13400 8600 50 0001 C CNN
- F 1 "+3V3" H 13415 8923 50 0000 C CNN
- F 2 "" H 13400 8750 50 0001 C CNN
- F 3 "" H 13400 8750 50 0001 C CNN
- 1 13400 8750
- 1 0 0 -1
- $EndComp
- $Comp
- L power:GND #PWR030
- U 1 1 60B4BEE8
- P 13400 9100
- F 0 "#PWR030" H 13400 8850 50 0001 C CNN
- F 1 "GND" H 13405 8927 50 0000 C CNN
- F 2 "" H 13400 9100 50 0001 C CNN
- F 3 "" H 13400 9100 50 0001 C CNN
- 1 13400 9100
- 1 0 0 -1
- $EndComp
- Wire Wire Line
- 13400 8750 13400 8800
- Wire Wire Line
- 13400 8800 13950 8800
- Wire Wire Line
- 13400 9100 13400 9000
- Wire Wire Line
- 13400 9000 13950 9000
- $Comp
- L Device:C_Small C51
- U 1 1 60B62C42
- P 12950 8850
- F 0 "C51" H 13042 8896 50 0000 L CNN
- F 1 "4.7uF" H 13042 8805 50 0000 L CNN
- F 2 "Capacitor_SMD:C_0603_1608Metric" H 12950 8850 50 0001 C CNN
- F 3 "~" H 12950 8850 50 0001 C CNN
- F 4 "C19666" H 12950 8850 50 0001 C CNN "LCSC"
- 1 12950 8850
- 1 0 0 -1
- $EndComp
- $Comp
- L power:+3V3 #PWR027
- U 1 1 60B632F4
- P 12950 8700
- F 0 "#PWR027" H 12950 8550 50 0001 C CNN
- F 1 "+3V3" H 12965 8873 50 0000 C CNN
- F 2 "" H 12950 8700 50 0001 C CNN
- F 3 "" H 12950 8700 50 0001 C CNN
- 1 12950 8700
- 1 0 0 -1
- $EndComp
- $Comp
- L power:GND #PWR028
- U 1 1 60B63765
- P 12950 9000
- F 0 "#PWR028" H 12950 8750 50 0001 C CNN
- F 1 "GND" H 12955 8827 50 0000 C CNN
- F 2 "" H 12950 9000 50 0001 C CNN
- F 3 "" H 12950 9000 50 0001 C CNN
- 1 12950 9000
- 1 0 0 -1
- $EndComp
- Wire Wire Line
- 12950 8700 12950 8750
- Wire Wire Line
- 12950 8950 12950 9000
- $Sheet
- S 5400 10050 600 400
- U 60B94961
- F0 "ADAPTER_CONN" 50
- F1 "adapter_conn.sch" 50
- F2 "FPGA_SDA" I L 5400 10250 50
- F3 "FPGA_SCL" I L 5400 10150 50
- $EndSheet
- Text Label 6450 3400 2 50 ~ 0
- SD_DAT3
- Text Label 6450 3100 2 50 ~ 0
- SD_CMD
- Text Label 6450 8200 2 50 ~ 0
- SD_DAT1
- $Comp
- L power:GND #PWR0137
- U 1 1 60E1BB45
- P 15650 9450
- F 0 "#PWR0137" H 15650 9200 50 0001 C CNN
- F 1 "GND" H 15655 9277 50 0000 C CNN
- F 2 "" H 15650 9450 50 0001 C CNN
- F 3 "" H 15650 9450 50 0001 C CNN
- 1 15650 9450
- 1 0 0 -1
- $EndComp
- Wire Wire Line
- 15650 9400 15650 9450
- Text Label 4150 10100 2 50 ~ 0
- 32KHZ
- Wire Wire Line
- 4150 10100 4200 10100
- Text Label 2400 10200 2 50 ~ 0
- FPGA_USB_TXD
- Text Label 6550 2500 2 50 ~ 0
- FPGA_USB_TXD
- Text Label 6450 3300 2 50 ~ 0
- FPGA_USB_RXD
- Text Label 5350 10150 2 50 ~ 0
- FPGA_SCL
- Text Label 5350 10250 2 50 ~ 0
- FPGA_SDA
- Wire Wire Line
- 5350 10150 5400 10150
- Wire Wire Line
- 5350 10250 5400 10250
- $Comp
- L Device:LED D17
- U 1 1 6068751D
- P 10500 10500
- F 0 "D17" V 10539 10382 50 0000 R CNN
- F 1 "LED-Y" V 10448 10382 50 0000 R CNN
- F 2 "LED_SMD:LED_0603_1608Metric" H 10500 10500 50 0001 C CNN
- F 3 "~" H 10500 10500 50 0001 C CNN
- F 4 "C72038" H 10500 10500 50 0001 C CNN "LCSC"
- 1 10500 10500
- 0 -1 -1 0
- $EndComp
- $Comp
- L Device:R_Small R29
- U 1 1 6068836E
- P 10500 10150
- F 0 "R29" H 10441 10104 50 0000 R CNN
- F 1 "1k" H 10441 10195 50 0000 R CNN
- F 2 "Resistor_SMD:R_0402_1005Metric" H 10500 10150 50 0001 C CNN
- F 3 "~" H 10500 10150 50 0001 C CNN
- F 4 "C11702" H 10500 10150 50 0001 C CNN "LCSC"
- 1 10500 10150
- 1 0 0 1
- $EndComp
- Wire Wire Line
- 10500 10650 10500 10750
- $Comp
- L power:GND #PWR0134
- U 1 1 60694128
- P 10500 10750
- F 0 "#PWR0134" H 10500 10500 50 0001 C CNN
- F 1 "GND" H 10505 10577 50 0000 C CNN
- F 2 "" H 10500 10750 50 0001 C CNN
- F 3 "" H 10500 10750 50 0001 C CNN
- 1 10500 10750
- 1 0 0 -1
- $EndComp
- Text Label 10500 9950 1 50 ~ 0
- FPGA_LED1
- Wire Wire Line
- 10500 10250 10500 10350
- $Comp
- L Device:LED D22
- U 1 1 606A9A91
- P 11250 10500
- F 0 "D22" V 11289 10382 50 0000 R CNN
- F 1 "LED-G" V 11200 10400 50 0000 R CNN
- F 2 "LED_SMD:LED_0603_1608Metric" H 11250 10500 50 0001 C CNN
- F 3 "~" H 11250 10500 50 0001 C CNN
- F 4 "C72043" H 11250 10500 50 0001 C CNN "LCSC"
- 1 11250 10500
- 0 -1 -1 0
- $EndComp
- $Comp
- L Device:R_Small R30
- U 1 1 606A9C22
- P 11250 10150
- F 0 "R30" H 11191 10104 50 0000 R CNN
- F 1 "1k" H 11191 10195 50 0000 R CNN
- F 2 "Resistor_SMD:R_0402_1005Metric" H 11250 10150 50 0001 C CNN
- F 3 "~" H 11250 10150 50 0001 C CNN
- F 4 "C11702" H 11250 10150 50 0001 C CNN "LCSC"
- 1 11250 10150
- 1 0 0 1
- $EndComp
- Wire Wire Line
- 10850 10650 10850 10750
- $Comp
- L power:GND #PWR0148
- U 1 1 606A9C2D
- P 10850 10750
- F 0 "#PWR0148" H 10850 10500 50 0001 C CNN
- F 1 "GND" H 10855 10577 50 0000 C CNN
- F 2 "" H 10850 10750 50 0001 C CNN
- F 3 "" H 10850 10750 50 0001 C CNN
- 1 10850 10750
- 1 0 0 -1
- $EndComp
- Text Label 10850 10050 1 50 ~ 0
- FPGA_LED2
- Wire Wire Line
- 10850 10250 10850 10350
- $Comp
- L Device:LED D23
- U 1 1 606B64A5
- P 10850 10500
- F 0 "D23" V 10889 10382 50 0000 R CNN
- F 1 "LED-B" V 10798 10382 50 0000 R CNN
- F 2 "LED_SMD:LED_0603_1608Metric" H 10850 10500 50 0001 C CNN
- F 3 "~" H 10850 10500 50 0001 C CNN
- F 4 "C72041" H 10850 10500 50 0001 C CNN "LCSC"
- 1 10850 10500
- 0 -1 -1 0
- $EndComp
- $Comp
- L Device:R_Small R31
- U 1 1 606B666A
- P 10850 10150
- F 0 "R31" H 10791 10104 50 0000 R CNN
- F 1 "1k" H 10791 10195 50 0000 R CNN
- F 2 "Resistor_SMD:R_0402_1005Metric" H 10850 10150 50 0001 C CNN
- F 3 "~" H 10850 10150 50 0001 C CNN
- F 4 "C11702" H 10850 10150 50 0001 C CNN "LCSC"
- 1 10850 10150
- 1 0 0 1
- $EndComp
- Wire Wire Line
- 11250 10650 11250 10750
- $Comp
- L power:GND #PWR0149
- U 1 1 606B6675
- P 11250 10750
- F 0 "#PWR0149" H 11250 10500 50 0001 C CNN
- F 1 "GND" H 11255 10577 50 0000 C CNN
- F 2 "" H 11250 10750 50 0001 C CNN
- F 3 "" H 11250 10750 50 0001 C CNN
- 1 11250 10750
- 1 0 0 -1
- $EndComp
- Text Label 11250 10050 1 50 ~ 0
- FPGA_LED3
- Wire Wire Line
- 11250 10250 11250 10350
- Text Label 3850 8450 2 50 ~ 0
- FPGA_LED2
- Text Label 3850 7950 2 50 ~ 0
- FPGA_LED3
- Text GLabel 3850 7050 0 39 Input ~ 0
- FPGA_GPIO1
- Text Label 4150 10300 2 50 ~ 0
- FPGA_SCL
- Text Label 4150 10200 2 50 ~ 0
- FPGA_SDA
- Wire Wire Line
- 4150 10200 4200 10200
- Wire Wire Line
- 4150 10300 4200 10300
- Text Label 6450 3500 2 50 ~ 0
- SD_DAT0
- Text Label 6450 3200 2 50 ~ 0
- SD_CLK
- Text Label 6450 3600 2 50 ~ 0
- RTC_INT
- Wire Wire Line
- 14050 5400 13900 5400
- Wire Wire Line
- 14050 5500 13900 5500
- Wire Wire Line
- 14050 5600 13900 5600
- Wire Wire Line
- 14050 5700 13900 5700
- Wire Wire Line
- 14050 5800 13900 5800
- Wire Wire Line
- 15450 5600 15600 5600
- Wire Wire Line
- 15450 5700 15600 5700
- Wire Wire Line
- 15450 5800 15600 5800
- Text Label 13900 5400 0 50 ~ 0
- CAS#
- Text Label 13900 5500 0 50 ~ 0
- RAS#
- Text Label 13900 5600 0 50 ~ 0
- CS#
- Text Label 13900 5700 0 50 ~ 0
- BA0
- Text Label 13900 5800 0 50 ~ 0
- BA1
- Text Label 15600 5600 2 50 ~ 0
- CKE
- Text Label 15600 5700 2 50 ~ 0
- CLK
- Text Label 15600 5800 2 50 ~ 0
- DQMH
- Entry Wire Line
- 13800 4300 13900 4400
- Entry Wire Line
- 13800 4200 13900 4300
- Entry Wire Line
- 13800 4100 13900 4200
- Entry Wire Line
- 13800 4000 13900 4100
- Entry Wire Line
- 13800 3900 13900 4000
- Entry Wire Line
- 13800 3800 13900 3900
- Wire Bus Line
- 13800 2900 15700 2900
- Entry Wire Line
- 15600 5600 15700 5500
- Entry Wire Line
- 15600 5700 15700 5600
- Entry Wire Line
- 15600 5800 15700 5700
- $Comp
- L power:+3V3 #PWR0123
- U 1 1 605E0255
- P 14700 3150
- F 0 "#PWR0123" H 14700 3000 50 0001 C CNN
- F 1 "+3V3" H 14715 3323 50 0000 C CNN
- F 2 "" H 14700 3150 50 0001 C CNN
- F 3 "" H 14700 3150 50 0001 C CNN
- 1 14700 3150
- 1 0 0 -1
- $EndComp
- Wire Wire Line
- 14400 3450 14400 3300
- Wire Wire Line
- 14400 3300 14500 3300
- Wire Wire Line
- 14700 3300 14700 3150
- Wire Wire Line
- 14500 3450 14500 3300
- Connection ~ 14500 3300
- Wire Wire Line
- 14500 3300 14600 3300
- Connection ~ 14600 3300
- Wire Wire Line
- 14600 3300 14700 3300
- Wire Wire Line
- 14700 3450 14700 3300
- Connection ~ 14700 3300
- Wire Wire Line
- 14900 3300 14900 3450
- Wire Wire Line
- 15000 3450 15000 3300
- Wire Wire Line
- 15000 3300 14900 3300
- Connection ~ 14900 3300
- Wire Wire Line
- 15100 3450 15100 3300
- Wire Wire Line
- 15100 3300 15000 3300
- Connection ~ 15000 3300
- $Comp
- L power:GND #PWR0124
- U 1 1 6069E0B6
- P 14750 6400
- F 0 "#PWR0124" H 14750 6150 50 0001 C CNN
- F 1 "GND" H 14755 6227 50 0000 C CNN
- F 2 "" H 14750 6400 50 0001 C CNN
- F 3 "" H 14750 6400 50 0001 C CNN
- 1 14750 6400
- 1 0 0 -1
- $EndComp
- Wire Wire Line
- 14450 6250 14450 6350
- Wire Wire Line
- 14450 6350 14550 6350
- Wire Wire Line
- 14750 6350 14750 6400
- Wire Wire Line
- 14550 6250 14550 6350
- Connection ~ 14550 6350
- Wire Wire Line
- 14550 6350 14650 6350
- Wire Wire Line
- 14650 6250 14650 6350
- Connection ~ 14650 6350
- Wire Wire Line
- 14650 6350 14750 6350
- Wire Wire Line
- 14750 6250 14750 6350
- Connection ~ 14750 6350
- Wire Wire Line
- 14850 6350 14850 6250
- Wire Wire Line
- 14750 6350 14850 6350
- Wire Wire Line
- 14850 6350 14950 6350
- Wire Wire Line
- 14950 6350 14950 6250
- Connection ~ 14850 6350
- Wire Wire Line
- 15050 6350 15050 6250
- Wire Wire Line
- 14950 6350 15050 6350
- Connection ~ 14950 6350
- Wire Wire Line
- 15050 6350 15150 6350
- Wire Wire Line
- 15150 6350 15150 6250
- Connection ~ 15050 6350
- Wire Wire Line
- 14600 3300 14600 3450
- $Comp
- L Device:C_Small C56
- U 1 1 6091A70C
- P 14500 2400
- F 0 "C56" H 14592 2446 50 0000 L CNN
- F 1 "100nF" H 14592 2355 50 0000 L CNN
- F 2 "Capacitor_SMD:C_0402_1005Metric" H 14500 2400 50 0001 C CNN
- F 3 "~" H 14500 2400 50 0001 C CNN
- F 4 "C1525" H 14500 2400 50 0001 C CNN "LCSC"
- 1 14500 2400
- 1 0 0 -1
- $EndComp
- $Comp
- L power:+3V3 #PWR0135
- U 1 1 6091AA42
- P 14500 2250
- F 0 "#PWR0135" H 14500 2100 50 0001 C CNN
- F 1 "+3V3" H 14515 2423 50 0000 C CNN
- F 2 "" H 14500 2250 50 0001 C CNN
- F 3 "" H 14500 2250 50 0001 C CNN
- 1 14500 2250
- 1 0 0 -1
- $EndComp
- $Comp
- L power:GND #PWR0165
- U 1 1 6091AA4C
- P 14500 2550
- F 0 "#PWR0165" H 14500 2300 50 0001 C CNN
- F 1 "GND" H 14505 2377 50 0000 C CNN
- F 2 "" H 14500 2550 50 0001 C CNN
- F 3 "" H 14500 2550 50 0001 C CNN
- 1 14500 2550
- 1 0 0 -1
- $EndComp
- Wire Wire Line
- 14500 2500 14500 2550
- Wire Wire Line
- 14500 2250 14500 2300
- $Comp
- L Device:C_Small C46
- U 1 1 60932F0E
- P 14100 2400
- F 0 "C46" H 14192 2446 50 0000 L CNN
- F 1 "100nF" H 14192 2355 50 0000 L CNN
- F 2 "Capacitor_SMD:C_0402_1005Metric" H 14100 2400 50 0001 C CNN
- F 3 "~" H 14100 2400 50 0001 C CNN
- F 4 "C1525" H 14100 2400 50 0001 C CNN "LCSC"
- 1 14100 2400
- 1 0 0 -1
- $EndComp
- $Comp
- L power:+3V3 #PWR0166
- U 1 1 60933274
- P 14100 2250
- F 0 "#PWR0166" H 14100 2100 50 0001 C CNN
- F 1 "+3V3" H 14115 2423 50 0000 C CNN
- F 2 "" H 14100 2250 50 0001 C CNN
- F 3 "" H 14100 2250 50 0001 C CNN
- 1 14100 2250
- 1 0 0 -1
- $EndComp
- $Comp
- L power:GND #PWR0167
- U 1 1 6093327E
- P 14100 2550
- F 0 "#PWR0167" H 14100 2300 50 0001 C CNN
- F 1 "GND" H 14105 2377 50 0000 C CNN
- F 2 "" H 14100 2550 50 0001 C CNN
- F 3 "" H 14100 2550 50 0001 C CNN
- 1 14100 2550
- 1 0 0 -1
- $EndComp
- Wire Wire Line
- 14100 2500 14100 2550
- Wire Wire Line
- 14100 2250 14100 2300
- $Comp
- L Device:C_Small C45
- U 1 1 6094CE83
- P 13700 2400
- F 0 "C45" H 13792 2446 50 0000 L CNN
- F 1 "100nF" H 13792 2355 50 0000 L CNN
- F 2 "Capacitor_SMD:C_0402_1005Metric" H 13700 2400 50 0001 C CNN
- F 3 "~" H 13700 2400 50 0001 C CNN
- F 4 "C1525" H 13700 2400 50 0001 C CNN "LCSC"
- 1 13700 2400
- 1 0 0 -1
- $EndComp
- $Comp
- L power:+3V3 #PWR0168
- U 1 1 6094D219
- P 13700 2250
- F 0 "#PWR0168" H 13700 2100 50 0001 C CNN
- F 1 "+3V3" H 13715 2423 50 0000 C CNN
- F 2 "" H 13700 2250 50 0001 C CNN
- F 3 "" H 13700 2250 50 0001 C CNN
- 1 13700 2250
- 1 0 0 -1
- $EndComp
- $Comp
- L power:GND #PWR0169
- U 1 1 6094D223
- P 13700 2550
- F 0 "#PWR0169" H 13700 2300 50 0001 C CNN
- F 1 "GND" H 13705 2377 50 0000 C CNN
- F 2 "" H 13700 2550 50 0001 C CNN
- F 3 "" H 13700 2550 50 0001 C CNN
- 1 13700 2550
- 1 0 0 -1
- $EndComp
- Wire Wire Line
- 13700 2500 13700 2550
- Wire Wire Line
- 13700 2250 13700 2300
- $Comp
- L Device:C_Small C34
- U 1 1 6097D4FE
- P 13250 2400
- F 0 "C34" H 13342 2446 50 0000 L CNN
- F 1 "100nF" H 13342 2355 50 0000 L CNN
- F 2 "Capacitor_SMD:C_0402_1005Metric" H 13250 2400 50 0001 C CNN
- F 3 "~" H 13250 2400 50 0001 C CNN
- F 4 "C1525" H 13250 2400 50 0001 C CNN "LCSC"
- 1 13250 2400
- 1 0 0 -1
- $EndComp
- $Comp
- L power:+3V3 #PWR0170
- U 1 1 6097D8C4
- P 13250 2250
- F 0 "#PWR0170" H 13250 2100 50 0001 C CNN
- F 1 "+3V3" H 13265 2423 50 0000 C CNN
- F 2 "" H 13250 2250 50 0001 C CNN
- F 3 "" H 13250 2250 50 0001 C CNN
- 1 13250 2250
- 1 0 0 -1
- $EndComp
- $Comp
- L power:GND #PWR0171
- U 1 1 6097D8CE
- P 13250 2550
- F 0 "#PWR0171" H 13250 2300 50 0001 C CNN
- F 1 "GND" H 13255 2377 50 0000 C CNN
- F 2 "" H 13250 2550 50 0001 C CNN
- F 3 "" H 13250 2550 50 0001 C CNN
- 1 13250 2550
- 1 0 0 -1
- $EndComp
- Wire Wire Line
- 13250 2500 13250 2550
- Wire Wire Line
- 13250 2250 13250 2300
- $Comp
- L Device:C_Small C33
- U 1 1 60997E09
- P 12800 2400
- F 0 "C33" H 12892 2446 50 0000 L CNN
- F 1 "100nF" H 12892 2355 50 0000 L CNN
- F 2 "Capacitor_SMD:C_0402_1005Metric" H 12800 2400 50 0001 C CNN
- F 3 "~" H 12800 2400 50 0001 C CNN
- F 4 "C1525" H 12800 2400 50 0001 C CNN "LCSC"
- 1 12800 2400
- 1 0 0 -1
- $EndComp
- $Comp
- L power:+3V3 #PWR0172
- U 1 1 609981FF
- P 12800 2250
- F 0 "#PWR0172" H 12800 2100 50 0001 C CNN
- F 1 "+3V3" H 12815 2423 50 0000 C CNN
- F 2 "" H 12800 2250 50 0001 C CNN
- F 3 "" H 12800 2250 50 0001 C CNN
- 1 12800 2250
- 1 0 0 -1
- $EndComp
- $Comp
- L power:GND #PWR0173
- U 1 1 60998209
- P 12800 2550
- F 0 "#PWR0173" H 12800 2300 50 0001 C CNN
- F 1 "GND" H 12805 2377 50 0000 C CNN
- F 2 "" H 12800 2550 50 0001 C CNN
- F 3 "" H 12800 2550 50 0001 C CNN
- 1 12800 2550
- 1 0 0 -1
- $EndComp
- Wire Wire Line
- 12800 2500 12800 2550
- Wire Wire Line
- 12800 2250 12800 2300
- Text Label 6450 3800 2 50 ~ 0
- FPGA_USB_RTS
- Text Label 6450 3900 2 50 ~ 0
- FPGA_USB_CTS
- Text Label 6350 4900 2 50 ~ 0
- FPGA_USB_DTR
- Text Label 2400 10300 2 50 ~ 0
- FPGA_USB_RXD
- Text Label 2400 10400 2 50 ~ 0
- FPGA_USB_CTS
- Text Label 2400 10500 2 50 ~ 0
- FPGA_USB_RTS
- Text Label 2400 10600 2 50 ~ 0
- FPGA_USB_DTR
- NoConn ~ 14300 6250
- NoConn ~ 14300 6450
- Text Label 8800 10550 3 50 ~ 0
- FPGA_USB_RTS
- Text Label 8950 10550 3 50 ~ 0
- FPGA_USB_CTS
- $Comp
- L power:+3V3 #PWR0176
- U 1 1 60358512
- P 8800 9850
- F 0 "#PWR0176" H 8800 9700 50 0001 C CNN
- F 1 "+3V3" H 8750 10000 50 0000 C CNN
- F 2 "" H 8800 9850 50 0001 C CNN
- F 3 "" H 8800 9850 50 0001 C CNN
- 1 8800 9850
- 1 0 0 -1
- $EndComp
- Wire Wire Line
- 8800 10150 8800 10250
- Wire Wire Line
- 8800 10450 8800 10550
- $Comp
- L power:+3V3 #PWR0177
- U 1 1 60382665
- P 8950 9850
- F 0 "#PWR0177" H 8950 9700 50 0001 C CNN
- F 1 "+3V3" H 9000 10000 50 0000 C CNN
- F 2 "" H 8950 9850 50 0001 C CNN
- F 3 "" H 8950 9850 50 0001 C CNN
- 1 8950 9850
- 1 0 0 -1
- $EndComp
- Wire Wire Line
- 8950 10450 8950 10550
- Wire Wire Line
- 8950 10150 8950 10250
- $Comp
- L Device:LED D29
- U 1 1 6041A94C
- P 8800 10000
- F 0 "D29" V 8850 10200 50 0000 R CNN
- F 1 "LED-Y" V 8750 10350 50 0000 R CNN
- F 2 "LED_SMD:LED_0603_1608Metric" H 8800 10000 50 0001 C CNN
- F 3 "~" H 8800 10000 50 0001 C CNN
- F 4 "C72038" H 8800 10000 50 0001 C CNN "LCSC"
- 1 8800 10000
- 0 -1 -1 0
- $EndComp
- $Comp
- L Device:LED D30
- U 1 1 604220EF
- P 8950 10000
- F 0 "D30" V 8989 9882 50 0000 R CNN
- F 1 "LED-Y" V 8898 9882 50 0000 R CNN
- F 2 "LED_SMD:LED_0603_1608Metric" H 8950 10000 50 0001 C CNN
- F 3 "~" H 8950 10000 50 0001 C CNN
- F 4 "C72038" H 8950 10000 50 0001 C CNN "LCSC"
- 1 8950 10000
- 0 -1 -1 0
- $EndComp
- $Comp
- L Device:R_Small R10
- U 1 1 60427964
- P 8950 10350
- F 0 "R10" H 9150 10300 50 0000 R CNN
- F 1 "1k" H 9100 10400 50 0000 R CNN
- F 2 "Resistor_SMD:R_0402_1005Metric" H 8950 10350 50 0001 C CNN
- F 3 "~" H 8950 10350 50 0001 C CNN
- F 4 "C11702" H 8950 10350 50 0001 C CNN "LCSC"
- 1 8950 10350
- 1 0 0 1
- $EndComp
- $Comp
- L Device:R_Small R8
- U 1 1 6042C0DA
- P 8800 10350
- F 0 "R8" H 8741 10304 50 0000 R CNN
- F 1 "1k" H 8741 10395 50 0000 R CNN
- F 2 "Resistor_SMD:R_0402_1005Metric" H 8800 10350 50 0001 C CNN
- F 3 "~" H 8800 10350 50 0001 C CNN
- F 4 "C11702" H 8800 10350 50 0001 C CNN "LCSC"
- 1 8800 10350
- 1 0 0 1
- $EndComp
- Wire Wire Line
- 10500 9950 10500 10050
- Text Label 3850 6250 2 50 ~ 0
- FPGA_LED1
- $Comp
- L power:GND #PWR0179
- U 1 1 6035E697
- P 12950 7850
- F 0 "#PWR0179" H 12950 7600 50 0001 C CNN
- F 1 "GND" H 12955 7677 50 0000 C CNN
- F 2 "" H 12950 7850 50 0001 C CNN
- F 3 "" H 12950 7850 50 0001 C CNN
- 1 12950 7850
- 1 0 0 -1
- $EndComp
- Wire Wire Line
- 12950 7750 12950 7850
- Wire Wire Line
- 13700 7450 13700 7550
- Wire Wire Line
- 13700 7550 13450 7550
- Wire Wire Line
- 13450 7450 13700 7450
- $Comp
- L power:+3V3 #PWR0180
- U 1 1 603A1FB2
- P 12950 6900
- F 0 "#PWR0180" H 12950 6750 50 0001 C CNN
- F 1 "+3V3" H 12965 7073 50 0000 C CNN
- F 2 "" H 12950 6900 50 0001 C CNN
- F 3 "" H 12950 6900 50 0001 C CNN
- 1 12950 6900
- 1 0 0 -1
- $EndComp
- Wire Wire Line
- 12950 6900 12950 6950
- $Comp
- L power:+3V3 #PWR0181
- U 1 1 603B881A
- P 14050 7550
- F 0 "#PWR0181" H 14050 7400 50 0001 C CNN
- F 1 "+3V3" H 14065 7723 50 0000 C CNN
- F 2 "" H 14050 7550 50 0001 C CNN
- F 3 "" H 14050 7550 50 0001 C CNN
- 1 14050 7550
- 1 0 0 -1
- $EndComp
- Wire Wire Line
- 13700 7550 14050 7550
- Connection ~ 13700 7550
- $Sheet
- S 6300 9400 800 300
- U 604B2191
- F0 "Power FPGA" 50
- F1 "power_fpga.sch" 50
- $EndSheet
- $Comp
- L max80:EP4CE15F17C8N U13
- U 6 1 6054E41F
- P 7350 3250
- F 0 "U13" H 6650 5150 50 0000 L CNN
- F 1 "EP4CE15F17C8N" H 7600 5100 50 0000 L CNN
- F 2 "" H 6000 3600 50 0001 L CNN
- F 3 "" H 6000 3600 50 0001 L CNN
- 6 7350 3250
- 1 0 0 -1
- $EndComp
- $Comp
- L max80:EP4CE15F17C8N U13
- U 8 1 60554149
- P 10200 3200
- F 0 "U13" H 10828 3221 50 0000 L CNN
- F 1 "EP4CE15F17C8N" H 10828 3130 50 0000 L CNN
- F 2 "" H 8850 3550 50 0001 L CNN
- F 3 "" H 8850 3550 50 0001 L CNN
- 8 10200 3200
- 1 0 0 -1
- $EndComp
- $Comp
- L max80:EP4CE15F17C8N U13
- U 2 1 6055A8B6
- P 2450 7200
- F 0 "U13" H 3078 7221 50 0000 L CNN
- F 1 "EP4CE15F17C8N" H 3078 7130 50 0000 L CNN
- F 2 "" H 1100 7550 50 0001 L CNN
- F 3 "" H 1100 7550 50 0001 L CNN
- 2 2450 7200
- 1 0 0 -1
- $EndComp
- $Comp
- L max80:EP4CE15F17C8N U13
- U 4 1 60561625
- P 4700 7200
- F 0 "U13" H 5328 7221 50 0000 L CNN
- F 1 "EP4CE15F17C8N" H 5328 7130 50 0000 L CNN
- F 2 "" H 3350 7550 50 0001 L CNN
- F 3 "" H 3350 7550 50 0001 L CNN
- 4 4700 7200
- 1 0 0 -1
- $EndComp
- $Comp
- L max80:EP4CE15F17C8N U13
- U 7 1 6057245D
- P 10150 7200
- F 0 "U13" H 10778 7221 50 0000 L CNN
- F 1 "EP4CE15F17C8N" H 10778 7130 50 0000 L CNN
- F 2 "" H 8800 7550 50 0001 L CNN
- F 3 "" H 8800 7550 50 0001 L CNN
- 7 10150 7200
- 1 0 0 -1
- $EndComp
- Wire Wire Line
- 6050 2700 6050 2600
- $Comp
- L Device:R_Small R38
- U 1 1 604A56EE
- P 5850 2500
- F 0 "R38" H 5900 2600 50 0000 L CNN
- F 1 "10k" H 5909 2455 50 0000 L CNN
- F 2 "Resistor_SMD:R_0402_1005Metric" H 5850 2500 50 0001 C CNN
- F 3 "~" H 5850 2500 50 0001 C CNN
- F 4 "C25744" H 5850 2500 50 0001 C CNN "LCSC"
- 1 5850 2500
- 1 0 0 -1
- $EndComp
- $Comp
- L power:+3V3 #PWR0189
- U 1 1 604A7BF7
- P 5850 2400
- F 0 "#PWR0189" H 5850 2250 50 0001 C CNN
- F 1 "+3V3" H 5865 2573 50 0000 C CNN
- F 2 "" H 5850 2400 50 0001 C CNN
- F 3 "" H 5850 2400 50 0001 C CNN
- 1 5850 2400
- 1 0 0 -1
- $EndComp
- Wire Wire Line
- 9850 10400 9850 10550
- Wire Wire Line
- 9850 10100 9850 10200
- $Comp
- L power:+3V3 #PWR026
- U 1 1 60ABEF27
- P 9850 10100
- F 0 "#PWR026" H 9850 9950 50 0001 C CNN
- F 1 "+3V3" H 9865 10273 50 0000 C CNN
- F 2 "" H 9850 10100 50 0001 C CNN
- F 3 "" H 9850 10100 50 0001 C CNN
- 1 9850 10100
- 1 0 0 -1
- $EndComp
- Wire Wire Line
- 9550 10100 9550 10200
- $Comp
- L power:+3V3 #PWR025
- U 1 1 60AB5E46
- P 9550 10100
- F 0 "#PWR025" H 9550 9950 50 0001 C CNN
- F 1 "+3V3" H 9565 10273 50 0000 C CNN
- F 2 "" H 9550 10100 50 0001 C CNN
- F 3 "" H 9550 10100 50 0001 C CNN
- 1 9550 10100
- 1 0 0 -1
- $EndComp
- Text Label 9850 10550 3 50 ~ 0
- FPGA_SDA
- Wire Wire Line
- 9550 10400 9550 10550
- Text Label 9550 10550 3 50 ~ 0
- FPGA_SCL
- $Comp
- L Device:R_Small R14
- U 1 1 60A915FC
- P 9850 10300
- F 0 "R14" H 9650 10350 50 0000 L CNN
- F 1 "6.2k" H 9650 10250 50 0000 L CNN
- F 2 "Resistor_SMD:R_0402_1005Metric" H 9850 10300 50 0001 C CNN
- F 3 "~" H 9850 10300 50 0001 C CNN
- F 4 "C4260" H 9850 10300 50 0001 C CNN "LCSC"
- 1 9850 10300
- 1 0 0 -1
- $EndComp
- $Comp
- L Device:R_Small R12
- U 1 1 60A90B03
- P 9550 10300
- F 0 "R12" H 9491 10254 50 0000 R CNN
- F 1 "6.2k" H 9491 10345 50 0000 R CNN
- F 2 "Resistor_SMD:R_0402_1005Metric" H 9550 10300 50 0001 C CNN
- F 3 "~" H 9550 10300 50 0001 C CNN
- F 4 "C4260" H 9550 10300 50 0001 C CNN "LCSC"
- 1 9550 10300
- 1 0 0 1
- $EndComp
- Wire Wire Line
- 12100 9350 12100 9500
- Wire Wire Line
- 12100 9050 12100 9150
- $Comp
- L power:+3V3 #PWR02
- U 1 1 605E302D
- P 12100 9050
- F 0 "#PWR02" H 12100 8900 50 0001 C CNN
- F 1 "+3V3" H 12115 9223 50 0000 C CNN
- F 2 "" H 12100 9050 50 0001 C CNN
- F 3 "" H 12100 9050 50 0001 C CNN
- 1 12100 9050
- 1 0 0 -1
- $EndComp
- Wire Wire Line
- 11800 9050 11800 9150
- $Comp
- L power:+3V3 #PWR01
- U 1 1 605E3038
- P 11800 9050
- F 0 "#PWR01" H 11800 8900 50 0001 C CNN
- F 1 "+3V3" H 11815 9223 50 0000 C CNN
- F 2 "" H 11800 9050 50 0001 C CNN
- F 3 "" H 11800 9050 50 0001 C CNN
- 1 11800 9050
- 1 0 0 -1
- $EndComp
- Wire Wire Line
- 11800 9350 11800 9500
- $Comp
- L Device:R_Small R40
- U 1 1 605E3046
- P 12100 9250
- F 0 "R40" H 11900 9300 50 0000 L CNN
- F 1 "10k" H 11900 9200 50 0000 L CNN
- F 2 "Resistor_SMD:R_0402_1005Metric" H 12100 9250 50 0001 C CNN
- F 3 "~" H 12100 9250 50 0001 C CNN
- F 4 "C25744" H 12100 9250 50 0001 C CNN "LCSC"
- 1 12100 9250
- 1 0 0 -1
- $EndComp
- $Comp
- L Device:R_Small R39
- U 1 1 605E3051
- P 11800 9250
- F 0 "R39" H 11741 9204 50 0000 R CNN
- F 1 "10k" H 11741 9295 50 0000 R CNN
- F 2 "Resistor_SMD:R_0402_1005Metric" H 11800 9250 50 0001 C CNN
- F 3 "~" H 11800 9250 50 0001 C CNN
- F 4 "C25744" H 11800 9250 50 0001 C CNN "LCSC"
- 1 11800 9250
- 1 0 0 1
- $EndComp
- Text GLabel 11800 9500 3 50 Input ~ 0
- FPGA_TDI
- Text GLabel 12100 9500 3 50 Input ~ 0
- FPGA_TMS
- $Comp
- L Device:R_Small R42
- U 1 1 60654523
- P 12300 9250
- F 0 "R42" H 12500 9200 50 0000 R CNN
- F 1 "1k" H 12450 9300 50 0000 R CNN
- F 2 "Resistor_SMD:R_0402_1005Metric" H 12300 9250 50 0001 C CNN
- F 3 "~" H 12300 9250 50 0001 C CNN
- F 4 "C11702" H 12300 9250 50 0001 C CNN "LCSC"
- 1 12300 9250
- 1 0 0 1
- $EndComp
- $Comp
- L power:GND #PWR05
- U 1 1 60655C2F
- P 12300 9450
- F 0 "#PWR05" H 12300 9200 50 0001 C CNN
- F 1 "GND" H 12305 9277 50 0000 C CNN
- F 2 "" H 12300 9450 50 0001 C CNN
- F 3 "" H 12300 9450 50 0001 C CNN
- 1 12300 9450
- 1 0 0 -1
- $EndComp
- Wire Wire Line
- 12300 9350 12300 9450
- Text GLabel 12300 9050 1 50 Input ~ 0
- FPGA_TCK
- Wire Wire Line
- 12300 9050 12300 9150
- Text GLabel 13900 7150 2 50 Input ~ 0
- ASD0
- Text GLabel 13850 7250 2 50 Input ~ 0
- DATA0
- $Comp
- L Device:R_Small R41
- U 1 1 607B9EC1
- P 13600 7250
- F 0 "R41" V 13650 7100 50 0000 C CNN
- F 1 "25" V 13650 7400 50 0000 C CNN
- F 2 "Resistor_SMD:R_0402_1005Metric" H 13600 7250 50 0001 C CNN
- F 3 "~" H 13600 7250 50 0001 C CNN
- 1 13600 7250
- 0 1 1 0
- $EndComp
- Wire Wire Line
- 13450 7250 13500 7250
- Wire Wire Line
- 13700 7250 13750 7250
- Text GLabel 12100 7450 0 50 Input ~ 0
- DLCK
- Text GLabel 12100 7250 0 50 Input ~ 0
- nCE0
- $Comp
- L Device:C_Small C2
- U 1 1 6082407C
- P 12550 6500
- F 0 "C2" H 12642 6546 50 0000 L CNN
- F 1 "100nF" H 12642 6455 50 0000 L CNN
- F 2 "Capacitor_SMD:C_0402_1005Metric" H 12550 6500 50 0001 C CNN
- F 3 "~" H 12550 6500 50 0001 C CNN
- F 4 "C1525" H 12550 6500 50 0001 C CNN "LCSC"
- 1 12550 6500
- 1 0 0 -1
- $EndComp
- $Comp
- L power:+3V3 #PWR03
- U 1 1 60824E14
- P 12550 6350
- F 0 "#PWR03" H 12550 6200 50 0001 C CNN
- F 1 "+3V3" H 12565 6523 50 0000 C CNN
- F 2 "" H 12550 6350 50 0001 C CNN
- F 3 "" H 12550 6350 50 0001 C CNN
- 1 12550 6350
- 1 0 0 -1
- $EndComp
- Wire Wire Line
- 12550 6350 12550 6400
- $Comp
- L power:GND #PWR04
- U 1 1 60836309
- P 12550 6650
- F 0 "#PWR04" H 12550 6400 50 0001 C CNN
- F 1 "GND" H 12555 6477 50 0000 C CNN
- F 2 "" H 12550 6650 50 0001 C CNN
- F 3 "" H 12550 6650 50 0001 C CNN
- 1 12550 6650
- 1 0 0 -1
- $EndComp
- Wire Wire Line
- 12550 6600 12550 6650
- $Comp
- L power:+3V3 #PWR0190
- U 1 1 60884CB0
- P 5850 2850
- F 0 "#PWR0190" H 5850 2700 50 0001 C CNN
- F 1 "+3V3" H 5865 3023 50 0000 C CNN
- F 2 "" H 5850 2850 50 0001 C CNN
- F 3 "" H 5850 2850 50 0001 C CNN
- 1 5850 2850
- 1 0 0 -1
- $EndComp
- Wire Wire Line
- 5850 2900 6550 2900
- Wire Wire Line
- 6300 2800 6550 2800
- $Comp
- L power:GND #PWR0191
- U 1 1 608BC961
- P 5750 3000
- F 0 "#PWR0191" H 5750 2750 50 0001 C CNN
- F 1 "GND" H 5755 2827 50 0000 C CNN
- F 2 "" H 5750 3000 50 0001 C CNN
- F 3 "" H 5750 3000 50 0001 C CNN
- 1 5750 3000
- 1 0 0 -1
- $EndComp
- Wire Wire Line
- 6550 2700 6050 2700
- $Comp
- L Memory_Flash:W25Q128JVS U7
- U 1 1 6035B91A
- P 12950 7350
- F 0 "U7" H 12600 7750 50 0000 C CNN
- F 1 "W25Q128JVS" H 13200 7750 50 0000 C CNN
- F 2 "max80:SOIC-8_5.23x5.23mm_P1.27mm" H 12950 7350 50 0001 C CNN
- F 3 "http://www.winbond.com/resource-files/w25q128jv_dtr%20revc%2003272018%20plus.pdf" H 12950 7350 50 0001 C CNN
- F 4 "W25Q128JVSIQ" H 12950 7350 50 0001 C CNN "LCSC"
- 1 12950 7350
- 1 0 0 -1
- $EndComp
- Text Label 8850 2200 0 39 ~ 0
- AD0
- Text Label 8850 2400 0 39 ~ 0
- AD1
- Text Label 8900 8150 0 39 ~ 0
- AD2
- Text GLabel 1600 6800 0 39 Input ~ 0
- ~C1_ABC_3V3
- Entry Wire Line
- 650 6800 750 6900
- Text Label 750 6900 0 50 ~ 0
- AD9
- Wire Wire Line
- 750 6900 1650 6900
- Text GLabel 1600 7900 0 39 Input ~ 0
- ~C2_ABC_3V3
- Text Label 750 8000 0 50 ~ 0
- AD10
- Text GLabel 1600 7200 0 39 Input ~ 0
- ~C3_ABC_3V3
- Text Label 750 7300 0 50 ~ 0
- AD11
- Entry Wire Line
- 650 7200 750 7300
- Text GLabel 1600 7600 0 39 Input ~ 0
- ~C4_ABC_3V3
- Wire Wire Line
- 750 7500 1650 7500
- Text GLabel 1600 7400 0 39 Input ~ 0
- ~INP_ABC_3V3
- Wire Wire Line
- 1650 6700 750 6700
- Entry Wire Line
- 650 7400 750 7500
- Text Label 750 7500 0 50 ~ 0
- AD12
- Text GLabel 1600 6600 0 39 Input ~ 0
- ~STATUS_ABC_3V3
- Text Label 750 6700 0 50 ~ 0
- AD13
- Wire Wire Line
- 750 7800 1650 7800
- Entry Wire Line
- 650 6600 750 6700
- Text Label 750 7700 0 50 ~ 0
- AD14
- Text Label 750 7800 0 50 ~ 0
- AD15
- Wire Wire Line
- 750 8000 1650 8000
- Entry Wire Line
- 650 7900 750 8000
- Wire Wire Line
- 750 7300 1650 7300
- Wire Wire Line
- 750 7700 1650 7700
- Entry Wire Line
- 650 7600 750 7700
- Entry Wire Line
- 650 7700 750 7800
- Text Label 9200 7450 0 50 ~ 0
- A3
- Text Label 9100 5750 2 50 ~ 0
- Memorybus
- Wire Wire Line
- 9200 5950 9350 5950
- Entry Wire Line
- 9200 5950 9100 6050
- Entry Wire Line
- 9200 6050 9100 6150
- Entry Wire Line
- 9200 6150 9100 6250
- Text Label 9350 4300 2 39 ~ 0
- CLK
- Wire Wire Line
- 9350 6050 9200 6050
- Wire Wire Line
- 9350 6150 9200 6150
- Text Label 9200 6750 0 50 ~ 0
- IO1
- Text Label 9200 6550 0 50 ~ 0
- IO2
- Text Label 9200 6050 0 50 ~ 0
- IO3
- Text Label 9200 7250 0 50 ~ 0
- IO4
- Text Label 9200 7150 0 50 ~ 0
- IO5
- Text Label 9200 7750 0 50 ~ 0
- IO6
- Text Label 9200 7650 0 50 ~ 0
- IO7
- Wire Wire Line
- 9350 6250 9200 6250
- Wire Wire Line
- 9350 6350 9200 6350
- Wire Wire Line
- 9350 6450 9200 6450
- Wire Wire Line
- 9350 6550 9200 6550
- Wire Wire Line
- 9350 6650 9200 6650
- Wire Wire Line
- 9350 6950 9200 6950
- Wire Wire Line
- 9350 7050 9200 7050
- Wire Wire Line
- 9350 7150 9200 7150
- Wire Wire Line
- 9350 7250 9200 7250
- Wire Wire Line
- 9350 7450 9200 7450
- Wire Wire Line
- 9350 7550 9200 7550
- Wire Wire Line
- 9350 7650 9200 7650
- Wire Wire Line
- 9350 7750 9200 7750
- Wire Wire Line
- 9350 7850 9200 7850
- Wire Wire Line
- 9350 7950 9200 7950
- Wire Wire Line
- 9350 8050 9200 8050
- Entry Wire Line
- 9200 6250 9100 6350
- Entry Wire Line
- 9200 6350 9100 6450
- Entry Wire Line
- 9200 6450 9100 6550
- Entry Wire Line
- 9200 6550 9100 6650
- Entry Wire Line
- 9200 6650 9100 6750
- Entry Wire Line
- 9200 6950 9100 7050
- Entry Wire Line
- 9200 7050 9100 7150
- Entry Wire Line
- 9200 7150 9100 7250
- Entry Wire Line
- 9200 7250 9100 7350
- Entry Wire Line
- 9200 7450 9100 7550
- Entry Wire Line
- 9200 7550 9100 7650
- Entry Wire Line
- 9200 7650 9100 7750
- Entry Wire Line
- 9200 7750 9100 7850
- Entry Wire Line
- 9200 7850 9100 7950
- Entry Wire Line
- 9200 7950 9100 8050
- Entry Wire Line
- 9200 8050 9100 8150
- Text Label 9200 7550 0 50 ~ 0
- WE#
- Text Label 9200 6850 0 50 ~ 0
- DQML
- Text Label 9200 6450 0 50 ~ 0
- A0
- Text Label 9200 6350 0 50 ~ 0
- A2
- Text Label 9200 8050 0 50 ~ 0
- CAS#
- Text Label 9200 7050 0 50 ~ 0
- RAS#
- Text Label 9200 5950 0 50 ~ 0
- CS#
- Text Label 9200 7350 0 50 ~ 0
- BA0
- Text Label 9200 6250 0 50 ~ 0
- BA1
- Text Label 8800 2500 0 50 ~ 0
- A7
- Text Label 8800 2000 0 50 ~ 0
- DQMH
- Text Label 8800 2300 0 50 ~ 0
- CKE
- Text Label 9200 6950 0 50 ~ 0
- IO0
- Text Label 8800 3300 0 50 ~ 0
- IO8
- Text Label 8800 3100 0 50 ~ 0
- IO9
- Text Label 8800 3400 0 39 ~ 0
- IO10
- Text Label 8800 3600 0 39 ~ 0
- IO11
- Text Label 8800 3200 0 50 ~ 0
- IO12
- Text Label 8800 3500 0 39 ~ 0
- IO13
- Text Label 8800 2800 0 50 ~ 0
- IO14
- Text Label 8800 3900 0 39 ~ 0
- IO15
- Entry Wire Line
- 8700 3400 8800 3500
- Entry Wire Line
- 8700 3100 8800 3200
- Entry Wire Line
- 8700 3000 8800 3100
- Entry Wire Line
- 8700 2900 8800 3000
- Entry Wire Line
- 8700 2800 8800 2900
- Text Label 9200 6650 0 50 ~ 0
- A1
- Text Label 9200 7850 0 50 ~ 0
- A4
- Entry Wire Line
- 8700 1900 8800 2000
- Entry Wire Line
- 8700 2000 8800 2100
- Entry Wire Line
- 8500 2100 8600 2200
- Entry Wire Line
- 8700 2200 8800 2300
- Entry Wire Line
- 8500 2300 8600 2400
- Entry Wire Line
- 8700 2400 8800 2500
- Text Label 8800 3000 0 50 ~ 0
- A12
- Text Label 8800 2600 0 50 ~ 0
- A11
- Text Label 8800 2900 0 50 ~ 0
- A9
- Text Label 8800 2700 0 50 ~ 0
- A8
- Text Label 8800 2100 0 50 ~ 0
- A6
- Text Label 9200 7950 0 39 ~ 0
- A5
- Entry Wire Line
- 8700 2500 8800 2600
- Entry Wire Line
- 8700 2600 8800 2700
- Text Label 9200 6150 0 50 ~ 0
- A10
- Wire Wire Line
- 9200 7350 9350 7350
- Entry Wire Line
- 9100 7450 9200 7350
- Wire Wire Line
- 9200 6750 9350 6750
- Entry Wire Line
- 9100 6850 9200 6750
- Wire Wire Line
- 9200 6850 9350 6850
- Entry Wire Line
- 9100 6950 9200 6850
- Entry Wire Line
- 8850 8150 8750 8050
- Entry Wire Line
- 8700 2700 8800 2800
- Wire Wire Line
- 8800 3900 9400 3900
- Wire Wire Line
- 8800 3500 9400 3500
- Wire Wire Line
- 8800 3200 9400 3200
- Wire Wire Line
- 8800 3100 9400 3100
- Wire Wire Line
- 8800 3000 9400 3000
- Wire Wire Line
- 8800 2900 9400 2900
- Wire Wire Line
- 8800 2800 9400 2800
- Wire Wire Line
- 8800 2700 9400 2700
- Wire Wire Line
- 8800 2600 9400 2600
- Wire Wire Line
- 8800 2500 9400 2500
- Wire Wire Line
- 8800 2300 9400 2300
- Wire Wire Line
- 6450 3600 6550 3600
- Wire Wire Line
- 6450 4200 6550 4200
- Wire Wire Line
- 6500 2600 6550 2600
- Wire Wire Line
- 6450 4100 6550 4100
- Wire Wire Line
- 6450 3900 6550 3900
- Wire Wire Line
- 6450 3800 6550 3800
- Wire Wire Line
- 5850 2850 5850 2900
- Wire Wire Line
- 6450 3300 6550 3300
- Wire Wire Line
- 5750 3000 6300 3000
- Wire Wire Line
- 6300 3000 6300 2800
- Connection ~ 6300 3000
- Wire Wire Line
- 6300 3000 6550 3000
- Wire Wire Line
- 5850 2600 6050 2600
- Wire Wire Line
- 6450 3700 6550 3700
- Wire Wire Line
- 6450 3500 6550 3500
- Wire Wire Line
- 6450 3200 6550 3200
- Wire Wire Line
- 6450 3100 6550 3100
- Wire Wire Line
- 6450 3400 6550 3400
- Text GLabel 8500 1700 1 50 Input ~ 0
- AD[0..15]
- Wire Wire Line
- 8800 2000 9400 2000
- Entry Wire Line
- 8700 3500 8800 3600
- Entry Wire Line
- 8700 3800 8800 3900
- Text GLabel 3850 7250 0 39 Input ~ 0
- ~XINPSTB_ABC_3V3
- Text GLabel 1600 7000 0 39 Input ~ 0
- ~XOUTSTB_ABC_3V3
- Wire Wire Line
- 1600 7900 1650 7900
- Wire Wire Line
- 1600 7600 1650 7600
- Wire Wire Line
- 1600 7400 1650 7400
- Wire Wire Line
- 1600 7200 1650 7200
- Wire Wire Line
- 1600 7000 1650 7000
- Text GLabel 1600 6400 0 39 Input ~ 0
- ~RST_ABC_3V3
- Wire Wire Line
- 1600 6400 1650 6400
- Wire Wire Line
- 1600 6600 1650 6600
- Wire Wire Line
- 1600 6800 1650 6800
- Text GLabel 1600 6500 0 39 Input ~ 0
- ~XMEMW800_ABC_3V3
- Wire Wire Line
- 1600 6300 1650 6300
- Wire Wire Line
- 1600 6500 1650 6500
- Text GLabel 1600 6300 0 39 Input ~ 0
- ~XMEMW80_ABC_3V3
- Wire Wire Line
- 6450 7600 6500 7600
- Wire Wire Line
- 6450 7700 6500 7700
- Text Label 750 3700 0 50 ~ 0
- AD8
- Entry Wire Line
- 650 3600 750 3700
- Wire Wire Line
- 1650 3700 750 3700
- Wire Wire Line
- 950 4000 1050 4000
- Wire Wire Line
- 1250 4000 1650 4000
- Entry Wire Line
- 650 2400 750 2500
- Wire Wire Line
- 1650 2500 750 2500
- Wire Wire Line
- 750 2900 1650 2900
- Entry Wire Line
- 650 2800 750 2900
- Text Label 750 3500 0 50 ~ 0
- AD7
- Text Label 750 2500 0 50 ~ 0
- AD6
- Text Label 750 2900 0 50 ~ 0
- AD5
- Wire Wire Line
- 750 3500 1650 3500
- Entry Wire Line
- 650 3400 750 3500
- Text Label 750 3300 0 50 ~ 0
- AD4
- Wire Wire Line
- 750 3300 1650 3300
- Entry Wire Line
- 650 3200 750 3300
- Text Label 750 3100 0 50 ~ 0
- AD3
- Wire Wire Line
- 750 3100 1650 3100
- Entry Wire Line
- 650 3000 750 3100
- $Comp
- L power:+3V3 #PWR0111
- U 1 1 610A914A
- P 950 2000
- F 0 "#PWR0111" H 950 1850 50 0001 C CNN
- F 1 "+3V3" H 965 2173 50 0000 C CNN
- F 2 "" H 950 2000 50 0001 C CNN
- F 3 "" H 950 2000 50 0001 C CNN
- 1 950 2000
- 1 0 0 -1
- $EndComp
- Wire Wire Line
- 950 3200 1350 3200
- Wire Wire Line
- 950 2000 950 3200
- Wire Wire Line
- 1550 3200 1650 3200
- Text GLabel 650 1700 1 50 Input ~ 0
- AD[0..16]
- $Comp
- L power:+3V3 #PWR0188
- U 1 1 603EE1D1
- P 950 3950
- F 0 "#PWR0188" H 950 3800 50 0001 C CNN
- F 1 "+3V3" H 800 4050 50 0000 C CNN
- F 2 "" H 950 3950 50 0001 C CNN
- F 3 "" H 950 3950 50 0001 C CNN
- 1 950 3950
- 1 0 0 -1
- $EndComp
- Wire Wire Line
- 950 3950 950 4000
- $Comp
- L Device:R_Small R37
- U 1 1 603DBC0D
- P 1150 4000
- F 0 "R37" V 1250 3950 50 0000 L CNN
- F 1 "10k" V 1050 4000 50 0000 L CNN
- F 2 "Resistor_SMD:R_0402_1005Metric" H 1150 4000 50 0001 C CNN
- F 3 "~" H 1150 4000 50 0001 C CNN
- F 4 "C25744" H 1150 4000 50 0001 C CNN "LCSC"
- 1 1150 4000
- 0 -1 -1 0
- $EndComp
- $Comp
- L Device:R_Small R13
- U 1 1 603E59B4
- P 1450 3200
- F 0 "R13" V 1400 2950 50 0000 L CNN
- F 1 "10k" V 1500 3000 50 0000 L CNN
- F 2 "Resistor_SMD:R_0402_1005Metric" H 1450 3200 50 0001 C CNN
- F 3 "~" H 1450 3200 50 0001 C CNN
- F 4 "C25744" H 1450 3200 50 0001 C CNN "LCSC"
- 1 1450 3200
- 0 1 1 0
- $EndComp
- $Comp
- L power:+3V3 #PWR0197
- U 1 1 64667F2F
- P 14900 6950
- F 0 "#PWR0197" H 14900 6800 50 0001 C CNN
- F 1 "+3V3" H 14915 7123 50 0000 C CNN
- F 2 "" H 14900 6950 50 0001 C CNN
- F 3 "" H 14900 6950 50 0001 C CNN
- 1 14900 6950
- 1 0 0 -1
- $EndComp
- Wire Wire Line
- 14900 6950 14900 7050
- Wire Wire Line
- 14600 7350 14450 7350
- Wire Wire Line
- 14450 7350 14450 6950
- Wire Wire Line
- 14450 6950 14900 6950
- Connection ~ 14900 6950
- Text GLabel 1600 4100 0 50 Input ~ 0
- FPGA_TCK
- Wire Wire Line
- 1600 4100 1650 4100
- Text GLabel 1600 3900 0 50 Input ~ 0
- DATA0
- Wire Wire Line
- 1600 3900 1650 3900
- Text GLabel 1600 3800 0 50 Input ~ 0
- DLCK
- Wire Wire Line
- 1600 3800 1650 3800
- Text GLabel 1600 3600 0 50 Input ~ 0
- ~OUT_ABC_3V3
- Wire Wire Line
- 1600 3600 1650 3600
- Text GLabel 1600 3400 0 50 Input ~ 0
- ~CS_ABC_3V3
- Wire Wire Line
- 1600 3400 1650 3400
- Text GLabel 1600 3000 0 50 Input ~ 0
- nCE0
- Wire Wire Line
- 1600 3000 1650 3000
- Text GLabel 1600 2800 0 50 Input ~ 0
- ASD0
- Wire Wire Line
- 1600 2800 1650 2800
- Text GLabel 1600 2400 0 50 Input ~ 0
- FPGA_TDI
- Wire Wire Line
- 1600 2400 1650 2400
- Text GLabel 1600 2300 0 50 Input ~ 0
- FPGA_TDO
- Wire Wire Line
- 1600 2300 1650 2300
- Text GLabel 1600 2100 0 50 Input ~ 0
- FPGA_TMS
- Wire Wire Line
- 1600 2100 1650 2100
- $Comp
- L max80:MT48LC16M16A2P-6A U6
- U 1 1 604F9283
- P 14750 4900
- F 0 "U6" H 14200 6200 50 0000 C CNN
- F 1 "MT48LC16M16A2P-6A" H 15550 6250 50 0000 C CNN
- F 2 "Package_SO:TSOP-II-54_22.2x10.16mm_P0.8mm" H 14000 5050 50 0001 C CNN
- F 3 "https://www.mouser.se/datasheet/2/671/256Mb_sdr-1282350.pdf" H 14000 5050 50 0001 C CNN
- F 4 "C41881" H 14750 4900 50 0001 C CNN "LCSC"
- 1 14750 4900
- 1 0 0 -1
- $EndComp
- Wire Wire Line
- 14700 3300 14900 3300
- Text Label 6450 3700 2 50 ~ 0
- SD_DAT2
- Wire Wire Line
- 6450 7400 6500 7400
- Text GLabel 3250 1500 1 50 Input ~ 0
- DD[0..15]
- Wire Wire Line
- 4150 2650 4200 2650
- Wire Wire Line
- 4150 2550 4200 2550
- Wire Wire Line
- 4150 2850 4200 2850
- Wire Wire Line
- 4150 2750 4200 2750
- Wire Wire Line
- 4150 2150 4200 2150
- Wire Wire Line
- 4150 2050 4200 2050
- Text GLabel 4150 3050 0 50 Input ~ 0
- FPGA_SPI_MOSI
- Text GLabel 4150 2150 0 39 Input ~ 0
- FPGA_SPI_MISO
- Wire Wire Line
- 4150 3250 4200 3250
- Wire Wire Line
- 4150 3150 4200 3150
- Wire Wire Line
- 4150 3050 4200 3050
- Wire Wire Line
- 4150 2950 4200 2950
- Wire Wire Line
- 4150 2450 4200 2450
- Text GLabel 4150 2450 0 39 Input ~ 0
- FPGA_RESIN
- Entry Wire Line
- 3250 2250 3350 2350
- Text Label 3550 2350 0 39 ~ 0
- DD9
- Entry Wire Line
- 3250 2150 3350 2250
- Text Label 3550 2250 0 39 ~ 0
- DD8
- Entry Wire Line
- 3250 4050 3350 4150
- Text Label 3550 4150 0 50 ~ 0
- DD7
- Entry Wire Line
- 3250 3950 3350 4050
- Text Label 3550 4050 0 50 ~ 0
- DD6
- Entry Wire Line
- 3250 3750 3350 3850
- Text Label 3550 3850 0 50 ~ 0
- DD5
- Entry Wire Line
- 3250 3650 3350 3750
- Text Label 3550 3750 0 50 ~ 0
- DD4
- Entry Wire Line
- 3250 3850 3350 3950
- Text Label 3550 3950 0 50 ~ 0
- DD3
- Entry Wire Line
- 3250 4150 3350 4250
- Text Label 3550 4250 0 50 ~ 0
- DD2
- Entry Wire Line
- 3250 1850 3350 1950
- Text Label 3550 1950 0 39 ~ 0
- DD1
- Text Label 3550 3650 0 50 ~ 0
- DD0
- Entry Wire Line
- 3250 3550 3350 3650
- Wire Wire Line
- 4150 3450 4200 3450
- Text GLabel 4150 3450 0 39 Input ~ 0
- ABC_CLK_3V3
- Wire Wire Line
- 4150 3550 4200 3550
- Text GLabel 4150 3550 0 39 Input ~ 0
- ~XMEMFL_ABC_3V3
- $Comp
- L max80:EP4CE15F17C8N U13
- U 3 1 60549765
- P 5000 3200
- F 0 "U13" H 4250 5100 50 0000 L CNN
- F 1 "EP4CE15F17C8N" H 5400 5050 50 0000 L CNN
- F 2 "" H 3650 3550 50 0001 L CNN
- F 3 "" H 3650 3550 50 0001 L CNN
- 3 5000 3200
- 1 0 0 -1
- $EndComp
- Text GLabel 4150 3250 0 50 Input ~ 0
- INT_ESP32
- Text GLabel 4150 2750 0 50 Input ~ 0
- FPGA_GPIO5
- Text GLabel 4150 2850 0 50 Input ~ 0
- FPGA_GPIO4
- Text GLabel 4150 2650 0 50 Input ~ 0
- FPGA_GPIO0
- Text GLabel 4150 2550 0 39 Input ~ 0
- FPGA_GPIO2
- Text GLabel 3850 6750 0 39 Input ~ 0
- FPGA_GPIO3
- Text GLabel 4150 2950 0 50 Input ~ 0
- ESP32_IO0
- Text GLabel 4150 3150 0 50 Input ~ 0
- FGPA_SPI_CS_ESP32
- Text GLabel 4150 2050 0 39 Input ~ 0
- FPGA_SPI_CLK
- $Comp
- L max80:EP4CE15F17C8N U13
- U 1 1 605450B7
- P 2450 3150
- F 0 "U13" H 1800 5050 50 0000 L CNN
- F 1 "EP4CE15F17C8N" H 2400 5050 50 0000 L CNN
- F 2 "" H 1100 3500 50 0001 L CNN
- F 3 "" H 1100 3500 50 0001 L CNN
- 1 2450 3150
- 1 0 0 -1
- $EndComp
- Text GLabel 6450 8000 0 39 Input ~ 0
- CLK0n
- $Sheet
- S 5350 9400 750 350
- U 650A9AE9
- F0 "HDMI" 50
- F1 "HDMI.sch" 50
- $EndSheet
- Text GLabel 6450 6600 0 50 Input ~ 0
- HDMI_D2+
- Text GLabel 6450 6500 0 50 Input ~ 0
- HDMI_D2-
- Wire Wire Line
- 6450 6500 6500 6500
- Text GLabel 6450 6800 0 50 Input ~ 0
- HDMI_D1-
- Wire Wire Line
- 6450 6600 6500 6600
- Text GLabel 6450 6900 0 50 Input ~ 0
- HDMI_D1+
- Wire Wire Line
- 6450 6800 6500 6800
- Text GLabel 6450 7500 0 50 Input ~ 0
- HDMI_D0+
- Text GLabel 6450 7700 0 50 Input ~ 0
- HDMI_CK+
- Text GLabel 6450 7600 0 50 Input ~ 0
- HDMI_CK-
- Wire Wire Line
- 6450 6900 6500 6900
- Wire Wire Line
- 6450 7500 6500 7500
- Text GLabel 6450 7300 0 50 Input ~ 0
- HDMI_SDA
- Text GLabel 6450 7800 0 50 Input ~ 0
- HDMI_SCL
- Wire Wire Line
- 3850 8050 3900 8050
- Wire Wire Line
- 6450 7300 6500 7300
- Wire Wire Line
- 6450 7800 6500 7800
- Wire Wire Line
- 3850 7050 3900 7050
- Wire Wire Line
- 3350 1950 4200 1950
- Wire Wire Line
- 3350 2250 4200 2250
- Wire Wire Line
- 3350 2350 4200 2350
- Wire Wire Line
- 3350 3650 4200 3650
- Wire Wire Line
- 3350 3750 4200 3750
- Wire Wire Line
- 3350 3850 4200 3850
- Wire Wire Line
- 3350 3950 4200 3950
- Wire Wire Line
- 3350 4050 4200 4050
- Wire Wire Line
- 3350 4150 4200 4150
- Wire Wire Line
- 3350 4250 4200 4250
- NoConn ~ 9400 4200
- Wire Wire Line
- 9350 4300 9400 4300
- NoConn ~ 3900 5850
- NoConn ~ 3900 5950
- NoConn ~ 3900 6050
- NoConn ~ 3900 6150
- NoConn ~ 3900 6350
- NoConn ~ 3900 6550
- NoConn ~ 3900 6850
- NoConn ~ 3900 6950
- NoConn ~ 3900 7150
- NoConn ~ 3900 7350
- NoConn ~ 3900 7450
- NoConn ~ 3900 7650
- NoConn ~ 3900 7750
- NoConn ~ 3900 8150
- NoConn ~ 3900 8250
- NoConn ~ 6500 6300
- NoConn ~ 6500 6400
- NoConn ~ 6500 6700
- NoConn ~ 6500 8100
- Text GLabel 4150 4350 0 39 Input ~ 0
- FLASH_CS#
- Wire Wire Line
- 4150 4350 4200 4350
- Text GLabel 8150 10250 1 39 Input ~ 0
- FPGA_JTAGEN
- Wire Wire Line
- 9350 4100 9400 4100
- Wire Wire Line
- 9350 3800 9400 3800
- $Comp
- L Device:R_Small R24
- U 1 1 66F72E4D
- P 8150 10500
- F 0 "R24" V 8100 10250 50 0000 L CNN
- F 1 "10k" V 8200 10300 50 0000 L CNN
- F 2 "Resistor_SMD:R_0402_1005Metric" H 8150 10500 50 0001 C CNN
- F 3 "~" H 8150 10500 50 0001 C CNN
- F 4 "C25744" H 8150 10500 50 0001 C CNN "LCSC"
- 1 8150 10500
- -1 0 0 1
- $EndComp
- $Comp
- L power:GND #PWR0186
- U 1 1 67041559
- P 8150 10650
- F 0 "#PWR0186" H 8150 10400 50 0001 C CNN
- F 1 "GND" H 8155 10477 50 0000 C CNN
- F 2 "" H 8150 10650 50 0001 C CNN
- F 3 "" H 8150 10650 50 0001 C CNN
- 1 8150 10650
- 1 0 0 -1
- $EndComp
- Text Label 7900 10350 0 39 ~ 0
- nCE
- Wire Wire Line
- 7900 10350 8150 10350
- Connection ~ 8150 10350
- Wire Wire Line
- 8150 10350 8150 10400
- Wire Wire Line
- 8150 10600 8150 10650
- Wire Wire Line
- 8150 10250 8150 10350
- Text Label 1600 2200 2 39 ~ 0
- nCE
- Wire Wire Line
- 1600 2200 1650 2200
- $Comp
- L power:GND #PWR0209
- U 1 1 6723A794
- P 14900 7700
- F 0 "#PWR0209" H 14900 7450 50 0001 C CNN
- F 1 "GND" H 14905 7527 50 0000 C CNN
- F 2 "" H 14900 7700 50 0001 C CNN
- F 3 "" H 14900 7700 50 0001 C CNN
- 1 14900 7700
- 1 0 0 -1
- $EndComp
- Wire Wire Line
- 14900 7650 14900 7700
- Wire Wire Line
- 15200 7350 15300 7350
- Wire Wire Line
- 6450 8000 6500 8000
- Text GLabel 6450 7400 0 50 Input ~ 0
- HDMI_D0-
- Entry Wire Line
- 3450 6550 3550 6650
- Wire Wire Line
- 3550 6650 3900 6650
- Text Label 3550 6650 0 50 ~ 0
- DD10
- Wire Bus Line
- 3450 5300 3450 6550
- Text GLabel 3450 5300 1 50 Input ~ 0
- DD[0..15]
- Text GLabel 1650 2600 0 39 Input ~ 0
- XM_ABC_3V3
- Entry Wire Line
- 650 2600 750 2700
- Wire Wire Line
- 750 2700 1650 2700
- Text Label 750 2700 0 50 ~ 0
- AD16
- $Comp
- L Device:D_Schottky D4
- U 1 1 60D15E22
- P 12200 7000
- F 0 "D4" V 12100 6850 50 0000 L CNN
- F 1 "D_Schottky" V 12245 7080 50 0000 L CNN
- F 2 "Diode_SMD:D_SOD-123" H 12200 7000 50 0001 C CNN
- F 3 "~" H 12200 7000 50 0001 C CNN
- F 4 " C402219" V 12200 7000 50 0001 C CNN "LCSC"
- 1 12200 7000
- 0 1 1 0
- $EndComp
- Wire Wire Line
- 13450 7150 13550 7150
- $Comp
- L Device:D_Schottky D7
- U 1 1 60D4872C
- P 13750 6950
- F 0 "D7" V 13704 7030 50 0000 L CNN
- F 1 "D_Schottky" V 13795 7030 50 0000 L CNN
- F 2 "Diode_SMD:D_SOD-123" H 13750 6950 50 0001 C CNN
- F 3 "~" H 13750 6950 50 0001 C CNN
- F 4 " C402219" V 13750 6950 50 0001 C CNN "LCSC"
- 1 13750 6950
- 0 1 1 0
- $EndComp
- $Comp
- L Device:D_Schottky D6
- U 1 1 60D4963D
- P 13550 6950
- F 0 "D6" V 13504 7030 50 0000 L CNN
- F 1 "D_Schottky" V 13595 7030 50 0000 L CNN
- F 2 "Diode_SMD:D_SOD-123" H 13550 6950 50 0001 C CNN
- F 3 "~" H 13550 6950 50 0001 C CNN
- F 4 " C402219" V 13550 6950 50 0001 C CNN "LCSC"
- 1 13550 6950
- 0 1 1 0
- $EndComp
- Wire Wire Line
- 13550 7100 13550 7150
- Connection ~ 13550 7150
- Wire Wire Line
- 13550 7150 13900 7150
- Wire Wire Line
- 13750 7100 13750 7250
- Connection ~ 13750 7250
- Wire Wire Line
- 13750 7250 13850 7250
- $Comp
- L power:+3V3 #PWR0229
- U 1 1 60DCB38E
- P 13650 6650
- F 0 "#PWR0229" H 13650 6500 50 0001 C CNN
- F 1 "+3V3" H 13665 6823 50 0000 C CNN
- F 2 "" H 13650 6650 50 0001 C CNN
- F 3 "" H 13650 6650 50 0001 C CNN
- 1 13650 6650
- 1 0 0 -1
- $EndComp
- Wire Wire Line
- 13550 6800 13550 6750
- Wire Wire Line
- 13550 6750 13650 6750
- Wire Wire Line
- 13650 6750 13650 6650
- Wire Wire Line
- 13650 6750 13750 6750
- Wire Wire Line
- 13750 6750 13750 6800
- Connection ~ 13650 6750
- Wire Wire Line
- 12100 7450 12400 7450
- Wire Wire Line
- 12100 7250 12200 7250
- $Comp
- L Device:D_Schottky D5
- U 1 1 60E7A93B
- P 12400 7000
- F 0 "D5" V 12354 7080 50 0000 L CNN
- F 1 "D_Schottky" V 12445 7080 50 0000 L CNN
- F 2 "Diode_SMD:D_SOD-123" H 12400 7000 50 0001 C CNN
- F 3 "~" H 12400 7000 50 0001 C CNN
- F 4 " C402219" V 12400 7000 50 0001 C CNN "LCSC"
- 1 12400 7000
- 0 1 1 0
- $EndComp
- Wire Wire Line
- 12200 7150 12200 7250
- Connection ~ 12200 7250
- Wire Wire Line
- 12200 7250 12450 7250
- Wire Wire Line
- 12400 7150 12400 7450
- Connection ~ 12400 7450
- Wire Wire Line
- 12400 7450 12450 7450
- $Comp
- L power:+3V3 #PWR0230
- U 1 1 60ECB507
- P 12300 6700
- F 0 "#PWR0230" H 12300 6550 50 0001 C CNN
- F 1 "+3V3" H 12315 6873 50 0000 C CNN
- F 2 "" H 12300 6700 50 0001 C CNN
- F 3 "" H 12300 6700 50 0001 C CNN
- 1 12300 6700
- 1 0 0 -1
- $EndComp
- Wire Wire Line
- 12200 6850 12200 6800
- Wire Wire Line
- 12200 6800 12300 6800
- Wire Wire Line
- 12300 6800 12300 6700
- Wire Wire Line
- 12300 6800 12400 6800
- Wire Wire Line
- 12400 6800 12400 6850
- Connection ~ 12300 6800
- Text GLabel 9350 3700 0 39 Input ~ 0
- ~FPGA_READY
- Text GLabel 9350 4000 0 39 Input ~ 0
- FPGA_NMI
- Text GLabel 9350 3800 0 39 Input ~ 0
- INT800_ABC_3V3
- Text GLabel 9350 4100 0 39 Input ~ 0
- INT_ABC_3V3
- $Comp
- L max80:EP4CE15F17C8N U13
- U 5 1 60569818
- P 7300 7200
- F 0 "U13" H 7928 7221 50 0000 L CNN
- F 1 "EP4CE15F17C8N" H 7928 7130 50 0000 L CNN
- F 2 "" H 5950 7550 50 0001 L CNN
- F 3 "" H 5950 7550 50 0001 L CNN
- 5 7300 7200
- 1 0 0 -1
- $EndComp
- Wire Wire Line
- 8800 2100 9400 2100
- Wire Wire Line
- 8800 3600 9400 3600
- Wire Wire Line
- 8800 3300 9400 3300
- Entry Wire Line
- 8700 3200 8800 3300
- Entry Wire Line
- 8700 3300 8800 3400
- Wire Wire Line
- 8800 3400 9400 3400
- Wire Wire Line
- 9350 3700 9400 3700
- Wire Wire Line
- 9350 4000 9400 4000
- Text GLabel 8750 7850 1 50 Input ~ 0
- AD[0..15]
- Wire Bus Line
- 8750 7850 8750 8050
- $Comp
- L power:+1V2 #PWR0232
- U 1 1 61037736
- P 800 7150
- F 0 "#PWR0232" H 800 7000 50 0001 C CNN
- F 1 "+1V2" H 815 7323 50 0000 C CNN
- F 2 "" H 800 7150 50 0001 C CNN
- F 3 "" H 800 7150 50 0001 C CNN
- 1 800 7150
- 1 0 0 -1
- $EndComp
- Wire Wire Line
- 800 7150 900 7150
- Wire Wire Line
- 900 7150 900 7100
- Wire Wire Line
- 900 7100 1650 7100
- Text GLabel 3850 8050 0 39 Input ~ 0
- HDMI_HPD
- Wire Wire Line
- 3850 7250 3900 7250
- $Comp
- L power:GND #PWR0233
- U 1 1 611D435F
- P 5850 4300
- F 0 "#PWR0233" H 5850 4050 50 0001 C CNN
- F 1 "GND" H 5855 4127 50 0000 C CNN
- F 2 "" H 5850 4300 50 0001 C CNN
- F 3 "" H 5850 4300 50 0001 C CNN
- 1 5850 4300
- 1 0 0 -1
- $EndComp
- Wire Wire Line
- 5850 4300 5850 4000
- Wire Wire Line
- 5850 4000 6550 4000
- NoConn ~ 3900 7550
- Wire Wire Line
- 6450 8200 6500 8200
- NoConn ~ 3900 7850
- Wire Wire Line
- 3850 6750 3900 6750
- NoConn ~ 4200 3350
- Wire Wire Line
- 3850 8450 3900 8450
- NoConn ~ 3900 8350
- Wire Wire Line
- 3850 7950 3900 7950
- Wire Wire Line
- 3850 6250 3900 6250
- NoConn ~ 6500 7000
- NoConn ~ 6500 7100
- NoConn ~ 6500 7200
- NoConn ~ 6500 7900
- NoConn ~ 3900 6450
- NoConn ~ 9350 8250
- Wire Wire Line
- 8600 2400 9400 2400
- Wire Wire Line
- 8600 2200 9400 2200
- Wire Wire Line
- 8850 8150 9350 8150
- Wire Bus Line
- 8500 1700 8500 3900
- Wire Bus Line
- 3250 1500 3250 4300
- Wire Bus Line
- 650 1700 650 8000
- Wire Bus Line
- 8700 1800 8700 4000
- Wire Bus Line
- 9100 5750 9100 8350
- Wire Bus Line
- 15700 2900 15700 5700
- Wire Bus Line
- 13800 2900 13800 5700
- $EndSCHEMATC
|