123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932 |
- <?xml version="1.0" encoding="UTF-8"?>
- <export version="D">
- <design>
- <source>/home/pm/project/abc80/max80/max80.sch</source>
- <date>tor 11 nov 2021 09:21:04</date>
- <tool>Eeschema 5.99.0+really5.1.10+dfsg1-1</tool>
- <sheet number="1" name="/" tstamps="/">
- <title_block>
- <title>MAX80</title>
- <company>Peter o Per</company>
- <rev>0.01</rev>
- <date>2021-02-22</date>
- <source>max80.sch</source>
- <comment number="1" value=""/>
- <comment number="2" value=""/>
- <comment number="3" value=""/>
- <comment number="4" value=""/>
- </title_block>
- </sheet>
- <sheet number="2" name="/abc80bus/" tstamps="/6013B380/">
- <title_block>
- <title>MAX80</title>
- <company>Peter o Per</company>
- <rev>0.02</rev>
- <date>2021-11-07</date>
- <source>abc80bus.sch</source>
- <comment number="1" value=""/>
- <comment number="2" value=""/>
- <comment number="3" value=""/>
- <comment number="4" value=""/>
- </title_block>
- </sheet>
- <sheet number="3" name="/POWER/" tstamps="/6013A59C/">
- <title_block>
- <title>MAX80</title>
- <company>Peter o Per</company>
- <rev>0.01</rev>
- <date>2021-02-22</date>
- <source>power.sch</source>
- <comment number="1" value=""/>
- <comment number="2" value=""/>
- <comment number="3" value=""/>
- <comment number="4" value=""/>
- </title_block>
- </sheet>
- <sheet number="4" name="/USB/" tstamps="/601569F0/">
- <title_block>
- <title>MAX80</title>
- <company>Peter o Per</company>
- <rev>0.01</rev>
- <date>2021-02-22</date>
- <source>usb.sch</source>
- <comment number="1" value=""/>
- <comment number="2" value=""/>
- <comment number="3" value=""/>
- <comment number="4" value=""/>
- </title_block>
- </sheet>
- <sheet number="5" name="/ESP32/" tstamps="/602159BB/">
- <title_block>
- <title>MAX80</title>
- <company>Peter o Per</company>
- <rev>0.01</rev>
- <date>2021-02-22</date>
- <source>esp32.sch</source>
- <comment number="1" value=""/>
- <comment number="2" value=""/>
- <comment number="3" value=""/>
- <comment number="4" value=""/>
- </title_block>
- </sheet>
- <sheet number="6" name="/RTC/" tstamps="/6023577B/">
- <title_block>
- <title>MAX80</title>
- <company>Peter o Per</company>
- <rev>0.01</rev>
- <date>2021-02-22</date>
- <source>rtc.sch</source>
- <comment number="1" value=""/>
- <comment number="2" value=""/>
- <comment number="3" value=""/>
- <comment number="4" value=""/>
- </title_block>
- </sheet>
- <sheet number="7" name="/ADAPTER_CONN/" tstamps="/60B94961/">
- <title_block>
- <title>MAX80</title>
- <company>Peter o Per</company>
- <rev>0.01</rev>
- <date>2021-02-22</date>
- <source>adapter_conn.sch</source>
- <comment number="1" value=""/>
- <comment number="2" value=""/>
- <comment number="3" value=""/>
- <comment number="4" value=""/>
- </title_block>
- </sheet>
- <sheet number="8" name="/Power FPGA/" tstamps="/604B2191/">
- <title_block>
- <title/>
- <company/>
- <rev/>
- <date/>
- <source>power_fpga.sch</source>
- <comment number="1" value=""/>
- <comment number="2" value=""/>
- <comment number="3" value=""/>
- <comment number="4" value=""/>
- </title_block>
- </sheet>
- <sheet number="9" name="/HDMI/" tstamps="/650A9AE9/">
- <title_block>
- <title/>
- <company/>
- <rev/>
- <date/>
- <source>HDMI.sch</source>
- <comment number="1" value=""/>
- <comment number="2" value=""/>
- <comment number="3" value=""/>
- <comment number="4" value=""/>
- </title_block>
- </sheet>
- </design>
- <components>
- <comp ref="OSC1">
- <value>EPSON Q33310 48 MHz</value>
- <footprint>max80:Oscillator_SMD_Abracon_ASE-4Pin_3.2x2.5mm</footprint>
- <fields>
- <field name="LCSC">C32533</field>
- </fields>
- <libsource lib="Oscillator" part="ASE-xxxMHz" description="3.3V CMOS SMD Crystal Clock Oscillator, Abracon"/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>57BABF34</tstamp>
- </comp>
- <comp ref="J3">
- <value>Micro_SD_Card DM3AT-SF-PEJM5</value>
- <footprint>max80:microSD_HC_Hirose_DM3AT-SF-PEJM5</footprint>
- <datasheet>http://katalog.we-online.de/em/datasheet/693072010801.pdf</datasheet>
- <fields>
- <field name="LCSC">C114218</field>
- </fields>
- <libsource lib="Connector" part="Micro_SD_Card_Det_Hirose_DM3AT" description="Micro SD Card Socket with card detection pins"/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>6022B125</tstamp>
- </comp>
- <comp ref="C48">
- <value>100nF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C1525</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>602D0725</tstamp>
- </comp>
- <comp ref="C49">
- <value>100nF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C1525</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>602D360C</tstamp>
- </comp>
- <comp ref="C51">
- <value>4.7uF</value>
- <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C19666</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>60B62C42</tstamp>
- </comp>
- <comp ref="D17">
- <value>LED-Y</value>
- <footprint>LED_SMD:LED_0603_1608Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C72038</field>
- </fields>
- <libsource lib="Device" part="LED" description="Light emitting diode"/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>6068751D</tstamp>
- </comp>
- <comp ref="R29">
- <value>1k</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C11702</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>6068836E</tstamp>
- </comp>
- <comp ref="D22">
- <value>LED-G</value>
- <footprint>LED_SMD:LED_0603_1608Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C72043</field>
- </fields>
- <libsource lib="Device" part="LED" description="Light emitting diode"/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>606A9A91</tstamp>
- </comp>
- <comp ref="R30">
- <value>1k</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C11702</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>606A9C22</tstamp>
- </comp>
- <comp ref="D23">
- <value>LED-B</value>
- <footprint>LED_SMD:LED_0603_1608Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C72041</field>
- </fields>
- <libsource lib="Device" part="LED" description="Light emitting diode"/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>606B64A5</tstamp>
- </comp>
- <comp ref="R31">
- <value>1k</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C11702</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>606B666A</tstamp>
- </comp>
- <comp ref="C56">
- <value>100nF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C1525</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>6091A70C</tstamp>
- </comp>
- <comp ref="C46">
- <value>100nF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C1525</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>60932F0E</tstamp>
- </comp>
- <comp ref="C45">
- <value>100nF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C1525</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>6094CE83</tstamp>
- </comp>
- <comp ref="C34">
- <value>100nF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C1525</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>6097D4FE</tstamp>
- </comp>
- <comp ref="C33">
- <value>100nF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C1525</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>60997E09</tstamp>
- </comp>
- <comp ref="D29">
- <value>LED-Y</value>
- <footprint>LED_SMD:LED_0603_1608Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C72038</field>
- </fields>
- <libsource lib="Device" part="LED" description="Light emitting diode"/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>6041A94C</tstamp>
- </comp>
- <comp ref="D30">
- <value>LED-Y</value>
- <footprint>LED_SMD:LED_0603_1608Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C72038</field>
- </fields>
- <libsource lib="Device" part="LED" description="Light emitting diode"/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>604220EF</tstamp>
- </comp>
- <comp ref="R10">
- <value>1k</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C11702</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>60427964</tstamp>
- </comp>
- <comp ref="R8">
- <value>1k</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C11702</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>6042C0DA</tstamp>
- </comp>
- <comp ref="U13">
- <value>EP4CE15F17C8N</value>
- <footprint>Package_BGA:BGA-256_17.0x17.0mm_Layout16x16_P1.0mm_Ball0.5mm_Pad0.4mm_NSMD</footprint>
- <libsource lib="max80" part="EP4CE15F17C8N" description=""/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>6054E41F</tstamp>
- </comp>
- <comp ref="R38">
- <value>10k</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C25744</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>604A56EE</tstamp>
- </comp>
- <comp ref="R14">
- <value>6.2k</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C25915</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>60A915FC</tstamp>
- </comp>
- <comp ref="R12">
- <value>6.2k</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C25915</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>60A90B03</tstamp>
- </comp>
- <comp ref="R40">
- <value>10k</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C25744</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>605E3046</tstamp>
- </comp>
- <comp ref="R39">
- <value>10k</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C25744</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>605E3051</tstamp>
- </comp>
- <comp ref="R42">
- <value>1k</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C11702</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>60654523</tstamp>
- </comp>
- <comp ref="R41">
- <value>25</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>607B9EC1</tstamp>
- </comp>
- <comp ref="C2">
- <value>100nF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C1525</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>6082407C</tstamp>
- </comp>
- <comp ref="U7">
- <value>W25Q128JVS</value>
- <footprint>max80:SOIC-8_5.23x5.23mm_P1.27mm</footprint>
- <datasheet>http://www.winbond.com/resource-files/w25q128jv_dtr%20revc%2003272018%20plus.pdf</datasheet>
- <fields>
- <field name="LCSC">C97521</field>
- </fields>
- <libsource lib="Memory_Flash" part="W25Q128JVS" description="128Mb Serial Flash Memory, Standard/Dual/Quad SPI, SOIC-8"/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>6035B91A</tstamp>
- </comp>
- <comp ref="R37">
- <value>10k</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C25744</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>603DBC0D</tstamp>
- </comp>
- <comp ref="R13">
- <value>10k</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C25744</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>603E59B4</tstamp>
- </comp>
- <comp ref="U6">
- <value>MT48LC16M16A2P-6A</value>
- <footprint>Package_SO:TSOP-II-54_22.2x10.16mm_P0.8mm</footprint>
- <datasheet>https://www.mouser.se/datasheet/2/671/256Mb_sdr-1282350.pdf</datasheet>
- <fields>
- <field name="LCSC">C41881</field>
- </fields>
- <libsource lib="max80" part="MT48LC16M16A2P-6A" description=""/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>604F9283</tstamp>
- </comp>
- <comp ref="R24">
- <value>10k</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C25744</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>66F72E4D</tstamp>
- </comp>
- <comp ref="D4">
- <value>1N5819W</value>
- <footprint>Diode_SMD:D_SOD-123</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C963381</field>
- </fields>
- <libsource lib="Device" part="D_Schottky" description="Schottky diode"/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>60D15E22</tstamp>
- </comp>
- <comp ref="D7">
- <value>1N5819W</value>
- <footprint>Diode_SMD:D_SOD-123</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C963381</field>
- </fields>
- <libsource lib="Device" part="D_Schottky" description="Schottky diode"/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>60D4872C</tstamp>
- </comp>
- <comp ref="D6">
- <value>1N5819W</value>
- <footprint>Diode_SMD:D_SOD-123</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C963381</field>
- </fields>
- <libsource lib="Device" part="D_Schottky" description="Schottky diode"/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>60D4963D</tstamp>
- </comp>
- <comp ref="D5">
- <value>1N5819W</value>
- <footprint>Diode_SMD:D_SOD-123</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C963381</field>
- </fields>
- <libsource lib="Device" part="D_Schottky" description="Schottky diode"/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>60E7A93B</tstamp>
- </comp>
- <comp ref="C83">
- <value>100nF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C1525</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/" tstamps="/"/>
- <tstamp>60FC8574</tstamp>
- </comp>
- <comp ref="R22">
- <value>100k</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C25741</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
- <tstamp>612BA053</tstamp>
- </comp>
- <comp ref="R23">
- <value>100k</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C25741</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
- <tstamp>612BA99E</tstamp>
- </comp>
- <comp ref="Q3">
- <value>AO3400A</value>
- <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
- <datasheet>http://www.aosmd.com/pdfs/datasheet/AO3400A.pdf</datasheet>
- <fields>
- <field name="LCSC">C20917</field>
- </fields>
- <libsource lib="Transistor_FET" part="AO3400A" description="30V Vds, 5.7A Id, N-Channel MOSFET, SOT-23"/>
- <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
- <tstamp>6032D111</tstamp>
- </comp>
- <comp ref="Q2">
- <value>AO3400A</value>
- <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
- <datasheet>http://www.aosmd.com/pdfs/datasheet/AO3400A.pdf</datasheet>
- <fields>
- <field name="LCSC">C20917</field>
- </fields>
- <libsource lib="Transistor_FET" part="AO3400A" description="30V Vds, 5.7A Id, N-Channel MOSFET, SOT-23"/>
- <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
- <tstamp>603658C4</tstamp>
- </comp>
- <comp ref="X1">
- <value>ABC-Bus</value>
- <footprint>max80:MAB64B</footprint>
- <libsource lib="max80" part="ABC-Bus" description=""/>
- <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
- <tstamp>6011F2D2</tstamp>
- </comp>
- <comp ref="Q4">
- <value>AO3400A</value>
- <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
- <datasheet>http://www.aosmd.com/pdfs/datasheet/AO3400A.pdf</datasheet>
- <fields>
- <field name="LCSC">C20917</field>
- </fields>
- <libsource lib="Transistor_FET" part="AO3400A" description="30V Vds, 5.7A Id, N-Channel MOSFET, SOT-23"/>
- <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
- <tstamp>60285B62</tstamp>
- </comp>
- <comp ref="J1">
- <value>Conn_01x02_Male</value>
- <footprint>Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Horizontal</footprint>
- <datasheet>~</datasheet>
- <libsource lib="Connector" part="Conn_01x02_Male" description="Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"/>
- <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
- <tstamp>603FB6A3</tstamp>
- </comp>
- <comp ref="D28">
- <value>MBRA340T</value>
- <footprint>Diode_SMD:D_SMA</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C26178</field>
- </fields>
- <libsource lib="Device" part="D_Schottky" description="Schottky diode"/>
- <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
- <tstamp>603612AB</tstamp>
- </comp>
- <comp ref="C3">
- <value>100nF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C1525</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
- <tstamp>60EF0ABB</tstamp>
- </comp>
- <comp ref="U3">
- <value>74HC245</value>
- <footprint>Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm</footprint>
- <datasheet>http://www.ti.com/lit/gpn/sn74HC245</datasheet>
- <fields>
- <field name="LCSC">C126198</field>
- </fields>
- <libsource lib="74xx" part="74HC245" description="Octal BUS Transceivers, 3-State outputs"/>
- <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
- <tstamp>61F93DEE</tstamp>
- </comp>
- <comp ref="C5">
- <value>100nF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C1525</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
- <tstamp>62149379</tstamp>
- </comp>
- <comp ref="C4">
- <value>100nF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C1525</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
- <tstamp>62157028</tstamp>
- </comp>
- <comp ref="U5">
- <value>74HC245</value>
- <footprint>Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm</footprint>
- <datasheet>http://www.ti.com/lit/gpn/sn74HC245</datasheet>
- <fields>
- <field name="LCSC">C126198</field>
- </fields>
- <libsource lib="74xx" part="74HC245" description="Octal BUS Transceivers, 3-State outputs"/>
- <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
- <tstamp>624CCCE1</tstamp>
- </comp>
- <comp ref="U4">
- <value>74HC245</value>
- <footprint>Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm</footprint>
- <datasheet>http://www.ti.com/lit/gpn/sn74HC245</datasheet>
- <fields>
- <field name="LCSC">C126198</field>
- </fields>
- <libsource lib="74xx" part="74HC245" description="Octal BUS Transceivers, 3-State outputs"/>
- <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
- <tstamp>6208BF8B</tstamp>
- </comp>
- <comp ref="C7">
- <value>100nF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C1525</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
- <tstamp>6270830F</tstamp>
- </comp>
- <comp ref="C6">
- <value>100nF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C1525</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
- <tstamp>627085BD</tstamp>
- </comp>
- <comp ref="U14">
- <value>74HC245</value>
- <footprint>Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm</footprint>
- <datasheet>http://www.ti.com/lit/gpn/sn74HC245</datasheet>
- <fields>
- <field name="LCSC">C126198</field>
- </fields>
- <libsource lib="74xx" part="74HC245" description="Octal BUS Transceivers, 3-State outputs"/>
- <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
- <tstamp>6277D5D4</tstamp>
- </comp>
- <comp ref="Q5">
- <value>AO3400A</value>
- <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
- <datasheet>http://www.aosmd.com/pdfs/datasheet/AO3400A.pdf</datasheet>
- <fields>
- <field name="LCSC">C20917</field>
- </fields>
- <libsource lib="Transistor_FET" part="AO3400A" description="30V Vds, 5.7A Id, N-Channel MOSFET, SOT-23"/>
- <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
- <tstamp>66CDB068</tstamp>
- </comp>
- <comp ref="Q1">
- <value>AO3400A</value>
- <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
- <datasheet>http://www.aosmd.com/pdfs/datasheet/AO3400A.pdf</datasheet>
- <fields>
- <field name="LCSC">C20917</field>
- </fields>
- <libsource lib="Transistor_FET" part="AO3400A" description="30V Vds, 5.7A Id, N-Channel MOSFET, SOT-23"/>
- <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
- <tstamp>66D2EFA8</tstamp>
- </comp>
- <comp ref="Q6">
- <value>AO3400A</value>
- <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
- <datasheet>http://www.aosmd.com/pdfs/datasheet/AO3400A.pdf</datasheet>
- <fields>
- <field name="LCSC">C20917</field>
- </fields>
- <libsource lib="Transistor_FET" part="AO3400A" description="30V Vds, 5.7A Id, N-Channel MOSFET, SOT-23"/>
- <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
- <tstamp>6042861D</tstamp>
- </comp>
- <comp ref="R25">
- <value>5.1k</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C25905</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
- <tstamp>6049E6B8</tstamp>
- </comp>
- <comp ref="J7">
- <value>Conn_01x02_Male</value>
- <footprint>Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Horizontal</footprint>
- <datasheet>~</datasheet>
- <libsource lib="Connector" part="Conn_01x02_Male" description="Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"/>
- <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
- <tstamp>609B79F6</tstamp>
- </comp>
- <comp ref="U2">
- <value>74HC245</value>
- <footprint>Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm</footprint>
- <datasheet>http://www.ti.com/lit/gpn/sn74HC245</datasheet>
- <fields>
- <field name="LCSC">C126198</field>
- </fields>
- <libsource lib="74xx" part="74HC245" description="Octal BUS Transceivers, 3-State outputs"/>
- <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
- <tstamp>6202F2F5</tstamp>
- </comp>
- <comp ref="R26">
- <value>0</value>
- <footprint>Resistor_SMD:R_0805_2012Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">NM</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
- <tstamp>60B354D0</tstamp>
- </comp>
- <comp ref="R27">
- <value>0</value>
- <footprint>Resistor_SMD:R_0805_2012Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">NM</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
- <tstamp>60B36F20</tstamp>
- </comp>
- <comp ref="R28">
- <value>0</value>
- <footprint>Resistor_SMD:R_0805_2012Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">NM</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
- <tstamp>60B37C47</tstamp>
- </comp>
- <comp ref="R43">
- <value>0</value>
- <footprint>Resistor_SMD:R_0805_2012Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">NM</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
- <tstamp>60B38966</tstamp>
- </comp>
- <comp ref="R45">
- <value>0</value>
- <footprint>Resistor_SMD:R_0805_2012Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">NM</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
- <tstamp>60B3A85D</tstamp>
- </comp>
- <comp ref="R44">
- <value>0</value>
- <footprint>Resistor_SMD:R_0805_2012Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">NM</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
- <tstamp>60B3CF12</tstamp>
- </comp>
- <comp ref="J6">
- <value>Conn_01x01_Male</value>
- <footprint>Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Horizontal</footprint>
- <datasheet>~</datasheet>
- <libsource lib="Connector" part="Conn_01x01_Male" description="Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"/>
- <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
- <tstamp>60CC7EFE</tstamp>
- </comp>
- <comp ref="X2">
- <value>ABC-Bus</value>
- <footprint>max80:FAB64B</footprint>
- <libsource lib="max80" part="ABC-Bus" description=""/>
- <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
- <tstamp>61C9828F</tstamp>
- </comp>
- <comp ref="C61">
- <value>220uF</value>
- <footprint>Capacitor_SMD:CP_Elec_6.3x7.7</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C127327</field>
- </fields>
- <libsource lib="Device" part="CP_Small" description="Polarized capacitor, small symbol"/>
- <sheetpath names="/POWER/" tstamps="/6013A59C/"/>
- <tstamp>602A7E22</tstamp>
- </comp>
- <comp ref="C60">
- <value>220uF</value>
- <footprint>Capacitor_SMD:CP_Elec_6.3x7.7</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C127327</field>
- </fields>
- <libsource lib="Device" part="CP_Small" description="Polarized capacitor, small symbol"/>
- <sheetpath names="/POWER/" tstamps="/6013A59C/"/>
- <tstamp>602A83A7</tstamp>
- </comp>
- <comp ref="U10">
- <value>CP2102N-A01-GQFN28</value>
- <footprint>Package_DFN_QFN:QFN-28-1EP_5x5mm_P0.5mm_EP3.35x3.35mm</footprint>
- <datasheet>https://www.silabs.com/documents/public/data-sheets/cp2102n-datasheet.pdf</datasheet>
- <fields>
- <field name="LCSC">C6568</field>
- </fields>
- <libsource lib="Interface_USB" part="CP2102N-A01-GQFN28" description="USB to UART master bridge, QFN-28"/>
- <sheetpath names="/USB/" tstamps="/601569F0/"/>
- <tstamp>5E5D03C7</tstamp>
- </comp>
- <comp ref="R7">
- <value>5.1k</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C25905</field>
- </fields>
- <libsource lib="Device" part="R" description="Resistor"/>
- <sheetpath names="/USB/" tstamps="/601569F0/"/>
- <tstamp>6114851D</tstamp>
- </comp>
- <comp ref="R6">
- <value>5.1k</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C25905</field>
- </fields>
- <libsource lib="Device" part="R" description="Resistor"/>
- <sheetpath names="/USB/" tstamps="/601569F0/"/>
- <tstamp>61148F19</tstamp>
- </comp>
- <comp ref="R5">
- <value>5.1k</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C25905</field>
- </fields>
- <libsource lib="Device" part="R" description="Resistor"/>
- <sheetpath names="/USB/" tstamps="/601569F0/"/>
- <tstamp>6114B27A</tstamp>
- </comp>
- <comp ref="USB1">
- <value>HRO-TYPE-C-31-M-12</value>
- <footprint>max80:HRO-TYPE-C-31-M-12</footprint>
- <datasheet>https://datasheet.lcsc.com/szlcsc/1811131825_Korean-Hroparts-Elec-TYPE-C-31-M-12_C165948.pdf</datasheet>
- <fields>
- <field name="LCSC">C165948</field>
- </fields>
- <libsource lib="max80" part="HRO-TYPE-C-31-M-12" description=""/>
- <sheetpath names="/USB/" tstamps="/601569F0/"/>
- <tstamp>6114CF45</tstamp>
- </comp>
- <comp ref="U9">
- <value>USBLC6-2SC6</value>
- <footprint>Package_TO_SOT_SMD:SOT-23-6</footprint>
- <fields>
- <field name="LCSC">C7519</field>
- </fields>
- <libsource lib="Power_Protection" part="USBLC6-2SC6" description="Very low capacitance ESD protection diode, 2 data-line, SOT-23-6"/>
- <sheetpath names="/USB/" tstamps="/601569F0/"/>
- <tstamp>6114F91C</tstamp>
- </comp>
- <comp ref="F1">
- <value>Polyfuse 1.8A</value>
- <footprint>max80:Fuse_1206_3216Metric</footprint>
- <datasheet>https://datasheet.lcsc.com/szlcsc/1811141110_TECHFUSE-nSMD020-30V_C69680.pdf</datasheet>
- <fields>
- <field name="LCSC">C70082</field>
- </fields>
- <libsource lib="Device" part="Polyfuse" description="Resettable fuse, polymeric positive temperature coefficient"/>
- <sheetpath names="/USB/" tstamps="/601569F0/"/>
- <tstamp>611529F7</tstamp>
- </comp>
- <comp ref="C39">
- <value>1uF</value>
- <footprint>Capacitor_SMD:C_0805_2012Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C28323</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/USB/" tstamps="/601569F0/"/>
- <tstamp>61154A99</tstamp>
- </comp>
- <comp ref="C40">
- <value>10uF</value>
- <footprint>Capacitor_SMD:C_0805_2012Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C15850</field>
- </fields>
- <libsource lib="Device" part="C" description="Unpolarized capacitor"/>
- <sheetpath names="/USB/" tstamps="/601569F0/"/>
- <tstamp>61156BD2</tstamp>
- </comp>
- <comp ref="D19">
- <value>MBRA340T</value>
- <footprint>Diode_SMD:D_SMA</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C26178</field>
- </fields>
- <libsource lib="Device" part="D_Schottky" description="Schottky diode"/>
- <sheetpath names="/USB/" tstamps="/601569F0/"/>
- <tstamp>60325B03</tstamp>
- </comp>
- <comp ref="F2">
- <value>Polyfuse 1.8A</value>
- <footprint>max80:Fuse_1206_3216Metric</footprint>
- <datasheet>https://datasheet.lcsc.com/szlcsc/1811141110_TECHFUSE-nSMD020-30V_C69680.pdf</datasheet>
- <fields>
- <field name="LCSC">C70082</field>
- </fields>
- <libsource lib="Device" part="Polyfuse" description="Resettable fuse, polymeric positive temperature coefficient"/>
- <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
- <tstamp>610EE853</tstamp>
- </comp>
- <comp ref="USB2">
- <value>HRO-TYPE-C-31-M-12</value>
- <footprint>max80:HRO-TYPE-C-31-M-12</footprint>
- <datasheet>https://datasheet.lcsc.com/szlcsc/1811131825_Korean-Hroparts-Elec-TYPE-C-31-M-12_C165948.pdf</datasheet>
- <fields>
- <field name="LCSC">C165948</field>
- </fields>
- <libsource lib="max80" part="HRO-TYPE-C-31-M-12" description=""/>
- <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
- <tstamp>610EE858</tstamp>
- </comp>
- <comp ref="R4">
- <value>5.1k</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C25905</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
- <tstamp>5E79F20F</tstamp>
- </comp>
- <comp ref="C52">
- <value>1uF</value>
- <footprint>Capacitor_SMD:C_0805_2012Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C28323</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
- <tstamp>5E7FEAC9</tstamp>
- </comp>
- <comp ref="U11">
- <value>ESP32-S2-WROVER-I</value>
- <footprint>max80:ESP32-S2-WROVER</footprint>
- <datasheet>https://www.espressif.com/sites/default/files/documentation/esp32-s2-wroom_esp32-s2-wroom-i_datasheet_en.pdf</datasheet>
- <libsource lib="RF_Module" part="ESP32-S2-WROVER-I" description="RF Module, ESP32-D0WDQ6 SoC, Wi-Fi 802.11b/g/n, 32-bit, 2.7-3.6V, onboard antenna, SMD"/>
- <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
- <tstamp>610EDBDA</tstamp>
- </comp>
- <comp ref="R3">
- <value>5.1k</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C25905</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
- <tstamp>61104569</tstamp>
- </comp>
- <comp ref="C54">
- <value>22uF</value>
- <footprint>Capacitor_SMD:C_0805_2012Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C45783</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
- <tstamp>611262EE</tstamp>
- </comp>
- <comp ref="C55">
- <value>100nF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C1525</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
- <tstamp>61126FC2</tstamp>
- </comp>
- <comp ref="C53">
- <value>100nF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C1525</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
- <tstamp>6112E6F3</tstamp>
- </comp>
- <comp ref="R19">
- <value>4.7k</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C25900</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
- <tstamp>611AB901</tstamp>
- </comp>
- <comp ref="R20">
- <value>4.7k</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C25900</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
- <tstamp>611ABCC5</tstamp>
- </comp>
- <comp ref="D1">
- <value>LED-Y</value>
- <footprint>LED_SMD:LED_0603_1608Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C72038</field>
- </fields>
- <libsource lib="Device" part="LED" description="Light emitting diode"/>
- <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
- <tstamp>611B5A79</tstamp>
- </comp>
- <comp ref="R16">
- <value>1k</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C11702</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
- <tstamp>611B7173</tstamp>
- </comp>
- <comp ref="R17">
- <value>1k</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C11702</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
- <tstamp>611B7E9F</tstamp>
- </comp>
- <comp ref="R18">
- <value>1k</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C11702</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
- <tstamp>611B8401</tstamp>
- </comp>
- <comp ref="D2">
- <value>LED-G</value>
- <footprint>LED_SMD:LED_0603_1608Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C72043</field>
- </fields>
- <libsource lib="Device" part="LED" description="Light emitting diode"/>
- <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
- <tstamp>611D1925</tstamp>
- </comp>
- <comp ref="R21">
- <value>10k</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C25744</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
- <tstamp>613A0F9D</tstamp>
- </comp>
- <comp ref="D27">
- <value>MBRA340T</value>
- <footprint>Diode_SMD:D_SMA</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C26178</field>
- </fields>
- <libsource lib="Device" part="D_Schottky" description="Schottky diode"/>
- <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
- <tstamp>6032D6A5</tstamp>
- </comp>
- <comp ref="R15">
- <value>1k</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C11702</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
- <tstamp>611331F0</tstamp>
- </comp>
- <comp ref="R1">
- <value>10k</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C25744</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
- <tstamp>60379925</tstamp>
- </comp>
- <comp ref="D3">
- <value>LED-B</value>
- <footprint>LED_SMD:LED_0603_1608Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C72041</field>
- </fields>
- <libsource lib="Device" part="LED" description="Light emitting diode"/>
- <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
- <tstamp>611D1F01</tstamp>
- </comp>
- <comp ref="U15">
- <value>USBLC6-2SC6</value>
- <footprint>Package_TO_SOT_SMD:SOT-23-6</footprint>
- <fields>
- <field name="LCSC">C7519</field>
- </fields>
- <libsource lib="Power_Protection" part="USBLC6-2SC6" description="Very low capacitance ESD protection diode, 2 data-line, SOT-23-6"/>
- <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
- <tstamp>610EE85E</tstamp>
- </comp>
- <comp ref="U12">
- <value>DS3231M+</value>
- <footprint>Package_SO:SOIC-16W_7.5x10.3mm_P1.27mm</footprint>
- <datasheet>http://datasheets.maximintegrated.com/en/ds/DS3231M.pdf</datasheet>
- <fields>
- <field name="LCSC">C37663</field>
- </fields>
- <libsource lib="Timer_RTC" part="DS3231M" description="Extremely Accurate I2C-Integrated RTC/TCXO/Crystal SOIC-16"/>
- <sheetpath names="/RTC/" tstamps="/6023577B/"/>
- <tstamp>60239074</tstamp>
- </comp>
- <comp ref="BT1">
- <value>Battery_Cell</value>
- <footprint>max80:BatteryHolder_Keystone_103_1x20mm</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C238065</field>
- </fields>
- <libsource lib="Device" part="Battery_Cell" description="Single-cell battery"/>
- <sheetpath names="/RTC/" tstamps="/6023577B/"/>
- <tstamp>6023A838</tstamp>
- </comp>
- <comp ref="C47">
- <value>100nF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C1525</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/RTC/" tstamps="/6023577B/"/>
- <tstamp>6023B210</tstamp>
- </comp>
- <comp ref="R9">
- <value>6.2k</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C25915</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/RTC/" tstamps="/6023577B/"/>
- <tstamp>6170570B</tstamp>
- </comp>
- <comp ref="R32">
- <value>6.2k</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C25915</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/RTC/" tstamps="/6023577B/"/>
- <tstamp>61706B6D</tstamp>
- </comp>
- <comp ref="J4">
- <value>Conn_02x20_Odd_Even</value>
- <footprint>Connector_PinHeader_2.54mm:PinHeader_2x20_P2.54mm_Horizontal</footprint>
- <datasheet>~</datasheet>
- <libsource lib="Connector_Generic" part="Conn_02x20_Odd_Even" description="Generic connector, double row, 02x20, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"/>
- <sheetpath names="/ADAPTER_CONN/" tstamps="/60B94961/"/>
- <tstamp>60B95FED</tstamp>
- </comp>
- <comp ref="J8">
- <value>Conn_02x5_Odd_Even</value>
- <footprint>Connector_PinHeader_2.54mm:PinHeader_2x06_P2.54mm_Vertical</footprint>
- <datasheet>~</datasheet>
- <libsource lib="Connector_Generic" part="Conn_02x06_Odd_Even" description="Generic connector, double row, 02x06, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"/>
- <sheetpath names="/ADAPTER_CONN/" tstamps="/60B94961/"/>
- <tstamp>6100C1FE</tstamp>
- </comp>
- <comp ref="R49">
- <value>10k</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C25744</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/ADAPTER_CONN/" tstamps="/60B94961/"/>
- <tstamp>612EA5C6</tstamp>
- </comp>
- <comp ref="R50">
- <value>10k</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C25744</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/ADAPTER_CONN/" tstamps="/60B94961/"/>
- <tstamp>612EABC3</tstamp>
- </comp>
- <comp ref="C8">
- <value>1uF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C52923</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>65761895</tstamp>
- </comp>
- <comp ref="C10">
- <value>1uF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C52923</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>6576482F</tstamp>
- </comp>
- <comp ref="C11">
- <value>1uF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C52923</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>6576514E</tstamp>
- </comp>
- <comp ref="C12">
- <value>1uF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C52923</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>65765AAD</tstamp>
- </comp>
- <comp ref="C13">
- <value>1uF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C52923</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>65766122</tstamp>
- </comp>
- <comp ref="C14">
- <value>1uF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C52923</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>65768E03</tstamp>
- </comp>
- <comp ref="C15">
- <value>1uF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C52923</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>65769634</tstamp>
- </comp>
- <comp ref="C9">
- <value>1uF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C52923</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>6576B192</tstamp>
- </comp>
- <comp ref="C1">
- <value>1uF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C52923</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>65824DAA</tstamp>
- </comp>
- <comp ref="C17">
- <value>1uF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C52923</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>65825077</tstamp>
- </comp>
- <comp ref="C18">
- <value>1uF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C52923</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>65825082</tstamp>
- </comp>
- <comp ref="C19">
- <value>1uF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C52923</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>6582508D</tstamp>
- </comp>
- <comp ref="C20">
- <value>1uF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C52923</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>65825098</tstamp>
- </comp>
- <comp ref="C21">
- <value>1uF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C52923</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>6584E8B0</tstamp>
- </comp>
- <comp ref="C22">
- <value>1uF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C52923</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>6584EC09</tstamp>
- </comp>
- <comp ref="C23">
- <value>1uF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C52923</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>6584EC1E</tstamp>
- </comp>
- <comp ref="C24">
- <value>1uF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C52923</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>6584EC29</tstamp>
- </comp>
- <comp ref="C27">
- <value>1uF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C52923</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>6584EC4A</tstamp>
- </comp>
- <comp ref="C26">
- <value>1uF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C52923</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>65AC4F8F</tstamp>
- </comp>
- <comp ref="C30">
- <value>1uF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C52923</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>65B1E160</tstamp>
- </comp>
- <comp ref="C29">
- <value>1uF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C52923</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>65B1E57B</tstamp>
- </comp>
- <comp ref="C31">
- <value>1uF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C52923</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>65B40618</tstamp>
- </comp>
- <comp ref="C32">
- <value>1uF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C52923</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>65B6444F</tstamp>
- </comp>
- <comp ref="C42">
- <value>1uF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C52923</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>65B648D0</tstamp>
- </comp>
- <comp ref="C41">
- <value>1uF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C52923</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>65B648DB</tstamp>
- </comp>
- <comp ref="C43">
- <value>1uF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C52923</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>65B648F2</tstamp>
- </comp>
- <comp ref="C44">
- <value>47uF</value>
- <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C140782</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>65C6F7D3</tstamp>
- </comp>
- <comp ref="C50">
- <value>47uF</value>
- <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C140782</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>65C7267E</tstamp>
- </comp>
- <comp ref="C62">
- <value>47uF</value>
- <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C140782</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>65C73D10</tstamp>
- </comp>
- <comp ref="C63">
- <value>100nF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C1525</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>65C7591B</tstamp>
- </comp>
- <comp ref="C66">
- <value>100nF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C1525</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>65C78210</tstamp>
- </comp>
- <comp ref="C28">
- <value>1uF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C52923</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>65AC4DDD</tstamp>
- </comp>
- <comp ref="C16">
- <value>47uF</value>
- <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C140782</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>65ECAF24</tstamp>
- </comp>
- <comp ref="C25">
- <value>47uF</value>
- <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C140782</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>65ECB133</tstamp>
- </comp>
- <comp ref="C68">
- <value>47uF</value>
- <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C140782</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>65ECB13E</tstamp>
- </comp>
- <comp ref="C69">
- <value>47uF</value>
- <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C140782</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>65ECB149</tstamp>
- </comp>
- <comp ref="C59">
- <value>47uF</value>
- <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C140782</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>65C7321F</tstamp>
- </comp>
- <comp ref="U1">
- <value>AMS1117-1.2</value>
- <footprint>Package_TO_SOT_SMD:SOT-223-3_TabPin2</footprint>
- <datasheet>http://www.advanced-monolithic.com/pdf/ds1117.pdf</datasheet>
- <fields>
- <field name="LCSC">C14529</field>
- </fields>
- <libsource lib="Regulator_Linear" part="AMS1117-1.5" description="1A Low Dropout regulator, positive, 1.5V fixed output, SOT-223"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>672CD418</tstamp>
- </comp>
- <comp ref="U16">
- <value>AMS1117-2.5</value>
- <footprint>Package_TO_SOT_SMD:SOT-223-3_TabPin2</footprint>
- <datasheet>http://www.advanced-monolithic.com/pdf/ds1117.pdf</datasheet>
- <fields>
- <field name="LCSC">C347221</field>
- </fields>
- <libsource lib="Regulator_Linear" part="AMS1117-2.5" description="1A Low Dropout regulator, positive, 2.5V fixed output, SOT-223"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>672CF238</tstamp>
- </comp>
- <comp ref="C67">
- <value>47uF</value>
- <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C140782</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>672F37BB</tstamp>
- </comp>
- <comp ref="C72">
- <value>47uF</value>
- <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C140782</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>672F463E</tstamp>
- </comp>
- <comp ref="C64">
- <value>100nF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C1525</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>672F65A1</tstamp>
- </comp>
- <comp ref="C74">
- <value>100nF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C1525</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>672F7260</tstamp>
- </comp>
- <comp ref="C70">
- <value>47uF</value>
- <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C140782</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>672FA54F</tstamp>
- </comp>
- <comp ref="C65">
- <value>100nF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C1525</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>672FAB10</tstamp>
- </comp>
- <comp ref="C71">
- <value>47uF</value>
- <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C140782</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>67326D2C</tstamp>
- </comp>
- <comp ref="C73">
- <value>100nF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C1525</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>67327311</tstamp>
- </comp>
- <comp ref="U8">
- <value>AMS1117-3.3</value>
- <footprint>Package_TO_SOT_SMD:SOT-223-3_TabPin2</footprint>
- <datasheet>http://www.advanced-monolithic.com/pdf/ds1117.pdf</datasheet>
- <fields>
- <field name="LCSC">C351784</field>
- </fields>
- <libsource lib="Regulator_Linear" part="AMS1117-3.3" description="1A Low Dropout regulator, positive, 3.3V fixed output, SOT-223"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>615F4429</tstamp>
- </comp>
- <comp ref="C36">
- <value>47uF</value>
- <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C140782</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>615F4910</tstamp>
- </comp>
- <comp ref="C35">
- <value>100nF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C1525</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>615F491B</tstamp>
- </comp>
- <comp ref="C37">
- <value>47uF</value>
- <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C140782</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>615F4926</tstamp>
- </comp>
- <comp ref="C38">
- <value>100nF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C1525</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
- <tstamp>615F4931</tstamp>
- </comp>
- <comp ref="R2">
- <value>2.2k</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C25879</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/HDMI/" tstamps="/650A9AE9/"/>
- <tstamp>655D07B0</tstamp>
- </comp>
- <comp ref="R11">
- <value>2.2k</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C25879</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/HDMI/" tstamps="/650A9AE9/"/>
- <tstamp>655D0BC8</tstamp>
- </comp>
- <comp ref="C80">
- <value>100nF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C1525</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/HDMI/" tstamps="/650A9AE9/"/>
- <tstamp>60FA18DB</tstamp>
- </comp>
- <comp ref="C81">
- <value>100nF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C1525</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/HDMI/" tstamps="/650A9AE9/"/>
- <tstamp>60FA22EE</tstamp>
- </comp>
- <comp ref="C82">
- <value>100nF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C1525</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/HDMI/" tstamps="/650A9AE9/"/>
- <tstamp>60FA28B1</tstamp>
- </comp>
- <comp ref="C76">
- <value>100nF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C1525</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/HDMI/" tstamps="/650A9AE9/"/>
- <tstamp>60FA3BB6</tstamp>
- </comp>
- <comp ref="C75">
- <value>100nF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C1525</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/HDMI/" tstamps="/650A9AE9/"/>
- <tstamp>60FA3EFB</tstamp>
- </comp>
- <comp ref="C77">
- <value>100nF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C1525</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/HDMI/" tstamps="/650A9AE9/"/>
- <tstamp>60FA423E</tstamp>
- </comp>
- <comp ref="C79">
- <value>100nF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C1525</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/HDMI/" tstamps="/650A9AE9/"/>
- <tstamp>60FA4621</tstamp>
- </comp>
- <comp ref="C78">
- <value>100nF</value>
- <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C1525</field>
- </fields>
- <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
- <sheetpath names="/HDMI/" tstamps="/650A9AE9/"/>
- <tstamp>60FA49FC</tstamp>
- </comp>
- <comp ref="Q7">
- <value>AO3400A</value>
- <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
- <datasheet>http://www.aosmd.com/pdfs/datasheet/AO3400A.pdf</datasheet>
- <fields>
- <field name="LCSC">C20917</field>
- </fields>
- <libsource lib="Transistor_FET" part="AO3400A" description="30V Vds, 5.7A Id, N-Channel MOSFET, SOT-23"/>
- <sheetpath names="/HDMI/" tstamps="/650A9AE9/"/>
- <tstamp>60E31564</tstamp>
- </comp>
- <comp ref="R47">
- <value>2.2k</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C25879</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/HDMI/" tstamps="/650A9AE9/"/>
- <tstamp>60E3BB83</tstamp>
- </comp>
- <comp ref="R46">
- <value>12.7k</value>
- <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
- <datasheet>~</datasheet>
- <fields>
- <field name="LCSC">C25752</field>
- </fields>
- <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
- <sheetpath names="/HDMI/" tstamps="/650A9AE9/"/>
- <tstamp>60E40DE0</tstamp>
- </comp>
- <comp ref="J2">
- <value>HDMI_A</value>
- <footprint>sm6uax:HDMI_A_Amphenol_10029449-111</footprint>
- <datasheet>https://en.wikipedia.org/wiki/HDMI</datasheet>
- <libsource lib="Connector" part="HDMI_A" description="HDMI type A connector"/>
- <sheetpath names="/HDMI/" tstamps="/650A9AE9/"/>
- <tstamp>61917A74</tstamp>
- </comp>
- </components>
- <libparts>
- <libpart lib="74xx" part="74LS245">
- <aliases>
- <alias>74HC245</alias>
- </aliases>
- <description>Octal BUS Transceivers, 3-State outputs</description>
- <docs>http://www.ti.com/lit/gpn/sn74LS245</docs>
- <footprints>
- <fp>DIP?20*</fp>
- </footprints>
- <fields>
- <field name="Reference">U</field>
- <field name="Value">74LS245</field>
- </fields>
- <pins>
- <pin num="1" name="A->B" type="input"/>
- <pin num="2" name="A0" type="3state"/>
- <pin num="3" name="A1" type="3state"/>
- <pin num="4" name="A2" type="3state"/>
- <pin num="5" name="A3" type="3state"/>
- <pin num="6" name="A4" type="3state"/>
- <pin num="7" name="A5" type="3state"/>
- <pin num="8" name="A6" type="3state"/>
- <pin num="9" name="A7" type="3state"/>
- <pin num="10" name="GND" type="power_in"/>
- <pin num="11" name="B7" type="3state"/>
- <pin num="12" name="B6" type="3state"/>
- <pin num="13" name="B5" type="3state"/>
- <pin num="14" name="B4" type="3state"/>
- <pin num="15" name="B3" type="3state"/>
- <pin num="16" name="B2" type="3state"/>
- <pin num="17" name="B1" type="3state"/>
- <pin num="18" name="B0" type="3state"/>
- <pin num="19" name="CE" type="input"/>
- <pin num="20" name="VCC" type="power_in"/>
- </pins>
- </libpart>
- <libpart lib="Connector" part="Conn_01x01_Male">
- <description>Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)</description>
- <docs>~</docs>
- <footprints>
- <fp>Connector*:*</fp>
- </footprints>
- <fields>
- <field name="Reference">J</field>
- <field name="Value">Conn_01x01_Male</field>
- </fields>
- <pins>
- <pin num="1" name="Pin_1" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="Connector" part="Conn_01x02_Male">
- <description>Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)</description>
- <docs>~</docs>
- <footprints>
- <fp>Connector*:*_1x??_*</fp>
- </footprints>
- <fields>
- <field name="Reference">J</field>
- <field name="Value">Conn_01x02_Male</field>
- </fields>
- <pins>
- <pin num="1" name="Pin_1" type="passive"/>
- <pin num="2" name="Pin_2" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="Connector" part="HDMI_A">
- <description>HDMI type A connector</description>
- <docs>https://en.wikipedia.org/wiki/HDMI</docs>
- <footprints>
- <fp>HDMI*A*</fp>
- </footprints>
- <fields>
- <field name="Reference">J</field>
- <field name="Value">HDMI_A</field>
- </fields>
- <pins>
- <pin num="1" name="D2+" type="passive"/>
- <pin num="2" name="D2S" type="power_in"/>
- <pin num="3" name="D2-" type="passive"/>
- <pin num="4" name="D1+" type="passive"/>
- <pin num="5" name="D1S" type="power_in"/>
- <pin num="6" name="D1-" type="passive"/>
- <pin num="7" name="D0+" type="passive"/>
- <pin num="8" name="D0S" type="power_in"/>
- <pin num="9" name="D0-" type="passive"/>
- <pin num="10" name="CK+" type="passive"/>
- <pin num="11" name="CKS" type="power_in"/>
- <pin num="12" name="CK-" type="passive"/>
- <pin num="13" name="CEC" type="BiDi"/>
- <pin num="14" name="UTILITY" type="passive"/>
- <pin num="15" name="SCL" type="passive"/>
- <pin num="16" name="SDA" type="BiDi"/>
- <pin num="17" name="GND" type="power_in"/>
- <pin num="18" name="+5V" type="power_in"/>
- <pin num="19" name="HPD" type="passive"/>
- <pin num="SH" name="SH" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="Connector" part="Micro_SD_Card_Det">
- <aliases>
- <alias>Micro_SD_Card_Det_Hirose_DM3AT</alias>
- </aliases>
- <description>Micro SD Card Socket with card detection pins</description>
- <docs>https://www.hirose.com/product/en/download_file/key_name/DM3/category/Catalog/doc_file_id/49662/?file_category_id=4&item_id=195&is_series=1</docs>
- <footprints>
- <fp>microSD*</fp>
- </footprints>
- <fields>
- <field name="Reference">J</field>
- <field name="Value">Micro_SD_Card_Det</field>
- </fields>
- <pins>
- <pin num="1" name="DAT2" type="BiDi"/>
- <pin num="2" name="DAT3/CD" type="BiDi"/>
- <pin num="3" name="CMD" type="input"/>
- <pin num="4" name="VDD" type="power_in"/>
- <pin num="5" name="CLK" type="input"/>
- <pin num="6" name="VSS" type="power_in"/>
- <pin num="7" name="DAT0" type="BiDi"/>
- <pin num="8" name="DAT1" type="BiDi"/>
- <pin num="9" name="DET_B" type="passive"/>
- <pin num="10" name="DET_A" type="passive"/>
- <pin num="11" name="SHIELD" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="Connector_Generic" part="Conn_02x06_Odd_Even">
- <description>Generic connector, double row, 02x06, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)</description>
- <docs>~</docs>
- <footprints>
- <fp>Connector*:*_2x??_*</fp>
- </footprints>
- <fields>
- <field name="Reference">J</field>
- <field name="Value">Conn_02x06_Odd_Even</field>
- </fields>
- <pins>
- <pin num="1" name="Pin_1" type="passive"/>
- <pin num="2" name="Pin_2" type="passive"/>
- <pin num="3" name="Pin_3" type="passive"/>
- <pin num="4" name="Pin_4" type="passive"/>
- <pin num="5" name="Pin_5" type="passive"/>
- <pin num="6" name="Pin_6" type="passive"/>
- <pin num="7" name="Pin_7" type="passive"/>
- <pin num="8" name="Pin_8" type="passive"/>
- <pin num="9" name="Pin_9" type="passive"/>
- <pin num="10" name="Pin_10" type="passive"/>
- <pin num="11" name="Pin_11" type="passive"/>
- <pin num="12" name="Pin_12" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="Connector_Generic" part="Conn_02x20_Odd_Even">
- <description>Generic connector, double row, 02x20, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)</description>
- <docs>~</docs>
- <footprints>
- <fp>Connector*:*_2x??_*</fp>
- </footprints>
- <fields>
- <field name="Reference">J</field>
- <field name="Value">Conn_02x20_Odd_Even</field>
- </fields>
- <pins>
- <pin num="1" name="Pin_1" type="passive"/>
- <pin num="2" name="Pin_2" type="passive"/>
- <pin num="3" name="Pin_3" type="passive"/>
- <pin num="4" name="Pin_4" type="passive"/>
- <pin num="5" name="Pin_5" type="passive"/>
- <pin num="6" name="Pin_6" type="passive"/>
- <pin num="7" name="Pin_7" type="passive"/>
- <pin num="8" name="Pin_8" type="passive"/>
- <pin num="9" name="Pin_9" type="passive"/>
- <pin num="10" name="Pin_10" type="passive"/>
- <pin num="11" name="Pin_11" type="passive"/>
- <pin num="12" name="Pin_12" type="passive"/>
- <pin num="13" name="Pin_13" type="passive"/>
- <pin num="14" name="Pin_14" type="passive"/>
- <pin num="15" name="Pin_15" type="passive"/>
- <pin num="16" name="Pin_16" type="passive"/>
- <pin num="17" name="Pin_17" type="passive"/>
- <pin num="18" name="Pin_18" type="passive"/>
- <pin num="19" name="Pin_19" type="passive"/>
- <pin num="20" name="Pin_20" type="passive"/>
- <pin num="21" name="Pin_21" type="passive"/>
- <pin num="22" name="Pin_22" type="passive"/>
- <pin num="23" name="Pin_23" type="passive"/>
- <pin num="24" name="Pin_24" type="passive"/>
- <pin num="25" name="Pin_25" type="passive"/>
- <pin num="26" name="Pin_26" type="passive"/>
- <pin num="27" name="Pin_27" type="passive"/>
- <pin num="28" name="Pin_28" type="passive"/>
- <pin num="29" name="Pin_29" type="passive"/>
- <pin num="30" name="Pin_30" type="passive"/>
- <pin num="31" name="Pin_31" type="passive"/>
- <pin num="32" name="Pin_32" type="passive"/>
- <pin num="33" name="Pin_33" type="passive"/>
- <pin num="34" name="Pin_34" type="passive"/>
- <pin num="35" name="Pin_35" type="passive"/>
- <pin num="36" name="Pin_36" type="passive"/>
- <pin num="37" name="Pin_37" type="passive"/>
- <pin num="38" name="Pin_38" type="passive"/>
- <pin num="39" name="Pin_39" type="passive"/>
- <pin num="40" name="Pin_40" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="Device" part="Battery_Cell">
- <description>Single-cell battery</description>
- <docs>~</docs>
- <fields>
- <field name="Reference">BT</field>
- <field name="Value">Battery_Cell</field>
- </fields>
- <pins>
- <pin num="1" name="+" type="passive"/>
- <pin num="2" name="-" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="Device" part="C">
- <description>Unpolarized capacitor</description>
- <docs>~</docs>
- <footprints>
- <fp>C_*</fp>
- </footprints>
- <fields>
- <field name="Reference">C</field>
- <field name="Value">C</field>
- </fields>
- <pins>
- <pin num="1" name="~" type="passive"/>
- <pin num="2" name="~" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="Device" part="CP_Small">
- <description>Polarized capacitor, small symbol</description>
- <docs>~</docs>
- <footprints>
- <fp>CP_*</fp>
- </footprints>
- <fields>
- <field name="Reference">C</field>
- <field name="Value">CP_Small</field>
- </fields>
- <pins>
- <pin num="1" name="~" type="passive"/>
- <pin num="2" name="~" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="Device" part="C_Small">
- <description>Unpolarized capacitor, small symbol</description>
- <docs>~</docs>
- <footprints>
- <fp>C_*</fp>
- </footprints>
- <fields>
- <field name="Reference">C</field>
- <field name="Value">C_Small</field>
- </fields>
- <pins>
- <pin num="1" name="~" type="passive"/>
- <pin num="2" name="~" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="Device" part="D_Schottky">
- <description>Schottky diode</description>
- <docs>~</docs>
- <footprints>
- <fp>TO-???*</fp>
- <fp>*_Diode_*</fp>
- <fp>*SingleDiode*</fp>
- <fp>D_*</fp>
- </footprints>
- <fields>
- <field name="Reference">D</field>
- <field name="Value">D_Schottky</field>
- </fields>
- <pins>
- <pin num="1" name="K" type="passive"/>
- <pin num="2" name="A" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="Device" part="LED">
- <description>Light emitting diode</description>
- <docs>~</docs>
- <footprints>
- <fp>LED*</fp>
- <fp>LED_SMD:*</fp>
- <fp>LED_THT:*</fp>
- </footprints>
- <fields>
- <field name="Reference">D</field>
- <field name="Value">LED</field>
- </fields>
- <pins>
- <pin num="1" name="K" type="passive"/>
- <pin num="2" name="A" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="Device" part="Polyfuse">
- <description>Resettable fuse, polymeric positive temperature coefficient</description>
- <docs>~</docs>
- <footprints>
- <fp>*polyfuse*</fp>
- <fp>*PTC*</fp>
- </footprints>
- <fields>
- <field name="Reference">F</field>
- <field name="Value">Polyfuse</field>
- </fields>
- <pins>
- <pin num="1" name="~" type="passive"/>
- <pin num="2" name="~" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="Device" part="R">
- <description>Resistor</description>
- <docs>~</docs>
- <footprints>
- <fp>R_*</fp>
- </footprints>
- <fields>
- <field name="Reference">R</field>
- <field name="Value">R</field>
- </fields>
- <pins>
- <pin num="1" name="~" type="passive"/>
- <pin num="2" name="~" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="Device" part="R_Small">
- <description>Resistor, small symbol</description>
- <docs>~</docs>
- <footprints>
- <fp>R_*</fp>
- </footprints>
- <fields>
- <field name="Reference">R</field>
- <field name="Value">R_Small</field>
- </fields>
- <pins>
- <pin num="1" name="~" type="passive"/>
- <pin num="2" name="~" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="Interface_USB" part="CP2102N-A01-GQFN28">
- <description>USB to UART master bridge, QFN-28</description>
- <docs>https://www.silabs.com/documents/public/data-sheets/cp2102n-datasheet.pdf</docs>
- <footprints>
- <fp>QFN*1EP*5x5mm*P0.5mm*</fp>
- </footprints>
- <fields>
- <field name="Reference">U</field>
- <field name="Value">CP2102N-A01-GQFN28</field>
- <field name="Footprint">Package_DFN_QFN:QFN-28-1EP_5x5mm_P0.5mm_EP3.35x3.35mm</field>
- </fields>
- <pins>
- <pin num="1" name="~DCD" type="input"/>
- <pin num="2" name="~RI~/CLK" type="BiDi"/>
- <pin num="3" name="GND" type="power_in"/>
- <pin num="4" name="D+" type="BiDi"/>
- <pin num="5" name="D-" type="BiDi"/>
- <pin num="6" name="VDD" type="passive"/>
- <pin num="7" name="REGIN" type="power_in"/>
- <pin num="8" name="VBUS" type="input"/>
- <pin num="9" name="~RSTb" type="input"/>
- <pin num="10" name="NC" type="NotConnected"/>
- <pin num="11" name="~SUSPENDb" type="output"/>
- <pin num="12" name="SUSPEND" type="output"/>
- <pin num="13" name="CHREN" type="output"/>
- <pin num="14" name="CHR1" type="output"/>
- <pin num="15" name="CHR0" type="output"/>
- <pin num="16" name="~WAKEUP~/GPIO.3" type="BiDi"/>
- <pin num="17" name="RS485/GPIO.2" type="BiDi"/>
- <pin num="18" name="~RXT~/GPIO.1" type="BiDi"/>
- <pin num="19" name="~TXT~/GPIO.0" type="BiDi"/>
- <pin num="20" name="GPIO.6" type="BiDi"/>
- <pin num="21" name="GPIO.5" type="BiDi"/>
- <pin num="22" name="GPIO.4" type="BiDi"/>
- <pin num="23" name="~CTS" type="input"/>
- <pin num="24" name="~RTS" type="output"/>
- <pin num="25" name="RXD" type="input"/>
- <pin num="26" name="TXD" type="output"/>
- <pin num="27" name="~DSR" type="input"/>
- <pin num="28" name="~DTR" type="output"/>
- <pin num="29" name="GND" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="Memory_Flash" part="W25Q32JVSS">
- <aliases>
- <alias>W25Q128JVS</alias>
- </aliases>
- <description>32Mb Serial Flash Memory, Standard/Dual/Quad SPI, SOIC-8</description>
- <docs>http://www.winbond.com/resource-files/w25q32jv%20revg%2003272018%20plus.pdf</docs>
- <footprints>
- <fp>SOIC*5.23x5.23mm*P1.27mm*</fp>
- </footprints>
- <fields>
- <field name="Reference">U</field>
- <field name="Value">W25Q32JVSS</field>
- <field name="Footprint">Package_SO:SOIC-8_5.23x5.23mm_P1.27mm</field>
- </fields>
- <pins>
- <pin num="1" name="~CS" type="input"/>
- <pin num="2" name="DO(IO1)" type="BiDi"/>
- <pin num="3" name="IO2" type="BiDi"/>
- <pin num="4" name="GND" type="power_in"/>
- <pin num="5" name="DI(IO0)" type="BiDi"/>
- <pin num="6" name="CLK" type="input"/>
- <pin num="7" name="IO3" type="BiDi"/>
- <pin num="8" name="VCC" type="power_in"/>
- </pins>
- </libpart>
- <libpart lib="Oscillator" part="ASE-xxxMHz">
- <description>3.3V CMOS SMD Crystal Clock Oscillator, Abracon</description>
- <docs>http://www.abracon.com/Oscillators/ASV.pdf</docs>
- <footprints>
- <fp>Oscillator*SMD*Abracon*ASE*3.2x2.5mm*</fp>
- </footprints>
- <fields>
- <field name="Reference">X</field>
- <field name="Value">ASE-xxxMHz</field>
- <field name="Footprint">Oscillator:Oscillator_SMD_Abracon_ASE-4Pin_3.2x2.5mm</field>
- </fields>
- <pins>
- <pin num="1" name="EN" type="input"/>
- <pin num="2" name="GND" type="power_in"/>
- <pin num="3" name="OUT" type="output"/>
- <pin num="4" name="Vdd" type="power_in"/>
- </pins>
- </libpart>
- <libpart lib="Power_Protection" part="USBLC6-2SC6">
- <description>Very low capacitance ESD protection diode, 2 data-line, SOT-23-6</description>
- <docs>https://www.st.com/resource/en/datasheet/usblc6-2.pdf</docs>
- <footprints>
- <fp>SOT?23*</fp>
- </footprints>
- <fields>
- <field name="Reference">U</field>
- <field name="Value">USBLC6-2SC6</field>
- <field name="Footprint">Package_TO_SOT_SMD:SOT-23-6</field>
- </fields>
- <pins>
- <pin num="1" name="I/O1" type="passive"/>
- <pin num="2" name="GND" type="passive"/>
- <pin num="3" name="I/O2" type="passive"/>
- <pin num="4" name="I/O2" type="passive"/>
- <pin num="5" name="VBUS" type="passive"/>
- <pin num="6" name="I/O1" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="RF_Module" part="ESP32-S2-WROVER">
- <aliases>
- <alias>ESP32-S2-WROVER-I</alias>
- </aliases>
- <description>RF Module, ESP32-D0WDQ6 SoC, Wi-Fi 802.11b/g/n, 32-bit, 2.7-3.6V, onboard antenna, SMD</description>
- <docs>https://www.espressif.com/sites/default/files/documentation/esp32-s2-wroom_esp32-s2-wroom-i_datasheet_en.pdf</docs>
- <footprints>
- <fp>ESP32?S2?WROVER*</fp>
- </footprints>
- <fields>
- <field name="Reference">U</field>
- <field name="Value">ESP32-S2-WROVER</field>
- <field name="Footprint">RF_Module:ESP32-S2-WROVER</field>
- </fields>
- <pins>
- <pin num="1" name="GND" type="power_in"/>
- <pin num="2" name="3V3" type="power_in"/>
- <pin num="3" name="IO00" type="BiDi"/>
- <pin num="4" name="IO01" type="BiDi"/>
- <pin num="5" name="IO02" type="BiDi"/>
- <pin num="6" name="IO03" type="BiDi"/>
- <pin num="7" name="IO04" type="BiDi"/>
- <pin num="8" name="IO05" type="BiDi"/>
- <pin num="9" name="IO06" type="BiDi"/>
- <pin num="10" name="IO07" type="BiDi"/>
- <pin num="11" name="IO08" type="BiDi"/>
- <pin num="12" name="IO09" type="BiDi"/>
- <pin num="13" name="IO10" type="BiDi"/>
- <pin num="14" name="IO11" type="BiDi"/>
- <pin num="15" name="IO12" type="BiDi"/>
- <pin num="16" name="IO13" type="BiDi"/>
- <pin num="17" name="IO14" type="BiDi"/>
- <pin num="18" name="IO15" type="BiDi"/>
- <pin num="19" name="IO16" type="BiDi"/>
- <pin num="20" name="IO17" type="BiDi"/>
- <pin num="21" name="IO18" type="BiDi"/>
- <pin num="22" name="USB_D-" type="BiDi"/>
- <pin num="23" name="USB_D+" type="BiDi"/>
- <pin num="24" name="IO21" type="BiDi"/>
- <pin num="25" name="IO26" type="BiDi"/>
- <pin num="26" name="GND" type="passive"/>
- <pin num="27" name="IO33" type="BiDi"/>
- <pin num="28" name="IO34" type="BiDi"/>
- <pin num="29" name="IO35" type="BiDi"/>
- <pin num="30" name="IO36" type="BiDi"/>
- <pin num="31" name="IO37" type="BiDi"/>
- <pin num="32" name="IO38" type="BiDi"/>
- <pin num="33" name="IO39" type="BiDi"/>
- <pin num="34" name="IO40" type="BiDi"/>
- <pin num="35" name="IO41" type="BiDi"/>
- <pin num="36" name="IO42" type="BiDi"/>
- <pin num="37" name="TXD0" type="BiDi"/>
- <pin num="38" name="RXD0" type="BiDi"/>
- <pin num="39" name="IO45" type="BiDi"/>
- <pin num="40" name="IO46" type="input"/>
- <pin num="41" name="EN" type="input"/>
- <pin num="42" name="GND" type="passive"/>
- <pin num="43" name="GND" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="Regulator_Linear" part="AP1117-15">
- <aliases>
- <alias>AP1117-18</alias>
- <alias>AP1117-25</alias>
- <alias>AP1117-33</alias>
- <alias>AP1117-50</alias>
- <alias>LD1117S33TR_SOT223</alias>
- <alias>LD1117S12TR_SOT223</alias>
- <alias>LD1117S18TR_SOT223</alias>
- <alias>LD1117S25TR_SOT223</alias>
- <alias>LD1117S50TR_SOT223</alias>
- <alias>NCP1117-12_SOT223</alias>
- <alias>NCP1117-1.5_SOT223</alias>
- <alias>NCP1117-1.8_SOT223</alias>
- <alias>NCP1117-2.0_SOT223</alias>
- <alias>NCP1117-2.5_SOT223</alias>
- <alias>NCP1117-2.85_SOT223</alias>
- <alias>NCP1117-3.3_SOT223</alias>
- <alias>NCP1117-5.0_SOT223</alias>
- <alias>AMS1117-1.5</alias>
- <alias>AMS1117-1.8</alias>
- <alias>AMS1117-2.5</alias>
- <alias>AMS1117-2.85</alias>
- <alias>AMS1117-3.3</alias>
- <alias>AMS1117-5.0</alias>
- </aliases>
- <description>1A Low Dropout regulator, positive, 1.5V fixed output, SOT-223</description>
- <docs>http://www.diodes.com/datasheets/AP1117.pdf</docs>
- <footprints>
- <fp>SOT?223*TabPin2*</fp>
- </footprints>
- <fields>
- <field name="Reference">U</field>
- <field name="Value">AP1117-15</field>
- <field name="Footprint">Package_TO_SOT_SMD:SOT-223-3_TabPin2</field>
- </fields>
- <pins>
- <pin num="1" name="GND" type="power_in"/>
- <pin num="2" name="VO" type="power_out"/>
- <pin num="3" name="VI" type="power_in"/>
- </pins>
- </libpart>
- <libpart lib="Timer_RTC" part="DS3231M">
- <description>Extremely Accurate I2C-Integrated RTC/TCXO/Crystal SOIC-16</description>
- <docs>http://datasheets.maximintegrated.com/en/ds/DS3231.pdf</docs>
- <footprints>
- <fp>SOIC*7.5x10.3mm*P1.27mm*</fp>
- </footprints>
- <fields>
- <field name="Reference">U</field>
- <field name="Value">DS3231M</field>
- <field name="Footprint">Package_SO:SOIC-16W_7.5x10.3mm_P1.27mm</field>
- </fields>
- <pins>
- <pin num="1" name="32KHZ" type="openCol"/>
- <pin num="2" name="VCC" type="power_in"/>
- <pin num="3" name="~INT~/SQW" type="openCol"/>
- <pin num="4" name="~RST" type="BiDi"/>
- <pin num="5" name="GND" type="passive"/>
- <pin num="6" name="GND" type="passive"/>
- <pin num="7" name="GND" type="passive"/>
- <pin num="8" name="GND" type="passive"/>
- <pin num="9" name="GND" type="passive"/>
- <pin num="10" name="GND" type="passive"/>
- <pin num="11" name="GND" type="passive"/>
- <pin num="12" name="GND" type="passive"/>
- <pin num="13" name="GND" type="power_in"/>
- <pin num="14" name="VBAT" type="power_in"/>
- <pin num="15" name="SDA" type="BiDi"/>
- <pin num="16" name="SCL" type="input"/>
- </pins>
- </libpart>
- <libpart lib="Transistor_FET" part="BSS138">
- <aliases>
- <alias>2N7002</alias>
- <alias>2N7002E</alias>
- <alias>2N7002H</alias>
- <alias>2N7002K</alias>
- <alias>BS170F</alias>
- <alias>BS870</alias>
- <alias>BSN20</alias>
- <alias>BSS123</alias>
- <alias>BSS127S</alias>
- <alias>DMG2302U</alias>
- <alias>DMG3402L</alias>
- <alias>DMG3404L</alias>
- <alias>DMG3406L</alias>
- <alias>DMG3414U</alias>
- <alias>DMG3418L</alias>
- <alias>DMN10H220L</alias>
- <alias>DMN10H700S</alias>
- <alias>DMN13H750S</alias>
- <alias>DMN2041L</alias>
- <alias>DMN2050L</alias>
- <alias>DMN2056U</alias>
- <alias>DMN2058U</alias>
- <alias>DMN2075U</alias>
- <alias>DMN2230U</alias>
- <alias>DMN24H11DS</alias>
- <alias>DMN24H3D5L</alias>
- <alias>DMN3042L</alias>
- <alias>DMN3051L</alias>
- <alias>DMN30H4D0L</alias>
- <alias>DMN3110S</alias>
- <alias>DMN3150L</alias>
- <alias>DMN3300U</alias>
- <alias>DMN3404L</alias>
- <alias>DMN6075S</alias>
- <alias>DMN6140L</alias>
- <alias>DMN67D7L</alias>
- <alias>DMN67D8L</alias>
- <alias>MMBF170</alias>
- <alias>VN10LF</alias>
- <alias>ZVN3306F</alias>
- <alias>ZVN3310F</alias>
- <alias>ZVN3320F</alias>
- <alias>ZVN4106F</alias>
- <alias>ZXM61N02F</alias>
- <alias>ZXM61N03F</alias>
- <alias>ZXMN10A07F</alias>
- <alias>ZXMN2A01F</alias>
- <alias>ZXMN2A14F</alias>
- <alias>ZXMN2B01F</alias>
- <alias>ZXMN2B14FH</alias>
- <alias>ZXMN2F30FH</alias>
- <alias>ZXMN2F34FH</alias>
- <alias>ZXMN3A01F</alias>
- <alias>ZXMN3A14F</alias>
- <alias>ZXMN3B01F</alias>
- <alias>ZXMN3B14F</alias>
- <alias>ZXMN3F30FH</alias>
- <alias>ZXMN6A07F</alias>
- <alias>IRLML0030</alias>
- <alias>IRLML2060</alias>
- <alias>TSM2302CX</alias>
- <alias>AO3400A</alias>
- </aliases>
- <description>50V Vds, 0.22A Id, N-Channel MOSFET, SOT-23</description>
- <docs>https://www.onsemi.com/pub/Collateral/BSS138-D.PDF</docs>
- <footprints>
- <fp>SOT?23*</fp>
- </footprints>
- <fields>
- <field name="Reference">Q</field>
- <field name="Value">BSS138</field>
- <field name="Footprint">Package_TO_SOT_SMD:SOT-23</field>
- </fields>
- <pins>
- <pin num="1" name="G" type="input"/>
- <pin num="2" name="S" type="passive"/>
- <pin num="3" name="D" type="passive"/>
- </pins>
- </libpart>
- <libpart lib="max80" part="ABC-Bus">
- <fields>
- <field name="Reference">X</field>
- <field name="Value">ABC-Bus</field>
- <field name="Footprint">sm6uax:MAB64B-FAB64Q</field>
- </fields>
- <pins>
- <pin num="A1" name="-12V" type="power_out"/>
- <pin num="A2" name="0V" type="power_out"/>
- <pin num="A3" name="~RESIN" type="BiDi"/>
- <pin num="A4" name="GND" type="power_out"/>
- <pin num="A5" name="~XMEMW" type="BiDi"/>
- <pin num="A6" name="D7" type="BiDi"/>
- <pin num="A7" name="D6" type="BiDi"/>
- <pin num="A8" name="D5" type="BiDi"/>
- <pin num="A9" name="D4" type="BiDi"/>
- <pin num="A10" name="D3" type="BiDi"/>
- <pin num="A11" name="D2" type="BiDi"/>
- <pin num="A12" name="D1" type="BiDi"/>
- <pin num="A13" name="D0" type="BiDi"/>
- <pin num="A14" name="NC" type="passive"/>
- <pin num="A15" name="~RST" type="BiDi"/>
- <pin num="A16" name="~STATUS" type="BiDi"/>
- <pin num="A17" name="~INP" type="BiDi"/>
- <pin num="A18" name="~C4" type="BiDi"/>
- <pin num="A19" name="~C3" type="BiDi"/>
- <pin num="A20" name="~C2" type="BiDi"/>
- <pin num="A21" name="~C1" type="BiDi"/>
- <pin num="A22" name="~OUT" type="BiDi"/>
- <pin num="A23" name="~CS" type="BiDi"/>
- <pin num="A24" name="GND" type="power_out"/>
- <pin num="A25" name="GND" type="power_out"/>
- <pin num="A26" name="GND" type="power_out"/>
- <pin num="A27" name="GND" type="power_out"/>
- <pin num="A28" name="GND" type="power_out"/>
- <pin num="A29" name="GND" type="power_out"/>
- <pin num="A30" name="READY" type="BiDi"/>
- <pin num="A31" name="+5V" type="power_out"/>
- <pin num="A32" name="+12V" type="power_out"/>
- <pin num="B1" name="-12V" type="power_out"/>
- <pin num="B2" name="0V" type="power_out"/>
- <pin num="B3" name="GND" type="power_out"/>
- <pin num="B4" name="~XMEMFL" type="BiDi"/>
- <pin num="B5" name="5" type="passive"/>
- <pin num="B6" name="GND" type="power_out"/>
- <pin num="B7" name="GND" type="power_out"/>
- <pin num="B8" name="GND" type="power_out"/>
- <pin num="B9" name="GND" type="power_out"/>
- <pin num="B10" name="GND" type="power_out"/>
- <pin num="B11" name="GND" type="power_out"/>
- <pin num="B12" name="GND" type="power_out"/>
- <pin num="B13" name="~INT" type="BiDi"/>
- <pin num="B14" name="A15" type="BiDi"/>
- <pin num="B15" name="A14" type="BiDi"/>
- <pin num="B16" name="A13" type="BiDi"/>
- <pin num="B17" name="A12" type="BiDi"/>
- <pin num="B18" name="A11" type="BiDi"/>
- <pin num="B19" name="A10" type="BiDi"/>
- <pin num="B20" name="A9" type="BiDi"/>
- <pin num="B21" name="A8" type="BiDi"/>
- <pin num="B22" name="A7" type="BiDi"/>
- <pin num="B23" name="A6" type="BiDi"/>
- <pin num="B24" name="A5" type="BiDi"/>
- <pin num="B25" name="A4" type="BiDi"/>
- <pin num="B26" name="A3" type="BiDi"/>
- <pin num="B27" name="A2" type="BiDi"/>
- <pin num="B28" name="A1" type="BiDi"/>
- <pin num="B29" name="A0" type="BiDi"/>
- <pin num="B30" name="NC" type="passive"/>
- <pin num="B31" name="+5V" type="power_out"/>
- <pin num="B32" name="+12V" type="power_out"/>
- </pins>
- </libpart>
- <libpart lib="max80" part="EP4CE15F17C8N">
- <fields>
- <field name="Reference">U</field>
- <field name="Value">EP4CE15F17C8N</field>
- </fields>
- <pins>
- <pin num="A1" name="VCCIO8" type="power_in"/>
- <pin num="A2" name="VREFB8N1_B8" type="BiDi"/>
- <pin num="A3" name="DIFFIO_T2n_B8" type="BiDi"/>
- <pin num="A4" name="DIFFIO_T3n/DATA10_B8" type="BiDi"/>
- <pin num="A5" name="IO/DATA7_B8" type="BiDi"/>
- <pin num="A6" name="DIFFIO_T9n/DATA14_B8" type="BiDi"/>
- <pin num="A7" name="DIFFIO_T11n/PADD18_B8" type="BiDi"/>
- <pin num="A8" name="DIFFCLK_4n_B8" type="BiDi"/>
- <pin num="A9" name="DIFFCLK_5n_B7" type="BiDi"/>
- <pin num="A10" name="DIFFIO_T20n/PADD5_B7" type="BiDi"/>
- <pin num="A11" name="DIFFIO_T25n/PADD1_B7" type="BiDi"/>
- <pin num="A12" name="DIFFIO_T27p/PADD0_B7" type="BiDi"/>
- <pin num="A13" name="VREFB7N1_B7" type="BiDi"/>
- <pin num="A14" name="PLL2_CLKOUTn_B7" type="BiDi"/>
- <pin num="A15" name="DIFFIO_T23n/PADD3_B7" type="BiDi"/>
- <pin num="A16" name="VCCIO7" type="power_in"/>
- <pin num="B1" name="DIFFIO_L3p_B1" type="BiDi"/>
- <pin num="B2" name="GND" type="power_in"/>
- <pin num="B3" name="DIFFIO_T2p/DATA12_B8" type="BiDi"/>
- <pin num="B4" name="DIFFIO_T3p/DATA11_B8" type="BiDi"/>
- <pin num="B5" name="DIFFIO_T5p/DATA8_B8" type="BiDi"/>
- <pin num="B6" name="DIFFIO_T9p/DATA13_B8" type="BiDi"/>
- <pin num="B7" name="DIFFIO_T11p/DATA4_B8" type="BiDi"/>
- <pin num="B8" name="DIFFCLK_4p_B8" type="BiDi"/>
- <pin num="B9" name="DIFFCLK_5p_B7" type="BiDi"/>
- <pin num="B10" name="DIFFIO_T20p/PADD6_B7" type="BiDi"/>
- <pin num="B11" name="DIFFIO_T25p/PADD2_B7" type="BiDi"/>
- <pin num="B12" name="DIFFIO_T26n_B7" type="BiDi"/>
- <pin num="B13" name="DIFFIO_T29n_B7" type="BiDi"/>
- <pin num="B14" name="PLL2_CLKOUTp_B7" type="BiDi"/>
- <pin num="B15" name="GND" type="power_in"/>
- <pin num="B16" name="DIFFIO_R15n_B6" type="BiDi"/>
- <pin num="C1" name="DIFFIO_L4n/DATA1,ASDO_B1" type="BiDi"/>
- <pin num="C2" name="DIFFIO_L4p_B1" type="BiDi"/>
- <pin num="C3" name="PLL3_CLKOUTn_B8" type="BiDi"/>
- <pin num="C4" name="VCCIO8" type="power_in"/>
- <pin num="C5" name="GND" type="power_in"/>
- <pin num="C6" name="VREFB8N0_B8" type="BiDi"/>
- <pin num="C7" name="VCCIO8" type="power_in"/>
- <pin num="C8" name="DIFFIO_T13p/PADD17_B8" type="BiDi"/>
- <pin num="C9" name="DIFFIO_T19n/PADD7_B7" type="BiDi"/>
- <pin num="C10" name="VCCIO7" type="power_in"/>
- <pin num="C11" name="VREFB7N0_B7" type="BiDi"/>
- <pin num="C12" name="GND" type="power_in"/>
- <pin num="C13" name="VCCIO7" type="power_in"/>
- <pin num="C14" name="DIFFIO_T32n_B7" type="BiDi"/>
- <pin num="C15" name="DIFFIO_R2p_B6" type="BiDi"/>
- <pin num="C16" name="DIFFIO_R2n/PADD20_B6" type="BiDi"/>
- <pin num="D1" name="DIFFIO_L6n_B1" type="BiDi"/>
- <pin num="D2" name="DIFFIO_L6p/FLASH_nCE,nCSO_B1" type="BiDi"/>
- <pin num="D3" name="PLL3_CLKOUTp_B8" type="BiDi"/>
- <pin num="D4" name="VCCD_PLL3" type="power_in"/>
- <pin num="D5" name="IO_B8" type="BiDi"/>
- <pin num="D6" name="DIFFIO_T4n/DATA9_B8" type="BiDi"/>
- <pin num="D7" name="GND" type="power_in"/>
- <pin num="D8" name="IO_B8" type="BiDi"/>
- <pin num="D9" name="DIFFIO_T19p/PADD8_B7" type="BiDi"/>
- <pin num="D10" name="GND" type="power_in"/>
- <pin num="D11" name="DIFFIO_T30n_B7" type="BiDi"/>
- <pin num="D12" name="DIFFIO_T30p_B7" type="BiDi"/>
- <pin num="D13" name="VCCD_PLL2" type="power_in"/>
- <pin num="D14" name="DIFFIO_T32p_B7" type="BiDi"/>
- <pin num="D15" name="DIFFIO_R7p_B6" type="BiDi"/>
- <pin num="D16" name="DIFFIO_R7n_B6" type="BiDi"/>
- <pin num="E1" name="DIFFCLK_0n_B1" type="BiDi"/>
- <pin num="E2" name="GND" type="power_in"/>
- <pin num="E3" name="VCCIO1" type="power_in"/>
- <pin num="E4" name="GND" type="power_in"/>
- <pin num="E5" name="GNDA3" type="power_in"/>
- <pin num="E6" name="DIFFIO_T6p/DATA6_B8" type="BiDi"/>
- <pin num="E7" name="IO/DATA5_B8" type="BiDi"/>
- <pin num="E8" name="DIFFIO_T12n/DATA2_B8" type="BiDi"/>
- <pin num="E9" name="DIFFIO_T17p/PADD12_B7" type="BiDi"/>
- <pin num="E10" name="RDN4_B7" type="BiDi"/>
- <pin num="E11" name="RUP4_B7" type="BiDi"/>
- <pin num="E12" name="GNDA2" type="power_in"/>
- <pin num="E13" name="GND" type="power_in"/>
- <pin num="E14" name="VCCIO6" type="power_in"/>
- <pin num="E15" name="DIFFCLK_2p_B6" type="BiDi"/>
- <pin num="E16" name="DIFFCLK_2n_B6" type="BiDi"/>
- <pin num="F1" name="DIFFIO_L10n_B1" type="BiDi"/>
- <pin num="F2" name="DIFFIO_L10p_B1" type="BiDi"/>
- <pin num="F3" name="VREFB1N0_B1" type="BiDi"/>
- <pin num="F4" name="nSTATUS_B1" type="BiDi"/>
- <pin num="F5" name="VCCA3" type="power_in"/>
- <pin num="F6" name="GND" type="power_in"/>
- <pin num="F7" name="VCCINT" type="power_in"/>
- <pin num="F8" name="DIFFIO_T12p/DATA3_B8" type="BiDi"/>
- <pin num="F9" name="DIFFIO_T21p/PADD4_B7" type="BiDi"/>
- <pin num="F10" name="GND" type="power_in"/>
- <pin num="F11" name="VCCINT" type="power_in"/>
- <pin num="F12" name="VCCA2" type="power_in"/>
- <pin num="F13" name="VREFB6N1_B6" type="BiDi"/>
- <pin num="F14" name="VREFB6N0_B6" type="BiDi"/>
- <pin num="F15" name="DIFFIO_R16p/CLKUSR_B6" type="BiDi"/>
- <pin num="F16" name="DIFFIO_R16n/nCEO_B6" type="BiDi"/>
- <pin num="G1" name="VREFB1N1_B1" type="BiDi"/>
- <pin num="G2" name="IO_B1" type="BiDi"/>
- <pin num="G3" name="VCCIO1" type="power_in"/>
- <pin num="G4" name="GND" type="power_in"/>
- <pin num="G5" name="DIFFIO_L9n_B1" type="BiDi"/>
- <pin num="G6" name="VCCINT" type="power_in"/>
- <pin num="G7" name="VCCINT" type="power_in"/>
- <pin num="G8" name="VCCINT" type="power_in"/>
- <pin num="G9" name="VCCINT" type="power_in"/>
- <pin num="G10" name="VCCINT" type="power_in"/>
- <pin num="G11" name="DIFFIO_R3p/PADD21_B6" type="BiDi"/>
- <pin num="G12" name="MSEL2_B6" type="BiDi"/>
- <pin num="G13" name="GND" type="power_in"/>
- <pin num="G14" name="VCCIO6" type="power_in"/>
- <pin num="G15" name="DIFFIO_R17p/CRC_ERROR_B6" type="BiDi"/>
- <pin num="G16" name="DIFFIO_R17n/INIT_DONE_B6" type="BiDi"/>
- <pin num="H1" name="DCLK_B1" type="BiDi"/>
- <pin num="H2" name="IO/DATA0_B1" type="BiDi"/>
- <pin num="H3" name="TCK_B1" type="input"/>
- <pin num="H4" name="TDI_B1" type="BiDi"/>
- <pin num="H5" name="nCONFIG_B1" type="BiDi"/>
- <pin num="H6" name="VCCINT" type="power_in"/>
- <pin num="H7" name="GND" type="power_in"/>
- <pin num="H8" name="GND" type="power_in"/>
- <pin num="H9" name="GND" type="power_in"/>
- <pin num="H10" name="GND" type="power_in"/>
- <pin num="H11" name="VCCINT" type="power_in"/>
- <pin num="H12" name="MSEL1_B6" type="BiDi"/>
- <pin num="H13" name="MSEL0_B6" type="BiDi"/>
- <pin num="H14" name="CONF_DONE_B6" type="BiDi"/>
- <pin num="H15" name="GND" type="power_in"/>
- <pin num="H16" name="GND" type="power_in"/>
- <pin num="J1" name="DIFFIO_L14n_B2" type="BiDi"/>
- <pin num="J2" name="DIFFIO_L14p_B2" type="BiDi"/>
- <pin num="J3" name="nCE_B1" type="BiDi"/>
- <pin num="J4" name="TDO_B1" type="BiDi"/>
- <pin num="J5" name="TMS_B1" type="BiDi"/>
- <pin num="J6" name="VCCINT" type="power_in"/>
- <pin num="J7" name="GND" type="power_in"/>
- <pin num="J8" name="GND" type="power_in"/>
- <pin num="J9" name="GND" type="power_in"/>
- <pin num="J10" name="GND" type="power_in"/>
- <pin num="J11" name="GND" type="power_in"/>
- <pin num="J12" name="DIFFIO_R19p_B5" type="BiDi"/>
- <pin num="J13" name="IO_B5" type="BiDi"/>
- <pin num="J14" name="DIFFIO_R19n_B5" type="BiDi"/>
- <pin num="J15" name="DIFFIO_R21p/DEV_CLRn_B5" type="BiDi"/>
- <pin num="J16" name="DIFFIO_R21n/DEV_OE_B5" type="BiDi"/>
- <pin num="K1" name="DIFFIO_L18n_B2" type="BiDi"/>
- <pin num="K2" name="VREFB2N1_B2" type="BiDi"/>
- <pin num="K3" name="VCCIO2" type="power_in"/>
- <pin num="K4" name="GND" type="power_in"/>
- <pin num="K5" name="RUP1_B2" type="BiDi"/>
- <pin num="K6" name="DIFFIO_L16p_B2" type="BiDi"/>
- <pin num="K7" name="VCCINT" type="power_in"/>
- <pin num="K8" name="GND" type="power_in"/>
- <pin num="K9" name="DIFFIO_B19p_B4" type="BiDi"/>
- <pin num="K10" name="DIFFIO_B24n_B4" type="BiDi"/>
- <pin num="K11" name="VCCINT" type="power_in"/>
- <pin num="K12" name="DIFFIO_R35p_B5" type="BiDi"/>
- <pin num="K13" name="GND" type="power_in"/>
- <pin num="K14" name="VCCIO5" type="power_in"/>
- <pin num="K15" name="DIFFIO_R22p_B5" type="BiDi"/>
- <pin num="K16" name="DIFFIO_R22n_B5" type="BiDi"/>
- <pin num="L1" name="DIFFIO_L19n_B2" type="BiDi"/>
- <pin num="L2" name="DIFFIO_L19p_B2" type="BiDi"/>
- <pin num="L3" name="VREFB2N0_B2" type="BiDi"/>
- <pin num="L4" name="RDN1_B2" type="BiDi"/>
- <pin num="L5" name="VCCA1" type="power_in"/>
- <pin num="L6" name="DIFFIO_L16n_B2" type="BiDi"/>
- <pin num="L7" name="IO_B3" type="BiDi"/>
- <pin num="L8" name="IO_B3" type="BiDi"/>
- <pin num="L9" name="DIFFIO_B19n_B4" type="BiDi"/>
- <pin num="L10" name="IO_B4" type="BiDi"/>
- <pin num="L11" name="DIFFIO_B31p_B4" type="BiDi"/>
- <pin num="L12" name="VCCA4" type="power_in"/>
- <pin num="L13" name="DIFFIO_R26n_B5" type="BiDi"/>
- <pin num="L14" name="VREFB5N1_B5" type="BiDi"/>
- <pin num="L15" name="VREFB5N0_B5" type="BiDi"/>
- <pin num="L16" name="DIFFIO_R26p_B5" type="BiDi"/>
- <pin num="M1" name="DIFFCLK_1n_B2" type="BiDi"/>
- <pin num="M2" name="DIFFCLK_1p_B2" type="BiDi"/>
- <pin num="M3" name="VCCIO2" type="power_in"/>
- <pin num="M4" name="GND" type="power_in"/>
- <pin num="M5" name="GNDA1" type="power_in"/>
- <pin num="M6" name="DIFFIO_B8p_B3" type="BiDi"/>
- <pin num="M7" name="IO_B3" type="BiDi"/>
- <pin num="M8" name="DIFFIO_B18p_B3" type="BiDi"/>
- <pin num="M9" name="DIFFIO_B20p_B4" type="BiDi"/>
- <pin num="M10" name="RUP2_B4" type="BiDi"/>
- <pin num="M11" name="DIFFIO_B31n_B4" type="BiDi"/>
- <pin num="M12" name="GNDA4" type="power_in"/>
- <pin num="M13" name="GND" type="power_in"/>
- <pin num="M14" name="VCCIO5" type="power_in"/>
- <pin num="M15" name="DIFFCLK_3p_B5" type="BiDi"/>
- <pin num="M16" name="DIFFCLK_3n_B5" type="BiDi"/>
- <pin num="N1" name="DIFFIO_L27n_B2" type="BiDi"/>
- <pin num="N2" name="DIFFIO_L27p_B2" type="BiDi"/>
- <pin num="N3" name="DIFFIO_B3p_B3" type="BiDi"/>
- <pin num="N4" name="VCCD_PLL1" type="power_in"/>
- <pin num="N5" name="DIFFIO_B7p_B3" type="BiDi"/>
- <pin num="N6" name="DIFFIO_B7n_B3" type="BiDi"/>
- <pin num="N7" name="GND" type="power_in"/>
- <pin num="N8" name="DIFFIO_B18n_B3" type="BiDi"/>
- <pin num="N9" name="DIFFIO_B20n_B4" type="BiDi"/>
- <pin num="N10" name="GND" type="power_in"/>
- <pin num="N11" name="RDN2_B4" type="BiDi"/>
- <pin num="N12" name="VREFB4N1_B4" type="BiDi"/>
- <pin num="N13" name="VCCD_PLL4" type="power_in"/>
- <pin num="N14" name="RUP3_B5" type="BiDi"/>
- <pin num="N15" name="DIFFIO_R31p_B5" type="BiDi"/>
- <pin num="N16" name="DIFFIO_R31n_B5" type="BiDi"/>
- <pin num="P1" name="DIFFIO_L29n_B2" type="BiDi"/>
- <pin num="P2" name="DIFFIO_L29p_B2" type="BiDi"/>
- <pin num="P3" name="DIFFIO_B3n_B3" type="BiDi"/>
- <pin num="P4" name="VCCIO3" type="power_in"/>
- <pin num="P5" name="GND" type="power_in"/>
- <pin num="P6" name="VREFB3N0_B3" type="BiDi"/>
- <pin num="P7" name="VCCIO3" type="power_in"/>
- <pin num="P8" name="IO_B3" type="BiDi"/>
- <pin num="P9" name="IO_B4" type="BiDi"/>
- <pin num="P10" name="VCCIO4" type="power_in"/>
- <pin num="P11" name="VREFB4N0_B4" type="BiDi"/>
- <pin num="P12" name="GND" type="power_in"/>
- <pin num="P13" name="VCCIO4" type="power_in"/>
- <pin num="P14" name="PLL4_CLKOUTp_B4" type="BiDi"/>
- <pin num="P15" name="RDN3_B5" type="BiDi"/>
- <pin num="P16" name="DIFFIO_R34n_B5" type="BiDi"/>
- <pin num="R1" name="IO_B2" type="BiDi"/>
- <pin num="R2" name="GND" type="power_in"/>
- <pin num="R3" name="DIFFIO_B4n_B3" type="BiDi"/>
- <pin num="R4" name="PLL1_CLKOUTp_B3" type="BiDi"/>
- <pin num="R5" name="DIFFIO_B14p_B3" type="BiDi"/>
- <pin num="R6" name="DIFFIO_B15p_B3" type="BiDi"/>
- <pin num="R7" name="DIFFIO_B16p_B3" type="BiDi"/>
- <pin num="R8" name="DIFFCLK_6p_B3" type="BiDi"/>
- <pin num="R9" name="DIFFCLK_7p_B4" type="BiDi"/>
- <pin num="R10" name="DIFFIO_B21p_B4" type="BiDi"/>
- <pin num="R11" name="DIFFIO_B22p_B4" type="BiDi"/>
- <pin num="R12" name="DIFFIO_B23p_B4" type="BiDi"/>
- <pin num="R13" name="DIFFIO_B26p_B4" type="BiDi"/>
- <pin num="R14" name="PLL4_CLKOUTn_B4" type="BiDi"/>
- <pin num="R15" name="GND" type="power_in"/>
- <pin num="R16" name="DIFFIO_R34p_B5" type="BiDi"/>
- <pin num="T1" name="VCCIO3" type="power_in"/>
- <pin num="T2" name="IO_B3" type="BiDi"/>
- <pin num="T3" name="VREFB3N1_B3" type="BiDi"/>
- <pin num="T4" name="PLL1_CLKOUTn_B3" type="BiDi"/>
- <pin num="T5" name="DIFFIO_B14n_B3" type="BiDi"/>
- <pin num="T6" name="DIFFIO_B15n_B3" type="BiDi"/>
- <pin num="T7" name="DIFFIO_B16n_B3" type="BiDi"/>
- <pin num="T8" name="DIFFCLK_6n_B3" type="BiDi"/>
- <pin num="T9" name="DIFFCLK_7n_B4" type="BiDi"/>
- <pin num="T10" name="DIFFIO_B21n_B4" type="BiDi"/>
- <pin num="T11" name="DIFFIO_B22n_B4" type="BiDi"/>
- <pin num="T12" name="DIFFIO_B24p_B4" type="BiDi"/>
- <pin num="T13" name="DIFFIO_B26n_B4" type="BiDi"/>
- <pin num="T14" name="DIFFIO_B29p_B4" type="BiDi"/>
- <pin num="T15" name="DIFFIO_B29n_B4" type="BiDi"/>
- <pin num="T16" name="VCCIO4" type="power_in"/>
- </pins>
- </libpart>
- <libpart lib="max80" part="HRO-TYPE-C-31-M-12">
- <fields>
- <field name="Reference">USB</field>
- <field name="Value">HRO-TYPE-C-31-M-12</field>
- </fields>
- <pins>
- <pin num="1" name="GND" type="input"/>
- <pin num="2" name="VBUS" type="input"/>
- <pin num="3" name="SBU2" type="input"/>
- <pin num="4" name="CC1" type="input"/>
- <pin num="5" name="DN2" type="input"/>
- <pin num="6" name="DP1" type="input"/>
- <pin num="7" name="DN1" type="input"/>
- <pin num="8" name="DP2" type="input"/>
- <pin num="9" name="SBU1" type="input"/>
- <pin num="10" name="CC2" type="input"/>
- <pin num="11" name="VBUS" type="input"/>
- <pin num="12" name="GND" type="input"/>
- <pin num="13" name="SHIELD" type="input"/>
- </pins>
- </libpart>
- <libpart lib="max80" part="MT48LC16M16A2P-6A">
- <docs>https://www.mouser.se/datasheet/2/671/256Mb_sdr-1282350.pdf</docs>
- <fields>
- <field name="Reference">U</field>
- <field name="Value">MT48LC16M16A2P-6A</field>
- <field name="Footprint">Package_SO:TSOP-II-54_22.2x10.16mm_P0.8mm</field>
- <field name="LCSC">C41881</field>
- </fields>
- <pins>
- <pin num="1" name="VDD" type="power_in"/>
- <pin num="2" name="IO_0" type="BiDi"/>
- <pin num="3" name="VDDQ" type="power_in"/>
- <pin num="4" name="IO_1" type="BiDi"/>
- <pin num="5" name="IO_2" type="BiDi"/>
- <pin num="6" name="VSSQ" type="power_in"/>
- <pin num="7" name="IO_3" type="BiDi"/>
- <pin num="8" name="IO_4" type="BiDi"/>
- <pin num="9" name="VDDQ" type="power_in"/>
- <pin num="10" name="IO_5" type="BiDi"/>
- <pin num="11" name="IO_6" type="BiDi"/>
- <pin num="12" name="VSSQ" type="power_in"/>
- <pin num="13" name="IO_7" type="BiDi"/>
- <pin num="14" name="VDD" type="power_in"/>
- <pin num="15" name="DQML" type="BiDi"/>
- <pin num="16" name="~WE" type="BiDi"/>
- <pin num="17" name="~CAS" type="BiDi"/>
- <pin num="18" name="~RAS" type="BiDi"/>
- <pin num="19" name="~CS" type="BiDi"/>
- <pin num="20" name="BA0" type="BiDi"/>
- <pin num="21" name="BA1" type="BiDi"/>
- <pin num="22" name="A10" type="input"/>
- <pin num="23" name="A0" type="input"/>
- <pin num="24" name="A1" type="input"/>
- <pin num="25" name="A2" type="input"/>
- <pin num="26" name="A3" type="input"/>
- <pin num="27" name="VDD" type="power_in"/>
- <pin num="28" name="VSS" type="power_in"/>
- <pin num="29" name="A4" type="input"/>
- <pin num="30" name="A5" type="input"/>
- <pin num="31" name="A6" type="input"/>
- <pin num="32" name="A7" type="input"/>
- <pin num="33" name="A8" type="input"/>
- <pin num="34" name="A9" type="input"/>
- <pin num="35" name="A11" type="input"/>
- <pin num="36" name="A12" type="input"/>
- <pin num="37" name="CKE" type="BiDi"/>
- <pin num="38" name="CLK" type="BiDi"/>
- <pin num="39" name="DQMH" type="BiDi"/>
- <pin num="40" name="NC" type="passive"/>
- <pin num="41" name="VSS" type="power_in"/>
- <pin num="42" name="IO8" type="BiDi"/>
- <pin num="43" name="VDDQ" type="power_in"/>
- <pin num="44" name="IO9" type="BiDi"/>
- <pin num="45" name="IO10" type="BiDi"/>
- <pin num="46" name="VSS" type="power_in"/>
- <pin num="47" name="IO11" type="BiDi"/>
- <pin num="48" name="IO12" type="BiDi"/>
- <pin num="49" name="VDDQ" type="power_in"/>
- <pin num="50" name="IO13" type="BiDi"/>
- <pin num="51" name="IO14" type="BiDi"/>
- <pin num="52" name="VSSQ" type="power_in"/>
- <pin num="53" name="IO15" type="BiDi"/>
- <pin num="54" name="VSS" type="power_in"/>
- </pins>
- </libpart>
- </libparts>
- <libraries>
- <library logical="74xx">
- <uri>/usr/share/kicad/library/74xx.lib</uri>
- </library>
- <library logical="Connector">
- <uri>/usr/share/kicad/library/Connector.lib</uri>
- </library>
- <library logical="Connector_Generic">
- <uri>/usr/share/kicad/library/Connector_Generic.lib</uri>
- </library>
- <library logical="Device">
- <uri>/usr/share/kicad/library/Device.lib</uri>
- </library>
- <library logical="Interface_USB">
- <uri>/usr/share/kicad/library/Interface_USB.lib</uri>
- </library>
- <library logical="Memory_Flash">
- <uri>/usr/share/kicad/library/Memory_Flash.lib</uri>
- </library>
- <library logical="Oscillator">
- <uri>/usr/share/kicad/library/Oscillator.lib</uri>
- </library>
- <library logical="Power_Protection">
- <uri>/usr/share/kicad/library/Power_Protection.lib</uri>
- </library>
- <library logical="RF_Module">
- <uri>/usr/share/kicad/library/RF_Module.lib</uri>
- </library>
- <library logical="Regulator_Linear">
- <uri>/usr/share/kicad/library/Regulator_Linear.lib</uri>
- </library>
- <library logical="Timer_RTC">
- <uri>/usr/share/kicad/library/Timer_RTC.lib</uri>
- </library>
- <library logical="Transistor_FET">
- <uri>/usr/share/kicad/library/Transistor_FET.lib</uri>
- </library>
- <library logical="max80">
- <uri>/home/pm/project/abc80/max80/max80.lib</uri>
- </library>
- </libraries>
- <nets>
- <net code="1" name="FPGA_TDO">
- <node ref="U13" pin="J4"/>
- <node ref="J4" pin="3"/>
- <node ref="U11" pin="20"/>
- </net>
- <net code="2" name="HDMI_D2+">
- <node ref="U13" pin="R16"/>
- <node ref="C75" pin="2"/>
- </net>
- <net code="3" name="HDMI_D1-">
- <node ref="C78" pin="2"/>
- <node ref="U13" pin="N16"/>
- </net>
- <net code="4" name="HDMI_D2-">
- <node ref="C76" pin="2"/>
- <node ref="U13" pin="P16"/>
- </net>
- <net code="5" name="CLK0n">
- <node ref="U13" pin="M15"/>
- <node ref="OSC1" pin="3"/>
- </net>
- <net code="6" name="FPGA_TCK">
- <node ref="U11" pin="21"/>
- <node ref="J4" pin="1"/>
- <node ref="R42" pin="2"/>
- <node ref="U13" pin="H3"/>
- </net>
- <net code="7" name="FPGA_TMS">
- <node ref="J4" pin="5"/>
- <node ref="U11" pin="17"/>
- <node ref="R40" pin="2"/>
- <node ref="U13" pin="J5"/>
- </net>
- <net code="8" name="HDMI_D1+">
- <node ref="U13" pin="N15"/>
- <node ref="C77" pin="2"/>
- </net>
- <net code="9" name="FPGA_TDI">
- <node ref="U13" pin="H4"/>
- <node ref="J4" pin="9"/>
- <node ref="U11" pin="19"/>
- <node ref="R39" pin="1"/>
- </net>
- <net code="10" name="DATA0">
- <node ref="U13" pin="H2"/>
- <node ref="R41" pin="1"/>
- <node ref="D7" pin="2"/>
- </net>
- <net code="11" name="~OUT_ABC_3V3">
- <node ref="U2" pin="8"/>
- <node ref="U13" pin="G2"/>
- </net>
- <net code="12" name="HDMI_HPD">
- <node ref="R46" pin="1"/>
- <node ref="Q7" pin="2"/>
- <node ref="U13" pin="T15"/>
- </net>
- <net code="13" name="EXT_HF">
- <node ref="J8" pin="10"/>
- <node ref="U13" pin="T11"/>
- </net>
- <net code="14" name="HDMI_SCL">
- <node ref="R11" pin="1"/>
- <node ref="J2" pin="15"/>
- <node ref="U13" pin="M11"/>
- </net>
- <net code="15" name="HDMI_SDA">
- <node ref="R2" pin="2"/>
- <node ref="U13" pin="R13"/>
- <node ref="J2" pin="16"/>
- </net>
- <net code="16" name="HDMI_D0+">
- <node ref="C79" pin="2"/>
- <node ref="U13" pin="K15"/>
- </net>
- <net code="17" name="EXT_HH">
- <node ref="R50" pin="2"/>
- <node ref="J8" pin="8"/>
- <node ref="U13" pin="R8"/>
- </net>
- <net code="18" name="INT_ESP32">
- <node ref="U11" pin="12"/>
- <node ref="U13" pin="P8"/>
- </net>
- <net code="19" name="XM_ABC_3V3">
- <node ref="R44" pin="2"/>
- <node ref="U13" pin="B1"/>
- <node ref="Q6" pin="1"/>
- </net>
- <net code="20" name="~CS_ABC_3V3">
- <node ref="U13" pin="F2"/>
- <node ref="U3" pin="2"/>
- </net>
- <net code="21" name="nCE0">
- <node ref="D4" pin="2"/>
- <node ref="U7" pin="1"/>
- <node ref="U13" pin="D2"/>
- </net>
- <net code="22" name="ASD0">
- <node ref="U13" pin="C1"/>
- <node ref="U7" pin="5"/>
- <node ref="D6" pin="2"/>
- </net>
- <net code="23" name="FPGA_SPI_CLK">
- <node ref="U13" pin="P6"/>
- <node ref="U11" pin="14"/>
- </net>
- <net code="24" name="FGPA_SPI_CS_ESP32">
- <node ref="U13" pin="N8"/>
- <node ref="U11" pin="13"/>
- </net>
- <net code="25" name="ESP32_IO0">
- <node ref="J4" pin="30"/>
- <node ref="U13" pin="L8"/>
- <node ref="U11" pin="3"/>
- <node ref="R21" pin="2"/>
- </net>
- <net code="26" name="FPGA_GPIO3">
- <node ref="J4" pin="16"/>
- <node ref="U13" pin="R10"/>
- </net>
- <net code="27" name="FPGA_GPIO2">
- <node ref="U13" pin="T6"/>
- <node ref="J4" pin="15"/>
- </net>
- <net code="28" name="FPGA_GPIO0">
- <node ref="J4" pin="13"/>
- <node ref="U13" pin="L7"/>
- </net>
- <net code="29" name="FPGA_GPIO4">
- <node ref="U13" pin="T7"/>
- <node ref="J4" pin="17"/>
- </net>
- <net code="30" name="FPGA_GPIO5">
- <node ref="J4" pin="18"/>
- <node ref="U13" pin="R7"/>
- </net>
- <net code="31" name="+3V3">
- <node ref="C13" pin="1"/>
- <node ref="C14" pin="1"/>
- <node ref="C51" pin="1"/>
- <node ref="C10" pin="1"/>
- <node ref="C11" pin="1"/>
- <node ref="C8" pin="1"/>
- <node ref="C48" pin="1"/>
- <node ref="C31" pin="1"/>
- <node ref="C45" pin="1"/>
- <node ref="C46" pin="1"/>
- <node ref="C33" pin="1"/>
- <node ref="C30" pin="1"/>
- <node ref="C29" pin="1"/>
- <node ref="C26" pin="1"/>
- <node ref="C56" pin="1"/>
- <node ref="C68" pin="1"/>
- <node ref="C25" pin="1"/>
- <node ref="C16" pin="1"/>
- <node ref="C28" pin="1"/>
- <node ref="C69" pin="1"/>
- <node ref="J3" pin="4"/>
- <node ref="OSC1" pin="4"/>
- <node ref="C34" pin="1"/>
- <node ref="R38" pin="1"/>
- <node ref="R19" pin="1"/>
- <node ref="R20" pin="1"/>
- <node ref="R21" pin="1"/>
- <node ref="C61" pin="1"/>
- <node ref="U10" pin="7"/>
- <node ref="U10" pin="6"/>
- <node ref="D29" pin="2"/>
- <node ref="R12" pin="2"/>
- <node ref="R14" pin="1"/>
- <node ref="R39" pin="2"/>
- <node ref="R40" pin="1"/>
- <node ref="U3" pin="20"/>
- <node ref="C4" pin="1"/>
- <node ref="C5" pin="1"/>
- <node ref="C6" pin="1"/>
- <node ref="C7" pin="1"/>
- <node ref="U14" pin="20"/>
- <node ref="C40" pin="1"/>
- <node ref="D30" pin="2"/>
- <node ref="C3" pin="1"/>
- <node ref="U2" pin="20"/>
- <node ref="U5" pin="20"/>
- <node ref="U4" pin="20"/>
- <node ref="C2" pin="1"/>
- <node ref="U7" pin="8"/>
- <node ref="U7" pin="7"/>
- <node ref="U7" pin="3"/>
- <node ref="C22" pin="1"/>
- <node ref="C21" pin="1"/>
- <node ref="C47" pin="1"/>
- <node ref="C49" pin="1"/>
- <node ref="C27" pin="1"/>
- <node ref="C24" pin="1"/>
- <node ref="C54" pin="1"/>
- <node ref="U13" pin="H12"/>
- <node ref="U11" pin="2"/>
- <node ref="R1" pin="1"/>
- <node ref="U12" pin="2"/>
- <node ref="R32" pin="1"/>
- <node ref="R9" pin="1"/>
- <node ref="C55" pin="1"/>
- <node ref="U6" pin="9"/>
- <node ref="D6" pin="1"/>
- <node ref="U13" pin="P4"/>
- <node ref="U13" pin="P7"/>
- <node ref="U13" pin="K3"/>
- <node ref="Q7" pin="1"/>
- <node ref="U13" pin="T1"/>
- <node ref="U13" pin="M3"/>
- <node ref="C38" pin="1"/>
- <node ref="C37" pin="1"/>
- <node ref="U8" pin="2"/>
- <node ref="R46" pin="2"/>
- <node ref="J8" pin="1"/>
- <node ref="D5" pin="1"/>
- <node ref="OSC1" pin="1"/>
- <node ref="J8" pin="2"/>
- <node ref="U13" pin="T16"/>
- <node ref="U6" pin="49"/>
- <node ref="U6" pin="27"/>
- <node ref="R49" pin="1"/>
- <node ref="U13" pin="E14"/>
- <node ref="U13" pin="G14"/>
- <node ref="U13" pin="G3"/>
- <node ref="D4" pin="1"/>
- <node ref="R50" pin="1"/>
- <node ref="U13" pin="R9"/>
- <node ref="R11" pin="2"/>
- <node ref="R2" pin="1"/>
- <node ref="U13" pin="A1"/>
- <node ref="U13" pin="C7"/>
- <node ref="U6" pin="3"/>
- <node ref="U13" pin="A16"/>
- <node ref="U13" pin="C4"/>
- <node ref="U13" pin="C13"/>
- <node ref="U13" pin="C10"/>
- <node ref="D7" pin="1"/>
- <node ref="J4" pin="31"/>
- <node ref="U13" pin="P13"/>
- <node ref="J4" pin="4"/>
- <node ref="C83" pin="1"/>
- <node ref="U6" pin="14"/>
- <node ref="U13" pin="P10"/>
- <node ref="R37" pin="1"/>
- <node ref="R13" pin="2"/>
- <node ref="U6" pin="1"/>
- <node ref="U6" pin="43"/>
- <node ref="U13" pin="E3"/>
- </net>
- <net code="32" name="Net-(U13-PadK12)">
- <node ref="U13" pin="K12"/>
- </net>
- <net code="33" name="GND">
- <node ref="J4" pin="2"/>
- <node ref="J4" pin="10"/>
- <node ref="R16" pin="2"/>
- <node ref="J4" pin="37"/>
- <node ref="J4" pin="39"/>
- <node ref="J4" pin="35"/>
- <node ref="U15" pin="2"/>
- <node ref="J4" pin="33"/>
- <node ref="C53" pin="2"/>
- <node ref="U13" pin="P5"/>
- <node ref="R3" pin="1"/>
- <node ref="U11" pin="42"/>
- <node ref="U11" pin="43"/>
- <node ref="C55" pin="2"/>
- <node ref="U11" pin="1"/>
- <node ref="C52" pin="2"/>
- <node ref="C54" pin="2"/>
- <node ref="R4" pin="1"/>
- <node ref="USB2" pin="1"/>
- <node ref="USB2" pin="12"/>
- <node ref="U11" pin="26"/>
- <node ref="U13" pin="R15"/>
- <node ref="U13" pin="R2"/>
- <node ref="Q2" pin="2"/>
- <node ref="Q3" pin="2"/>
- <node ref="X1" pin="A4"/>
- <node ref="U4" pin="19"/>
- <node ref="J2" pin="8"/>
- <node ref="J2" pin="5"/>
- <node ref="J2" pin="2"/>
- <node ref="J2" pin="17"/>
- <node ref="X1" pin="A2"/>
- <node ref="U3" pin="19"/>
- <node ref="U3" pin="10"/>
- <node ref="C4" pin="2"/>
- <node ref="C5" pin="2"/>
- <node ref="X2" pin="A4"/>
- <node ref="X2" pin="B2"/>
- <node ref="R23" pin="2"/>
- <node ref="R22" pin="2"/>
- <node ref="X2" pin="A2"/>
- <node ref="J6" pin="1"/>
- <node ref="U10" pin="3"/>
- <node ref="U10" pin="29"/>
- <node ref="R18" pin="2"/>
- <node ref="USB1" pin="12"/>
- <node ref="USB1" pin="1"/>
- <node ref="R5" pin="1"/>
- <node ref="R6" pin="1"/>
- <node ref="J8" pin="11"/>
- <node ref="C3" pin="2"/>
- <node ref="X1" pin="B2"/>
- <node ref="U9" pin="2"/>
- <node ref="Q4" pin="2"/>
- <node ref="U4" pin="10"/>
- <node ref="U5" pin="10"/>
- <node ref="C40" pin="2"/>
- <node ref="R17" pin="2"/>
- <node ref="C39" pin="2"/>
- <node ref="J8" pin="12"/>
- <node ref="C26" pin="2"/>
- <node ref="C59" pin="2"/>
- <node ref="C69" pin="2"/>
- <node ref="C68" pin="2"/>
- <node ref="C25" pin="2"/>
- <node ref="C43" pin="2"/>
- <node ref="C66" pin="2"/>
- <node ref="C63" pin="2"/>
- <node ref="C74" pin="2"/>
- <node ref="C16" pin="2"/>
- <node ref="C28" pin="2"/>
- <node ref="C73" pin="2"/>
- <node ref="C71" pin="2"/>
- <node ref="C65" pin="2"/>
- <node ref="C70" pin="2"/>
- <node ref="U1" pin="1"/>
- <node ref="C64" pin="2"/>
- <node ref="C72" pin="2"/>
- <node ref="C67" pin="2"/>
- <node ref="U16" pin="1"/>
- <node ref="C62" pin="2"/>
- <node ref="C50" pin="2"/>
- <node ref="C44" pin="2"/>
- <node ref="C29" pin="2"/>
- <node ref="U13" pin="D7"/>
- <node ref="U13" pin="E12"/>
- <node ref="U13" pin="E13"/>
- <node ref="C30" pin="2"/>
- <node ref="U13" pin="E2"/>
- <node ref="U13" pin="E4"/>
- <node ref="U13" pin="E5"/>
- <node ref="U13" pin="F10"/>
- <node ref="U13" pin="B15"/>
- <node ref="U13" pin="B2"/>
- <node ref="U13" pin="C12"/>
- <node ref="U13" pin="C5"/>
- <node ref="U13" pin="D10"/>
- <node ref="C38" pin="2"/>
- <node ref="C37" pin="2"/>
- <node ref="C35" pin="2"/>
- <node ref="C36" pin="2"/>
- <node ref="U8" pin="1"/>
- <node ref="C41" pin="2"/>
- <node ref="C42" pin="2"/>
- <node ref="C32" pin="2"/>
- <node ref="C31" pin="2"/>
- <node ref="U13" pin="K4"/>
- <node ref="C19" pin="2"/>
- <node ref="C18" pin="2"/>
- <node ref="U13" pin="K8"/>
- <node ref="U13" pin="M12"/>
- <node ref="U13" pin="J8"/>
- <node ref="C17" pin="2"/>
- <node ref="C1" pin="2"/>
- <node ref="C20" pin="2"/>
- <node ref="U13" pin="M4"/>
- <node ref="C9" pin="2"/>
- <node ref="U13" pin="M5"/>
- <node ref="C22" pin="2"/>
- <node ref="U13" pin="N10"/>
- <node ref="U13" pin="N7"/>
- <node ref="C21" pin="2"/>
- <node ref="U13" pin="P12"/>
- <node ref="U13" pin="M13"/>
- <node ref="U13" pin="J9"/>
- <node ref="U13" pin="K13"/>
- <node ref="U12" pin="5"/>
- <node ref="U13" pin="H16"/>
- <node ref="U12" pin="9"/>
- <node ref="U12" pin="10"/>
- <node ref="U12" pin="11"/>
- <node ref="U12" pin="12"/>
- <node ref="U12" pin="13"/>
- <node ref="U13" pin="H7"/>
- <node ref="U12" pin="6"/>
- <node ref="U12" pin="7"/>
- <node ref="U12" pin="8"/>
- <node ref="U13" pin="H8"/>
- <node ref="U13" pin="H9"/>
- <node ref="U13" pin="J10"/>
- <node ref="U13" pin="J11"/>
- <node ref="U13" pin="J7"/>
- <node ref="U13" pin="H10"/>
- <node ref="U13" pin="G13"/>
- <node ref="BT1" pin="2"/>
- <node ref="C47" pin="2"/>
- <node ref="U13" pin="G4"/>
- <node ref="U13" pin="H15"/>
- <node ref="C15" pin="2"/>
- <node ref="C14" pin="2"/>
- <node ref="C13" pin="2"/>
- <node ref="C12" pin="2"/>
- <node ref="C11" pin="2"/>
- <node ref="C10" pin="2"/>
- <node ref="C8" pin="2"/>
- <node ref="C27" pin="2"/>
- <node ref="C24" pin="2"/>
- <node ref="C23" pin="2"/>
- <node ref="U13" pin="F6"/>
- <node ref="J3" pin="11"/>
- <node ref="J3" pin="9"/>
- <node ref="J3" pin="6"/>
- <node ref="C51" pin="2"/>
- <node ref="C48" pin="2"/>
- <node ref="U14" pin="19"/>
- <node ref="C45" pin="2"/>
- <node ref="D23" pin="1"/>
- <node ref="D17" pin="1"/>
- <node ref="D22" pin="1"/>
- <node ref="OSC1" pin="2"/>
- <node ref="C46" pin="2"/>
- <node ref="C33" pin="2"/>
- <node ref="C56" pin="2"/>
- <node ref="C34" pin="2"/>
- <node ref="Q5" pin="2"/>
- <node ref="Q6" pin="2"/>
- <node ref="C60" pin="2"/>
- <node ref="Q1" pin="2"/>
- <node ref="U2" pin="19"/>
- <node ref="U2" pin="10"/>
- <node ref="C6" pin="2"/>
- <node ref="C7" pin="2"/>
- <node ref="C49" pin="2"/>
- <node ref="C2" pin="2"/>
- <node ref="U7" pin="4"/>
- <node ref="U13" pin="H13"/>
- <node ref="U13" pin="G12"/>
- <node ref="U14" pin="10"/>
- <node ref="R42" pin="1"/>
- <node ref="C61" pin="2"/>
- <node ref="C83" pin="2"/>
- <node ref="U6" pin="52"/>
- <node ref="U6" pin="41"/>
- <node ref="U6" pin="12"/>
- <node ref="U6" pin="28"/>
- <node ref="R24" pin="1"/>
- <node ref="U6" pin="6"/>
- <node ref="U6" pin="54"/>
- <node ref="U6" pin="46"/>
- <node ref="U6" pin="46"/>
- <node ref="U13" pin="M16"/>
- </net>
- <net code="34" name="FPGA_JTAGEN">
- <node ref="J4" pin="7"/>
- <node ref="U13" pin="J3"/>
- <node ref="R24" pin="2"/>
- </net>
- <net code="35" name="FLASH_CS#">
- <node ref="U13" pin="N6"/>
- <node ref="U11" pin="4"/>
- </net>
- <net code="36" name="Net-(U13-PadJ12)">
- <node ref="U13" pin="J12"/>
- </net>
- <net code="37" name="Net-(U13-PadP15)">
- <node ref="U13" pin="P15"/>
- </net>
- <net code="38" name="Net-(U13-PadN14)">
- <node ref="U13" pin="N14"/>
- </net>
- <net code="39" name="Net-(U13-PadK10)">
- <node ref="U13" pin="K10"/>
- </net>
- <net code="40" name="Net-(U13-PadM9)">
- <node ref="U13" pin="M9"/>
- </net>
- <net code="41" name="Net-(U13-PadL9)">
- <node ref="U13" pin="L9"/>
- </net>
- <net code="42" name="Net-(U13-PadK9)">
- <node ref="U13" pin="K9"/>
- </net>
- <net code="43" name="HDMI_D0-">
- <node ref="C80" pin="2"/>
- <node ref="U13" pin="K16"/>
- </net>
- <net code="44" name="/IO0">
- <node ref="U6" pin="2"/>
- <node ref="U13" pin="A12"/>
- </net>
- <net code="45" name="/A3">
- <node ref="U13" pin="A15"/>
- <node ref="U6" pin="26"/>
- </net>
- <net code="46" name="/A10">
- <node ref="U13" pin="C14"/>
- <node ref="U6" pin="22"/>
- </net>
- <net code="47" name="/BA1">
- <node ref="U6" pin="21"/>
- <node ref="U13" pin="B13"/>
- </net>
- <net code="48" name="/BA0">
- <node ref="U13" pin="A13"/>
- <node ref="U6" pin="20"/>
- </net>
- <net code="49" name="/CS#">
- <node ref="U6" pin="19"/>
- <node ref="U13" pin="D12"/>
- </net>
- <net code="50" name="/RAS#">
- <node ref="U13" pin="B12"/>
- <node ref="U6" pin="18"/>
- </net>
- <net code="51" name="/CAS#">
- <node ref="U13" pin="E9"/>
- <node ref="U6" pin="17"/>
- </net>
- <net code="52" name="/IO7">
- <node ref="U13" pin="A10"/>
- <node ref="U6" pin="13"/>
- </net>
- <net code="53" name="Net-(U6-Pad40)">
- <node ref="U6" pin="40"/>
- </net>
- <net code="54" name="/IO1">
- <node ref="U6" pin="4"/>
- <node ref="U13" pin="E11"/>
- </net>
- <net code="55" name="/IO6">
- <node ref="U13" pin="B10"/>
- <node ref="U6" pin="11"/>
- </net>
- <net code="56" name="/A5">
- <node ref="U6" pin="30"/>
- <node ref="U13" pin="D9"/>
- </net>
- <net code="57" name="/A4">
- <node ref="U13" pin="C9"/>
- <node ref="U6" pin="29"/>
- </net>
- <net code="58" name="DLCK">
- <node ref="U13" pin="H1"/>
- <node ref="U7" pin="6"/>
- <node ref="D5" pin="2"/>
- </net>
- <net code="59" name="Net-(R13-Pad1)">
- <node ref="U13" pin="F4"/>
- <node ref="R13" pin="1"/>
- </net>
- <net code="60" name="Net-(R37-Pad2)">
- <node ref="U13" pin="H5"/>
- <node ref="R37" pin="2"/>
- </net>
- <net code="61" name="/IO5">
- <node ref="U13" pin="A11"/>
- <node ref="U6" pin="10"/>
- </net>
- <net code="62" name="FPGA_RESIN">
- <node ref="Q4" pin="1"/>
- <node ref="R28" pin="2"/>
- <node ref="U13" pin="R6"/>
- </net>
- <net code="63" name="FPGA_SPI_MOSI">
- <node ref="U13" pin="M8"/>
- <node ref="U11" pin="15"/>
- </net>
- <net code="64" name="FPGA_SPI_MISO">
- <node ref="U11" pin="16"/>
- <node ref="U13" pin="M7"/>
- </net>
- <net code="65" name="~XMEMFL_ABC_3V3">
- <node ref="U14" pin="2"/>
- <node ref="U13" pin="N3"/>
- </net>
- <net code="66" name="ABC_CLK_3V3">
- <node ref="U13" pin="T8"/>
- <node ref="U14" pin="6"/>
- </net>
- <net code="67" name="/IO4">
- <node ref="U6" pin="8"/>
- <node ref="U13" pin="B11"/>
- </net>
- <net code="68" name="/IO3">
- <node ref="U13" pin="C11"/>
- <node ref="U6" pin="7"/>
- </net>
- <net code="69" name="/SD_DAT2">
- <node ref="J3" pin="1"/>
- <node ref="U13" pin="F14"/>
- </net>
- <net code="70" name="/IO2">
- <node ref="U13" pin="D11"/>
- <node ref="U6" pin="5"/>
- </net>
- <net code="71" name="/A12">
- <node ref="U6" pin="36"/>
- <node ref="U13" pin="B6"/>
- </net>
- <net code="72" name="/IO13">
- <node ref="U6" pin="50"/>
- <node ref="U13" pin="D6"/>
- </net>
- <net code="73" name="/IO15">
- <node ref="U6" pin="53"/>
- <node ref="U13" pin="D5"/>
- </net>
- <net code="74" name="/A11">
- <node ref="U13" pin="C8"/>
- <node ref="U6" pin="35"/>
- </net>
- <net code="75" name="/IO14">
- <node ref="U6" pin="51"/>
- <node ref="U13" pin="C6"/>
- </net>
- <net code="76" name="Net-(U13-PadC3)">
- <node ref="U13" pin="C3"/>
- </net>
- <net code="77" name="~FPGA_READY">
- <node ref="R26" pin="2"/>
- <node ref="Q2" pin="1"/>
- <node ref="U13" pin="B4"/>
- </net>
- <net code="78" name="/A7">
- <node ref="U6" pin="32"/>
- <node ref="U13" pin="A7"/>
- </net>
- <net code="79" name="/A9">
- <node ref="U13" pin="A6"/>
- <node ref="U6" pin="34"/>
- </net>
- <net code="80" name="Net-(U13-PadK6)">
- <node ref="U13" pin="K6"/>
- </net>
- <net code="81" name="FPGA_NMI">
- <node ref="R27" pin="2"/>
- <node ref="U13" pin="A3"/>
- <node ref="Q3" pin="1"/>
- </net>
- <net code="83" name="/FPGA_USB_TXD">
- <node ref="U13" pin="E16"/>
- <node ref="U10" pin="26"/>
- </net>
- <net code="84" name="Net-(U13-PadG11)">
- <node ref="U13" pin="G11"/>
- </net>
- <net code="85" name="/CKE">
- <node ref="U6" pin="37"/>
- <node ref="U13" pin="F8"/>
- </net>
- <net code="86" name="/IO9">
- <node ref="U13" pin="E7"/>
- <node ref="U6" pin="44"/>
- </net>
- <net code="87" name="/IO12">
- <node ref="U6" pin="48"/>
- <node ref="U13" pin="E6"/>
- </net>
- <net code="88" name="/A8">
- <node ref="U13" pin="B7"/>
- <node ref="U6" pin="33"/>
- </net>
- <net code="89" name="/A6">
- <node ref="U13" pin="E8"/>
- <node ref="U6" pin="31"/>
- </net>
- <net code="90" name="/CLK">
- <node ref="U13" pin="D3"/>
- <node ref="U6" pin="38"/>
- </net>
- <net code="91" name="/DQMH">
- <node ref="U13" pin="D8"/>
- <node ref="U6" pin="39"/>
- </net>
- <net code="92" name="/IO8">
- <node ref="U13" pin="A5"/>
- <node ref="U6" pin="42"/>
- </net>
- <net code="93" name="/IO10">
- <node ref="U6" pin="45"/>
- <node ref="U13" pin="B5"/>
- </net>
- <net code="94" name="/IO11">
- <node ref="U6" pin="47"/>
- <node ref="U13" pin="A4"/>
- </net>
- <net code="95" name="/~SD_DETECT">
- <node ref="U13" pin="L15"/>
- <node ref="J3" pin="10"/>
- </net>
- <net code="96" name="Net-(U13-PadP11)">
- <node ref="U13" pin="P11"/>
- </net>
- <net code="97" name="Net-(U13-PadL16)">
- <node ref="U13" pin="L16"/>
- </net>
- <net code="98" name="Net-(U13-PadL6)">
- <node ref="U13" pin="L6"/>
- </net>
- <net code="99" name="INT800_ABC_3V3">
- <node ref="U13" pin="A2"/>
- <node ref="Q5" pin="1"/>
- <node ref="R45" pin="2"/>
- </net>
- <net code="100" name="HDMI_CK-">
- <node ref="C82" pin="2"/>
- <node ref="U13" pin="J16"/>
- </net>
- <net code="101" name="HDMI_CK+">
- <node ref="C81" pin="2"/>
- <node ref="U13" pin="J15"/>
- </net>
- <net code="102" name="Net-(U13-PadJ14)">
- <node ref="U13" pin="J14"/>
- </net>
- <net code="103" name="Net-(U13-PadJ13)">
- <node ref="U13" pin="J13"/>
- </net>
- <net code="104" name="Net-(U13-PadL11)">
- <node ref="U13" pin="L11"/>
- </net>
- <net code="105" name="~XOUTSTB_ABC_3V3">
- <node ref="U13" pin="L10"/>
- <node ref="U14" pin="9"/>
- </net>
- <net code="106" name="Net-(U13-PadL13)">
- <node ref="U13" pin="L13"/>
- </net>
- <net code="107" name="Net-(U13-PadL14)">
- <node ref="U13" pin="L14"/>
- </net>
- <net code="108" name="EXT_HA">
- <node ref="U13" pin="N12"/>
- <node ref="J8" pin="3"/>
- </net>
- <net code="109" name="/FPGA_LED3">
- <node ref="U13" pin="T14"/>
- <node ref="R30" pin="2"/>
- </net>
- <net code="110" name="/FPGA_LED2">
- <node ref="U13" pin="R14"/>
- <node ref="R31" pin="2"/>
- </net>
- <net code="111" name="~XINPSTB_ABC_3V3">
- <node ref="U13" pin="T12"/>
- <node ref="U14" pin="8"/>
- </net>
- <net code="112" name="EXT_HB">
- <node ref="J8" pin="5"/>
- <node ref="U13" pin="N9"/>
- </net>
- <net code="113" name="INT_ABC_3V3">
- <node ref="Q1" pin="1"/>
- <node ref="U13" pin="B3"/>
- <node ref="R43" pin="2"/>
- </net>
- <net code="114" name="EXT_HC">
- <node ref="U13" pin="T9"/>
- <node ref="R49" pin="2"/>
- <node ref="J8" pin="7"/>
- </net>
- <net code="115" name="EXT_HD">
- <node ref="U13" pin="R11"/>
- <node ref="J8" pin="9"/>
- </net>
- <net code="116" name="EXT_HE">
- <node ref="J8" pin="4"/>
- <node ref="U13" pin="R12"/>
- </net>
- <net code="117" name="FPGA_GPIO1">
- <node ref="U13" pin="P9"/>
- <node ref="J4" pin="14"/>
- </net>
- <net code="118" name="EXT_HG">
- <node ref="U13" pin="N11"/>
- <node ref="J8" pin="6"/>
- </net>
- <net code="119" name="/RTC_INT">
- <node ref="R32" pin="2"/>
- <node ref="U12" pin="3"/>
- <node ref="U13" pin="B16"/>
- </net>
- <net code="120" name="/SD_CLK">
- <node ref="J3" pin="5"/>
- <node ref="U13" pin="G15"/>
- </net>
- <net code="121" name="/SD_DAT0">
- <node ref="U13" pin="F15"/>
- <node ref="J3" pin="7"/>
- </net>
- <net code="122" name="/FPGA_SCL">
- <node ref="R12" pin="1"/>
- <node ref="U12" pin="16"/>
- <node ref="J4" pin="11"/>
- <node ref="U11" pin="9"/>
- <node ref="U13" pin="C16"/>
- </net>
- <net code="123" name="/FPGA_SDA">
- <node ref="U12" pin="15"/>
- <node ref="U11" pin="8"/>
- <node ref="J4" pin="12"/>
- <node ref="R14" pin="2"/>
- <node ref="U13" pin="C15"/>
- </net>
- <net code="124" name="Net-(D17-Pad2)">
- <node ref="D17" pin="2"/>
- <node ref="R29" pin="1"/>
- </net>
- <net code="125" name="/FPGA_LED1">
- <node ref="U13" pin="T13"/>
- <node ref="R29" pin="2"/>
- </net>
- <net code="126" name="Net-(D22-Pad2)">
- <node ref="D22" pin="2"/>
- <node ref="R30" pin="1"/>
- </net>
- <net code="127" name="/FPGA_USB_RXD">
- <node ref="U13" pin="F13"/>
- <node ref="U10" pin="25"/>
- </net>
- <net code="128" name="Net-(D23-Pad2)">
- <node ref="D23" pin="2"/>
- <node ref="R31" pin="1"/>
- </net>
- <net code="129" name="/A2">
- <node ref="U6" pin="25"/>
- <node ref="U13" pin="D14"/>
- </net>
- <net code="130" name="/A1">
- <node ref="U6" pin="24"/>
- <node ref="U13" pin="B14"/>
- </net>
- <net code="131" name="/A0">
- <node ref="U6" pin="23"/>
- <node ref="U13" pin="A14"/>
- </net>
- <net code="132" name="/DQML">
- <node ref="U13" pin="E10"/>
- <node ref="U6" pin="15"/>
- </net>
- <net code="133" name="/SD_CMD">
- <node ref="J3" pin="3"/>
- <node ref="U13" pin="G16"/>
- </net>
- <net code="134" name="/SD_DAT3">
- <node ref="J3" pin="2"/>
- <node ref="U13" pin="F16"/>
- </net>
- <net code="135" name="/FPGA_USB_DTR">
- <node ref="U10" pin="28"/>
- <node ref="U13" pin="P14"/>
- </net>
- <net code="136" name="/WE#">
- <node ref="U6" pin="16"/>
- <node ref="U13" pin="F9"/>
- </net>
- <net code="137" name="/SD_DAT1">
- <node ref="U13" pin="M10"/>
- <node ref="J3" pin="8"/>
- </net>
- <net code="138" name="/32KHZ">
- <node ref="U12" pin="1"/>
- <node ref="U13" pin="E15"/>
- <node ref="U11" pin="18"/>
- <node ref="R9" pin="2"/>
- </net>
- <net code="139" name="~STATUS_ABC_3V3">
- <node ref="U4" pin="5"/>
- <node ref="U13" pin="M2"/>
- </net>
- <net code="140" name="~INP_ABC_3V3">
- <node ref="U4" pin="7"/>
- <node ref="U13" pin="L2"/>
- </net>
- <net code="141" name="~C4_ABC_3V3">
- <node ref="U4" pin="9"/>
- <node ref="U13" pin="K2"/>
- </net>
- <net code="142" name="~C3_ABC_3V3">
- <node ref="U2" pin="2"/>
- <node ref="U13" pin="L3"/>
- </net>
- <net code="143" name="~C2_ABC_3V3">
- <node ref="U13" pin="K5"/>
- <node ref="U2" pin="4"/>
- </net>
- <net code="144" name="Net-(R41-Pad2)">
- <node ref="U7" pin="2"/>
- <node ref="R41" pin="2"/>
- </net>
- <net code="145" name="~C1_ABC_3V3">
- <node ref="U13" pin="J2"/>
- <node ref="U2" pin="6"/>
- </net>
- <net code="146" name="Net-(R38-Pad2)">
- <node ref="U13" pin="H14"/>
- <node ref="R38" pin="2"/>
- </net>
- <net code="147" name="~RST_ABC_3V3">
- <node ref="U14" pin="7"/>
- <node ref="U13" pin="P2"/>
- </net>
- <net code="148" name="~XMEMW80_ABC_3V3">
- <node ref="U13" pin="R1"/>
- <node ref="U14" pin="3"/>
- </net>
- <net code="149" name="~XMEMW800_ABC_3V3">
- <node ref="U13" pin="P1"/>
- <node ref="U14" pin="4"/>
- </net>
- <net code="150" name="/FPGA_USB_RTS">
- <node ref="R8" pin="1"/>
- <node ref="U13" pin="D16"/>
- <node ref="U10" pin="24"/>
- </net>
- <net code="151" name="Net-(D29-Pad1)">
- <node ref="D29" pin="1"/>
- <node ref="R8" pin="2"/>
- </net>
- <net code="152" name="/FPGA_USB_CTS">
- <node ref="U13" pin="D15"/>
- <node ref="R10" pin="1"/>
- <node ref="U10" pin="23"/>
- </net>
- <net code="153" name="Net-(D30-Pad1)">
- <node ref="D30" pin="1"/>
- <node ref="R10" pin="2"/>
- </net>
- <net code="154" name="+5V">
- <node ref="D28" pin="1"/>
- <node ref="U8" pin="3"/>
- <node ref="C36" pin="1"/>
- <node ref="C35" pin="1"/>
- <node ref="C60" pin="1"/>
- <node ref="D19" pin="1"/>
- <node ref="D27" pin="1"/>
- <node ref="U1" pin="3"/>
- <node ref="J2" pin="18"/>
- <node ref="U16" pin="3"/>
- <node ref="C67" pin="1"/>
- <node ref="C64" pin="1"/>
- <node ref="C70" pin="1"/>
- <node ref="C65" pin="1"/>
- <node ref="R47" pin="2"/>
- </net>
- <net code="155" name="AD16">
- <node ref="U4" pin="1"/>
- <node ref="U2" pin="1"/>
- <node ref="U3" pin="1"/>
- <node ref="U13" pin="C2"/>
- </net>
- <net code="156" name="Net-(R25-Pad2)">
- <node ref="R25" pin="2"/>
- <node ref="U14" pin="17"/>
- </net>
- <net code="157" name="/abc80bus/~XM">
- <node ref="R44" pin="1"/>
- <node ref="Q6" pin="3"/>
- <node ref="X2" pin="A28"/>
- <node ref="X1" pin="A28"/>
- </net>
- <net code="158" name="DD10">
- <node ref="U13" pin="T10"/>
- <node ref="U14" pin="1"/>
- </net>
- <net code="159" name="/abc80bus/~XMEMW80">
- <node ref="R45" pin="1"/>
- <node ref="R25" pin="1"/>
- <node ref="Q5" pin="3"/>
- <node ref="X1" pin="A5"/>
- <node ref="X2" pin="A5"/>
- </net>
- <net code="160" name="/abc80bus/~INT">
- <node ref="Q1" pin="3"/>
- <node ref="X1" pin="B13"/>
- <node ref="X2" pin="B13"/>
- <node ref="R43" pin="1"/>
- </net>
- <net code="161" name="Net-(U14-Pad5)">
- <node ref="U14" pin="5"/>
- </net>
- <net code="162" name="Net-(U14-Pad15)">
- <node ref="U14" pin="15"/>
- </net>
- <net code="163" name="AD8">
- <node ref="U13" pin="G1"/>
- <node ref="U2" pin="7"/>
- </net>
- <net code="164" name="/abc80bus/ABC_12V">
- <node ref="X2" pin="B32"/>
- <node ref="X1" pin="B32"/>
- <node ref="X1" pin="A32"/>
- <node ref="X2" pin="A32"/>
- <node ref="J7" pin="1"/>
- </net>
- <net code="165" name="/abc80bus/ABC_-12V">
- <node ref="X2" pin="B1"/>
- <node ref="X1" pin="B1"/>
- <node ref="X1" pin="A1"/>
- <node ref="J7" pin="2"/>
- <node ref="X2" pin="A1"/>
- </net>
- <net code="166" name="/abc80bus/~XOUTSTB">
- <node ref="X2" pin="A27"/>
- <node ref="U14" pin="11"/>
- <node ref="X1" pin="A27"/>
- <node ref="R23" pin="1"/>
- </net>
- <net code="167" name="/abc80bus/~XINPSTB">
- <node ref="U14" pin="12"/>
- <node ref="X1" pin="A26"/>
- <node ref="R22" pin="1"/>
- <node ref="X2" pin="A26"/>
- </net>
- <net code="168" name="/abc80bus/~RST">
- <node ref="X2" pin="A15"/>
- <node ref="X1" pin="A15"/>
- <node ref="U14" pin="13"/>
- </net>
- <net code="169" name="ABC_CLK_5">
- <node ref="X2" pin="B5"/>
- <node ref="X1" pin="B5"/>
- <node ref="U14" pin="14"/>
- </net>
- <net code="170" name="/abc80bus/~XMEMW800">
- <node ref="X2" pin="B3"/>
- <node ref="X1" pin="B3"/>
- <node ref="U14" pin="16"/>
- </net>
- <net code="171" name="/abc80bus/~XMEMFL">
- <node ref="X1" pin="B4"/>
- <node ref="X2" pin="B4"/>
- <node ref="U14" pin="18"/>
- </net>
- <net code="172" name="AD15">
- <node ref="U13" pin="N1"/>
- <node ref="U4" pin="2"/>
- </net>
- <net code="173" name="AD13">
- <node ref="U4" pin="4"/>
- <node ref="U13" pin="M1"/>
- </net>
- <net code="174" name="AD12">
- <node ref="U13" pin="L1"/>
- <node ref="U4" pin="6"/>
- </net>
- <net code="175" name="/abc80bus/D6">
- <node ref="X1" pin="A7"/>
- <node ref="U5" pin="17"/>
- <node ref="X2" pin="A7"/>
- </net>
- <net code="176" name="/abc80bus/A2">
- <node ref="X1" pin="B27"/>
- <node ref="X2" pin="B27"/>
- <node ref="U3" pin="13"/>
- </net>
- <net code="177" name="/abc80bus/A6">
- <node ref="U3" pin="17"/>
- <node ref="X1" pin="B23"/>
- <node ref="X2" pin="B23"/>
- </net>
- <net code="178" name="/abc80bus/A5">
- <node ref="X2" pin="B24"/>
- <node ref="U3" pin="16"/>
- <node ref="X1" pin="B24"/>
- </net>
- <net code="179" name="/abc80bus/A4">
- <node ref="X1" pin="B25"/>
- <node ref="U3" pin="15"/>
- <node ref="X2" pin="B25"/>
- </net>
- <net code="180" name="/abc80bus/A3">
- <node ref="X2" pin="B26"/>
- <node ref="X1" pin="B26"/>
- <node ref="U3" pin="14"/>
- </net>
- <net code="181" name="/abc80bus/A1">
- <node ref="U3" pin="12"/>
- <node ref="X1" pin="B28"/>
- <node ref="X2" pin="B28"/>
- </net>
- <net code="182" name="/abc80bus/A0">
- <node ref="X1" pin="B29"/>
- <node ref="U3" pin="11"/>
- <node ref="X2" pin="B29"/>
- </net>
- <net code="183" name="Net-(X1-PadB30)">
- <node ref="X2" pin="B30"/>
- <node ref="X1" pin="B30"/>
- </net>
- <net code="184" name="/abc80bus/ABC5V">
- <node ref="X2" pin="B31"/>
- <node ref="X2" pin="A31"/>
- <node ref="X1" pin="B31"/>
- <node ref="J1" pin="1"/>
- <node ref="X1" pin="A31"/>
- </net>
- <net code="185" name="Net-(X1-PadB6)">
- <node ref="X2" pin="B6"/>
- <node ref="X1" pin="B6"/>
- </net>
- <net code="186" name="Net-(X1-PadB7)">
- <node ref="X2" pin="B7"/>
- <node ref="X1" pin="B7"/>
- </net>
- <net code="187" name="Net-(X1-PadB8)">
- <node ref="X1" pin="B8"/>
- <node ref="X2" pin="B8"/>
- </net>
- <net code="188" name="Net-(X1-PadB9)">
- <node ref="X1" pin="B9"/>
- <node ref="X2" pin="B9"/>
- </net>
- <net code="189" name="/abc80bus/~CS">
- <node ref="X2" pin="A23"/>
- <node ref="X1" pin="A23"/>
- <node ref="U3" pin="18"/>
- </net>
- <net code="190" name="/abc80bus/~NMI">
- <node ref="X1" pin="A24"/>
- <node ref="X2" pin="A24"/>
- <node ref="R27" pin="1"/>
- <node ref="Q3" pin="3"/>
- </net>
- <net code="191" name="Net-(X1-PadA25)">
- <node ref="X1" pin="A25"/>
- <node ref="X2" pin="A25"/>
- </net>
- <net code="192" name="Net-(X1-PadA29)">
- <node ref="X1" pin="A29"/>
- <node ref="X2" pin="A29"/>
- </net>
- <net code="193" name="/abc80bus/D7">
- <node ref="U5" pin="18"/>
- <node ref="X2" pin="A6"/>
- <node ref="X1" pin="A6"/>
- </net>
- <net code="194" name="/abc80bus/D5">
- <node ref="U5" pin="16"/>
- <node ref="X1" pin="A8"/>
- <node ref="X2" pin="A8"/>
- </net>
- <net code="195" name="/abc80bus/D4">
- <node ref="X1" pin="A9"/>
- <node ref="X2" pin="A9"/>
- <node ref="U5" pin="15"/>
- </net>
- <net code="196" name="Net-(X1-PadB10)">
- <node ref="X2" pin="B10"/>
- <node ref="X1" pin="B10"/>
- </net>
- <net code="197" name="Net-(X1-PadB11)">
- <node ref="X2" pin="B11"/>
- <node ref="X1" pin="B11"/>
- </net>
- <net code="198" name="Net-(X1-PadB12)">
- <node ref="X1" pin="B12"/>
- <node ref="X2" pin="B12"/>
- </net>
- <net code="199" name="/abc80bus/D3">
- <node ref="X2" pin="A10"/>
- <node ref="U5" pin="14"/>
- <node ref="X1" pin="A10"/>
- </net>
- <net code="200" name="/abc80bus/D2">
- <node ref="U5" pin="13"/>
- <node ref="X1" pin="A11"/>
- <node ref="X2" pin="A11"/>
- </net>
- <net code="201" name="/abc80bus/D1">
- <node ref="X1" pin="A12"/>
- <node ref="X2" pin="A12"/>
- <node ref="U5" pin="12"/>
- </net>
- <net code="202" name="/abc80bus/D0">
- <node ref="U5" pin="11"/>
- <node ref="X1" pin="A13"/>
- <node ref="X2" pin="A13"/>
- </net>
- <net code="203" name="Net-(X1-PadA14)">
- <node ref="X2" pin="A14"/>
- <node ref="X1" pin="A14"/>
- </net>
- <net code="205" name="/abc80bus/~RESIN">
- <node ref="X2" pin="A3"/>
- <node ref="R28" pin="1"/>
- <node ref="Q4" pin="3"/>
- <node ref="X1" pin="A3"/>
- </net>
- <net code="206" name="/abc80bus/~INP">
- <node ref="X2" pin="A17"/>
- <node ref="X1" pin="A17"/>
- <node ref="U4" pin="13"/>
- </net>
- <net code="207" name="AD7">
- <node ref="U13" pin="F1"/>
- <node ref="U2" pin="9"/>
- </net>
- <net code="208" name="AD9">
- <node ref="U2" pin="5"/>
- <node ref="U13" pin="J1"/>
- </net>
- <net code="209" name="AD10">
- <node ref="U2" pin="3"/>
- <node ref="U13" pin="L4"/>
- </net>
- <net code="210" name="/abc80bus/READY">
- <node ref="X1" pin="A30"/>
- <node ref="X2" pin="A30"/>
- <node ref="R26" pin="1"/>
- <node ref="Q2" pin="3"/>
- </net>
- <net code="211" name="/abc80bus/A7">
- <node ref="X1" pin="B22"/>
- <node ref="X2" pin="B22"/>
- <node ref="U2" pin="11"/>
- </net>
- <net code="212" name="/abc80bus/A8">
- <node ref="X2" pin="B21"/>
- <node ref="U2" pin="13"/>
- <node ref="X1" pin="B21"/>
- </net>
- <net code="213" name="/abc80bus/A9">
- <node ref="X1" pin="B20"/>
- <node ref="U2" pin="15"/>
- <node ref="X2" pin="B20"/>
- </net>
- <net code="214" name="/abc80bus/A10">
- <node ref="X1" pin="B19"/>
- <node ref="X2" pin="B19"/>
- <node ref="U2" pin="17"/>
- </net>
- <net code="215" name="/abc80bus/A11">
- <node ref="X2" pin="B18"/>
- <node ref="U4" pin="12"/>
- <node ref="X1" pin="B18"/>
- </net>
- <net code="216" name="/abc80bus/A12">
- <node ref="X1" pin="B17"/>
- <node ref="U4" pin="14"/>
- <node ref="X2" pin="B17"/>
- </net>
- <net code="217" name="/abc80bus/A13">
- <node ref="X2" pin="B16"/>
- <node ref="X1" pin="B16"/>
- <node ref="U4" pin="16"/>
- </net>
- <net code="218" name="/abc80bus/A14">
- <node ref="X2" pin="B15"/>
- <node ref="X1" pin="B15"/>
- <node ref="U4" pin="17"/>
- </net>
- <net code="219" name="/abc80bus/A15">
- <node ref="X2" pin="B14"/>
- <node ref="X1" pin="B14"/>
- <node ref="U4" pin="18"/>
- </net>
- <net code="220" name="/abc80bus/~OUT">
- <node ref="U2" pin="12"/>
- <node ref="X2" pin="A22"/>
- <node ref="X1" pin="A22"/>
- </net>
- <net code="221" name="/abc80bus/~STATUS">
- <node ref="X1" pin="A16"/>
- <node ref="U4" pin="15"/>
- <node ref="X2" pin="A16"/>
- </net>
- <net code="222" name="/abc80bus/~C1">
- <node ref="X1" pin="A21"/>
- <node ref="U2" pin="14"/>
- <node ref="X2" pin="A21"/>
- </net>
- <net code="223" name="/abc80bus/~C2">
- <node ref="X1" pin="A20"/>
- <node ref="U2" pin="16"/>
- <node ref="X2" pin="A20"/>
- </net>
- <net code="224" name="/abc80bus/~C3">
- <node ref="U2" pin="18"/>
- <node ref="X2" pin="A19"/>
- <node ref="X1" pin="A19"/>
- </net>
- <net code="225" name="/abc80bus/~C4">
- <node ref="X2" pin="A18"/>
- <node ref="X1" pin="A18"/>
- <node ref="U4" pin="11"/>
- </net>
- <net code="226" name="AD6">
- <node ref="U3" pin="3"/>
- <node ref="U13" pin="E1"/>
- </net>
- <net code="227" name="AD5">
- <node ref="U13" pin="F3"/>
- <node ref="U3" pin="4"/>
- </net>
- <net code="228" name="AD4">
- <node ref="U13" pin="G5"/>
- <node ref="U3" pin="5"/>
- </net>
- <net code="229" name="AD3">
- <node ref="U3" pin="6"/>
- <node ref="U13" pin="D1"/>
- </net>
- <net code="230" name="AD2">
- <node ref="U3" pin="7"/>
- <node ref="U13" pin="A9"/>
- <node ref="U13" pin="B9"/>
- </net>
- <net code="231" name="AD1">
- <node ref="U3" pin="8"/>
- <node ref="U13" pin="B8"/>
- </net>
- <net code="232" name="AD0">
- <node ref="U13" pin="A8"/>
- <node ref="U3" pin="9"/>
- </net>
- <net code="233" name="AD11">
- <node ref="U4" pin="8"/>
- <node ref="U13" pin="K1"/>
- </net>
- <net code="234" name="AD14">
- <node ref="U13" pin="N2"/>
- <node ref="U4" pin="3"/>
- </net>
- <net code="235" name="Net-(D28-Pad2)">
- <node ref="J1" pin="2"/>
- <node ref="D28" pin="2"/>
- </net>
- <net code="236" name="Net-(R6-Pad2)">
- <node ref="USB1" pin="10"/>
- <node ref="R6" pin="2"/>
- </net>
- <net code="237" name="Net-(F1-Pad2)">
- <node ref="USB1" pin="2"/>
- <node ref="U9" pin="5"/>
- <node ref="F1" pin="2"/>
- <node ref="USB1" pin="11"/>
- </net>
- <net code="238" name="Net-(USB1-Pad13)">
- <node ref="USB1" pin="13"/>
- </net>
- <net code="239" name="Net-(USB1-Pad3)">
- <node ref="USB1" pin="3"/>
- </net>
- <net code="240" name="Net-(R5-Pad2)">
- <node ref="R5" pin="2"/>
- <node ref="USB1" pin="4"/>
- </net>
- <net code="241" name="Net-(USB1-Pad5)">
- <node ref="USB1" pin="5"/>
- </net>
- <net code="242" name="Net-(U10-Pad16)">
- <node ref="U10" pin="16"/>
- </net>
- <net code="243" name="Net-(USB1-Pad8)">
- <node ref="USB1" pin="8"/>
- </net>
- <net code="244" name="Net-(USB1-Pad9)">
- <node ref="USB1" pin="9"/>
- </net>
- <net code="245" name="Net-(U10-Pad4)">
- <node ref="U10" pin="4"/>
- <node ref="U9" pin="3"/>
- </net>
- <net code="246" name="Net-(U10-Pad5)">
- <node ref="U10" pin="5"/>
- <node ref="U9" pin="1"/>
- </net>
- <net code="247" name="Net-(U9-Pad4)">
- <node ref="USB1" pin="6"/>
- <node ref="U9" pin="4"/>
- </net>
- <net code="248" name="Net-(U9-Pad6)">
- <node ref="U9" pin="6"/>
- <node ref="USB1" pin="7"/>
- </net>
- <net code="249" name="Net-(R7-Pad1)">
- <node ref="R7" pin="1"/>
- <node ref="U10" pin="9"/>
- </net>
- <net code="250" name="Net-(C39-Pad1)">
- <node ref="C39" pin="1"/>
- <node ref="R7" pin="2"/>
- <node ref="D19" pin="2"/>
- <node ref="F1" pin="1"/>
- <node ref="U10" pin="8"/>
- </net>
- <net code="251" name="Net-(U10-Pad27)">
- <node ref="U10" pin="27"/>
- </net>
- <net code="252" name="Net-(U10-Pad15)">
- <node ref="U10" pin="15"/>
- </net>
- <net code="253" name="Net-(U10-Pad14)">
- <node ref="U10" pin="14"/>
- </net>
- <net code="254" name="Net-(U10-Pad19)">
- <node ref="U10" pin="19"/>
- </net>
- <net code="255" name="Net-(U10-Pad18)">
- <node ref="U10" pin="18"/>
- </net>
- <net code="256" name="Net-(U10-Pad17)">
- <node ref="U10" pin="17"/>
- </net>
- <net code="257" name="Net-(U10-Pad20)">
- <node ref="U10" pin="20"/>
- </net>
- <net code="258" name="Net-(U10-Pad21)">
- <node ref="U10" pin="21"/>
- </net>
- <net code="259" name="Net-(U10-Pad22)">
- <node ref="U10" pin="22"/>
- </net>
- <net code="260" name="Net-(U10-Pad2)">
- <node ref="U10" pin="2"/>
- </net>
- <net code="261" name="Net-(U10-Pad1)">
- <node ref="U10" pin="1"/>
- </net>
- <net code="262" name="Net-(U10-Pad11)">
- <node ref="U10" pin="11"/>
- </net>
- <net code="263" name="Net-(U10-Pad12)">
- <node ref="U10" pin="12"/>
- </net>
- <net code="264" name="Net-(U10-Pad13)">
- <node ref="U10" pin="13"/>
- </net>
- <net code="265" name="Net-(U10-Pad10)">
- <node ref="U10" pin="10"/>
- </net>
- <net code="266" name="Net-(D2-Pad2)">
- <node ref="D2" pin="2"/>
- <node ref="U11" pin="7"/>
- </net>
- <net code="267" name="Net-(U11-Pad11)">
- <node ref="U11" pin="11"/>
- </net>
- <net code="268" name="Net-(U11-Pad10)">
- <node ref="U11" pin="10"/>
- </net>
- <net code="269" name="Net-(U11-Pad40)">
- <node ref="U11" pin="40"/>
- </net>
- <net code="270" name="Net-(D3-Pad2)">
- <node ref="D3" pin="2"/>
- <node ref="U11" pin="6"/>
- </net>
- <net code="271" name="Net-(D1-Pad2)">
- <node ref="D1" pin="2"/>
- <node ref="U11" pin="5"/>
- </net>
- <net code="272" name="Net-(C52-Pad1)">
- <node ref="F2" pin="1"/>
- <node ref="C52" pin="1"/>
- <node ref="D27" pin="2"/>
- </net>
- <net code="273" name="Net-(C53-Pad1)">
- <node ref="R1" pin="2"/>
- <node ref="C53" pin="1"/>
- <node ref="R15" pin="1"/>
- </net>
- <net code="274" name="ESP32_CS2">
- <node ref="J4" pin="19"/>
- <node ref="U11" pin="24"/>
- </net>
- <net code="275" name="ESP32_CS1">
- <node ref="U11" pin="39"/>
- <node ref="J4" pin="23"/>
- </net>
- <net code="276" name="ESP32_EN">
- <node ref="U11" pin="41"/>
- <node ref="R15" pin="2"/>
- <node ref="J4" pin="28"/>
- </net>
- <net code="277" name="Net-(D2-Pad1)">
- <node ref="R17" pin="1"/>
- <node ref="D2" pin="1"/>
- </net>
- <net code="278" name="Net-(D1-Pad1)">
- <node ref="D1" pin="1"/>
- <node ref="R16" pin="1"/>
- </net>
- <net code="279" name="ESP32_SDA">
- <node ref="U11" pin="27"/>
- <node ref="R20" pin="2"/>
- <node ref="J4" pin="20"/>
- </net>
- <net code="280" name="ESP32_SCL">
- <node ref="R19" pin="2"/>
- <node ref="U11" pin="28"/>
- <node ref="J4" pin="21"/>
- </net>
- <net code="281" name="ESP32_CS0">
- <node ref="U11" pin="32"/>
- <node ref="J4" pin="25"/>
- </net>
- <net code="282" name="ESP32_MISO">
- <node ref="U11" pin="31"/>
- <node ref="J4" pin="26"/>
- </net>
- <net code="283" name="Net-(D3-Pad1)">
- <node ref="R18" pin="1"/>
- <node ref="D3" pin="1"/>
- </net>
- <net code="284" name="ESP32_TDO">
- <node ref="U11" pin="34"/>
- <node ref="J4" pin="36"/>
- </net>
- <net code="285" name="/ESP32/USB_D-">
- <node ref="U11" pin="22"/>
- <node ref="U15" pin="1"/>
- </net>
- <net code="286" name="/ESP32/USB_D+">
- <node ref="U11" pin="23"/>
- <node ref="U15" pin="3"/>
- </net>
- <net code="287" name="ESP32_RXD">
- <node ref="J4" pin="29"/>
- <node ref="U11" pin="38"/>
- </net>
- <net code="288" name="ESP32_TXD">
- <node ref="U11" pin="37"/>
- <node ref="J4" pin="27"/>
- </net>
- <net code="289" name="ESP32_TMS">
- <node ref="U11" pin="36"/>
- <node ref="J4" pin="32"/>
- </net>
- <net code="290" name="ESP32_TDI">
- <node ref="U11" pin="35"/>
- <node ref="J4" pin="38"/>
- </net>
- <net code="291" name="ESP32_TCK">
- <node ref="J4" pin="34"/>
- <node ref="U11" pin="33"/>
- </net>
- <net code="292" name="ESP32_SCK">
- <node ref="U11" pin="30"/>
- <node ref="J4" pin="24"/>
- </net>
- <net code="293" name="ESP32_MOSI">
- <node ref="U11" pin="29"/>
- <node ref="J4" pin="22"/>
- </net>
- <net code="294" name="Net-(F2-Pad2)">
- <node ref="USB2" pin="11"/>
- <node ref="USB2" pin="2"/>
- <node ref="F2" pin="2"/>
- <node ref="U15" pin="5"/>
- </net>
- <net code="295" name="Net-(U11-Pad25)">
- <node ref="U11" pin="25"/>
- </net>
- <net code="296" name="Net-(USB2-Pad13)">
- <node ref="USB2" pin="13"/>
- </net>
- <net code="297" name="Net-(U15-Pad6)">
- <node ref="USB2" pin="7"/>
- <node ref="U15" pin="6"/>
- </net>
- <net code="298" name="Net-(USB2-Pad9)">
- <node ref="USB2" pin="9"/>
- </net>
- <net code="299" name="Net-(USB2-Pad8)">
- <node ref="USB2" pin="8"/>
- </net>
- <net code="300" name="Net-(U15-Pad4)">
- <node ref="USB2" pin="6"/>
- <node ref="U15" pin="4"/>
- </net>
- <net code="301" name="Net-(USB2-Pad5)">
- <node ref="USB2" pin="5"/>
- </net>
- <net code="302" name="Net-(R3-Pad2)">
- <node ref="USB2" pin="4"/>
- <node ref="R3" pin="2"/>
- </net>
- <net code="303" name="Net-(USB2-Pad3)">
- <node ref="USB2" pin="3"/>
- </net>
- <net code="304" name="Net-(R4-Pad2)">
- <node ref="USB2" pin="10"/>
- <node ref="R4" pin="2"/>
- </net>
- <net code="305" name="Net-(BT1-Pad1)">
- <node ref="BT1" pin="1"/>
- <node ref="U12" pin="14"/>
- </net>
- <net code="306" name="Net-(U12-Pad4)">
- <node ref="U12" pin="4"/>
- </net>
- <net code="307" name="+2V5">
- <node ref="C41" pin="1"/>
- <node ref="U13" pin="F12"/>
- <node ref="C73" pin="1"/>
- <node ref="U16" pin="2"/>
- <node ref="C71" pin="1"/>
- <node ref="C43" pin="1"/>
- <node ref="C42" pin="1"/>
- <node ref="U13" pin="K14"/>
- <node ref="U13" pin="L12"/>
- <node ref="U13" pin="L5"/>
- <node ref="U13" pin="F5"/>
- <node ref="U13" pin="M14"/>
- <node ref="C9" pin="1"/>
- <node ref="C59" pin="1"/>
- <node ref="C32" pin="1"/>
- <node ref="C15" pin="1"/>
- </net>
- <net code="308" name="+1V2">
- <node ref="C23" pin="1"/>
- <node ref="U13" pin="D4"/>
- <node ref="U13" pin="F11"/>
- <node ref="U13" pin="D13"/>
- <node ref="C20" pin="1"/>
- <node ref="C18" pin="1"/>
- <node ref="C17" pin="1"/>
- <node ref="C1" pin="1"/>
- <node ref="C19" pin="1"/>
- <node ref="U13" pin="G9"/>
- <node ref="C63" pin="1"/>
- <node ref="U13" pin="F7"/>
- <node ref="U13" pin="G10"/>
- <node ref="U13" pin="G6"/>
- <node ref="U13" pin="G8"/>
- <node ref="U13" pin="N4"/>
- <node ref="C66" pin="1"/>
- <node ref="U13" pin="H11"/>
- <node ref="U13" pin="H6"/>
- <node ref="U13" pin="J6"/>
- <node ref="C12" pin="1"/>
- <node ref="U13" pin="G7"/>
- <node ref="C72" pin="1"/>
- <node ref="U1" pin="2"/>
- <node ref="C74" pin="1"/>
- <node ref="C62" pin="1"/>
- <node ref="C50" pin="1"/>
- <node ref="C44" pin="1"/>
- <node ref="U13" pin="K11"/>
- <node ref="U13" pin="K7"/>
- <node ref="U13" pin="N13"/>
- </net>
- <net code="309" name="Net-(J4-Pad6)">
- <node ref="J4" pin="6"/>
- </net>
- <net code="310" name="Net-(J4-Pad8)">
- <node ref="J4" pin="8"/>
- </net>
- <net code="311" name="Net-(J4-Pad40)">
- <node ref="J4" pin="40"/>
- </net>
- <net code="312" name="Net-(J2-Pad19)">
- <node ref="J2" pin="19"/>
- <node ref="Q7" pin="3"/>
- <node ref="R47" pin="1"/>
- </net>
- <net code="313" name="Net-(C81-Pad1)">
- <node ref="J2" pin="10"/>
- <node ref="C81" pin="1"/>
- </net>
- <net code="314" name="Net-(C80-Pad1)">
- <node ref="J2" pin="9"/>
- <node ref="C80" pin="1"/>
- </net>
- <net code="315" name="Net-(C79-Pad1)">
- <node ref="C79" pin="1"/>
- <node ref="J2" pin="7"/>
- </net>
- <net code="316" name="Net-(J2-Pad13)">
- <node ref="J2" pin="13"/>
- </net>
- <net code="317" name="Net-(J2-PadSH)">
- <node ref="J2" pin="SH"/>
- </net>
- <net code="318" name="Net-(C76-Pad1)">
- <node ref="J2" pin="3"/>
- <node ref="C76" pin="1"/>
- </net>
- <net code="319" name="Net-(J2-Pad14)">
- <node ref="J2" pin="14"/>
- </net>
- <net code="320" name="Net-(C82-Pad1)">
- <node ref="C82" pin="1"/>
- <node ref="J2" pin="12"/>
- </net>
- <net code="321" name="Net-(J2-Pad11)">
- <node ref="J2" pin="11"/>
- </net>
- <net code="322" name="Net-(C75-Pad1)">
- <node ref="C75" pin="1"/>
- <node ref="J2" pin="1"/>
- </net>
- <net code="323" name="Net-(C77-Pad1)">
- <node ref="J2" pin="4"/>
- <node ref="C77" pin="1"/>
- </net>
- <net code="324" name="Net-(C78-Pad1)">
- <node ref="J2" pin="6"/>
- <node ref="C78" pin="1"/>
- </net>
- <net code="330" name="DD9">
- <node ref="U13" pin="T5"/>
- <node ref="U5" pin="19"/>
- </net>
- <net code="331" name="DD8">
- <node ref="U13" pin="R5"/>
- <node ref="U5" pin="1"/>
- </net>
- <net code="332" name="DD7">
- <node ref="U5" pin="2"/>
- <node ref="U13" pin="T4"/>
- </net>
- <net code="333" name="DD6">
- <node ref="U5" pin="3"/>
- <node ref="U13" pin="R4"/>
- </net>
- <net code="334" name="DD5">
- <node ref="U13" pin="T3"/>
- <node ref="U5" pin="4"/>
- </net>
- <net code="335" name="DD4">
- <node ref="U5" pin="5"/>
- <node ref="U13" pin="R3"/>
- </net>
- <net code="336" name="DD3">
- <node ref="U13" pin="T2"/>
- <node ref="U5" pin="6"/>
- </net>
- <net code="337" name="DD2">
- <node ref="U13" pin="N5"/>
- <node ref="U5" pin="7"/>
- </net>
- <net code="338" name="DD1">
- <node ref="U13" pin="M6"/>
- <node ref="U5" pin="8"/>
- </net>
- <net code="339" name="DD0">
- <node ref="U13" pin="P3"/>
- <node ref="U5" pin="9"/>
- </net>
- </nets>
- </export>
|