max80.xml 175 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <export version="D">
  3. <design>
  4. <source>/home/pm/project/abc80/max80/max80.sch</source>
  5. <date>mån 29 nov 2021 17:52:05</date>
  6. <tool>Eeschema 5.99.0+really5.1.10+dfsg1-1</tool>
  7. <sheet number="1" name="/" tstamps="/">
  8. <title_block>
  9. <title>MAX80</title>
  10. <company>Peter o Per</company>
  11. <rev>0.01</rev>
  12. <date>2021-02-22</date>
  13. <source>max80.sch</source>
  14. <comment number="1" value=""/>
  15. <comment number="2" value=""/>
  16. <comment number="3" value=""/>
  17. <comment number="4" value=""/>
  18. </title_block>
  19. </sheet>
  20. <sheet number="2" name="/abc80bus/" tstamps="/6013B380/">
  21. <title_block>
  22. <title>MAX80</title>
  23. <company>Peter o Per</company>
  24. <rev>0.02</rev>
  25. <date>2021-11-07</date>
  26. <source>abc80bus.sch</source>
  27. <comment number="1" value=""/>
  28. <comment number="2" value=""/>
  29. <comment number="3" value=""/>
  30. <comment number="4" value=""/>
  31. </title_block>
  32. </sheet>
  33. <sheet number="3" name="/POWER/" tstamps="/6013A59C/">
  34. <title_block>
  35. <title>MAX80</title>
  36. <company>Peter o Per</company>
  37. <rev>0.01</rev>
  38. <date>2021-02-22</date>
  39. <source>power.sch</source>
  40. <comment number="1" value=""/>
  41. <comment number="2" value=""/>
  42. <comment number="3" value=""/>
  43. <comment number="4" value=""/>
  44. </title_block>
  45. </sheet>
  46. <sheet number="4" name="/ESP32/" tstamps="/602159BB/">
  47. <title_block>
  48. <title>MAX80</title>
  49. <company>Peter o Per</company>
  50. <rev>0.01</rev>
  51. <date>2021-02-22</date>
  52. <source>esp32.sch</source>
  53. <comment number="1" value=""/>
  54. <comment number="2" value=""/>
  55. <comment number="3" value=""/>
  56. <comment number="4" value=""/>
  57. </title_block>
  58. </sheet>
  59. <sheet number="5" name="/RTC/" tstamps="/6023577B/">
  60. <title_block>
  61. <title>MAX80</title>
  62. <company>Peter o Per</company>
  63. <rev>0.01</rev>
  64. <date>2021-02-22</date>
  65. <source>rtc.sch</source>
  66. <comment number="1" value=""/>
  67. <comment number="2" value=""/>
  68. <comment number="3" value=""/>
  69. <comment number="4" value=""/>
  70. </title_block>
  71. </sheet>
  72. <sheet number="6" name="/ADAPTER_CONN/" tstamps="/60B94961/">
  73. <title_block>
  74. <title>MAX80</title>
  75. <company>Peter o Per</company>
  76. <rev>0.01</rev>
  77. <date>2021-02-22</date>
  78. <source>adapter_conn.sch</source>
  79. <comment number="1" value=""/>
  80. <comment number="2" value=""/>
  81. <comment number="3" value=""/>
  82. <comment number="4" value=""/>
  83. </title_block>
  84. </sheet>
  85. <sheet number="7" name="/Power FPGA/" tstamps="/604B2191/">
  86. <title_block>
  87. <title/>
  88. <company/>
  89. <rev/>
  90. <date/>
  91. <source>power_fpga.sch</source>
  92. <comment number="1" value=""/>
  93. <comment number="2" value=""/>
  94. <comment number="3" value=""/>
  95. <comment number="4" value=""/>
  96. </title_block>
  97. </sheet>
  98. <sheet number="8" name="/HDMI/" tstamps="/650A9AE9/">
  99. <title_block>
  100. <title/>
  101. <company/>
  102. <rev/>
  103. <date/>
  104. <source>HDMI.sch</source>
  105. <comment number="1" value=""/>
  106. <comment number="2" value=""/>
  107. <comment number="3" value=""/>
  108. <comment number="4" value=""/>
  109. </title_block>
  110. </sheet>
  111. <sheet number="9" name="/USB/" tstamps="/601569F0/">
  112. <title_block>
  113. <title>MAX80</title>
  114. <company>Peter o Per</company>
  115. <rev>0.01</rev>
  116. <date>2021-02-22</date>
  117. <source>usb.sch</source>
  118. <comment number="1" value=""/>
  119. <comment number="2" value=""/>
  120. <comment number="3" value=""/>
  121. <comment number="4" value=""/>
  122. </title_block>
  123. </sheet>
  124. </design>
  125. <components>
  126. <comp ref="OSC1">
  127. <value>Seiko Epson Q33310F70024100</value>
  128. <footprint>Oscillator:Oscillator_SMD_Abracon_ASE-4Pin_3.2x2.5mm</footprint>
  129. <fields>
  130. <field name="LCSC">C45448</field>
  131. </fields>
  132. <libsource lib="Oscillator" part="ASE-xxxMHz" description="3.3V CMOS SMD Crystal Clock Oscillator, Abracon"/>
  133. <sheetpath names="/" tstamps="/"/>
  134. <tstamp>57BABF34</tstamp>
  135. </comp>
  136. <comp ref="J3">
  137. <value>Micro_SD_Card DM3AT-SF-PEJM5</value>
  138. <footprint>max80:microSD_HC_Hirose_DM3AT-SF-PEJM5</footprint>
  139. <datasheet>http://katalog.we-online.de/em/datasheet/693072010801.pdf</datasheet>
  140. <fields>
  141. <field name="LCSC">C114218</field>
  142. </fields>
  143. <libsource lib="Connector" part="Micro_SD_Card_Det_Hirose_DM3AT" description="Micro SD Card Socket with card detection pins"/>
  144. <sheetpath names="/" tstamps="/"/>
  145. <tstamp>6022B125</tstamp>
  146. </comp>
  147. <comp ref="C48">
  148. <value>100nF</value>
  149. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  150. <datasheet>~</datasheet>
  151. <fields>
  152. <field name="LCSC">C1525</field>
  153. </fields>
  154. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  155. <sheetpath names="/" tstamps="/"/>
  156. <tstamp>602D0725</tstamp>
  157. </comp>
  158. <comp ref="C49">
  159. <value>100nF</value>
  160. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  161. <datasheet>~</datasheet>
  162. <fields>
  163. <field name="LCSC">C1525</field>
  164. </fields>
  165. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  166. <sheetpath names="/" tstamps="/"/>
  167. <tstamp>602D360C</tstamp>
  168. </comp>
  169. <comp ref="C51">
  170. <value>4.7uF</value>
  171. <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
  172. <datasheet>~</datasheet>
  173. <fields>
  174. <field name="LCSC">C19666</field>
  175. </fields>
  176. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  177. <sheetpath names="/" tstamps="/"/>
  178. <tstamp>60B62C42</tstamp>
  179. </comp>
  180. <comp ref="D17">
  181. <value>LED-Y</value>
  182. <footprint>LED_SMD:LED_0603_1608Metric</footprint>
  183. <datasheet>~</datasheet>
  184. <fields>
  185. <field name="LCSC">C72038</field>
  186. </fields>
  187. <libsource lib="Device" part="LED" description="Light emitting diode"/>
  188. <sheetpath names="/" tstamps="/"/>
  189. <tstamp>6068751D</tstamp>
  190. </comp>
  191. <comp ref="R29">
  192. <value>1k</value>
  193. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  194. <datasheet>~</datasheet>
  195. <fields>
  196. <field name="LCSC">C11702</field>
  197. </fields>
  198. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  199. <sheetpath names="/" tstamps="/"/>
  200. <tstamp>6068836E</tstamp>
  201. </comp>
  202. <comp ref="D22">
  203. <value>LED-G</value>
  204. <footprint>LED_SMD:LED_0603_1608Metric</footprint>
  205. <datasheet>~</datasheet>
  206. <fields>
  207. <field name="LCSC">C72043</field>
  208. </fields>
  209. <libsource lib="Device" part="LED" description="Light emitting diode"/>
  210. <sheetpath names="/" tstamps="/"/>
  211. <tstamp>606A9A91</tstamp>
  212. </comp>
  213. <comp ref="R30">
  214. <value>820</value>
  215. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  216. <datasheet>~</datasheet>
  217. <fields>
  218. <field name="LCSC">C23253</field>
  219. </fields>
  220. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  221. <sheetpath names="/" tstamps="/"/>
  222. <tstamp>606A9C22</tstamp>
  223. </comp>
  224. <comp ref="D23">
  225. <value>LED-B</value>
  226. <footprint>LED_SMD:LED_0603_1608Metric</footprint>
  227. <datasheet>~</datasheet>
  228. <fields>
  229. <field name="LCSC">C72041</field>
  230. </fields>
  231. <libsource lib="Device" part="LED" description="Light emitting diode"/>
  232. <sheetpath names="/" tstamps="/"/>
  233. <tstamp>606B64A5</tstamp>
  234. </comp>
  235. <comp ref="R31">
  236. <value>1k</value>
  237. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  238. <datasheet>~</datasheet>
  239. <fields>
  240. <field name="LCSC">C11702</field>
  241. </fields>
  242. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  243. <sheetpath names="/" tstamps="/"/>
  244. <tstamp>606B666A</tstamp>
  245. </comp>
  246. <comp ref="C56">
  247. <value>100nF</value>
  248. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  249. <datasheet>~</datasheet>
  250. <fields>
  251. <field name="LCSC">C1525</field>
  252. </fields>
  253. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  254. <sheetpath names="/" tstamps="/"/>
  255. <tstamp>6091A70C</tstamp>
  256. </comp>
  257. <comp ref="C46">
  258. <value>100nF</value>
  259. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  260. <datasheet>~</datasheet>
  261. <fields>
  262. <field name="LCSC">C1525</field>
  263. </fields>
  264. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  265. <sheetpath names="/" tstamps="/"/>
  266. <tstamp>60932F0E</tstamp>
  267. </comp>
  268. <comp ref="C45">
  269. <value>100nF</value>
  270. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  271. <datasheet>~</datasheet>
  272. <fields>
  273. <field name="LCSC">C1525</field>
  274. </fields>
  275. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  276. <sheetpath names="/" tstamps="/"/>
  277. <tstamp>6094CE83</tstamp>
  278. </comp>
  279. <comp ref="C34">
  280. <value>100nF</value>
  281. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  282. <datasheet>~</datasheet>
  283. <fields>
  284. <field name="LCSC">C1525</field>
  285. </fields>
  286. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  287. <sheetpath names="/" tstamps="/"/>
  288. <tstamp>6097D4FE</tstamp>
  289. </comp>
  290. <comp ref="C33">
  291. <value>100nF</value>
  292. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  293. <datasheet>~</datasheet>
  294. <fields>
  295. <field name="LCSC">C1525</field>
  296. </fields>
  297. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  298. <sheetpath names="/" tstamps="/"/>
  299. <tstamp>60997E09</tstamp>
  300. </comp>
  301. <comp ref="U13">
  302. <value>EP4CE15F17C8N</value>
  303. <footprint>Package_BGA:BGA-256_17.0x17.0mm_Layout16x16_P1.0mm_Ball0.5mm_Pad0.4mm_NSMD</footprint>
  304. <libsource lib="max80" part="EP4CE15F17C8N" description=""/>
  305. <sheetpath names="/" tstamps="/"/>
  306. <tstamp>6055A8B6</tstamp>
  307. </comp>
  308. <comp ref="R38">
  309. <value>10k</value>
  310. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  311. <datasheet>~</datasheet>
  312. <fields>
  313. <field name="LCSC">C25744</field>
  314. </fields>
  315. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  316. <sheetpath names="/" tstamps="/"/>
  317. <tstamp>604A56EE</tstamp>
  318. </comp>
  319. <comp ref="R14">
  320. <value>2.2k</value>
  321. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  322. <datasheet>~</datasheet>
  323. <fields>
  324. <field name="LCSC">C25879</field>
  325. </fields>
  326. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  327. <sheetpath names="/" tstamps="/"/>
  328. <tstamp>60A915FC</tstamp>
  329. </comp>
  330. <comp ref="R12">
  331. <value>2.2k</value>
  332. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  333. <datasheet>~</datasheet>
  334. <fields>
  335. <field name="LCSC">C25879</field>
  336. </fields>
  337. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  338. <sheetpath names="/" tstamps="/"/>
  339. <tstamp>60A90B03</tstamp>
  340. </comp>
  341. <comp ref="R40">
  342. <value>10k</value>
  343. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  344. <datasheet>~</datasheet>
  345. <fields>
  346. <field name="LCSC">C25744</field>
  347. </fields>
  348. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  349. <sheetpath names="/" tstamps="/"/>
  350. <tstamp>605E3046</tstamp>
  351. </comp>
  352. <comp ref="R39">
  353. <value>10k</value>
  354. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  355. <datasheet>~</datasheet>
  356. <fields>
  357. <field name="LCSC">C25744</field>
  358. </fields>
  359. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  360. <sheetpath names="/" tstamps="/"/>
  361. <tstamp>605E3051</tstamp>
  362. </comp>
  363. <comp ref="R42">
  364. <value>1k</value>
  365. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  366. <datasheet>~</datasheet>
  367. <fields>
  368. <field name="LCSC">C11702</field>
  369. </fields>
  370. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  371. <sheetpath names="/" tstamps="/"/>
  372. <tstamp>60654523</tstamp>
  373. </comp>
  374. <comp ref="R41">
  375. <value>27</value>
  376. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  377. <datasheet>~</datasheet>
  378. <fields>
  379. <field name="LCSC">C22966</field>
  380. </fields>
  381. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  382. <sheetpath names="/" tstamps="/"/>
  383. <tstamp>607B9EC1</tstamp>
  384. </comp>
  385. <comp ref="C2">
  386. <value>100nF</value>
  387. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  388. <datasheet>~</datasheet>
  389. <fields>
  390. <field name="LCSC">C1525</field>
  391. </fields>
  392. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  393. <sheetpath names="/" tstamps="/"/>
  394. <tstamp>6082407C</tstamp>
  395. </comp>
  396. <comp ref="U7">
  397. <value>W25Q128JVS</value>
  398. <footprint>max80:SOIC-8_5.23x5.23mm_P1.27mm</footprint>
  399. <datasheet>http://www.winbond.com/resource-files/w25q128jv_dtr%20revc%2003272018%20plus.pdf</datasheet>
  400. <fields>
  401. <field name="LCSC">C97521</field>
  402. </fields>
  403. <libsource lib="Memory_Flash" part="W25Q128JVS" description="128Mb Serial Flash Memory, Standard/Dual/Quad SPI, SOIC-8"/>
  404. <sheetpath names="/" tstamps="/"/>
  405. <tstamp>6035B91A</tstamp>
  406. </comp>
  407. <comp ref="R37">
  408. <value>10k</value>
  409. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  410. <datasheet>~</datasheet>
  411. <fields>
  412. <field name="LCSC">C25744</field>
  413. </fields>
  414. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  415. <sheetpath names="/" tstamps="/"/>
  416. <tstamp>603DBC0D</tstamp>
  417. </comp>
  418. <comp ref="R13">
  419. <value>10k</value>
  420. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  421. <datasheet>~</datasheet>
  422. <fields>
  423. <field name="LCSC">C25744</field>
  424. </fields>
  425. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  426. <sheetpath names="/" tstamps="/"/>
  427. <tstamp>603E59B4</tstamp>
  428. </comp>
  429. <comp ref="U6">
  430. <value>MT48LC16M16A2P-6A</value>
  431. <footprint>Package_SO:TSOP-II-54_22.2x10.16mm_P0.8mm</footprint>
  432. <datasheet>https://www.mouser.se/datasheet/2/671/256Mb_sdr-1282350.pdf</datasheet>
  433. <fields>
  434. <field name="LCSC">C41881</field>
  435. </fields>
  436. <libsource lib="max80" part="MT48LC16M16A2P-6A" description=""/>
  437. <sheetpath names="/" tstamps="/"/>
  438. <tstamp>604F9283</tstamp>
  439. </comp>
  440. <comp ref="R24">
  441. <value>10k</value>
  442. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  443. <datasheet>~</datasheet>
  444. <fields>
  445. <field name="LCSC">C25744</field>
  446. </fields>
  447. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  448. <sheetpath names="/" tstamps="/"/>
  449. <tstamp>66F72E4D</tstamp>
  450. </comp>
  451. <comp ref="D4">
  452. <value>1N5819W</value>
  453. <footprint>Diode_SMD:D_SOD-123</footprint>
  454. <datasheet>~</datasheet>
  455. <fields>
  456. <field name="LCSC">C963381</field>
  457. </fields>
  458. <libsource lib="Device" part="D_Schottky" description="Schottky diode"/>
  459. <sheetpath names="/" tstamps="/"/>
  460. <tstamp>60D15E22</tstamp>
  461. </comp>
  462. <comp ref="D7">
  463. <value>1N5819W</value>
  464. <footprint>Diode_SMD:D_SOD-123</footprint>
  465. <datasheet>~</datasheet>
  466. <fields>
  467. <field name="LCSC">C963381</field>
  468. </fields>
  469. <libsource lib="Device" part="D_Schottky" description="Schottky diode"/>
  470. <sheetpath names="/" tstamps="/"/>
  471. <tstamp>60D4872C</tstamp>
  472. </comp>
  473. <comp ref="D6">
  474. <value>1N5819W</value>
  475. <footprint>Diode_SMD:D_SOD-123</footprint>
  476. <datasheet>~</datasheet>
  477. <fields>
  478. <field name="LCSC">C963381</field>
  479. </fields>
  480. <libsource lib="Device" part="D_Schottky" description="Schottky diode"/>
  481. <sheetpath names="/" tstamps="/"/>
  482. <tstamp>60D4963D</tstamp>
  483. </comp>
  484. <comp ref="D5">
  485. <value>1N5819W</value>
  486. <footprint>Diode_SMD:D_SOD-123</footprint>
  487. <datasheet>~</datasheet>
  488. <fields>
  489. <field name="LCSC">C963381</field>
  490. </fields>
  491. <libsource lib="Device" part="D_Schottky" description="Schottky diode"/>
  492. <sheetpath names="/" tstamps="/"/>
  493. <tstamp>60E7A93B</tstamp>
  494. </comp>
  495. <comp ref="C83">
  496. <value>100nF</value>
  497. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  498. <datasheet>~</datasheet>
  499. <fields>
  500. <field name="LCSC">C1525</field>
  501. </fields>
  502. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  503. <sheetpath names="/" tstamps="/"/>
  504. <tstamp>60FC8574</tstamp>
  505. </comp>
  506. <comp ref="R33">
  507. <value>DNP</value>
  508. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  509. <datasheet>~</datasheet>
  510. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  511. <sheetpath names="/" tstamps="/"/>
  512. <tstamp>61F81F63</tstamp>
  513. </comp>
  514. <comp ref="D8">
  515. <value>DNP-B</value>
  516. <footprint>LED_SMD:LED_0603_1608Metric</footprint>
  517. <datasheet>~</datasheet>
  518. <libsource lib="Device" part="LED" description="Light emitting diode"/>
  519. <sheetpath names="/" tstamps="/"/>
  520. <tstamp>61B7F4F6</tstamp>
  521. </comp>
  522. <comp ref="D10">
  523. <value>DNP-B</value>
  524. <footprint>LED_SMD:LED_0603_1608Metric</footprint>
  525. <datasheet>~</datasheet>
  526. <libsource lib="Device" part="LED" description="Light emitting diode"/>
  527. <sheetpath names="/" tstamps="/"/>
  528. <tstamp>61B8018A</tstamp>
  529. </comp>
  530. <comp ref="D9">
  531. <value>DNP-Y</value>
  532. <footprint>LED_SMD:LED_0603_1608Metric</footprint>
  533. <datasheet>~</datasheet>
  534. <libsource lib="Device" part="LED" description="Light emitting diode"/>
  535. <sheetpath names="/" tstamps="/"/>
  536. <tstamp>61B801A0</tstamp>
  537. </comp>
  538. <comp ref="R22">
  539. <value>100k</value>
  540. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  541. <datasheet>~</datasheet>
  542. <fields>
  543. <field name="LCSC">C25741</field>
  544. </fields>
  545. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  546. <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
  547. <tstamp>612BA053</tstamp>
  548. </comp>
  549. <comp ref="R23">
  550. <value>100k</value>
  551. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  552. <datasheet>~</datasheet>
  553. <fields>
  554. <field name="LCSC">C25741</field>
  555. </fields>
  556. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  557. <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
  558. <tstamp>612BA99E</tstamp>
  559. </comp>
  560. <comp ref="Q3">
  561. <value>NM-AO3400A</value>
  562. <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
  563. <datasheet>http://www.aosmd.com/pdfs/datasheet/AO3400A.pdf</datasheet>
  564. <fields>
  565. <field name="LCSC">NM</field>
  566. </fields>
  567. <libsource lib="Transistor_FET" part="AO3400A" description="30V Vds, 5.7A Id, N-Channel MOSFET, SOT-23"/>
  568. <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
  569. <tstamp>6032D111</tstamp>
  570. </comp>
  571. <comp ref="Q2">
  572. <value>NM-AO3400A</value>
  573. <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
  574. <datasheet>http://www.aosmd.com/pdfs/datasheet/AO3400A.pdf</datasheet>
  575. <fields>
  576. <field name="LCSC">NM</field>
  577. </fields>
  578. <libsource lib="Transistor_FET" part="AO3400A" description="30V Vds, 5.7A Id, N-Channel MOSFET, SOT-23"/>
  579. <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
  580. <tstamp>603658C4</tstamp>
  581. </comp>
  582. <comp ref="X1">
  583. <value>ABC-Bus</value>
  584. <footprint>max80:MAB64B</footprint>
  585. <libsource lib="max80" part="ABC-Bus" description=""/>
  586. <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
  587. <tstamp>6011F2D2</tstamp>
  588. </comp>
  589. <comp ref="Q4">
  590. <value>NM-AO3400A</value>
  591. <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
  592. <datasheet>http://www.aosmd.com/pdfs/datasheet/AO3400A.pdf</datasheet>
  593. <fields>
  594. <field name="LCSC">NM</field>
  595. </fields>
  596. <libsource lib="Transistor_FET" part="AO3400A" description="30V Vds, 5.7A Id, N-Channel MOSFET, SOT-23"/>
  597. <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
  598. <tstamp>60285B62</tstamp>
  599. </comp>
  600. <comp ref="J1">
  601. <value>Conn_01x02_Male</value>
  602. <footprint>Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Horizontal</footprint>
  603. <datasheet>~</datasheet>
  604. <libsource lib="Connector" part="Conn_01x02_Male" description="Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"/>
  605. <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
  606. <tstamp>603FB6A3</tstamp>
  607. </comp>
  608. <comp ref="D28">
  609. <value>1N5819W</value>
  610. <footprint>Diode_SMD:D_SOD-123</footprint>
  611. <datasheet>~</datasheet>
  612. <fields>
  613. <field name="LCSC">C963381</field>
  614. </fields>
  615. <libsource lib="Device" part="D_Schottky" description="Schottky diode"/>
  616. <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
  617. <tstamp>603612AB</tstamp>
  618. </comp>
  619. <comp ref="C3">
  620. <value>100nF</value>
  621. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  622. <datasheet>~</datasheet>
  623. <fields>
  624. <field name="LCSC">C1525</field>
  625. </fields>
  626. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  627. <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
  628. <tstamp>60EF0ABB</tstamp>
  629. </comp>
  630. <comp ref="U3">
  631. <value>74HC245</value>
  632. <footprint>Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm</footprint>
  633. <datasheet>http://www.ti.com/lit/gpn/sn74HC245</datasheet>
  634. <fields>
  635. <field name="LCSC">C5626</field>
  636. </fields>
  637. <libsource lib="74xx" part="74HC245" description="Octal BUS Transceivers, 3-State outputs"/>
  638. <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
  639. <tstamp>61F93DEE</tstamp>
  640. </comp>
  641. <comp ref="C5">
  642. <value>100nF</value>
  643. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  644. <datasheet>~</datasheet>
  645. <fields>
  646. <field name="LCSC">C1525</field>
  647. </fields>
  648. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  649. <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
  650. <tstamp>62149379</tstamp>
  651. </comp>
  652. <comp ref="C4">
  653. <value>100nF</value>
  654. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  655. <datasheet>~</datasheet>
  656. <fields>
  657. <field name="LCSC">C1525</field>
  658. </fields>
  659. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  660. <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
  661. <tstamp>62157028</tstamp>
  662. </comp>
  663. <comp ref="U5">
  664. <value>74HC245</value>
  665. <footprint>Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm</footprint>
  666. <datasheet>http://www.ti.com/lit/gpn/sn74HC245</datasheet>
  667. <fields>
  668. <field name="LCSC">C5626</field>
  669. </fields>
  670. <libsource lib="74xx" part="74HC245" description="Octal BUS Transceivers, 3-State outputs"/>
  671. <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
  672. <tstamp>624CCCE1</tstamp>
  673. </comp>
  674. <comp ref="U4">
  675. <value>74HC245</value>
  676. <footprint>Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm</footprint>
  677. <datasheet>http://www.ti.com/lit/gpn/sn74HC245</datasheet>
  678. <fields>
  679. <field name="LCSC">C5626</field>
  680. </fields>
  681. <libsource lib="74xx" part="74HC245" description="Octal BUS Transceivers, 3-State outputs"/>
  682. <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
  683. <tstamp>6208BF8B</tstamp>
  684. </comp>
  685. <comp ref="C7">
  686. <value>100nF</value>
  687. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  688. <datasheet>~</datasheet>
  689. <fields>
  690. <field name="LCSC">C1525</field>
  691. </fields>
  692. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  693. <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
  694. <tstamp>6270830F</tstamp>
  695. </comp>
  696. <comp ref="C6">
  697. <value>100nF</value>
  698. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  699. <datasheet>~</datasheet>
  700. <fields>
  701. <field name="LCSC">C1525</field>
  702. </fields>
  703. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  704. <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
  705. <tstamp>627085BD</tstamp>
  706. </comp>
  707. <comp ref="U14">
  708. <value>74HC245</value>
  709. <footprint>Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm</footprint>
  710. <datasheet>http://www.ti.com/lit/gpn/sn74HC245</datasheet>
  711. <fields>
  712. <field name="LCSC">C5626</field>
  713. </fields>
  714. <libsource lib="74xx" part="74HC245" description="Octal BUS Transceivers, 3-State outputs"/>
  715. <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
  716. <tstamp>6277D5D4</tstamp>
  717. </comp>
  718. <comp ref="Q5">
  719. <value>NM-AO3400A</value>
  720. <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
  721. <datasheet>http://www.aosmd.com/pdfs/datasheet/AO3400A.pdf</datasheet>
  722. <fields>
  723. <field name="LCSC">NM</field>
  724. </fields>
  725. <libsource lib="Transistor_FET" part="AO3400A" description="30V Vds, 5.7A Id, N-Channel MOSFET, SOT-23"/>
  726. <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
  727. <tstamp>66CDB068</tstamp>
  728. </comp>
  729. <comp ref="Q1">
  730. <value>NM-AO3400A</value>
  731. <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
  732. <datasheet>http://www.aosmd.com/pdfs/datasheet/AO3400A.pdf</datasheet>
  733. <fields>
  734. <field name="LCSC">NM</field>
  735. </fields>
  736. <libsource lib="Transistor_FET" part="AO3400A" description="30V Vds, 5.7A Id, N-Channel MOSFET, SOT-23"/>
  737. <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
  738. <tstamp>66D2EFA8</tstamp>
  739. </comp>
  740. <comp ref="Q6">
  741. <value>NM-AO3400A</value>
  742. <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
  743. <datasheet>http://www.aosmd.com/pdfs/datasheet/AO3400A.pdf</datasheet>
  744. <fields>
  745. <field name="LCSC">NM</field>
  746. </fields>
  747. <libsource lib="Transistor_FET" part="AO3400A" description="30V Vds, 5.7A Id, N-Channel MOSFET, SOT-23"/>
  748. <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
  749. <tstamp>6042861D</tstamp>
  750. </comp>
  751. <comp ref="R25">
  752. <value>5.1k</value>
  753. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  754. <datasheet>~</datasheet>
  755. <fields>
  756. <field name="LCSC">C25905</field>
  757. </fields>
  758. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  759. <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
  760. <tstamp>6049E6B8</tstamp>
  761. </comp>
  762. <comp ref="J7">
  763. <value>Conn_01x02_Male</value>
  764. <footprint>Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Horizontal</footprint>
  765. <datasheet>~</datasheet>
  766. <libsource lib="Connector" part="Conn_01x02_Male" description="Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"/>
  767. <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
  768. <tstamp>609B79F6</tstamp>
  769. </comp>
  770. <comp ref="U2">
  771. <value>74HC245</value>
  772. <footprint>Package_SO:TSSOP-20_4.4x6.5mm_P0.65mm</footprint>
  773. <datasheet>http://www.ti.com/lit/gpn/sn74HC245</datasheet>
  774. <fields>
  775. <field name="LCSC">C5626</field>
  776. </fields>
  777. <libsource lib="74xx" part="74HC245" description="Octal BUS Transceivers, 3-State outputs"/>
  778. <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
  779. <tstamp>6202F2F5</tstamp>
  780. </comp>
  781. <comp ref="R26">
  782. <value>100</value>
  783. <footprint>Resistor_SMD:R_0805_2012Metric</footprint>
  784. <datasheet>~</datasheet>
  785. <fields>
  786. <field name="LCSC">C17408</field>
  787. </fields>
  788. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  789. <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
  790. <tstamp>60B354D0</tstamp>
  791. </comp>
  792. <comp ref="R27">
  793. <value>100</value>
  794. <footprint>Resistor_SMD:R_0805_2012Metric</footprint>
  795. <datasheet>~</datasheet>
  796. <fields>
  797. <field name="LCSC">C17408</field>
  798. </fields>
  799. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  800. <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
  801. <tstamp>60B36F20</tstamp>
  802. </comp>
  803. <comp ref="R28">
  804. <value>100</value>
  805. <footprint>Resistor_SMD:R_0805_2012Metric</footprint>
  806. <datasheet>~</datasheet>
  807. <fields>
  808. <field name="LCSC">C17408</field>
  809. </fields>
  810. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  811. <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
  812. <tstamp>60B37C47</tstamp>
  813. </comp>
  814. <comp ref="R43">
  815. <value>100</value>
  816. <footprint>Resistor_SMD:R_0805_2012Metric</footprint>
  817. <datasheet>~</datasheet>
  818. <fields>
  819. <field name="LCSC">C17408</field>
  820. </fields>
  821. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  822. <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
  823. <tstamp>60B38966</tstamp>
  824. </comp>
  825. <comp ref="R45">
  826. <value>100</value>
  827. <footprint>Resistor_SMD:R_0805_2012Metric</footprint>
  828. <datasheet>~</datasheet>
  829. <fields>
  830. <field name="LCSC">C17408</field>
  831. </fields>
  832. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  833. <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
  834. <tstamp>60B3A85D</tstamp>
  835. </comp>
  836. <comp ref="R44">
  837. <value>100</value>
  838. <footprint>Resistor_SMD:R_0805_2012Metric</footprint>
  839. <datasheet>~</datasheet>
  840. <fields>
  841. <field name="LCSC">C17408</field>
  842. </fields>
  843. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  844. <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
  845. <tstamp>60B3CF12</tstamp>
  846. </comp>
  847. <comp ref="J6">
  848. <value>Conn_01x01_Male</value>
  849. <footprint>Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Horizontal</footprint>
  850. <datasheet>~</datasheet>
  851. <libsource lib="Connector" part="Conn_01x01_Male" description="Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"/>
  852. <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
  853. <tstamp>60CC7EFE</tstamp>
  854. </comp>
  855. <comp ref="X2">
  856. <value>ABC-Bus</value>
  857. <footprint>max80:FAB64B</footprint>
  858. <libsource lib="max80" part="ABC-Bus" description=""/>
  859. <sheetpath names="/abc80bus/" tstamps="/6013B380/"/>
  860. <tstamp>61C9828F</tstamp>
  861. </comp>
  862. <comp ref="C61">
  863. <value>220uF</value>
  864. <footprint>Capacitor_SMD:CP_Elec_6.3x7.7</footprint>
  865. <datasheet>~</datasheet>
  866. <fields>
  867. <field name="LCSC">C127327</field>
  868. </fields>
  869. <libsource lib="Device" part="CP_Small" description="Polarized capacitor, small symbol"/>
  870. <sheetpath names="/POWER/" tstamps="/6013A59C/"/>
  871. <tstamp>602A7E22</tstamp>
  872. </comp>
  873. <comp ref="C60">
  874. <value>220uF</value>
  875. <footprint>Capacitor_SMD:CP_Elec_6.3x7.7</footprint>
  876. <datasheet>~</datasheet>
  877. <fields>
  878. <field name="LCSC">C127327</field>
  879. </fields>
  880. <libsource lib="Device" part="CP_Small" description="Polarized capacitor, small symbol"/>
  881. <sheetpath names="/POWER/" tstamps="/6013A59C/"/>
  882. <tstamp>602A83A7</tstamp>
  883. </comp>
  884. <comp ref="F2">
  885. <value>Polyfuse 1.8A</value>
  886. <footprint>max80:Fuse_1206_3216Metric</footprint>
  887. <datasheet>https://datasheet.lcsc.com/szlcsc/1811141110_TECHFUSE-nSMD020-30V_C69680.pdf</datasheet>
  888. <fields>
  889. <field name="LCSC">C70082</field>
  890. </fields>
  891. <libsource lib="Device" part="Polyfuse" description="Resettable fuse, polymeric positive temperature coefficient"/>
  892. <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
  893. <tstamp>610EE853</tstamp>
  894. </comp>
  895. <comp ref="USB2">
  896. <value>HRO-TYPE-C-31-M-12</value>
  897. <footprint>max80:HRO-TYPE-C-31-M-12</footprint>
  898. <datasheet>https://datasheet.lcsc.com/szlcsc/1811131825_Korean-Hroparts-Elec-TYPE-C-31-M-12_C165948.pdf</datasheet>
  899. <fields>
  900. <field name="LCSC">C165948</field>
  901. </fields>
  902. <libsource lib="max80" part="HRO-TYPE-C-31-M-12" description=""/>
  903. <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
  904. <tstamp>610EE858</tstamp>
  905. </comp>
  906. <comp ref="R4">
  907. <value>5.1k</value>
  908. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  909. <datasheet>~</datasheet>
  910. <fields>
  911. <field name="LCSC">C25905</field>
  912. </fields>
  913. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  914. <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
  915. <tstamp>5E79F20F</tstamp>
  916. </comp>
  917. <comp ref="C52">
  918. <value>1uF</value>
  919. <footprint>Capacitor_SMD:C_0805_2012Metric</footprint>
  920. <datasheet>~</datasheet>
  921. <fields>
  922. <field name="LCSC">C28323</field>
  923. </fields>
  924. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  925. <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
  926. <tstamp>5E7FEAC9</tstamp>
  927. </comp>
  928. <comp ref="U11">
  929. <value>ESP32-S2-WROVER-I</value>
  930. <footprint>max80:ESP32-S2-WROVER</footprint>
  931. <datasheet>https://www.espressif.com/sites/default/files/documentation/esp32-s2-wroom_esp32-s2-wroom-i_datasheet_en.pdf</datasheet>
  932. <fields>
  933. <field name="LCSC">C967028</field>
  934. </fields>
  935. <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"/>
  936. <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
  937. <tstamp>610EDBDA</tstamp>
  938. </comp>
  939. <comp ref="R3">
  940. <value>5.1k</value>
  941. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  942. <datasheet>~</datasheet>
  943. <fields>
  944. <field name="LCSC">C25905</field>
  945. </fields>
  946. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  947. <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
  948. <tstamp>61104569</tstamp>
  949. </comp>
  950. <comp ref="C54">
  951. <value>22uF</value>
  952. <footprint>Capacitor_SMD:C_0805_2012Metric</footprint>
  953. <datasheet>~</datasheet>
  954. <fields>
  955. <field name="LCSC">C45783</field>
  956. </fields>
  957. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  958. <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
  959. <tstamp>611262EE</tstamp>
  960. </comp>
  961. <comp ref="C55">
  962. <value>100nF</value>
  963. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  964. <datasheet>~</datasheet>
  965. <fields>
  966. <field name="LCSC">C1525</field>
  967. </fields>
  968. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  969. <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
  970. <tstamp>61126FC2</tstamp>
  971. </comp>
  972. <comp ref="C53">
  973. <value>100nF</value>
  974. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  975. <datasheet>~</datasheet>
  976. <fields>
  977. <field name="LCSC">C1525</field>
  978. </fields>
  979. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  980. <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
  981. <tstamp>6112E6F3</tstamp>
  982. </comp>
  983. <comp ref="R19">
  984. <value>4.7k</value>
  985. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  986. <datasheet>~</datasheet>
  987. <fields>
  988. <field name="LCSC">C25900</field>
  989. </fields>
  990. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  991. <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
  992. <tstamp>611AB901</tstamp>
  993. </comp>
  994. <comp ref="R20">
  995. <value>4.7k</value>
  996. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  997. <datasheet>~</datasheet>
  998. <fields>
  999. <field name="LCSC">C25900</field>
  1000. </fields>
  1001. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  1002. <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
  1003. <tstamp>611ABCC5</tstamp>
  1004. </comp>
  1005. <comp ref="D1">
  1006. <value>LED-Y</value>
  1007. <footprint>LED_SMD:LED_0603_1608Metric</footprint>
  1008. <datasheet>~</datasheet>
  1009. <fields>
  1010. <field name="LCSC">C72038</field>
  1011. </fields>
  1012. <libsource lib="Device" part="LED" description="Light emitting diode"/>
  1013. <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
  1014. <tstamp>611B5A79</tstamp>
  1015. </comp>
  1016. <comp ref="R16">
  1017. <value>1k</value>
  1018. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  1019. <datasheet>~</datasheet>
  1020. <fields>
  1021. <field name="LCSC">C11702</field>
  1022. </fields>
  1023. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  1024. <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
  1025. <tstamp>611B7173</tstamp>
  1026. </comp>
  1027. <comp ref="R17">
  1028. <value>1k</value>
  1029. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  1030. <datasheet>~</datasheet>
  1031. <fields>
  1032. <field name="LCSC">C11702</field>
  1033. </fields>
  1034. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  1035. <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
  1036. <tstamp>611B7E9F</tstamp>
  1037. </comp>
  1038. <comp ref="R18">
  1039. <value>820</value>
  1040. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  1041. <datasheet>~</datasheet>
  1042. <fields>
  1043. <field name="LCSC">C23253</field>
  1044. </fields>
  1045. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  1046. <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
  1047. <tstamp>611B8401</tstamp>
  1048. </comp>
  1049. <comp ref="D2">
  1050. <value>LED-G</value>
  1051. <footprint>LED_SMD:LED_0603_1608Metric</footprint>
  1052. <datasheet>~</datasheet>
  1053. <fields>
  1054. <field name="LCSC">C72043</field>
  1055. </fields>
  1056. <libsource lib="Device" part="LED" description="Light emitting diode"/>
  1057. <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
  1058. <tstamp>611D1925</tstamp>
  1059. </comp>
  1060. <comp ref="R21">
  1061. <value>10k</value>
  1062. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  1063. <datasheet>~</datasheet>
  1064. <fields>
  1065. <field name="LCSC">C25744</field>
  1066. </fields>
  1067. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  1068. <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
  1069. <tstamp>613A0F9D</tstamp>
  1070. </comp>
  1071. <comp ref="D27">
  1072. <value>1N5819W</value>
  1073. <footprint>Diode_SMD:D_SOD-123</footprint>
  1074. <datasheet>~</datasheet>
  1075. <fields>
  1076. <field name="LCSC">C963381</field>
  1077. </fields>
  1078. <libsource lib="Device" part="D_Schottky" description="Schottky diode"/>
  1079. <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
  1080. <tstamp>6032D6A5</tstamp>
  1081. </comp>
  1082. <comp ref="R15">
  1083. <value>1k</value>
  1084. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  1085. <datasheet>~</datasheet>
  1086. <fields>
  1087. <field name="LCSC">C11702</field>
  1088. </fields>
  1089. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  1090. <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
  1091. <tstamp>611331F0</tstamp>
  1092. </comp>
  1093. <comp ref="R1">
  1094. <value>10k</value>
  1095. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  1096. <datasheet>~</datasheet>
  1097. <fields>
  1098. <field name="LCSC">C25744</field>
  1099. </fields>
  1100. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  1101. <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
  1102. <tstamp>60379925</tstamp>
  1103. </comp>
  1104. <comp ref="D3">
  1105. <value>LED-B</value>
  1106. <footprint>LED_SMD:LED_0603_1608Metric</footprint>
  1107. <datasheet>~</datasheet>
  1108. <fields>
  1109. <field name="LCSC">C72041</field>
  1110. </fields>
  1111. <libsource lib="Device" part="LED" description="Light emitting diode"/>
  1112. <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
  1113. <tstamp>611D1F01</tstamp>
  1114. </comp>
  1115. <comp ref="U15">
  1116. <value>USBLC6-2SC6</value>
  1117. <footprint>Package_TO_SOT_SMD:SOT-23-6</footprint>
  1118. <fields>
  1119. <field name="LCSC">C7519</field>
  1120. </fields>
  1121. <libsource lib="Power_Protection" part="USBLC6-2SC6" description="Very low capacitance ESD protection diode, 2 data-line, SOT-23-6"/>
  1122. <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
  1123. <tstamp>610EE85E</tstamp>
  1124. </comp>
  1125. <comp ref="R34">
  1126. <value>68k</value>
  1127. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  1128. <datasheet>~</datasheet>
  1129. <fields>
  1130. <field name="LCSC">C36871</field>
  1131. </fields>
  1132. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  1133. <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
  1134. <tstamp>619F265C</tstamp>
  1135. </comp>
  1136. <comp ref="R35">
  1137. <value>68k</value>
  1138. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  1139. <datasheet>~</datasheet>
  1140. <fields>
  1141. <field name="LCSC">C36871</field>
  1142. </fields>
  1143. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  1144. <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
  1145. <tstamp>619FB3AA</tstamp>
  1146. </comp>
  1147. <comp ref="Q8">
  1148. <value>AO3400A</value>
  1149. <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
  1150. <datasheet>http://www.aosmd.com/pdfs/datasheet/AO3400A.pdf</datasheet>
  1151. <fields>
  1152. <field name="LCSC">C347476</field>
  1153. </fields>
  1154. <libsource lib="Transistor_FET" part="AO3400A" description="30V Vds, 5.7A Id, N-Channel MOSFET, SOT-23"/>
  1155. <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
  1156. <tstamp>61A76D78</tstamp>
  1157. </comp>
  1158. <comp ref="Q9">
  1159. <value>AO3401A</value>
  1160. <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
  1161. <datasheet>http://www.aosmd.com/pdfs/datasheet/AO3401A.pdf</datasheet>
  1162. <fields>
  1163. <field name="LCSC">C15127</field>
  1164. </fields>
  1165. <libsource lib="Transistor_FET" part="AO3401A" description="-4.0A Id, -30V Vds, P-Channel MOSFET, SOT-23"/>
  1166. <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
  1167. <tstamp>61A79372</tstamp>
  1168. </comp>
  1169. <comp ref="R36">
  1170. <value>36k</value>
  1171. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  1172. <datasheet>~</datasheet>
  1173. <fields>
  1174. <field name="LCSC">C25556</field>
  1175. </fields>
  1176. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  1177. <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
  1178. <tstamp>61A919F7</tstamp>
  1179. </comp>
  1180. <comp ref="R48">
  1181. <value>36k</value>
  1182. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  1183. <datasheet>~</datasheet>
  1184. <fields>
  1185. <field name="LCSC">C25556</field>
  1186. </fields>
  1187. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  1188. <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
  1189. <tstamp>61AC14CB</tstamp>
  1190. </comp>
  1191. <comp ref="D11">
  1192. <value>DNP-Y</value>
  1193. <footprint>LED_SMD:LED_0603_1608Metric</footprint>
  1194. <datasheet>~</datasheet>
  1195. <libsource lib="Device" part="LED" description="Light emitting diode"/>
  1196. <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
  1197. <tstamp>61D533EF</tstamp>
  1198. </comp>
  1199. <comp ref="D13">
  1200. <value>DNP-G</value>
  1201. <footprint>LED_SMD:LED_0603_1608Metric</footprint>
  1202. <datasheet>~</datasheet>
  1203. <libsource lib="Device" part="LED" description="Light emitting diode"/>
  1204. <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
  1205. <tstamp>61D5378A</tstamp>
  1206. </comp>
  1207. <comp ref="D12">
  1208. <value>DNP-B</value>
  1209. <footprint>LED_SMD:LED_0603_1608Metric</footprint>
  1210. <datasheet>~</datasheet>
  1211. <libsource lib="Device" part="LED" description="Light emitting diode"/>
  1212. <sheetpath names="/ESP32/" tstamps="/602159BB/"/>
  1213. <tstamp>61D53795</tstamp>
  1214. </comp>
  1215. <comp ref="U12">
  1216. <value>DS3231M+</value>
  1217. <footprint>Package_SO:SOIC-16W_7.5x10.3mm_P1.27mm</footprint>
  1218. <datasheet>http://datasheets.maximintegrated.com/en/ds/DS3231M.pdf</datasheet>
  1219. <fields>
  1220. <field name="LCSC">C37663</field>
  1221. </fields>
  1222. <libsource lib="Timer_RTC" part="DS3231M" description="Extremely Accurate I2C-Integrated RTC/TCXO/Crystal SOIC-16"/>
  1223. <sheetpath names="/RTC/" tstamps="/6023577B/"/>
  1224. <tstamp>60239074</tstamp>
  1225. </comp>
  1226. <comp ref="BT1">
  1227. <value>Battery_Cell</value>
  1228. <footprint>max80:BatteryHolder_Keystone_103_1x20mm</footprint>
  1229. <datasheet>~</datasheet>
  1230. <fields>
  1231. <field name="LCSC">NM</field>
  1232. </fields>
  1233. <libsource lib="Device" part="Battery_Cell" description="Single-cell battery"/>
  1234. <sheetpath names="/RTC/" tstamps="/6023577B/"/>
  1235. <tstamp>6023A838</tstamp>
  1236. </comp>
  1237. <comp ref="C47">
  1238. <value>100nF</value>
  1239. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1240. <datasheet>~</datasheet>
  1241. <fields>
  1242. <field name="LCSC">C1525</field>
  1243. </fields>
  1244. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1245. <sheetpath names="/RTC/" tstamps="/6023577B/"/>
  1246. <tstamp>6023B210</tstamp>
  1247. </comp>
  1248. <comp ref="R9">
  1249. <value>6.2k</value>
  1250. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  1251. <datasheet>~</datasheet>
  1252. <fields>
  1253. <field name="LCSC">C25915</field>
  1254. </fields>
  1255. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  1256. <sheetpath names="/RTC/" tstamps="/6023577B/"/>
  1257. <tstamp>6170570B</tstamp>
  1258. </comp>
  1259. <comp ref="R32">
  1260. <value>6.2k</value>
  1261. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  1262. <datasheet>~</datasheet>
  1263. <fields>
  1264. <field name="LCSC">C25915</field>
  1265. </fields>
  1266. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  1267. <sheetpath names="/RTC/" tstamps="/6023577B/"/>
  1268. <tstamp>61706B6D</tstamp>
  1269. </comp>
  1270. <comp ref="J4">
  1271. <value>Conn_02x20_Odd_Even</value>
  1272. <footprint>Connector_PinHeader_2.54mm:PinHeader_2x20_P2.54mm_Horizontal</footprint>
  1273. <datasheet>~</datasheet>
  1274. <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/)"/>
  1275. <sheetpath names="/ADAPTER_CONN/" tstamps="/60B94961/"/>
  1276. <tstamp>60B95FED</tstamp>
  1277. </comp>
  1278. <comp ref="J8">
  1279. <value>Conn_02x5_Odd_Even</value>
  1280. <footprint>Connector_PinHeader_2.54mm:PinHeader_2x06_P2.54mm_Vertical</footprint>
  1281. <datasheet>~</datasheet>
  1282. <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/)"/>
  1283. <sheetpath names="/ADAPTER_CONN/" tstamps="/60B94961/"/>
  1284. <tstamp>6100C1FE</tstamp>
  1285. </comp>
  1286. <comp ref="R49">
  1287. <value>10k</value>
  1288. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  1289. <datasheet>~</datasheet>
  1290. <fields>
  1291. <field name="LCSC">C25744</field>
  1292. </fields>
  1293. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  1294. <sheetpath names="/ADAPTER_CONN/" tstamps="/60B94961/"/>
  1295. <tstamp>612EA5C6</tstamp>
  1296. </comp>
  1297. <comp ref="R50">
  1298. <value>10k</value>
  1299. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  1300. <datasheet>~</datasheet>
  1301. <fields>
  1302. <field name="LCSC">C25744</field>
  1303. </fields>
  1304. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  1305. <sheetpath names="/ADAPTER_CONN/" tstamps="/60B94961/"/>
  1306. <tstamp>612EABC3</tstamp>
  1307. </comp>
  1308. <comp ref="C8">
  1309. <value>1uF</value>
  1310. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1311. <datasheet>~</datasheet>
  1312. <fields>
  1313. <field name="LCSC">C52923</field>
  1314. </fields>
  1315. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1316. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1317. <tstamp>65761895</tstamp>
  1318. </comp>
  1319. <comp ref="C10">
  1320. <value>1uF</value>
  1321. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1322. <datasheet>~</datasheet>
  1323. <fields>
  1324. <field name="LCSC">C52923</field>
  1325. </fields>
  1326. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1327. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1328. <tstamp>6576482F</tstamp>
  1329. </comp>
  1330. <comp ref="C11">
  1331. <value>1uF</value>
  1332. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1333. <datasheet>~</datasheet>
  1334. <fields>
  1335. <field name="LCSC">C52923</field>
  1336. </fields>
  1337. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1338. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1339. <tstamp>6576514E</tstamp>
  1340. </comp>
  1341. <comp ref="C12">
  1342. <value>1uF</value>
  1343. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1344. <datasheet>~</datasheet>
  1345. <fields>
  1346. <field name="LCSC">C52923</field>
  1347. </fields>
  1348. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1349. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1350. <tstamp>65765AAD</tstamp>
  1351. </comp>
  1352. <comp ref="C13">
  1353. <value>1uF</value>
  1354. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1355. <datasheet>~</datasheet>
  1356. <fields>
  1357. <field name="LCSC">C52923</field>
  1358. </fields>
  1359. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1360. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1361. <tstamp>65766122</tstamp>
  1362. </comp>
  1363. <comp ref="C14">
  1364. <value>1uF</value>
  1365. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1366. <datasheet>~</datasheet>
  1367. <fields>
  1368. <field name="LCSC">C52923</field>
  1369. </fields>
  1370. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1371. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1372. <tstamp>65768E03</tstamp>
  1373. </comp>
  1374. <comp ref="C15">
  1375. <value>1uF</value>
  1376. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1377. <datasheet>~</datasheet>
  1378. <fields>
  1379. <field name="LCSC">C52923</field>
  1380. </fields>
  1381. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1382. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1383. <tstamp>65769634</tstamp>
  1384. </comp>
  1385. <comp ref="C9">
  1386. <value>1uF</value>
  1387. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1388. <datasheet>~</datasheet>
  1389. <fields>
  1390. <field name="LCSC">C52923</field>
  1391. </fields>
  1392. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1393. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1394. <tstamp>6576B192</tstamp>
  1395. </comp>
  1396. <comp ref="C1">
  1397. <value>1uF</value>
  1398. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1399. <datasheet>~</datasheet>
  1400. <fields>
  1401. <field name="LCSC">C52923</field>
  1402. </fields>
  1403. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1404. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1405. <tstamp>65824DAA</tstamp>
  1406. </comp>
  1407. <comp ref="C17">
  1408. <value>1uF</value>
  1409. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1410. <datasheet>~</datasheet>
  1411. <fields>
  1412. <field name="LCSC">C52923</field>
  1413. </fields>
  1414. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1415. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1416. <tstamp>65825077</tstamp>
  1417. </comp>
  1418. <comp ref="C18">
  1419. <value>1uF</value>
  1420. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1421. <datasheet>~</datasheet>
  1422. <fields>
  1423. <field name="LCSC">C52923</field>
  1424. </fields>
  1425. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1426. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1427. <tstamp>65825082</tstamp>
  1428. </comp>
  1429. <comp ref="C19">
  1430. <value>1uF</value>
  1431. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1432. <datasheet>~</datasheet>
  1433. <fields>
  1434. <field name="LCSC">C52923</field>
  1435. </fields>
  1436. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1437. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1438. <tstamp>6582508D</tstamp>
  1439. </comp>
  1440. <comp ref="C20">
  1441. <value>1uF</value>
  1442. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1443. <datasheet>~</datasheet>
  1444. <fields>
  1445. <field name="LCSC">C52923</field>
  1446. </fields>
  1447. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1448. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1449. <tstamp>65825098</tstamp>
  1450. </comp>
  1451. <comp ref="C21">
  1452. <value>1uF</value>
  1453. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1454. <datasheet>~</datasheet>
  1455. <fields>
  1456. <field name="LCSC">C52923</field>
  1457. </fields>
  1458. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1459. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1460. <tstamp>6584E8B0</tstamp>
  1461. </comp>
  1462. <comp ref="C22">
  1463. <value>1uF</value>
  1464. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1465. <datasheet>~</datasheet>
  1466. <fields>
  1467. <field name="LCSC">C52923</field>
  1468. </fields>
  1469. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1470. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1471. <tstamp>6584EC09</tstamp>
  1472. </comp>
  1473. <comp ref="C23">
  1474. <value>1uF</value>
  1475. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1476. <datasheet>~</datasheet>
  1477. <fields>
  1478. <field name="LCSC">C52923</field>
  1479. </fields>
  1480. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1481. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1482. <tstamp>6584EC1E</tstamp>
  1483. </comp>
  1484. <comp ref="C24">
  1485. <value>1uF</value>
  1486. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1487. <datasheet>~</datasheet>
  1488. <fields>
  1489. <field name="LCSC">C52923</field>
  1490. </fields>
  1491. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1492. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1493. <tstamp>6584EC29</tstamp>
  1494. </comp>
  1495. <comp ref="C27">
  1496. <value>1uF</value>
  1497. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1498. <datasheet>~</datasheet>
  1499. <fields>
  1500. <field name="LCSC">C52923</field>
  1501. </fields>
  1502. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1503. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1504. <tstamp>6584EC4A</tstamp>
  1505. </comp>
  1506. <comp ref="C26">
  1507. <value>1uF</value>
  1508. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1509. <datasheet>~</datasheet>
  1510. <fields>
  1511. <field name="LCSC">C52923</field>
  1512. </fields>
  1513. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1514. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1515. <tstamp>65AC4F8F</tstamp>
  1516. </comp>
  1517. <comp ref="C30">
  1518. <value>1uF</value>
  1519. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1520. <datasheet>~</datasheet>
  1521. <fields>
  1522. <field name="LCSC">C52923</field>
  1523. </fields>
  1524. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1525. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1526. <tstamp>65B1E160</tstamp>
  1527. </comp>
  1528. <comp ref="C29">
  1529. <value>1uF</value>
  1530. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1531. <datasheet>~</datasheet>
  1532. <fields>
  1533. <field name="LCSC">C52923</field>
  1534. </fields>
  1535. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1536. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1537. <tstamp>65B1E57B</tstamp>
  1538. </comp>
  1539. <comp ref="C31">
  1540. <value>1uF</value>
  1541. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1542. <datasheet>~</datasheet>
  1543. <fields>
  1544. <field name="LCSC">C52923</field>
  1545. </fields>
  1546. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1547. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1548. <tstamp>65B40618</tstamp>
  1549. </comp>
  1550. <comp ref="C32">
  1551. <value>1uF</value>
  1552. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1553. <datasheet>~</datasheet>
  1554. <fields>
  1555. <field name="LCSC">C52923</field>
  1556. </fields>
  1557. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1558. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1559. <tstamp>65B6444F</tstamp>
  1560. </comp>
  1561. <comp ref="C42">
  1562. <value>1uF</value>
  1563. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1564. <datasheet>~</datasheet>
  1565. <fields>
  1566. <field name="LCSC">C52923</field>
  1567. </fields>
  1568. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1569. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1570. <tstamp>65B648D0</tstamp>
  1571. </comp>
  1572. <comp ref="C41">
  1573. <value>1uF</value>
  1574. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1575. <datasheet>~</datasheet>
  1576. <fields>
  1577. <field name="LCSC">C52923</field>
  1578. </fields>
  1579. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1580. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1581. <tstamp>65B648DB</tstamp>
  1582. </comp>
  1583. <comp ref="C43">
  1584. <value>1uF</value>
  1585. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1586. <datasheet>~</datasheet>
  1587. <fields>
  1588. <field name="LCSC">C52923</field>
  1589. </fields>
  1590. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1591. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1592. <tstamp>65B648F2</tstamp>
  1593. </comp>
  1594. <comp ref="C44">
  1595. <value>47uF</value>
  1596. <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
  1597. <datasheet>~</datasheet>
  1598. <fields>
  1599. <field name="LCSC">C140782</field>
  1600. </fields>
  1601. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1602. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1603. <tstamp>65C6F7D3</tstamp>
  1604. </comp>
  1605. <comp ref="C50">
  1606. <value>47uF</value>
  1607. <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
  1608. <datasheet>~</datasheet>
  1609. <fields>
  1610. <field name="LCSC">C140782</field>
  1611. </fields>
  1612. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1613. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1614. <tstamp>65C7267E</tstamp>
  1615. </comp>
  1616. <comp ref="C62">
  1617. <value>47uF</value>
  1618. <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
  1619. <datasheet>~</datasheet>
  1620. <fields>
  1621. <field name="LCSC">C140782</field>
  1622. </fields>
  1623. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1624. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1625. <tstamp>65C73D10</tstamp>
  1626. </comp>
  1627. <comp ref="C63">
  1628. <value>100nF</value>
  1629. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1630. <datasheet>~</datasheet>
  1631. <fields>
  1632. <field name="LCSC">C1525</field>
  1633. </fields>
  1634. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1635. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1636. <tstamp>65C7591B</tstamp>
  1637. </comp>
  1638. <comp ref="C66">
  1639. <value>100nF</value>
  1640. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1641. <datasheet>~</datasheet>
  1642. <fields>
  1643. <field name="LCSC">C1525</field>
  1644. </fields>
  1645. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1646. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1647. <tstamp>65C78210</tstamp>
  1648. </comp>
  1649. <comp ref="C28">
  1650. <value>1uF</value>
  1651. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1652. <datasheet>~</datasheet>
  1653. <fields>
  1654. <field name="LCSC">C52923</field>
  1655. </fields>
  1656. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1657. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1658. <tstamp>65AC4DDD</tstamp>
  1659. </comp>
  1660. <comp ref="C16">
  1661. <value>47uF</value>
  1662. <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
  1663. <datasheet>~</datasheet>
  1664. <fields>
  1665. <field name="LCSC">C140782</field>
  1666. </fields>
  1667. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1668. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1669. <tstamp>65ECAF24</tstamp>
  1670. </comp>
  1671. <comp ref="C25">
  1672. <value>47uF</value>
  1673. <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
  1674. <datasheet>~</datasheet>
  1675. <fields>
  1676. <field name="LCSC">C140782</field>
  1677. </fields>
  1678. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1679. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1680. <tstamp>65ECB133</tstamp>
  1681. </comp>
  1682. <comp ref="C68">
  1683. <value>47uF</value>
  1684. <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
  1685. <datasheet>~</datasheet>
  1686. <fields>
  1687. <field name="LCSC">C140782</field>
  1688. </fields>
  1689. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1690. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1691. <tstamp>65ECB13E</tstamp>
  1692. </comp>
  1693. <comp ref="C69">
  1694. <value>47uF</value>
  1695. <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
  1696. <datasheet>~</datasheet>
  1697. <fields>
  1698. <field name="LCSC">C140782</field>
  1699. </fields>
  1700. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1701. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1702. <tstamp>65ECB149</tstamp>
  1703. </comp>
  1704. <comp ref="C59">
  1705. <value>47uF</value>
  1706. <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
  1707. <datasheet>~</datasheet>
  1708. <fields>
  1709. <field name="LCSC">C140782</field>
  1710. </fields>
  1711. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1712. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1713. <tstamp>65C7321F</tstamp>
  1714. </comp>
  1715. <comp ref="U1">
  1716. <value>AMS1117-1.2</value>
  1717. <footprint>Package_TO_SOT_SMD:SOT-223-3_TabPin2</footprint>
  1718. <datasheet>http://www.advanced-monolithic.com/pdf/ds1117.pdf</datasheet>
  1719. <fields>
  1720. <field name="LCSC">C489388</field>
  1721. </fields>
  1722. <libsource lib="Regulator_Linear" part="AMS1117-1.5" description="1A Low Dropout regulator, positive, 1.5V fixed output, SOT-223"/>
  1723. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1724. <tstamp>672CD418</tstamp>
  1725. </comp>
  1726. <comp ref="U16">
  1727. <value>AMS1117-2.5</value>
  1728. <footprint>Package_TO_SOT_SMD:SOT-223-3_TabPin2</footprint>
  1729. <datasheet>http://www.advanced-monolithic.com/pdf/ds1117.pdf</datasheet>
  1730. <fields>
  1731. <field name="LCSC">C347221</field>
  1732. </fields>
  1733. <libsource lib="Regulator_Linear" part="AMS1117-2.5" description="1A Low Dropout regulator, positive, 2.5V fixed output, SOT-223"/>
  1734. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1735. <tstamp>672CF238</tstamp>
  1736. </comp>
  1737. <comp ref="C67">
  1738. <value>47uF</value>
  1739. <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
  1740. <datasheet>~</datasheet>
  1741. <fields>
  1742. <field name="LCSC">C140782</field>
  1743. </fields>
  1744. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1745. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1746. <tstamp>672F37BB</tstamp>
  1747. </comp>
  1748. <comp ref="C72">
  1749. <value>47uF</value>
  1750. <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
  1751. <datasheet>~</datasheet>
  1752. <fields>
  1753. <field name="LCSC">C140782</field>
  1754. </fields>
  1755. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1756. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1757. <tstamp>672F463E</tstamp>
  1758. </comp>
  1759. <comp ref="C64">
  1760. <value>100nF</value>
  1761. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1762. <datasheet>~</datasheet>
  1763. <fields>
  1764. <field name="LCSC">C1525</field>
  1765. </fields>
  1766. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1767. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1768. <tstamp>672F65A1</tstamp>
  1769. </comp>
  1770. <comp ref="C74">
  1771. <value>100nF</value>
  1772. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1773. <datasheet>~</datasheet>
  1774. <fields>
  1775. <field name="LCSC">C1525</field>
  1776. </fields>
  1777. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1778. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1779. <tstamp>672F7260</tstamp>
  1780. </comp>
  1781. <comp ref="C70">
  1782. <value>47uF</value>
  1783. <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
  1784. <datasheet>~</datasheet>
  1785. <fields>
  1786. <field name="LCSC">C140782</field>
  1787. </fields>
  1788. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1789. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1790. <tstamp>672FA54F</tstamp>
  1791. </comp>
  1792. <comp ref="C65">
  1793. <value>100nF</value>
  1794. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1795. <datasheet>~</datasheet>
  1796. <fields>
  1797. <field name="LCSC">C1525</field>
  1798. </fields>
  1799. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1800. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1801. <tstamp>672FAB10</tstamp>
  1802. </comp>
  1803. <comp ref="C71">
  1804. <value>47uF</value>
  1805. <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
  1806. <datasheet>~</datasheet>
  1807. <fields>
  1808. <field name="LCSC">C140782</field>
  1809. </fields>
  1810. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1811. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1812. <tstamp>67326D2C</tstamp>
  1813. </comp>
  1814. <comp ref="C73">
  1815. <value>100nF</value>
  1816. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1817. <datasheet>~</datasheet>
  1818. <fields>
  1819. <field name="LCSC">C1525</field>
  1820. </fields>
  1821. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1822. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1823. <tstamp>67327311</tstamp>
  1824. </comp>
  1825. <comp ref="U8">
  1826. <value>AMS1117-3.3</value>
  1827. <footprint>Package_TO_SOT_SMD:SOT-223-3_TabPin2</footprint>
  1828. <datasheet>http://www.advanced-monolithic.com/pdf/ds1117.pdf</datasheet>
  1829. <fields>
  1830. <field name="LCSC">C351784</field>
  1831. </fields>
  1832. <libsource lib="Regulator_Linear" part="AMS1117-3.3" description="1A Low Dropout regulator, positive, 3.3V fixed output, SOT-223"/>
  1833. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1834. <tstamp>615F4429</tstamp>
  1835. </comp>
  1836. <comp ref="C36">
  1837. <value>47uF</value>
  1838. <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
  1839. <datasheet>~</datasheet>
  1840. <fields>
  1841. <field name="LCSC">C140782</field>
  1842. </fields>
  1843. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1844. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1845. <tstamp>615F4910</tstamp>
  1846. </comp>
  1847. <comp ref="C35">
  1848. <value>100nF</value>
  1849. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1850. <datasheet>~</datasheet>
  1851. <fields>
  1852. <field name="LCSC">C1525</field>
  1853. </fields>
  1854. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1855. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1856. <tstamp>615F491B</tstamp>
  1857. </comp>
  1858. <comp ref="C37">
  1859. <value>47uF</value>
  1860. <footprint>Capacitor_SMD:C_0603_1608Metric</footprint>
  1861. <datasheet>~</datasheet>
  1862. <fields>
  1863. <field name="LCSC">C140782</field>
  1864. </fields>
  1865. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1866. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1867. <tstamp>615F4926</tstamp>
  1868. </comp>
  1869. <comp ref="C38">
  1870. <value>100nF</value>
  1871. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1872. <datasheet>~</datasheet>
  1873. <fields>
  1874. <field name="LCSC">C1525</field>
  1875. </fields>
  1876. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1877. <sheetpath names="/Power FPGA/" tstamps="/604B2191/"/>
  1878. <tstamp>615F4931</tstamp>
  1879. </comp>
  1880. <comp ref="R2">
  1881. <value>2.2k</value>
  1882. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  1883. <datasheet>~</datasheet>
  1884. <fields>
  1885. <field name="LCSC">C25879</field>
  1886. </fields>
  1887. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  1888. <sheetpath names="/HDMI/" tstamps="/650A9AE9/"/>
  1889. <tstamp>655D07B0</tstamp>
  1890. </comp>
  1891. <comp ref="R11">
  1892. <value>2.2k</value>
  1893. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  1894. <datasheet>~</datasheet>
  1895. <fields>
  1896. <field name="LCSC">C25879</field>
  1897. </fields>
  1898. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  1899. <sheetpath names="/HDMI/" tstamps="/650A9AE9/"/>
  1900. <tstamp>655D0BC8</tstamp>
  1901. </comp>
  1902. <comp ref="C80">
  1903. <value>100nF</value>
  1904. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1905. <datasheet>~</datasheet>
  1906. <fields>
  1907. <field name="LCSC">C1525</field>
  1908. </fields>
  1909. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1910. <sheetpath names="/HDMI/" tstamps="/650A9AE9/"/>
  1911. <tstamp>60FA18DB</tstamp>
  1912. </comp>
  1913. <comp ref="C81">
  1914. <value>100nF</value>
  1915. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1916. <datasheet>~</datasheet>
  1917. <fields>
  1918. <field name="LCSC">C1525</field>
  1919. </fields>
  1920. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1921. <sheetpath names="/HDMI/" tstamps="/650A9AE9/"/>
  1922. <tstamp>60FA22EE</tstamp>
  1923. </comp>
  1924. <comp ref="C82">
  1925. <value>100nF</value>
  1926. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1927. <datasheet>~</datasheet>
  1928. <fields>
  1929. <field name="LCSC">C1525</field>
  1930. </fields>
  1931. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1932. <sheetpath names="/HDMI/" tstamps="/650A9AE9/"/>
  1933. <tstamp>60FA28B1</tstamp>
  1934. </comp>
  1935. <comp ref="C76">
  1936. <value>100nF</value>
  1937. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1938. <datasheet>~</datasheet>
  1939. <fields>
  1940. <field name="LCSC">C1525</field>
  1941. </fields>
  1942. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1943. <sheetpath names="/HDMI/" tstamps="/650A9AE9/"/>
  1944. <tstamp>60FA3BB6</tstamp>
  1945. </comp>
  1946. <comp ref="C75">
  1947. <value>100nF</value>
  1948. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1949. <datasheet>~</datasheet>
  1950. <fields>
  1951. <field name="LCSC">C1525</field>
  1952. </fields>
  1953. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1954. <sheetpath names="/HDMI/" tstamps="/650A9AE9/"/>
  1955. <tstamp>60FA3EFB</tstamp>
  1956. </comp>
  1957. <comp ref="C77">
  1958. <value>100nF</value>
  1959. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1960. <datasheet>~</datasheet>
  1961. <fields>
  1962. <field name="LCSC">C1525</field>
  1963. </fields>
  1964. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1965. <sheetpath names="/HDMI/" tstamps="/650A9AE9/"/>
  1966. <tstamp>60FA423E</tstamp>
  1967. </comp>
  1968. <comp ref="C79">
  1969. <value>100nF</value>
  1970. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1971. <datasheet>~</datasheet>
  1972. <fields>
  1973. <field name="LCSC">C1525</field>
  1974. </fields>
  1975. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1976. <sheetpath names="/HDMI/" tstamps="/650A9AE9/"/>
  1977. <tstamp>60FA4621</tstamp>
  1978. </comp>
  1979. <comp ref="C78">
  1980. <value>100nF</value>
  1981. <footprint>Capacitor_SMD:C_0402_1005Metric</footprint>
  1982. <datasheet>~</datasheet>
  1983. <fields>
  1984. <field name="LCSC">C1525</field>
  1985. </fields>
  1986. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  1987. <sheetpath names="/HDMI/" tstamps="/650A9AE9/"/>
  1988. <tstamp>60FA49FC</tstamp>
  1989. </comp>
  1990. <comp ref="Q7">
  1991. <value>AO3400A</value>
  1992. <footprint>Package_TO_SOT_SMD:SOT-23</footprint>
  1993. <datasheet>http://www.aosmd.com/pdfs/datasheet/AO3400A.pdf</datasheet>
  1994. <fields>
  1995. <field name="LCSC">C347476</field>
  1996. </fields>
  1997. <libsource lib="Transistor_FET" part="AO3400A" description="30V Vds, 5.7A Id, N-Channel MOSFET, SOT-23"/>
  1998. <sheetpath names="/HDMI/" tstamps="/650A9AE9/"/>
  1999. <tstamp>60E31564</tstamp>
  2000. </comp>
  2001. <comp ref="R47">
  2002. <value>2.2k</value>
  2003. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  2004. <datasheet>~</datasheet>
  2005. <fields>
  2006. <field name="LCSC">C25879</field>
  2007. </fields>
  2008. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  2009. <sheetpath names="/HDMI/" tstamps="/650A9AE9/"/>
  2010. <tstamp>60E3BB83</tstamp>
  2011. </comp>
  2012. <comp ref="R46">
  2013. <value>12.7k</value>
  2014. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  2015. <datasheet>~</datasheet>
  2016. <fields>
  2017. <field name="LCSC">C25752</field>
  2018. </fields>
  2019. <libsource lib="Device" part="R_Small" description="Resistor, small symbol"/>
  2020. <sheetpath names="/HDMI/" tstamps="/650A9AE9/"/>
  2021. <tstamp>60E40DE0</tstamp>
  2022. </comp>
  2023. <comp ref="J2">
  2024. <value>HDMI_A</value>
  2025. <footprint>sm6uax:HDMI_A_Amphenol_10029449-111</footprint>
  2026. <datasheet>https://en.wikipedia.org/wiki/HDMI</datasheet>
  2027. <libsource lib="Connector" part="HDMI_A" description="HDMI type A connector"/>
  2028. <sheetpath names="/HDMI/" tstamps="/650A9AE9/"/>
  2029. <tstamp>61917A74</tstamp>
  2030. </comp>
  2031. <comp ref="R6">
  2032. <value>5.1k</value>
  2033. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  2034. <datasheet>~</datasheet>
  2035. <fields>
  2036. <field name="LCSC">C25905</field>
  2037. </fields>
  2038. <libsource lib="Device" part="R" description="Resistor"/>
  2039. <sheetpath names="/USB/" tstamps="/601569F0/"/>
  2040. <tstamp>61148F19</tstamp>
  2041. </comp>
  2042. <comp ref="R5">
  2043. <value>5.1k</value>
  2044. <footprint>Resistor_SMD:R_0402_1005Metric</footprint>
  2045. <datasheet>~</datasheet>
  2046. <fields>
  2047. <field name="LCSC">C25905</field>
  2048. </fields>
  2049. <libsource lib="Device" part="R" description="Resistor"/>
  2050. <sheetpath names="/USB/" tstamps="/601569F0/"/>
  2051. <tstamp>6114B27A</tstamp>
  2052. </comp>
  2053. <comp ref="USB1">
  2054. <value>HRO-TYPE-C-31-M-12</value>
  2055. <footprint>max80:HRO-TYPE-C-31-M-12</footprint>
  2056. <datasheet>https://datasheet.lcsc.com/szlcsc/1811131825_Korean-Hroparts-Elec-TYPE-C-31-M-12_C165948.pdf</datasheet>
  2057. <fields>
  2058. <field name="LCSC">C165948</field>
  2059. </fields>
  2060. <libsource lib="max80" part="HRO-TYPE-C-31-M-12" description=""/>
  2061. <sheetpath names="/USB/" tstamps="/601569F0/"/>
  2062. <tstamp>6114CF45</tstamp>
  2063. </comp>
  2064. <comp ref="U9">
  2065. <value>USBLC6-2SC6</value>
  2066. <footprint>Package_TO_SOT_SMD:SOT-23-6</footprint>
  2067. <fields>
  2068. <field name="LCSC">C7519</field>
  2069. </fields>
  2070. <libsource lib="Power_Protection" part="USBLC6-2SC6" description="Very low capacitance ESD protection diode, 2 data-line, SOT-23-6"/>
  2071. <sheetpath names="/USB/" tstamps="/601569F0/"/>
  2072. <tstamp>6114F91C</tstamp>
  2073. </comp>
  2074. <comp ref="F1">
  2075. <value>Polyfuse 1.8A</value>
  2076. <footprint>max80:Fuse_1206_3216Metric</footprint>
  2077. <datasheet>https://datasheet.lcsc.com/szlcsc/1811141110_TECHFUSE-nSMD020-30V_C69680.pdf</datasheet>
  2078. <fields>
  2079. <field name="LCSC">C70082</field>
  2080. </fields>
  2081. <libsource lib="Device" part="Polyfuse" description="Resettable fuse, polymeric positive temperature coefficient"/>
  2082. <sheetpath names="/USB/" tstamps="/601569F0/"/>
  2083. <tstamp>611529F7</tstamp>
  2084. </comp>
  2085. <comp ref="C39">
  2086. <value>1uF</value>
  2087. <footprint>Capacitor_SMD:C_0805_2012Metric</footprint>
  2088. <datasheet>~</datasheet>
  2089. <fields>
  2090. <field name="LCSC">C28323</field>
  2091. </fields>
  2092. <libsource lib="Device" part="C_Small" description="Unpolarized capacitor, small symbol"/>
  2093. <sheetpath names="/USB/" tstamps="/601569F0/"/>
  2094. <tstamp>61154A99</tstamp>
  2095. </comp>
  2096. <comp ref="C40">
  2097. <value>10uF</value>
  2098. <footprint>Capacitor_SMD:C_0805_2012Metric</footprint>
  2099. <datasheet>~</datasheet>
  2100. <fields>
  2101. <field name="LCSC">C15850</field>
  2102. </fields>
  2103. <libsource lib="Device" part="C" description="Unpolarized capacitor"/>
  2104. <sheetpath names="/USB/" tstamps="/601569F0/"/>
  2105. <tstamp>61156BD2</tstamp>
  2106. </comp>
  2107. <comp ref="D19">
  2108. <value>1N5819W</value>
  2109. <footprint>Diode_SMD:D_SOD-123</footprint>
  2110. <datasheet>~</datasheet>
  2111. <fields>
  2112. <field name="LCSC">C963381</field>
  2113. </fields>
  2114. <libsource lib="Device" part="D_Schottky" description="Schottky diode"/>
  2115. <sheetpath names="/USB/" tstamps="/601569F0/"/>
  2116. <tstamp>60325B03</tstamp>
  2117. </comp>
  2118. <comp ref="R7">
  2119. <value>27</value>
  2120. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  2121. <datasheet>~</datasheet>
  2122. <fields>
  2123. <field name="LCSC">C22966</field>
  2124. </fields>
  2125. <libsource lib="Device" part="R" description="Resistor"/>
  2126. <sheetpath names="/USB/" tstamps="/601569F0/"/>
  2127. <tstamp>6258957D</tstamp>
  2128. </comp>
  2129. <comp ref="R8">
  2130. <value>27</value>
  2131. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  2132. <datasheet>~</datasheet>
  2133. <fields>
  2134. <field name="LCSC">C22966</field>
  2135. </fields>
  2136. <libsource lib="Device" part="R" description="Resistor"/>
  2137. <sheetpath names="/USB/" tstamps="/601569F0/"/>
  2138. <tstamp>62589F2A</tstamp>
  2139. </comp>
  2140. <comp ref="R10">
  2141. <value>1.5k</value>
  2142. <footprint>Resistor_SMD:R_0603_1608Metric</footprint>
  2143. <datasheet>~</datasheet>
  2144. <fields>
  2145. <field name="LCSC">C22843</field>
  2146. </fields>
  2147. <libsource lib="Device" part="R" description="Resistor"/>
  2148. <sheetpath names="/USB/" tstamps="/601569F0/"/>
  2149. <tstamp>61BA625A</tstamp>
  2150. </comp>
  2151. </components>
  2152. <libparts>
  2153. <libpart lib="74xx" part="74LS245">
  2154. <aliases>
  2155. <alias>74HC245</alias>
  2156. </aliases>
  2157. <description>Octal BUS Transceivers, 3-State outputs</description>
  2158. <docs>http://www.ti.com/lit/gpn/sn74LS245</docs>
  2159. <footprints>
  2160. <fp>DIP?20*</fp>
  2161. </footprints>
  2162. <fields>
  2163. <field name="Reference">U</field>
  2164. <field name="Value">74LS245</field>
  2165. </fields>
  2166. <pins>
  2167. <pin num="1" name="A-&gt;B" type="input"/>
  2168. <pin num="2" name="A0" type="3state"/>
  2169. <pin num="3" name="A1" type="3state"/>
  2170. <pin num="4" name="A2" type="3state"/>
  2171. <pin num="5" name="A3" type="3state"/>
  2172. <pin num="6" name="A4" type="3state"/>
  2173. <pin num="7" name="A5" type="3state"/>
  2174. <pin num="8" name="A6" type="3state"/>
  2175. <pin num="9" name="A7" type="3state"/>
  2176. <pin num="10" name="GND" type="power_in"/>
  2177. <pin num="11" name="B7" type="3state"/>
  2178. <pin num="12" name="B6" type="3state"/>
  2179. <pin num="13" name="B5" type="3state"/>
  2180. <pin num="14" name="B4" type="3state"/>
  2181. <pin num="15" name="B3" type="3state"/>
  2182. <pin num="16" name="B2" type="3state"/>
  2183. <pin num="17" name="B1" type="3state"/>
  2184. <pin num="18" name="B0" type="3state"/>
  2185. <pin num="19" name="CE" type="input"/>
  2186. <pin num="20" name="VCC" type="power_in"/>
  2187. </pins>
  2188. </libpart>
  2189. <libpart lib="Connector" part="Conn_01x01_Male">
  2190. <description>Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)</description>
  2191. <docs>~</docs>
  2192. <footprints>
  2193. <fp>Connector*:*</fp>
  2194. </footprints>
  2195. <fields>
  2196. <field name="Reference">J</field>
  2197. <field name="Value">Conn_01x01_Male</field>
  2198. </fields>
  2199. <pins>
  2200. <pin num="1" name="Pin_1" type="passive"/>
  2201. </pins>
  2202. </libpart>
  2203. <libpart lib="Connector" part="Conn_01x02_Male">
  2204. <description>Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)</description>
  2205. <docs>~</docs>
  2206. <footprints>
  2207. <fp>Connector*:*_1x??_*</fp>
  2208. </footprints>
  2209. <fields>
  2210. <field name="Reference">J</field>
  2211. <field name="Value">Conn_01x02_Male</field>
  2212. </fields>
  2213. <pins>
  2214. <pin num="1" name="Pin_1" type="passive"/>
  2215. <pin num="2" name="Pin_2" type="passive"/>
  2216. </pins>
  2217. </libpart>
  2218. <libpart lib="Connector" part="HDMI_A">
  2219. <description>HDMI type A connector</description>
  2220. <docs>https://en.wikipedia.org/wiki/HDMI</docs>
  2221. <footprints>
  2222. <fp>HDMI*A*</fp>
  2223. </footprints>
  2224. <fields>
  2225. <field name="Reference">J</field>
  2226. <field name="Value">HDMI_A</field>
  2227. </fields>
  2228. <pins>
  2229. <pin num="1" name="D2+" type="passive"/>
  2230. <pin num="2" name="D2S" type="power_in"/>
  2231. <pin num="3" name="D2-" type="passive"/>
  2232. <pin num="4" name="D1+" type="passive"/>
  2233. <pin num="5" name="D1S" type="power_in"/>
  2234. <pin num="6" name="D1-" type="passive"/>
  2235. <pin num="7" name="D0+" type="passive"/>
  2236. <pin num="8" name="D0S" type="power_in"/>
  2237. <pin num="9" name="D0-" type="passive"/>
  2238. <pin num="10" name="CK+" type="passive"/>
  2239. <pin num="11" name="CKS" type="power_in"/>
  2240. <pin num="12" name="CK-" type="passive"/>
  2241. <pin num="13" name="CEC" type="BiDi"/>
  2242. <pin num="14" name="UTILITY" type="passive"/>
  2243. <pin num="15" name="SCL" type="passive"/>
  2244. <pin num="16" name="SDA" type="BiDi"/>
  2245. <pin num="17" name="GND" type="power_in"/>
  2246. <pin num="18" name="+5V" type="power_in"/>
  2247. <pin num="19" name="HPD" type="passive"/>
  2248. <pin num="SH" name="SH" type="passive"/>
  2249. </pins>
  2250. </libpart>
  2251. <libpart lib="Connector" part="Micro_SD_Card_Det">
  2252. <aliases>
  2253. <alias>Micro_SD_Card_Det_Hirose_DM3AT</alias>
  2254. </aliases>
  2255. <description>Micro SD Card Socket with card detection pins</description>
  2256. <docs>https://www.hirose.com/product/en/download_file/key_name/DM3/category/Catalog/doc_file_id/49662/?file_category_id=4&amp;item_id=195&amp;is_series=1</docs>
  2257. <footprints>
  2258. <fp>microSD*</fp>
  2259. </footprints>
  2260. <fields>
  2261. <field name="Reference">J</field>
  2262. <field name="Value">Micro_SD_Card_Det</field>
  2263. </fields>
  2264. <pins>
  2265. <pin num="1" name="DAT2" type="BiDi"/>
  2266. <pin num="2" name="DAT3/CD" type="BiDi"/>
  2267. <pin num="3" name="CMD" type="input"/>
  2268. <pin num="4" name="VDD" type="power_in"/>
  2269. <pin num="5" name="CLK" type="input"/>
  2270. <pin num="6" name="VSS" type="power_in"/>
  2271. <pin num="7" name="DAT0" type="BiDi"/>
  2272. <pin num="8" name="DAT1" type="BiDi"/>
  2273. <pin num="9" name="DET_B" type="passive"/>
  2274. <pin num="10" name="DET_A" type="passive"/>
  2275. <pin num="11" name="SHIELD" type="passive"/>
  2276. </pins>
  2277. </libpart>
  2278. <libpart lib="Connector_Generic" part="Conn_02x06_Odd_Even">
  2279. <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>
  2280. <docs>~</docs>
  2281. <footprints>
  2282. <fp>Connector*:*_2x??_*</fp>
  2283. </footprints>
  2284. <fields>
  2285. <field name="Reference">J</field>
  2286. <field name="Value">Conn_02x06_Odd_Even</field>
  2287. </fields>
  2288. <pins>
  2289. <pin num="1" name="Pin_1" type="passive"/>
  2290. <pin num="2" name="Pin_2" type="passive"/>
  2291. <pin num="3" name="Pin_3" type="passive"/>
  2292. <pin num="4" name="Pin_4" type="passive"/>
  2293. <pin num="5" name="Pin_5" type="passive"/>
  2294. <pin num="6" name="Pin_6" type="passive"/>
  2295. <pin num="7" name="Pin_7" type="passive"/>
  2296. <pin num="8" name="Pin_8" type="passive"/>
  2297. <pin num="9" name="Pin_9" type="passive"/>
  2298. <pin num="10" name="Pin_10" type="passive"/>
  2299. <pin num="11" name="Pin_11" type="passive"/>
  2300. <pin num="12" name="Pin_12" type="passive"/>
  2301. </pins>
  2302. </libpart>
  2303. <libpart lib="Connector_Generic" part="Conn_02x20_Odd_Even">
  2304. <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>
  2305. <docs>~</docs>
  2306. <footprints>
  2307. <fp>Connector*:*_2x??_*</fp>
  2308. </footprints>
  2309. <fields>
  2310. <field name="Reference">J</field>
  2311. <field name="Value">Conn_02x20_Odd_Even</field>
  2312. </fields>
  2313. <pins>
  2314. <pin num="1" name="Pin_1" type="passive"/>
  2315. <pin num="2" name="Pin_2" type="passive"/>
  2316. <pin num="3" name="Pin_3" type="passive"/>
  2317. <pin num="4" name="Pin_4" type="passive"/>
  2318. <pin num="5" name="Pin_5" type="passive"/>
  2319. <pin num="6" name="Pin_6" type="passive"/>
  2320. <pin num="7" name="Pin_7" type="passive"/>
  2321. <pin num="8" name="Pin_8" type="passive"/>
  2322. <pin num="9" name="Pin_9" type="passive"/>
  2323. <pin num="10" name="Pin_10" type="passive"/>
  2324. <pin num="11" name="Pin_11" type="passive"/>
  2325. <pin num="12" name="Pin_12" type="passive"/>
  2326. <pin num="13" name="Pin_13" type="passive"/>
  2327. <pin num="14" name="Pin_14" type="passive"/>
  2328. <pin num="15" name="Pin_15" type="passive"/>
  2329. <pin num="16" name="Pin_16" type="passive"/>
  2330. <pin num="17" name="Pin_17" type="passive"/>
  2331. <pin num="18" name="Pin_18" type="passive"/>
  2332. <pin num="19" name="Pin_19" type="passive"/>
  2333. <pin num="20" name="Pin_20" type="passive"/>
  2334. <pin num="21" name="Pin_21" type="passive"/>
  2335. <pin num="22" name="Pin_22" type="passive"/>
  2336. <pin num="23" name="Pin_23" type="passive"/>
  2337. <pin num="24" name="Pin_24" type="passive"/>
  2338. <pin num="25" name="Pin_25" type="passive"/>
  2339. <pin num="26" name="Pin_26" type="passive"/>
  2340. <pin num="27" name="Pin_27" type="passive"/>
  2341. <pin num="28" name="Pin_28" type="passive"/>
  2342. <pin num="29" name="Pin_29" type="passive"/>
  2343. <pin num="30" name="Pin_30" type="passive"/>
  2344. <pin num="31" name="Pin_31" type="passive"/>
  2345. <pin num="32" name="Pin_32" type="passive"/>
  2346. <pin num="33" name="Pin_33" type="passive"/>
  2347. <pin num="34" name="Pin_34" type="passive"/>
  2348. <pin num="35" name="Pin_35" type="passive"/>
  2349. <pin num="36" name="Pin_36" type="passive"/>
  2350. <pin num="37" name="Pin_37" type="passive"/>
  2351. <pin num="38" name="Pin_38" type="passive"/>
  2352. <pin num="39" name="Pin_39" type="passive"/>
  2353. <pin num="40" name="Pin_40" type="passive"/>
  2354. </pins>
  2355. </libpart>
  2356. <libpart lib="Device" part="Battery_Cell">
  2357. <description>Single-cell battery</description>
  2358. <docs>~</docs>
  2359. <fields>
  2360. <field name="Reference">BT</field>
  2361. <field name="Value">Battery_Cell</field>
  2362. </fields>
  2363. <pins>
  2364. <pin num="1" name="+" type="passive"/>
  2365. <pin num="2" name="-" type="passive"/>
  2366. </pins>
  2367. </libpart>
  2368. <libpart lib="Device" part="C">
  2369. <description>Unpolarized capacitor</description>
  2370. <docs>~</docs>
  2371. <footprints>
  2372. <fp>C_*</fp>
  2373. </footprints>
  2374. <fields>
  2375. <field name="Reference">C</field>
  2376. <field name="Value">C</field>
  2377. </fields>
  2378. <pins>
  2379. <pin num="1" name="~" type="passive"/>
  2380. <pin num="2" name="~" type="passive"/>
  2381. </pins>
  2382. </libpart>
  2383. <libpart lib="Device" part="CP_Small">
  2384. <description>Polarized capacitor, small symbol</description>
  2385. <docs>~</docs>
  2386. <footprints>
  2387. <fp>CP_*</fp>
  2388. </footprints>
  2389. <fields>
  2390. <field name="Reference">C</field>
  2391. <field name="Value">CP_Small</field>
  2392. </fields>
  2393. <pins>
  2394. <pin num="1" name="~" type="passive"/>
  2395. <pin num="2" name="~" type="passive"/>
  2396. </pins>
  2397. </libpart>
  2398. <libpart lib="Device" part="C_Small">
  2399. <description>Unpolarized capacitor, small symbol</description>
  2400. <docs>~</docs>
  2401. <footprints>
  2402. <fp>C_*</fp>
  2403. </footprints>
  2404. <fields>
  2405. <field name="Reference">C</field>
  2406. <field name="Value">C_Small</field>
  2407. </fields>
  2408. <pins>
  2409. <pin num="1" name="~" type="passive"/>
  2410. <pin num="2" name="~" type="passive"/>
  2411. </pins>
  2412. </libpart>
  2413. <libpart lib="Device" part="D_Schottky">
  2414. <description>Schottky diode</description>
  2415. <docs>~</docs>
  2416. <footprints>
  2417. <fp>TO-???*</fp>
  2418. <fp>*_Diode_*</fp>
  2419. <fp>*SingleDiode*</fp>
  2420. <fp>D_*</fp>
  2421. </footprints>
  2422. <fields>
  2423. <field name="Reference">D</field>
  2424. <field name="Value">D_Schottky</field>
  2425. </fields>
  2426. <pins>
  2427. <pin num="1" name="K" type="passive"/>
  2428. <pin num="2" name="A" type="passive"/>
  2429. </pins>
  2430. </libpart>
  2431. <libpart lib="Device" part="LED">
  2432. <description>Light emitting diode</description>
  2433. <docs>~</docs>
  2434. <footprints>
  2435. <fp>LED*</fp>
  2436. <fp>LED_SMD:*</fp>
  2437. <fp>LED_THT:*</fp>
  2438. </footprints>
  2439. <fields>
  2440. <field name="Reference">D</field>
  2441. <field name="Value">LED</field>
  2442. </fields>
  2443. <pins>
  2444. <pin num="1" name="K" type="passive"/>
  2445. <pin num="2" name="A" type="passive"/>
  2446. </pins>
  2447. </libpart>
  2448. <libpart lib="Device" part="Polyfuse">
  2449. <description>Resettable fuse, polymeric positive temperature coefficient</description>
  2450. <docs>~</docs>
  2451. <footprints>
  2452. <fp>*polyfuse*</fp>
  2453. <fp>*PTC*</fp>
  2454. </footprints>
  2455. <fields>
  2456. <field name="Reference">F</field>
  2457. <field name="Value">Polyfuse</field>
  2458. </fields>
  2459. <pins>
  2460. <pin num="1" name="~" type="passive"/>
  2461. <pin num="2" name="~" type="passive"/>
  2462. </pins>
  2463. </libpart>
  2464. <libpart lib="Device" part="R">
  2465. <description>Resistor</description>
  2466. <docs>~</docs>
  2467. <footprints>
  2468. <fp>R_*</fp>
  2469. </footprints>
  2470. <fields>
  2471. <field name="Reference">R</field>
  2472. <field name="Value">R</field>
  2473. </fields>
  2474. <pins>
  2475. <pin num="1" name="~" type="passive"/>
  2476. <pin num="2" name="~" type="passive"/>
  2477. </pins>
  2478. </libpart>
  2479. <libpart lib="Device" part="R_Small">
  2480. <description>Resistor, small symbol</description>
  2481. <docs>~</docs>
  2482. <footprints>
  2483. <fp>R_*</fp>
  2484. </footprints>
  2485. <fields>
  2486. <field name="Reference">R</field>
  2487. <field name="Value">R_Small</field>
  2488. </fields>
  2489. <pins>
  2490. <pin num="1" name="~" type="passive"/>
  2491. <pin num="2" name="~" type="passive"/>
  2492. </pins>
  2493. </libpart>
  2494. <libpart lib="Memory_Flash" part="W25Q32JVSS">
  2495. <aliases>
  2496. <alias>W25Q128JVS</alias>
  2497. </aliases>
  2498. <description>32Mb Serial Flash Memory, Standard/Dual/Quad SPI, SOIC-8</description>
  2499. <docs>http://www.winbond.com/resource-files/w25q32jv%20revg%2003272018%20plus.pdf</docs>
  2500. <footprints>
  2501. <fp>SOIC*5.23x5.23mm*P1.27mm*</fp>
  2502. </footprints>
  2503. <fields>
  2504. <field name="Reference">U</field>
  2505. <field name="Value">W25Q32JVSS</field>
  2506. <field name="Footprint">Package_SO:SOIC-8_5.23x5.23mm_P1.27mm</field>
  2507. </fields>
  2508. <pins>
  2509. <pin num="1" name="~CS" type="input"/>
  2510. <pin num="2" name="DO(IO1)" type="BiDi"/>
  2511. <pin num="3" name="IO2" type="BiDi"/>
  2512. <pin num="4" name="GND" type="power_in"/>
  2513. <pin num="5" name="DI(IO0)" type="BiDi"/>
  2514. <pin num="6" name="CLK" type="input"/>
  2515. <pin num="7" name="IO3" type="BiDi"/>
  2516. <pin num="8" name="VCC" type="power_in"/>
  2517. </pins>
  2518. </libpart>
  2519. <libpart lib="Oscillator" part="ASE-xxxMHz">
  2520. <description>3.3V CMOS SMD Crystal Clock Oscillator, Abracon</description>
  2521. <docs>http://www.abracon.com/Oscillators/ASV.pdf</docs>
  2522. <footprints>
  2523. <fp>Oscillator*SMD*Abracon*ASE*3.2x2.5mm*</fp>
  2524. </footprints>
  2525. <fields>
  2526. <field name="Reference">X</field>
  2527. <field name="Value">ASE-xxxMHz</field>
  2528. <field name="Footprint">Oscillator:Oscillator_SMD_Abracon_ASE-4Pin_3.2x2.5mm</field>
  2529. </fields>
  2530. <pins>
  2531. <pin num="1" name="EN" type="input"/>
  2532. <pin num="2" name="GND" type="power_in"/>
  2533. <pin num="3" name="OUT" type="output"/>
  2534. <pin num="4" name="Vdd" type="power_in"/>
  2535. </pins>
  2536. </libpart>
  2537. <libpart lib="Power_Protection" part="USBLC6-2SC6">
  2538. <description>Very low capacitance ESD protection diode, 2 data-line, SOT-23-6</description>
  2539. <docs>https://www.st.com/resource/en/datasheet/usblc6-2.pdf</docs>
  2540. <footprints>
  2541. <fp>SOT?23*</fp>
  2542. </footprints>
  2543. <fields>
  2544. <field name="Reference">U</field>
  2545. <field name="Value">USBLC6-2SC6</field>
  2546. <field name="Footprint">Package_TO_SOT_SMD:SOT-23-6</field>
  2547. </fields>
  2548. <pins>
  2549. <pin num="1" name="I/O1" type="passive"/>
  2550. <pin num="2" name="GND" type="passive"/>
  2551. <pin num="3" name="I/O2" type="passive"/>
  2552. <pin num="4" name="I/O2" type="passive"/>
  2553. <pin num="5" name="VBUS" type="passive"/>
  2554. <pin num="6" name="I/O1" type="passive"/>
  2555. </pins>
  2556. </libpart>
  2557. <libpart lib="RF_Module" part="ESP32-S2-WROVER">
  2558. <aliases>
  2559. <alias>ESP32-S2-WROVER-I</alias>
  2560. </aliases>
  2561. <description>RF Module, ESP32-D0WDQ6 SoC, Wi-Fi 802.11b/g/n, 32-bit, 2.7-3.6V, onboard antenna, SMD</description>
  2562. <docs>https://www.espressif.com/sites/default/files/documentation/esp32-s2-wroom_esp32-s2-wroom-i_datasheet_en.pdf</docs>
  2563. <footprints>
  2564. <fp>ESP32?S2?WROVER*</fp>
  2565. </footprints>
  2566. <fields>
  2567. <field name="Reference">U</field>
  2568. <field name="Value">ESP32-S2-WROVER</field>
  2569. <field name="Footprint">RF_Module:ESP32-S2-WROVER</field>
  2570. </fields>
  2571. <pins>
  2572. <pin num="1" name="GND" type="power_in"/>
  2573. <pin num="2" name="3V3" type="power_in"/>
  2574. <pin num="3" name="IO00" type="BiDi"/>
  2575. <pin num="4" name="IO01" type="BiDi"/>
  2576. <pin num="5" name="IO02" type="BiDi"/>
  2577. <pin num="6" name="IO03" type="BiDi"/>
  2578. <pin num="7" name="IO04" type="BiDi"/>
  2579. <pin num="8" name="IO05" type="BiDi"/>
  2580. <pin num="9" name="IO06" type="BiDi"/>
  2581. <pin num="10" name="IO07" type="BiDi"/>
  2582. <pin num="11" name="IO08" type="BiDi"/>
  2583. <pin num="12" name="IO09" type="BiDi"/>
  2584. <pin num="13" name="IO10" type="BiDi"/>
  2585. <pin num="14" name="IO11" type="BiDi"/>
  2586. <pin num="15" name="IO12" type="BiDi"/>
  2587. <pin num="16" name="IO13" type="BiDi"/>
  2588. <pin num="17" name="IO14" type="BiDi"/>
  2589. <pin num="18" name="IO15" type="BiDi"/>
  2590. <pin num="19" name="IO16" type="BiDi"/>
  2591. <pin num="20" name="IO17" type="BiDi"/>
  2592. <pin num="21" name="IO18" type="BiDi"/>
  2593. <pin num="22" name="USB_D-" type="BiDi"/>
  2594. <pin num="23" name="USB_D+" type="BiDi"/>
  2595. <pin num="24" name="IO21" type="BiDi"/>
  2596. <pin num="25" name="IO26" type="BiDi"/>
  2597. <pin num="26" name="GND" type="passive"/>
  2598. <pin num="27" name="IO33" type="BiDi"/>
  2599. <pin num="28" name="IO34" type="BiDi"/>
  2600. <pin num="29" name="IO35" type="BiDi"/>
  2601. <pin num="30" name="IO36" type="BiDi"/>
  2602. <pin num="31" name="IO37" type="BiDi"/>
  2603. <pin num="32" name="IO38" type="BiDi"/>
  2604. <pin num="33" name="IO39" type="BiDi"/>
  2605. <pin num="34" name="IO40" type="BiDi"/>
  2606. <pin num="35" name="IO41" type="BiDi"/>
  2607. <pin num="36" name="IO42" type="BiDi"/>
  2608. <pin num="37" name="TXD0" type="BiDi"/>
  2609. <pin num="38" name="RXD0" type="BiDi"/>
  2610. <pin num="39" name="IO45" type="BiDi"/>
  2611. <pin num="40" name="IO46" type="input"/>
  2612. <pin num="41" name="EN" type="input"/>
  2613. <pin num="42" name="GND" type="passive"/>
  2614. <pin num="43" name="GND" type="passive"/>
  2615. </pins>
  2616. </libpart>
  2617. <libpart lib="Regulator_Linear" part="AP1117-15">
  2618. <aliases>
  2619. <alias>AP1117-18</alias>
  2620. <alias>AP1117-25</alias>
  2621. <alias>AP1117-33</alias>
  2622. <alias>AP1117-50</alias>
  2623. <alias>LD1117S33TR_SOT223</alias>
  2624. <alias>LD1117S12TR_SOT223</alias>
  2625. <alias>LD1117S18TR_SOT223</alias>
  2626. <alias>LD1117S25TR_SOT223</alias>
  2627. <alias>LD1117S50TR_SOT223</alias>
  2628. <alias>NCP1117-12_SOT223</alias>
  2629. <alias>NCP1117-1.5_SOT223</alias>
  2630. <alias>NCP1117-1.8_SOT223</alias>
  2631. <alias>NCP1117-2.0_SOT223</alias>
  2632. <alias>NCP1117-2.5_SOT223</alias>
  2633. <alias>NCP1117-2.85_SOT223</alias>
  2634. <alias>NCP1117-3.3_SOT223</alias>
  2635. <alias>NCP1117-5.0_SOT223</alias>
  2636. <alias>AMS1117-1.5</alias>
  2637. <alias>AMS1117-1.8</alias>
  2638. <alias>AMS1117-2.5</alias>
  2639. <alias>AMS1117-2.85</alias>
  2640. <alias>AMS1117-3.3</alias>
  2641. <alias>AMS1117-5.0</alias>
  2642. </aliases>
  2643. <description>1A Low Dropout regulator, positive, 1.5V fixed output, SOT-223</description>
  2644. <docs>http://www.diodes.com/datasheets/AP1117.pdf</docs>
  2645. <footprints>
  2646. <fp>SOT?223*TabPin2*</fp>
  2647. </footprints>
  2648. <fields>
  2649. <field name="Reference">U</field>
  2650. <field name="Value">AP1117-15</field>
  2651. <field name="Footprint">Package_TO_SOT_SMD:SOT-223-3_TabPin2</field>
  2652. </fields>
  2653. <pins>
  2654. <pin num="1" name="GND" type="power_in"/>
  2655. <pin num="2" name="VO" type="power_out"/>
  2656. <pin num="3" name="VI" type="power_in"/>
  2657. </pins>
  2658. </libpart>
  2659. <libpart lib="Timer_RTC" part="DS3231M">
  2660. <description>Extremely Accurate I2C-Integrated RTC/TCXO/Crystal SOIC-16</description>
  2661. <docs>http://datasheets.maximintegrated.com/en/ds/DS3231.pdf</docs>
  2662. <footprints>
  2663. <fp>SOIC*7.5x10.3mm*P1.27mm*</fp>
  2664. </footprints>
  2665. <fields>
  2666. <field name="Reference">U</field>
  2667. <field name="Value">DS3231M</field>
  2668. <field name="Footprint">Package_SO:SOIC-16W_7.5x10.3mm_P1.27mm</field>
  2669. </fields>
  2670. <pins>
  2671. <pin num="1" name="32KHZ" type="openCol"/>
  2672. <pin num="2" name="VCC" type="power_in"/>
  2673. <pin num="3" name="~INT~/SQW" type="openCol"/>
  2674. <pin num="4" name="~RST" type="BiDi"/>
  2675. <pin num="5" name="GND" type="passive"/>
  2676. <pin num="6" name="GND" type="passive"/>
  2677. <pin num="7" name="GND" type="passive"/>
  2678. <pin num="8" name="GND" type="passive"/>
  2679. <pin num="9" name="GND" type="passive"/>
  2680. <pin num="10" name="GND" type="passive"/>
  2681. <pin num="11" name="GND" type="passive"/>
  2682. <pin num="12" name="GND" type="passive"/>
  2683. <pin num="13" name="GND" type="power_in"/>
  2684. <pin num="14" name="VBAT" type="power_in"/>
  2685. <pin num="15" name="SDA" type="BiDi"/>
  2686. <pin num="16" name="SCL" type="input"/>
  2687. </pins>
  2688. </libpart>
  2689. <libpart lib="Transistor_FET" part="BSS138">
  2690. <aliases>
  2691. <alias>2N7002</alias>
  2692. <alias>2N7002E</alias>
  2693. <alias>2N7002H</alias>
  2694. <alias>2N7002K</alias>
  2695. <alias>BS170F</alias>
  2696. <alias>BS870</alias>
  2697. <alias>BSN20</alias>
  2698. <alias>BSS123</alias>
  2699. <alias>BSS127S</alias>
  2700. <alias>DMG2302U</alias>
  2701. <alias>DMG3402L</alias>
  2702. <alias>DMG3404L</alias>
  2703. <alias>DMG3406L</alias>
  2704. <alias>DMG3414U</alias>
  2705. <alias>DMG3418L</alias>
  2706. <alias>DMN10H220L</alias>
  2707. <alias>DMN10H700S</alias>
  2708. <alias>DMN13H750S</alias>
  2709. <alias>DMN2041L</alias>
  2710. <alias>DMN2050L</alias>
  2711. <alias>DMN2056U</alias>
  2712. <alias>DMN2058U</alias>
  2713. <alias>DMN2075U</alias>
  2714. <alias>DMN2230U</alias>
  2715. <alias>DMN24H11DS</alias>
  2716. <alias>DMN24H3D5L</alias>
  2717. <alias>DMN3042L</alias>
  2718. <alias>DMN3051L</alias>
  2719. <alias>DMN30H4D0L</alias>
  2720. <alias>DMN3110S</alias>
  2721. <alias>DMN3150L</alias>
  2722. <alias>DMN3300U</alias>
  2723. <alias>DMN3404L</alias>
  2724. <alias>DMN6075S</alias>
  2725. <alias>DMN6140L</alias>
  2726. <alias>DMN67D7L</alias>
  2727. <alias>DMN67D8L</alias>
  2728. <alias>MMBF170</alias>
  2729. <alias>VN10LF</alias>
  2730. <alias>ZVN3306F</alias>
  2731. <alias>ZVN3310F</alias>
  2732. <alias>ZVN3320F</alias>
  2733. <alias>ZVN4106F</alias>
  2734. <alias>ZXM61N02F</alias>
  2735. <alias>ZXM61N03F</alias>
  2736. <alias>ZXMN10A07F</alias>
  2737. <alias>ZXMN2A01F</alias>
  2738. <alias>ZXMN2A14F</alias>
  2739. <alias>ZXMN2B01F</alias>
  2740. <alias>ZXMN2B14FH</alias>
  2741. <alias>ZXMN2F30FH</alias>
  2742. <alias>ZXMN2F34FH</alias>
  2743. <alias>ZXMN3A01F</alias>
  2744. <alias>ZXMN3A14F</alias>
  2745. <alias>ZXMN3B01F</alias>
  2746. <alias>ZXMN3B14F</alias>
  2747. <alias>ZXMN3F30FH</alias>
  2748. <alias>ZXMN6A07F</alias>
  2749. <alias>IRLML0030</alias>
  2750. <alias>IRLML2060</alias>
  2751. <alias>TSM2302CX</alias>
  2752. <alias>AO3400A</alias>
  2753. </aliases>
  2754. <description>50V Vds, 0.22A Id, N-Channel MOSFET, SOT-23</description>
  2755. <docs>https://www.onsemi.com/pub/Collateral/BSS138-D.PDF</docs>
  2756. <footprints>
  2757. <fp>SOT?23*</fp>
  2758. </footprints>
  2759. <fields>
  2760. <field name="Reference">Q</field>
  2761. <field name="Value">BSS138</field>
  2762. <field name="Footprint">Package_TO_SOT_SMD:SOT-23</field>
  2763. </fields>
  2764. <pins>
  2765. <pin num="1" name="G" type="input"/>
  2766. <pin num="2" name="S" type="passive"/>
  2767. <pin num="3" name="D" type="passive"/>
  2768. </pins>
  2769. </libpart>
  2770. <libpart lib="Transistor_FET" part="TP0610T">
  2771. <aliases>
  2772. <alias>VP0610T</alias>
  2773. <alias>BSS84</alias>
  2774. <alias>NTR2101P</alias>
  2775. <alias>BSS83P</alias>
  2776. <alias>Si2319CDS</alias>
  2777. <alias>IRLML6401</alias>
  2778. <alias>IRLML6402</alias>
  2779. <alias>DMG2301L</alias>
  2780. <alias>AO3401A</alias>
  2781. <alias>IRLML9301</alias>
  2782. <alias>IRLML5203</alias>
  2783. <alias>Si2371EDS</alias>
  2784. <alias>TSM2301ACX</alias>
  2785. <alias>FDN340P</alias>
  2786. </aliases>
  2787. <description>-0.18A Id, -60V Vds, P-Channel MOSFET, SOT-23</description>
  2788. <docs>http://www.vishay.com/docs/70209/70209.pdf</docs>
  2789. <footprints>
  2790. <fp>SOT?23*</fp>
  2791. </footprints>
  2792. <fields>
  2793. <field name="Reference">Q</field>
  2794. <field name="Value">TP0610T</field>
  2795. <field name="Footprint">Package_TO_SOT_SMD:SOT-23</field>
  2796. </fields>
  2797. <pins>
  2798. <pin num="1" name="G" type="input"/>
  2799. <pin num="2" name="S" type="passive"/>
  2800. <pin num="3" name="D" type="passive"/>
  2801. </pins>
  2802. </libpart>
  2803. <libpart lib="max80" part="ABC-Bus">
  2804. <fields>
  2805. <field name="Reference">X</field>
  2806. <field name="Value">ABC-Bus</field>
  2807. <field name="Footprint">sm6uax:MAB64B-FAB64Q</field>
  2808. </fields>
  2809. <pins>
  2810. <pin num="A1" name="-12V" type="power_out"/>
  2811. <pin num="A2" name="0V" type="power_out"/>
  2812. <pin num="A3" name="~RESIN" type="BiDi"/>
  2813. <pin num="A4" name="GND" type="power_out"/>
  2814. <pin num="A5" name="~XMEMW" type="BiDi"/>
  2815. <pin num="A6" name="D7" type="BiDi"/>
  2816. <pin num="A7" name="D6" type="BiDi"/>
  2817. <pin num="A8" name="D5" type="BiDi"/>
  2818. <pin num="A9" name="D4" type="BiDi"/>
  2819. <pin num="A10" name="D3" type="BiDi"/>
  2820. <pin num="A11" name="D2" type="BiDi"/>
  2821. <pin num="A12" name="D1" type="BiDi"/>
  2822. <pin num="A13" name="D0" type="BiDi"/>
  2823. <pin num="A14" name="NC" type="passive"/>
  2824. <pin num="A15" name="~RST" type="BiDi"/>
  2825. <pin num="A16" name="~STATUS" type="BiDi"/>
  2826. <pin num="A17" name="~INP" type="BiDi"/>
  2827. <pin num="A18" name="~C4" type="BiDi"/>
  2828. <pin num="A19" name="~C3" type="BiDi"/>
  2829. <pin num="A20" name="~C2" type="BiDi"/>
  2830. <pin num="A21" name="~C1" type="BiDi"/>
  2831. <pin num="A22" name="~OUT" type="BiDi"/>
  2832. <pin num="A23" name="~CS" type="BiDi"/>
  2833. <pin num="A24" name="GND" type="power_out"/>
  2834. <pin num="A25" name="GND" type="power_out"/>
  2835. <pin num="A26" name="GND" type="power_out"/>
  2836. <pin num="A27" name="GND" type="power_out"/>
  2837. <pin num="A28" name="GND" type="power_out"/>
  2838. <pin num="A29" name="GND" type="power_out"/>
  2839. <pin num="A30" name="READY" type="BiDi"/>
  2840. <pin num="A31" name="+5V" type="power_out"/>
  2841. <pin num="A32" name="+12V" type="power_out"/>
  2842. <pin num="B1" name="-12V" type="power_out"/>
  2843. <pin num="B2" name="0V" type="power_out"/>
  2844. <pin num="B3" name="GND" type="power_out"/>
  2845. <pin num="B4" name="~XMEMFL" type="BiDi"/>
  2846. <pin num="B5" name="5" type="passive"/>
  2847. <pin num="B6" name="GND" type="power_out"/>
  2848. <pin num="B7" name="GND" type="power_out"/>
  2849. <pin num="B8" name="GND" type="power_out"/>
  2850. <pin num="B9" name="GND" type="power_out"/>
  2851. <pin num="B10" name="GND" type="power_out"/>
  2852. <pin num="B11" name="GND" type="power_out"/>
  2853. <pin num="B12" name="GND" type="power_out"/>
  2854. <pin num="B13" name="~INT" type="BiDi"/>
  2855. <pin num="B14" name="A15" type="BiDi"/>
  2856. <pin num="B15" name="A14" type="BiDi"/>
  2857. <pin num="B16" name="A13" type="BiDi"/>
  2858. <pin num="B17" name="A12" type="BiDi"/>
  2859. <pin num="B18" name="A11" type="BiDi"/>
  2860. <pin num="B19" name="A10" type="BiDi"/>
  2861. <pin num="B20" name="A9" type="BiDi"/>
  2862. <pin num="B21" name="A8" type="BiDi"/>
  2863. <pin num="B22" name="A7" type="BiDi"/>
  2864. <pin num="B23" name="A6" type="BiDi"/>
  2865. <pin num="B24" name="A5" type="BiDi"/>
  2866. <pin num="B25" name="A4" type="BiDi"/>
  2867. <pin num="B26" name="A3" type="BiDi"/>
  2868. <pin num="B27" name="A2" type="BiDi"/>
  2869. <pin num="B28" name="A1" type="BiDi"/>
  2870. <pin num="B29" name="A0" type="BiDi"/>
  2871. <pin num="B30" name="NC" type="passive"/>
  2872. <pin num="B31" name="+5V" type="power_out"/>
  2873. <pin num="B32" name="+12V" type="power_out"/>
  2874. </pins>
  2875. </libpart>
  2876. <libpart lib="max80" part="EP4CE15F17C8N">
  2877. <fields>
  2878. <field name="Reference">U</field>
  2879. <field name="Value">EP4CE15F17C8N</field>
  2880. </fields>
  2881. <pins>
  2882. <pin num="A1" name="VCCIO8" type="power_in"/>
  2883. <pin num="A2" name="VREFB8N1_B8" type="BiDi"/>
  2884. <pin num="A3" name="DIFFIO_T2n_B8" type="BiDi"/>
  2885. <pin num="A4" name="DIFFIO_T3n/DATA10_B8" type="BiDi"/>
  2886. <pin num="A5" name="IO/DATA7_B8" type="BiDi"/>
  2887. <pin num="A6" name="DIFFIO_T9n/DATA14_B8" type="BiDi"/>
  2888. <pin num="A7" name="DIFFIO_T11n/PADD18_B8" type="BiDi"/>
  2889. <pin num="A8" name="DIFFCLK_4n_B8" type="BiDi"/>
  2890. <pin num="A9" name="DIFFCLK_5n_B7" type="BiDi"/>
  2891. <pin num="A10" name="DIFFIO_T20n/PADD5_B7" type="BiDi"/>
  2892. <pin num="A11" name="DIFFIO_T25n/PADD1_B7" type="BiDi"/>
  2893. <pin num="A12" name="DIFFIO_T27p/PADD0_B7" type="BiDi"/>
  2894. <pin num="A13" name="VREFB7N1_B7" type="BiDi"/>
  2895. <pin num="A14" name="PLL2_CLKOUTn_B7" type="BiDi"/>
  2896. <pin num="A15" name="DIFFIO_T23n/PADD3_B7" type="BiDi"/>
  2897. <pin num="A16" name="VCCIO7" type="power_in"/>
  2898. <pin num="B1" name="DIFFIO_L3p_B1" type="BiDi"/>
  2899. <pin num="B2" name="GND" type="power_in"/>
  2900. <pin num="B3" name="DIFFIO_T2p/DATA12_B8" type="BiDi"/>
  2901. <pin num="B4" name="DIFFIO_T3p/DATA11_B8" type="BiDi"/>
  2902. <pin num="B5" name="DIFFIO_T5p/DATA8_B8" type="BiDi"/>
  2903. <pin num="B6" name="DIFFIO_T9p/DATA13_B8" type="BiDi"/>
  2904. <pin num="B7" name="DIFFIO_T11p/DATA4_B8" type="BiDi"/>
  2905. <pin num="B8" name="DIFFCLK_4p_B8" type="BiDi"/>
  2906. <pin num="B9" name="DIFFCLK_5p_B7" type="BiDi"/>
  2907. <pin num="B10" name="DIFFIO_T20p/PADD6_B7" type="BiDi"/>
  2908. <pin num="B11" name="DIFFIO_T25p/PADD2_B7" type="BiDi"/>
  2909. <pin num="B12" name="DIFFIO_T26n_B7" type="BiDi"/>
  2910. <pin num="B13" name="DIFFIO_T29n_B7" type="BiDi"/>
  2911. <pin num="B14" name="PLL2_CLKOUTp_B7" type="BiDi"/>
  2912. <pin num="B15" name="GND" type="power_in"/>
  2913. <pin num="B16" name="DIFFIO_R15n_B6" type="BiDi"/>
  2914. <pin num="C1" name="DIFFIO_L4n/DATA1,ASDO_B1" type="BiDi"/>
  2915. <pin num="C2" name="DIFFIO_L4p_B1" type="BiDi"/>
  2916. <pin num="C3" name="PLL3_CLKOUTn_B8" type="BiDi"/>
  2917. <pin num="C4" name="VCCIO8" type="power_in"/>
  2918. <pin num="C5" name="GND" type="power_in"/>
  2919. <pin num="C6" name="VREFB8N0_B8" type="BiDi"/>
  2920. <pin num="C7" name="VCCIO8" type="power_in"/>
  2921. <pin num="C8" name="DIFFIO_T13p/PADD17_B8" type="BiDi"/>
  2922. <pin num="C9" name="DIFFIO_T19n/PADD7_B7" type="BiDi"/>
  2923. <pin num="C10" name="VCCIO7" type="power_in"/>
  2924. <pin num="C11" name="VREFB7N0_B7" type="BiDi"/>
  2925. <pin num="C12" name="GND" type="power_in"/>
  2926. <pin num="C13" name="VCCIO7" type="power_in"/>
  2927. <pin num="C14" name="DIFFIO_T32n_B7" type="BiDi"/>
  2928. <pin num="C15" name="DIFFIO_R2p_B6" type="BiDi"/>
  2929. <pin num="C16" name="DIFFIO_R2n/PADD20_B6" type="BiDi"/>
  2930. <pin num="D1" name="DIFFIO_L6n_B1" type="BiDi"/>
  2931. <pin num="D2" name="DIFFIO_L6p/FLASH_nCE,nCSO_B1" type="BiDi"/>
  2932. <pin num="D3" name="PLL3_CLKOUTp_B8" type="BiDi"/>
  2933. <pin num="D4" name="VCCD_PLL3" type="power_in"/>
  2934. <pin num="D5" name="IO_B8" type="BiDi"/>
  2935. <pin num="D6" name="DIFFIO_T4n/DATA9_B8" type="BiDi"/>
  2936. <pin num="D7" name="GND" type="power_in"/>
  2937. <pin num="D8" name="IO_B8" type="BiDi"/>
  2938. <pin num="D9" name="DIFFIO_T19p/PADD8_B7" type="BiDi"/>
  2939. <pin num="D10" name="GND" type="power_in"/>
  2940. <pin num="D11" name="DIFFIO_T30n_B7" type="BiDi"/>
  2941. <pin num="D12" name="DIFFIO_T30p_B7" type="BiDi"/>
  2942. <pin num="D13" name="VCCD_PLL2" type="power_in"/>
  2943. <pin num="D14" name="DIFFIO_T32p_B7" type="BiDi"/>
  2944. <pin num="D15" name="DIFFIO_R7p_B6" type="BiDi"/>
  2945. <pin num="D16" name="DIFFIO_R7n_B6" type="BiDi"/>
  2946. <pin num="E1" name="DIFFCLK_0n_B1" type="BiDi"/>
  2947. <pin num="E2" name="GND" type="power_in"/>
  2948. <pin num="E3" name="VCCIO1" type="power_in"/>
  2949. <pin num="E4" name="GND" type="power_in"/>
  2950. <pin num="E5" name="GNDA3" type="power_in"/>
  2951. <pin num="E6" name="DIFFIO_T6p/DATA6_B8" type="BiDi"/>
  2952. <pin num="E7" name="IO/DATA5_B8" type="BiDi"/>
  2953. <pin num="E8" name="DIFFIO_T12n/DATA2_B8" type="BiDi"/>
  2954. <pin num="E9" name="DIFFIO_T17p/PADD12_B7" type="BiDi"/>
  2955. <pin num="E10" name="RDN4_B7" type="BiDi"/>
  2956. <pin num="E11" name="RUP4_B7" type="BiDi"/>
  2957. <pin num="E12" name="GNDA2" type="power_in"/>
  2958. <pin num="E13" name="GND" type="power_in"/>
  2959. <pin num="E14" name="VCCIO6" type="power_in"/>
  2960. <pin num="E15" name="DIFFCLK_2p_B6" type="BiDi"/>
  2961. <pin num="E16" name="DIFFCLK_2n_B6" type="BiDi"/>
  2962. <pin num="F1" name="DIFFIO_L10n_B1" type="BiDi"/>
  2963. <pin num="F2" name="DIFFIO_L10p_B1" type="BiDi"/>
  2964. <pin num="F3" name="VREFB1N0_B1" type="BiDi"/>
  2965. <pin num="F4" name="nSTATUS_B1" type="BiDi"/>
  2966. <pin num="F5" name="VCCA3" type="power_in"/>
  2967. <pin num="F6" name="GND" type="power_in"/>
  2968. <pin num="F7" name="VCCINT" type="power_in"/>
  2969. <pin num="F8" name="DIFFIO_T12p/DATA3_B8" type="BiDi"/>
  2970. <pin num="F9" name="DIFFIO_T21p/PADD4_B7" type="BiDi"/>
  2971. <pin num="F10" name="GND" type="power_in"/>
  2972. <pin num="F11" name="VCCINT" type="power_in"/>
  2973. <pin num="F12" name="VCCA2" type="power_in"/>
  2974. <pin num="F13" name="VREFB6N1_B6" type="BiDi"/>
  2975. <pin num="F14" name="VREFB6N0_B6" type="BiDi"/>
  2976. <pin num="F15" name="DIFFIO_R16p/CLKUSR_B6" type="BiDi"/>
  2977. <pin num="F16" name="DIFFIO_R16n/nCEO_B6" type="BiDi"/>
  2978. <pin num="G1" name="VREFB1N1_B1" type="BiDi"/>
  2979. <pin num="G2" name="IO_B1" type="BiDi"/>
  2980. <pin num="G3" name="VCCIO1" type="power_in"/>
  2981. <pin num="G4" name="GND" type="power_in"/>
  2982. <pin num="G5" name="DIFFIO_L9n_B1" type="BiDi"/>
  2983. <pin num="G6" name="VCCINT" type="power_in"/>
  2984. <pin num="G7" name="VCCINT" type="power_in"/>
  2985. <pin num="G8" name="VCCINT" type="power_in"/>
  2986. <pin num="G9" name="VCCINT" type="power_in"/>
  2987. <pin num="G10" name="VCCINT" type="power_in"/>
  2988. <pin num="G11" name="DIFFIO_R3p/PADD21_B6" type="BiDi"/>
  2989. <pin num="G12" name="MSEL2_B6" type="BiDi"/>
  2990. <pin num="G13" name="GND" type="power_in"/>
  2991. <pin num="G14" name="VCCIO6" type="power_in"/>
  2992. <pin num="G15" name="DIFFIO_R17p/CRC_ERROR_B6" type="BiDi"/>
  2993. <pin num="G16" name="DIFFIO_R17n/INIT_DONE_B6" type="BiDi"/>
  2994. <pin num="H1" name="DCLK_B1" type="BiDi"/>
  2995. <pin num="H2" name="IO/DATA0_B1" type="BiDi"/>
  2996. <pin num="H3" name="TCK_B1" type="input"/>
  2997. <pin num="H4" name="TDI_B1" type="BiDi"/>
  2998. <pin num="H5" name="nCONFIG_B1" type="BiDi"/>
  2999. <pin num="H6" name="VCCINT" type="power_in"/>
  3000. <pin num="H7" name="GND" type="power_in"/>
  3001. <pin num="H8" name="GND" type="power_in"/>
  3002. <pin num="H9" name="GND" type="power_in"/>
  3003. <pin num="H10" name="GND" type="power_in"/>
  3004. <pin num="H11" name="VCCINT" type="power_in"/>
  3005. <pin num="H12" name="MSEL1_B6" type="BiDi"/>
  3006. <pin num="H13" name="MSEL0_B6" type="BiDi"/>
  3007. <pin num="H14" name="CONF_DONE_B6" type="BiDi"/>
  3008. <pin num="H15" name="GND" type="power_in"/>
  3009. <pin num="H16" name="GND" type="power_in"/>
  3010. <pin num="J1" name="DIFFIO_L14n_B2" type="BiDi"/>
  3011. <pin num="J2" name="DIFFIO_L14p_B2" type="BiDi"/>
  3012. <pin num="J3" name="nCE_B1" type="BiDi"/>
  3013. <pin num="J4" name="TDO_B1" type="BiDi"/>
  3014. <pin num="J5" name="TMS_B1" type="BiDi"/>
  3015. <pin num="J6" name="VCCINT" type="power_in"/>
  3016. <pin num="J7" name="GND" type="power_in"/>
  3017. <pin num="J8" name="GND" type="power_in"/>
  3018. <pin num="J9" name="GND" type="power_in"/>
  3019. <pin num="J10" name="GND" type="power_in"/>
  3020. <pin num="J11" name="GND" type="power_in"/>
  3021. <pin num="J12" name="DIFFIO_R19p_B5" type="BiDi"/>
  3022. <pin num="J13" name="IO_B5" type="BiDi"/>
  3023. <pin num="J14" name="DIFFIO_R19n_B5" type="BiDi"/>
  3024. <pin num="J15" name="DIFFIO_R21p/DEV_CLRn_B5" type="BiDi"/>
  3025. <pin num="J16" name="DIFFIO_R21n/DEV_OE_B5" type="BiDi"/>
  3026. <pin num="K1" name="DIFFIO_L18n_B2" type="BiDi"/>
  3027. <pin num="K2" name="VREFB2N1_B2" type="BiDi"/>
  3028. <pin num="K3" name="VCCIO2" type="power_in"/>
  3029. <pin num="K4" name="GND" type="power_in"/>
  3030. <pin num="K5" name="RUP1_B2" type="BiDi"/>
  3031. <pin num="K6" name="DIFFIO_L16p_B2" type="BiDi"/>
  3032. <pin num="K7" name="VCCINT" type="power_in"/>
  3033. <pin num="K8" name="GND" type="power_in"/>
  3034. <pin num="K9" name="DIFFIO_B19p_B4" type="BiDi"/>
  3035. <pin num="K10" name="DIFFIO_B24n_B4" type="BiDi"/>
  3036. <pin num="K11" name="VCCINT" type="power_in"/>
  3037. <pin num="K12" name="DIFFIO_R35p_B5" type="BiDi"/>
  3038. <pin num="K13" name="GND" type="power_in"/>
  3039. <pin num="K14" name="VCCIO5" type="power_in"/>
  3040. <pin num="K15" name="DIFFIO_R22p_B5" type="BiDi"/>
  3041. <pin num="K16" name="DIFFIO_R22n_B5" type="BiDi"/>
  3042. <pin num="L1" name="DIFFIO_L19n_B2" type="BiDi"/>
  3043. <pin num="L2" name="DIFFIO_L19p_B2" type="BiDi"/>
  3044. <pin num="L3" name="VREFB2N0_B2" type="BiDi"/>
  3045. <pin num="L4" name="RDN1_B2" type="BiDi"/>
  3046. <pin num="L5" name="VCCA1" type="power_in"/>
  3047. <pin num="L6" name="DIFFIO_L16n_B2" type="BiDi"/>
  3048. <pin num="L7" name="IO_B3" type="BiDi"/>
  3049. <pin num="L8" name="IO_B3" type="BiDi"/>
  3050. <pin num="L9" name="DIFFIO_B19n_B4" type="BiDi"/>
  3051. <pin num="L10" name="IO_B4" type="BiDi"/>
  3052. <pin num="L11" name="DIFFIO_B31p_B4" type="BiDi"/>
  3053. <pin num="L12" name="VCCA4" type="power_in"/>
  3054. <pin num="L13" name="DIFFIO_R26n_B5" type="BiDi"/>
  3055. <pin num="L14" name="VREFB5N1_B5" type="BiDi"/>
  3056. <pin num="L15" name="VREFB5N0_B5" type="BiDi"/>
  3057. <pin num="L16" name="DIFFIO_R26p_B5" type="BiDi"/>
  3058. <pin num="M1" name="DIFFCLK_1n_B2" type="BiDi"/>
  3059. <pin num="M2" name="DIFFCLK_1p_B2" type="BiDi"/>
  3060. <pin num="M3" name="VCCIO2" type="power_in"/>
  3061. <pin num="M4" name="GND" type="power_in"/>
  3062. <pin num="M5" name="GNDA1" type="power_in"/>
  3063. <pin num="M6" name="DIFFIO_B8p_B3" type="BiDi"/>
  3064. <pin num="M7" name="IO_B3" type="BiDi"/>
  3065. <pin num="M8" name="DIFFIO_B18p_B3" type="BiDi"/>
  3066. <pin num="M9" name="DIFFIO_B20p_B4" type="BiDi"/>
  3067. <pin num="M10" name="RUP2_B4" type="BiDi"/>
  3068. <pin num="M11" name="DIFFIO_B31n_B4" type="BiDi"/>
  3069. <pin num="M12" name="GNDA4" type="power_in"/>
  3070. <pin num="M13" name="GND" type="power_in"/>
  3071. <pin num="M14" name="VCCIO5" type="power_in"/>
  3072. <pin num="M15" name="DIFFCLK_3p_B5" type="BiDi"/>
  3073. <pin num="M16" name="DIFFCLK_3n_B5" type="BiDi"/>
  3074. <pin num="N1" name="DIFFIO_L27n_B2" type="BiDi"/>
  3075. <pin num="N2" name="DIFFIO_L27p_B2" type="BiDi"/>
  3076. <pin num="N3" name="DIFFIO_B3p_B3" type="BiDi"/>
  3077. <pin num="N4" name="VCCD_PLL1" type="power_in"/>
  3078. <pin num="N5" name="DIFFIO_B7p_B3" type="BiDi"/>
  3079. <pin num="N6" name="DIFFIO_B7n_B3" type="BiDi"/>
  3080. <pin num="N7" name="GND" type="power_in"/>
  3081. <pin num="N8" name="DIFFIO_B18n_B3" type="BiDi"/>
  3082. <pin num="N9" name="DIFFIO_B20n_B4" type="BiDi"/>
  3083. <pin num="N10" name="GND" type="power_in"/>
  3084. <pin num="N11" name="RDN2_B4" type="BiDi"/>
  3085. <pin num="N12" name="VREFB4N1_B4" type="BiDi"/>
  3086. <pin num="N13" name="VCCD_PLL4" type="power_in"/>
  3087. <pin num="N14" name="RUP3_B5" type="BiDi"/>
  3088. <pin num="N15" name="DIFFIO_R31p_B5" type="BiDi"/>
  3089. <pin num="N16" name="DIFFIO_R31n_B5" type="BiDi"/>
  3090. <pin num="P1" name="DIFFIO_L29n_B2" type="BiDi"/>
  3091. <pin num="P2" name="DIFFIO_L29p_B2" type="BiDi"/>
  3092. <pin num="P3" name="DIFFIO_B3n_B3" type="BiDi"/>
  3093. <pin num="P4" name="VCCIO3" type="power_in"/>
  3094. <pin num="P5" name="GND" type="power_in"/>
  3095. <pin num="P6" name="VREFB3N0_B3" type="BiDi"/>
  3096. <pin num="P7" name="VCCIO3" type="power_in"/>
  3097. <pin num="P8" name="IO_B3" type="BiDi"/>
  3098. <pin num="P9" name="IO_B4" type="BiDi"/>
  3099. <pin num="P10" name="VCCIO4" type="power_in"/>
  3100. <pin num="P11" name="VREFB4N0_B4" type="BiDi"/>
  3101. <pin num="P12" name="GND" type="power_in"/>
  3102. <pin num="P13" name="VCCIO4" type="power_in"/>
  3103. <pin num="P14" name="PLL4_CLKOUTp_B4" type="BiDi"/>
  3104. <pin num="P15" name="RDN3_B5" type="BiDi"/>
  3105. <pin num="P16" name="DIFFIO_R34n_B5" type="BiDi"/>
  3106. <pin num="R1" name="IO_B2" type="BiDi"/>
  3107. <pin num="R2" name="GND" type="power_in"/>
  3108. <pin num="R3" name="DIFFIO_B4n_B3" type="BiDi"/>
  3109. <pin num="R4" name="PLL1_CLKOUTp_B3" type="BiDi"/>
  3110. <pin num="R5" name="DIFFIO_B14p_B3" type="BiDi"/>
  3111. <pin num="R6" name="DIFFIO_B15p_B3" type="BiDi"/>
  3112. <pin num="R7" name="DIFFIO_B16p_B3" type="BiDi"/>
  3113. <pin num="R8" name="DIFFCLK_6p_B3" type="BiDi"/>
  3114. <pin num="R9" name="DIFFCLK_7p_B4" type="BiDi"/>
  3115. <pin num="R10" name="DIFFIO_B21p_B4" type="BiDi"/>
  3116. <pin num="R11" name="DIFFIO_B22p_B4" type="BiDi"/>
  3117. <pin num="R12" name="DIFFIO_B23p_B4" type="BiDi"/>
  3118. <pin num="R13" name="DIFFIO_B26p_B4" type="BiDi"/>
  3119. <pin num="R14" name="PLL4_CLKOUTn_B4" type="BiDi"/>
  3120. <pin num="R15" name="GND" type="power_in"/>
  3121. <pin num="R16" name="DIFFIO_R34p_B5" type="BiDi"/>
  3122. <pin num="T1" name="VCCIO3" type="power_in"/>
  3123. <pin num="T2" name="IO_B3" type="BiDi"/>
  3124. <pin num="T3" name="VREFB3N1_B3" type="BiDi"/>
  3125. <pin num="T4" name="PLL1_CLKOUTn_B3" type="BiDi"/>
  3126. <pin num="T5" name="DIFFIO_B14n_B3" type="BiDi"/>
  3127. <pin num="T6" name="DIFFIO_B15n_B3" type="BiDi"/>
  3128. <pin num="T7" name="DIFFIO_B16n_B3" type="BiDi"/>
  3129. <pin num="T8" name="DIFFCLK_6n_B3" type="BiDi"/>
  3130. <pin num="T9" name="DIFFCLK_7n_B4" type="BiDi"/>
  3131. <pin num="T10" name="DIFFIO_B21n_B4" type="BiDi"/>
  3132. <pin num="T11" name="DIFFIO_B22n_B4" type="BiDi"/>
  3133. <pin num="T12" name="DIFFIO_B24p_B4" type="BiDi"/>
  3134. <pin num="T13" name="DIFFIO_B26n_B4" type="BiDi"/>
  3135. <pin num="T14" name="DIFFIO_B29p_B4" type="BiDi"/>
  3136. <pin num="T15" name="DIFFIO_B29n_B4" type="BiDi"/>
  3137. <pin num="T16" name="VCCIO4" type="power_in"/>
  3138. </pins>
  3139. </libpart>
  3140. <libpart lib="max80" part="HRO-TYPE-C-31-M-12">
  3141. <fields>
  3142. <field name="Reference">USB</field>
  3143. <field name="Value">HRO-TYPE-C-31-M-12</field>
  3144. </fields>
  3145. <pins>
  3146. <pin num="1" name="GND" type="input"/>
  3147. <pin num="2" name="VBUS" type="input"/>
  3148. <pin num="3" name="SBU2" type="input"/>
  3149. <pin num="4" name="CC1" type="input"/>
  3150. <pin num="5" name="DN2" type="input"/>
  3151. <pin num="6" name="DP1" type="input"/>
  3152. <pin num="7" name="DN1" type="input"/>
  3153. <pin num="8" name="DP2" type="input"/>
  3154. <pin num="9" name="SBU1" type="input"/>
  3155. <pin num="10" name="CC2" type="input"/>
  3156. <pin num="11" name="VBUS" type="input"/>
  3157. <pin num="12" name="GND" type="input"/>
  3158. <pin num="13" name="SHIELD" type="input"/>
  3159. </pins>
  3160. </libpart>
  3161. <libpart lib="max80" part="MT48LC16M16A2P-6A">
  3162. <docs>https://www.mouser.se/datasheet/2/671/256Mb_sdr-1282350.pdf</docs>
  3163. <fields>
  3164. <field name="Reference">U</field>
  3165. <field name="Value">MT48LC16M16A2P-6A</field>
  3166. <field name="Footprint">Package_SO:TSOP-II-54_22.2x10.16mm_P0.8mm</field>
  3167. <field name="LCSC">C41881</field>
  3168. </fields>
  3169. <pins>
  3170. <pin num="1" name="VDD" type="power_in"/>
  3171. <pin num="2" name="IO_0" type="BiDi"/>
  3172. <pin num="3" name="VDDQ" type="power_in"/>
  3173. <pin num="4" name="IO_1" type="BiDi"/>
  3174. <pin num="5" name="IO_2" type="BiDi"/>
  3175. <pin num="6" name="VSSQ" type="power_in"/>
  3176. <pin num="7" name="IO_3" type="BiDi"/>
  3177. <pin num="8" name="IO_4" type="BiDi"/>
  3178. <pin num="9" name="VDDQ" type="power_in"/>
  3179. <pin num="10" name="IO_5" type="BiDi"/>
  3180. <pin num="11" name="IO_6" type="BiDi"/>
  3181. <pin num="12" name="VSSQ" type="power_in"/>
  3182. <pin num="13" name="IO_7" type="BiDi"/>
  3183. <pin num="14" name="VDD" type="power_in"/>
  3184. <pin num="15" name="DQML" type="BiDi"/>
  3185. <pin num="16" name="~WE" type="BiDi"/>
  3186. <pin num="17" name="~CAS" type="BiDi"/>
  3187. <pin num="18" name="~RAS" type="BiDi"/>
  3188. <pin num="19" name="~CS" type="BiDi"/>
  3189. <pin num="20" name="BA0" type="BiDi"/>
  3190. <pin num="21" name="BA1" type="BiDi"/>
  3191. <pin num="22" name="A10" type="input"/>
  3192. <pin num="23" name="A0" type="input"/>
  3193. <pin num="24" name="A1" type="input"/>
  3194. <pin num="25" name="A2" type="input"/>
  3195. <pin num="26" name="A3" type="input"/>
  3196. <pin num="27" name="VDD" type="power_in"/>
  3197. <pin num="28" name="VSS" type="power_in"/>
  3198. <pin num="29" name="A4" type="input"/>
  3199. <pin num="30" name="A5" type="input"/>
  3200. <pin num="31" name="A6" type="input"/>
  3201. <pin num="32" name="A7" type="input"/>
  3202. <pin num="33" name="A8" type="input"/>
  3203. <pin num="34" name="A9" type="input"/>
  3204. <pin num="35" name="A11" type="input"/>
  3205. <pin num="36" name="A12" type="input"/>
  3206. <pin num="37" name="CKE" type="BiDi"/>
  3207. <pin num="38" name="CLK" type="BiDi"/>
  3208. <pin num="39" name="DQMH" type="BiDi"/>
  3209. <pin num="40" name="NC" type="passive"/>
  3210. <pin num="41" name="VSS" type="power_in"/>
  3211. <pin num="42" name="IO8" type="BiDi"/>
  3212. <pin num="43" name="VDDQ" type="power_in"/>
  3213. <pin num="44" name="IO9" type="BiDi"/>
  3214. <pin num="45" name="IO10" type="BiDi"/>
  3215. <pin num="46" name="VSS" type="power_in"/>
  3216. <pin num="47" name="IO11" type="BiDi"/>
  3217. <pin num="48" name="IO12" type="BiDi"/>
  3218. <pin num="49" name="VDDQ" type="power_in"/>
  3219. <pin num="50" name="IO13" type="BiDi"/>
  3220. <pin num="51" name="IO14" type="BiDi"/>
  3221. <pin num="52" name="VSSQ" type="power_in"/>
  3222. <pin num="53" name="IO15" type="BiDi"/>
  3223. <pin num="54" name="VSS" type="power_in"/>
  3224. </pins>
  3225. </libpart>
  3226. </libparts>
  3227. <libraries>
  3228. <library logical="74xx">
  3229. <uri>/usr/share/kicad/library/74xx.lib</uri>
  3230. </library>
  3231. <library logical="Connector">
  3232. <uri>/usr/share/kicad/library/Connector.lib</uri>
  3233. </library>
  3234. <library logical="Connector_Generic">
  3235. <uri>/usr/share/kicad/library/Connector_Generic.lib</uri>
  3236. </library>
  3237. <library logical="Device">
  3238. <uri>/usr/share/kicad/library/Device.lib</uri>
  3239. </library>
  3240. <library logical="Memory_Flash">
  3241. <uri>/usr/share/kicad/library/Memory_Flash.lib</uri>
  3242. </library>
  3243. <library logical="Oscillator">
  3244. <uri>/usr/share/kicad/library/Oscillator.lib</uri>
  3245. </library>
  3246. <library logical="Power_Protection">
  3247. <uri>/usr/share/kicad/library/Power_Protection.lib</uri>
  3248. </library>
  3249. <library logical="RF_Module">
  3250. <uri>/usr/share/kicad/library/RF_Module.lib</uri>
  3251. </library>
  3252. <library logical="Regulator_Linear">
  3253. <uri>/usr/share/kicad/library/Regulator_Linear.lib</uri>
  3254. </library>
  3255. <library logical="Timer_RTC">
  3256. <uri>/usr/share/kicad/library/Timer_RTC.lib</uri>
  3257. </library>
  3258. <library logical="Transistor_FET">
  3259. <uri>/usr/share/kicad/library/Transistor_FET.lib</uri>
  3260. </library>
  3261. <library logical="max80">
  3262. <uri>/home/pm/project/abc80/max80/max80.lib</uri>
  3263. </library>
  3264. </libraries>
  3265. <nets>
  3266. <net code="1" name="Net-(U13-PadJ14)">
  3267. <node ref="U13" pin="J14"/>
  3268. </net>
  3269. <net code="2" name="Net-(U13-PadJ13)">
  3270. <node ref="U13" pin="J13"/>
  3271. </net>
  3272. <net code="3" name="Net-(U13-PadJ12)">
  3273. <node ref="U13" pin="J12"/>
  3274. </net>
  3275. <net code="4" name="CLK0n">
  3276. <node ref="U13" pin="M15"/>
  3277. <node ref="OSC1" pin="3"/>
  3278. </net>
  3279. <net code="5" name="HDMI_SDA">
  3280. <node ref="U13" pin="R13"/>
  3281. <node ref="R2" pin="2"/>
  3282. <node ref="J2" pin="16"/>
  3283. </net>
  3284. <net code="6" name="Net-(U13-PadL11)">
  3285. <node ref="U13" pin="L11"/>
  3286. </net>
  3287. <net code="7" name="HDMI_SCL">
  3288. <node ref="R11" pin="1"/>
  3289. <node ref="J2" pin="15"/>
  3290. <node ref="U13" pin="M11"/>
  3291. </net>
  3292. <net code="8" name="~XOUTSTB_ABC_3V3">
  3293. <node ref="U13" pin="L10"/>
  3294. <node ref="U14" pin="9"/>
  3295. </net>
  3296. <net code="9" name="Net-(U13-PadL14)">
  3297. <node ref="U13" pin="L14"/>
  3298. </net>
  3299. <net code="10" name="/FPGA_LED1">
  3300. <node ref="R29" pin="2"/>
  3301. <node ref="U13" pin="T13"/>
  3302. </net>
  3303. <net code="11" name="/FPGA_LED2">
  3304. <node ref="R31" pin="2"/>
  3305. <node ref="U13" pin="R14"/>
  3306. </net>
  3307. <net code="12" name="FPGA_GPIO3">
  3308. <node ref="U13" pin="R10"/>
  3309. <node ref="J4" pin="16"/>
  3310. </net>
  3311. <net code="13" name="~XINPSTB_ABC_3V3">
  3312. <node ref="U14" pin="8"/>
  3313. <node ref="U13" pin="T12"/>
  3314. </net>
  3315. <net code="14" name="HDMI_D2+">
  3316. <node ref="U13" pin="R16"/>
  3317. <node ref="C75" pin="2"/>
  3318. </net>
  3319. <net code="15" name="HDMI_D2-">
  3320. <node ref="U13" pin="P16"/>
  3321. <node ref="C76" pin="2"/>
  3322. </net>
  3323. <net code="16" name="Net-(U13-PadP15)">
  3324. <node ref="U13" pin="P15"/>
  3325. </net>
  3326. <net code="17" name="HDMI_D1+">
  3327. <node ref="U13" pin="N15"/>
  3328. <node ref="C77" pin="2"/>
  3329. </net>
  3330. <net code="18" name="Net-(U13-PadN14)">
  3331. <node ref="U13" pin="N14"/>
  3332. </net>
  3333. <net code="19" name="HDMI_D0+">
  3334. <node ref="C79" pin="2"/>
  3335. <node ref="U13" pin="K15"/>
  3336. </net>
  3337. <net code="20" name="Net-(U13-PadK12)">
  3338. <node ref="U13" pin="K12"/>
  3339. </net>
  3340. <net code="21" name="+3V3">
  3341. <node ref="C3" pin="1"/>
  3342. <node ref="C40" pin="1"/>
  3343. <node ref="U4" pin="20"/>
  3344. <node ref="C54" pin="1"/>
  3345. <node ref="U3" pin="20"/>
  3346. <node ref="C4" pin="1"/>
  3347. <node ref="C5" pin="1"/>
  3348. <node ref="U5" pin="20"/>
  3349. <node ref="C83" pin="1"/>
  3350. <node ref="R21" pin="1"/>
  3351. <node ref="U12" pin="4"/>
  3352. <node ref="R32" pin="1"/>
  3353. <node ref="R35" pin="1"/>
  3354. <node ref="R34" pin="1"/>
  3355. <node ref="R1" pin="1"/>
  3356. <node ref="R9" pin="1"/>
  3357. <node ref="C47" pin="1"/>
  3358. <node ref="U11" pin="2"/>
  3359. <node ref="C55" pin="1"/>
  3360. <node ref="C29" pin="1"/>
  3361. <node ref="U12" pin="2"/>
  3362. <node ref="OSC1" pin="1"/>
  3363. <node ref="R20" pin="1"/>
  3364. <node ref="R19" pin="1"/>
  3365. <node ref="U6" pin="9"/>
  3366. <node ref="C49" pin="1"/>
  3367. <node ref="C48" pin="1"/>
  3368. <node ref="C51" pin="1"/>
  3369. <node ref="C46" pin="1"/>
  3370. <node ref="C33" pin="1"/>
  3371. <node ref="C34" pin="1"/>
  3372. <node ref="OSC1" pin="4"/>
  3373. <node ref="J3" pin="4"/>
  3374. <node ref="C45" pin="1"/>
  3375. <node ref="R13" pin="2"/>
  3376. <node ref="C56" pin="1"/>
  3377. <node ref="R38" pin="1"/>
  3378. <node ref="R40" pin="1"/>
  3379. <node ref="R39" pin="2"/>
  3380. <node ref="C7" pin="1"/>
  3381. <node ref="U14" pin="20"/>
  3382. <node ref="C6" pin="1"/>
  3383. <node ref="U2" pin="20"/>
  3384. <node ref="C61" pin="1"/>
  3385. <node ref="U7" pin="3"/>
  3386. <node ref="U7" pin="7"/>
  3387. <node ref="U7" pin="8"/>
  3388. <node ref="C2" pin="1"/>
  3389. <node ref="R37" pin="1"/>
  3390. <node ref="U6" pin="43"/>
  3391. <node ref="R14" pin="1"/>
  3392. <node ref="R12" pin="2"/>
  3393. <node ref="U6" pin="14"/>
  3394. <node ref="U6" pin="1"/>
  3395. <node ref="U6" pin="49"/>
  3396. <node ref="U6" pin="27"/>
  3397. <node ref="U6" pin="3"/>
  3398. <node ref="U6" pin="37"/>
  3399. <node ref="C22" pin="1"/>
  3400. <node ref="C21" pin="1"/>
  3401. <node ref="C24" pin="1"/>
  3402. <node ref="U13" pin="M3"/>
  3403. <node ref="C10" pin="1"/>
  3404. <node ref="C11" pin="1"/>
  3405. <node ref="C13" pin="1"/>
  3406. <node ref="C14" pin="1"/>
  3407. <node ref="C8" pin="1"/>
  3408. <node ref="D6" pin="1"/>
  3409. <node ref="D7" pin="1"/>
  3410. <node ref="Q7" pin="1"/>
  3411. <node ref="D4" pin="1"/>
  3412. <node ref="J4" pin="31"/>
  3413. <node ref="J4" pin="4"/>
  3414. <node ref="U13" pin="R9"/>
  3415. <node ref="R11" pin="2"/>
  3416. <node ref="R50" pin="1"/>
  3417. <node ref="R2" pin="1"/>
  3418. <node ref="R49" pin="1"/>
  3419. <node ref="D5" pin="1"/>
  3420. <node ref="J8" pin="2"/>
  3421. <node ref="J8" pin="1"/>
  3422. <node ref="U13" pin="H12"/>
  3423. <node ref="C30" pin="1"/>
  3424. <node ref="C26" pin="1"/>
  3425. <node ref="U13" pin="P7"/>
  3426. <node ref="C25" pin="1"/>
  3427. <node ref="U13" pin="C4"/>
  3428. <node ref="U13" pin="C7"/>
  3429. <node ref="C16" pin="1"/>
  3430. <node ref="U13" pin="E14"/>
  3431. <node ref="U13" pin="E3"/>
  3432. <node ref="U13" pin="P10"/>
  3433. <node ref="U13" pin="P13"/>
  3434. <node ref="U13" pin="P4"/>
  3435. <node ref="C28" pin="1"/>
  3436. <node ref="U13" pin="T1"/>
  3437. <node ref="R46" pin="2"/>
  3438. <node ref="U13" pin="T16"/>
  3439. <node ref="C31" pin="1"/>
  3440. <node ref="U13" pin="K3"/>
  3441. <node ref="U13" pin="C10"/>
  3442. <node ref="R33" pin="2"/>
  3443. <node ref="C27" pin="1"/>
  3444. <node ref="C38" pin="1"/>
  3445. <node ref="U8" pin="2"/>
  3446. <node ref="C69" pin="1"/>
  3447. <node ref="C68" pin="1"/>
  3448. <node ref="C37" pin="1"/>
  3449. <node ref="U13" pin="G14"/>
  3450. <node ref="U13" pin="G3"/>
  3451. <node ref="U13" pin="A1"/>
  3452. <node ref="U13" pin="A16"/>
  3453. <node ref="U13" pin="C13"/>
  3454. </net>
  3455. <net code="22" name="HDMI_D0-">
  3456. <node ref="C80" pin="2"/>
  3457. <node ref="U13" pin="K16"/>
  3458. </net>
  3459. <net code="23" name="~FPGA_READY">
  3460. <node ref="Q2" pin="1"/>
  3461. <node ref="R26" pin="2"/>
  3462. <node ref="U13" pin="B4"/>
  3463. </net>
  3464. <net code="24" name="INT_ABC_3V3">
  3465. <node ref="R43" pin="2"/>
  3466. <node ref="U13" pin="B3"/>
  3467. <node ref="Q1" pin="1"/>
  3468. </net>
  3469. <net code="25" name="INT800_ABC_3V3">
  3470. <node ref="R45" pin="2"/>
  3471. <node ref="U13" pin="A2"/>
  3472. <node ref="Q5" pin="1"/>
  3473. </net>
  3474. <net code="26" name="FPGA_NMI">
  3475. <node ref="Q3" pin="1"/>
  3476. <node ref="R27" pin="2"/>
  3477. <node ref="U13" pin="A3"/>
  3478. </net>
  3479. <net code="27" name="/A6">
  3480. <node ref="U13" pin="E8"/>
  3481. <node ref="U6" pin="31"/>
  3482. </net>
  3483. <net code="28" name="/IO11">
  3484. <node ref="U6" pin="47"/>
  3485. <node ref="U13" pin="A4"/>
  3486. </net>
  3487. <net code="29" name="/IO8">
  3488. <node ref="U13" pin="A5"/>
  3489. <node ref="U6" pin="42"/>
  3490. </net>
  3491. <net code="30" name="/IO10">
  3492. <node ref="U6" pin="45"/>
  3493. <node ref="U13" pin="B5"/>
  3494. </net>
  3495. <net code="31" name="/CLK">
  3496. <node ref="U6" pin="38"/>
  3497. <node ref="U13" pin="D3"/>
  3498. </net>
  3499. <net code="32" name="EXT_HA">
  3500. <node ref="U13" pin="N12"/>
  3501. <node ref="J8" pin="3"/>
  3502. </net>
  3503. <net code="33" name="EXT_HC">
  3504. <node ref="R49" pin="2"/>
  3505. <node ref="U13" pin="T9"/>
  3506. <node ref="J8" pin="7"/>
  3507. </net>
  3508. <net code="34" name="HDMI_HPD">
  3509. <node ref="R46" pin="1"/>
  3510. <node ref="Q7" pin="2"/>
  3511. <node ref="U13" pin="T15"/>
  3512. </net>
  3513. <net code="35" name="/IO9">
  3514. <node ref="U6" pin="44"/>
  3515. <node ref="U13" pin="E7"/>
  3516. </net>
  3517. <net code="36" name="/A12">
  3518. <node ref="U6" pin="36"/>
  3519. <node ref="U13" pin="B6"/>
  3520. </net>
  3521. <net code="37" name="/A11">
  3522. <node ref="U13" pin="C8"/>
  3523. <node ref="U6" pin="35"/>
  3524. </net>
  3525. <net code="38" name="/A9">
  3526. <node ref="U13" pin="A6"/>
  3527. <node ref="U6" pin="34"/>
  3528. </net>
  3529. <net code="39" name="/A8">
  3530. <node ref="U13" pin="B7"/>
  3531. <node ref="U6" pin="33"/>
  3532. </net>
  3533. <net code="40" name="/IO15">
  3534. <node ref="U13" pin="D5"/>
  3535. <node ref="U6" pin="53"/>
  3536. </net>
  3537. <net code="41" name="/IO13">
  3538. <node ref="U6" pin="50"/>
  3539. <node ref="U13" pin="D6"/>
  3540. </net>
  3541. <net code="42" name="/IO12">
  3542. <node ref="U6" pin="48"/>
  3543. <node ref="U13" pin="E6"/>
  3544. </net>
  3545. <net code="43" name="/IO14">
  3546. <node ref="U6" pin="51"/>
  3547. <node ref="U13" pin="C6"/>
  3548. </net>
  3549. <net code="44" name="/A7">
  3550. <node ref="U6" pin="32"/>
  3551. <node ref="U13" pin="A7"/>
  3552. </net>
  3553. <net code="45" name="/DQMH">
  3554. <node ref="U13" pin="D8"/>
  3555. <node ref="U6" pin="39"/>
  3556. </net>
  3557. <net code="46" name="Net-(U13-PadC3)">
  3558. <node ref="U13" pin="C3"/>
  3559. </net>
  3560. <net code="47" name="EXT_HG">
  3561. <node ref="J8" pin="6"/>
  3562. <node ref="U13" pin="N11"/>
  3563. </net>
  3564. <net code="48" name="Net-(U13-PadK9)">
  3565. <node ref="U13" pin="K9"/>
  3566. </net>
  3567. <net code="49" name="EXT_HD">
  3568. <node ref="J8" pin="9"/>
  3569. <node ref="U13" pin="R11"/>
  3570. </net>
  3571. <net code="50" name="EXT_HH">
  3572. <node ref="U13" pin="R8"/>
  3573. <node ref="J8" pin="8"/>
  3574. <node ref="R50" pin="2"/>
  3575. </net>
  3576. <net code="51" name="EXT_HB">
  3577. <node ref="J8" pin="5"/>
  3578. <node ref="U13" pin="N9"/>
  3579. </net>
  3580. <net code="52" name="EXT_HE">
  3581. <node ref="U13" pin="R12"/>
  3582. <node ref="J8" pin="4"/>
  3583. </net>
  3584. <net code="53" name="FPGA_GPIO1">
  3585. <node ref="J4" pin="14"/>
  3586. <node ref="U13" pin="P9"/>
  3587. </net>
  3588. <net code="54" name="EXT_HF">
  3589. <node ref="J8" pin="10"/>
  3590. <node ref="U13" pin="T11"/>
  3591. </net>
  3592. <net code="55" name="/FPGA_LED3">
  3593. <node ref="R30" pin="2"/>
  3594. <node ref="U13" pin="P14"/>
  3595. </net>
  3596. <net code="56" name="Net-(U13-PadP11)">
  3597. <node ref="U13" pin="P11"/>
  3598. </net>
  3599. <net code="57" name="~STATUS_ABC_3V3">
  3600. <node ref="U13" pin="M9"/>
  3601. <node ref="U4" pin="5"/>
  3602. </net>
  3603. <net code="58" name="Net-(U13-PadL9)">
  3604. <node ref="U13" pin="L9"/>
  3605. </net>
  3606. <net code="59" name="FPGA_SPI_CLK">
  3607. <node ref="U13" pin="P6"/>
  3608. <node ref="U11" pin="14"/>
  3609. </net>
  3610. <net code="60" name="FGPA_SPI_CS_ESP32">
  3611. <node ref="U11" pin="13"/>
  3612. <node ref="U13" pin="N8"/>
  3613. </net>
  3614. <net code="61" name="FPGA_SPI_MOSI">
  3615. <node ref="U13" pin="M8"/>
  3616. <node ref="U11" pin="15"/>
  3617. </net>
  3618. <net code="62" name="ESP32_IO0">
  3619. <node ref="U13" pin="L8"/>
  3620. <node ref="U11" pin="3"/>
  3621. <node ref="R21" pin="2"/>
  3622. <node ref="J4" pin="30"/>
  3623. </net>
  3624. <net code="63" name="~XMEMFL_ABC_3V3">
  3625. <node ref="U14" pin="2"/>
  3626. <node ref="U13" pin="N3"/>
  3627. </net>
  3628. <net code="64" name="DD0">
  3629. <node ref="U13" pin="P3"/>
  3630. <node ref="U5" pin="9"/>
  3631. </net>
  3632. <net code="65" name="DD1">
  3633. <node ref="U13" pin="M6"/>
  3634. <node ref="U5" pin="8"/>
  3635. </net>
  3636. <net code="66" name="DD2">
  3637. <node ref="U5" pin="7"/>
  3638. <node ref="U13" pin="N5"/>
  3639. </net>
  3640. <net code="67" name="ABC_CLK_3V3">
  3641. <node ref="U14" pin="6"/>
  3642. <node ref="U13" pin="T5"/>
  3643. </net>
  3644. <net code="68" name="FPGA_GPIO0">
  3645. <node ref="J4" pin="13"/>
  3646. <node ref="U13" pin="L7"/>
  3647. </net>
  3648. <net code="69" name="INT_ESP32">
  3649. <node ref="U13" pin="P8"/>
  3650. <node ref="U11" pin="12"/>
  3651. </net>
  3652. <net code="70" name="FPGA_GPIO4">
  3653. <node ref="J4" pin="17"/>
  3654. <node ref="U13" pin="T7"/>
  3655. </net>
  3656. <net code="71" name="FPGA_GPIO2">
  3657. <node ref="U13" pin="T6"/>
  3658. <node ref="J4" pin="15"/>
  3659. </net>
  3660. <net code="72" name="DD3">
  3661. <node ref="U5" pin="6"/>
  3662. <node ref="U13" pin="T2"/>
  3663. </net>
  3664. <net code="73" name="FPGA_GPIO5">
  3665. <node ref="J4" pin="18"/>
  3666. <node ref="U13" pin="R7"/>
  3667. </net>
  3668. <net code="74" name="FPGA_RESIN">
  3669. <node ref="U13" pin="R6"/>
  3670. <node ref="R28" pin="2"/>
  3671. <node ref="Q4" pin="1"/>
  3672. </net>
  3673. <net code="75" name="FPGA_SPI_MISO">
  3674. <node ref="U11" pin="16"/>
  3675. <node ref="U13" pin="M7"/>
  3676. </net>
  3677. <net code="76" name="FLASH_CS#">
  3678. <node ref="U11" pin="4"/>
  3679. <node ref="U13" pin="N6"/>
  3680. </net>
  3681. <net code="77" name="GND">
  3682. <node ref="U12" pin="6"/>
  3683. <node ref="R48" pin="1"/>
  3684. <node ref="U12" pin="7"/>
  3685. <node ref="U12" pin="8"/>
  3686. <node ref="Q8" pin="2"/>
  3687. <node ref="D9" pin="1"/>
  3688. <node ref="R18" pin="2"/>
  3689. <node ref="R17" pin="2"/>
  3690. <node ref="R16" pin="2"/>
  3691. <node ref="C74" pin="2"/>
  3692. <node ref="C27" pin="2"/>
  3693. <node ref="U13" pin="H13"/>
  3694. <node ref="U13" pin="G12"/>
  3695. <node ref="C16" pin="2"/>
  3696. <node ref="C25" pin="2"/>
  3697. <node ref="C68" pin="2"/>
  3698. <node ref="C31" pin="2"/>
  3699. <node ref="C29" pin="2"/>
  3700. <node ref="C30" pin="2"/>
  3701. <node ref="C43" pin="2"/>
  3702. <node ref="C28" pin="2"/>
  3703. <node ref="C32" pin="2"/>
  3704. <node ref="U12" pin="11"/>
  3705. <node ref="C44" pin="2"/>
  3706. <node ref="C50" pin="2"/>
  3707. <node ref="C62" pin="2"/>
  3708. <node ref="C63" pin="2"/>
  3709. <node ref="U12" pin="10"/>
  3710. <node ref="C66" pin="2"/>
  3711. <node ref="U12" pin="12"/>
  3712. <node ref="U12" pin="13"/>
  3713. <node ref="BT1" pin="2"/>
  3714. <node ref="C69" pin="2"/>
  3715. <node ref="C42" pin="2"/>
  3716. <node ref="C41" pin="2"/>
  3717. <node ref="U12" pin="5"/>
  3718. <node ref="C47" pin="2"/>
  3719. <node ref="U12" pin="9"/>
  3720. <node ref="Q4" pin="2"/>
  3721. <node ref="U4" pin="10"/>
  3722. <node ref="U5" pin="19"/>
  3723. <node ref="U5" pin="10"/>
  3724. <node ref="U4" pin="19"/>
  3725. <node ref="D10" pin="1"/>
  3726. <node ref="U3" pin="19"/>
  3727. <node ref="U9" pin="2"/>
  3728. <node ref="USB1" pin="12"/>
  3729. <node ref="R6" pin="1"/>
  3730. <node ref="R5" pin="1"/>
  3731. <node ref="USB1" pin="1"/>
  3732. <node ref="C3" pin="2"/>
  3733. <node ref="D8" pin="1"/>
  3734. <node ref="X1" pin="B2"/>
  3735. <node ref="U3" pin="10"/>
  3736. <node ref="Q2" pin="2"/>
  3737. <node ref="Q3" pin="2"/>
  3738. <node ref="X1" pin="A4"/>
  3739. <node ref="X1" pin="A2"/>
  3740. <node ref="R23" pin="2"/>
  3741. <node ref="R22" pin="2"/>
  3742. <node ref="X2" pin="A2"/>
  3743. <node ref="C4" pin="2"/>
  3744. <node ref="C5" pin="2"/>
  3745. <node ref="C83" pin="2"/>
  3746. <node ref="U11" pin="1"/>
  3747. <node ref="U11" pin="43"/>
  3748. <node ref="U11" pin="42"/>
  3749. <node ref="C52" pin="2"/>
  3750. <node ref="USB2" pin="12"/>
  3751. <node ref="USB2" pin="1"/>
  3752. <node ref="U15" pin="2"/>
  3753. <node ref="U11" pin="26"/>
  3754. <node ref="C40" pin="2"/>
  3755. <node ref="C39" pin="2"/>
  3756. <node ref="C54" pin="2"/>
  3757. <node ref="C53" pin="2"/>
  3758. <node ref="C55" pin="2"/>
  3759. <node ref="U13" pin="N10"/>
  3760. <node ref="U13" pin="M5"/>
  3761. <node ref="U13" pin="M4"/>
  3762. <node ref="U13" pin="M13"/>
  3763. <node ref="U13" pin="M12"/>
  3764. <node ref="U13" pin="K4"/>
  3765. <node ref="U13" pin="K13"/>
  3766. <node ref="U13" pin="J9"/>
  3767. <node ref="U13" pin="J8"/>
  3768. <node ref="U13" pin="J7"/>
  3769. <node ref="U13" pin="K8"/>
  3770. <node ref="C14" pin="2"/>
  3771. <node ref="U13" pin="R2"/>
  3772. <node ref="U13" pin="R15"/>
  3773. <node ref="C1" pin="2"/>
  3774. <node ref="U13" pin="P5"/>
  3775. <node ref="C9" pin="2"/>
  3776. <node ref="C15" pin="2"/>
  3777. <node ref="C13" pin="2"/>
  3778. <node ref="C12" pin="2"/>
  3779. <node ref="C11" pin="2"/>
  3780. <node ref="C10" pin="2"/>
  3781. <node ref="C8" pin="2"/>
  3782. <node ref="U13" pin="H15"/>
  3783. <node ref="U13" pin="H10"/>
  3784. <node ref="U13" pin="G4"/>
  3785. <node ref="U13" pin="G13"/>
  3786. <node ref="U13" pin="F6"/>
  3787. <node ref="U13" pin="H16"/>
  3788. <node ref="U13" pin="D10"/>
  3789. <node ref="U13" pin="P12"/>
  3790. <node ref="U13" pin="N7"/>
  3791. <node ref="U13" pin="F10"/>
  3792. <node ref="U13" pin="E5"/>
  3793. <node ref="U13" pin="E4"/>
  3794. <node ref="U13" pin="E2"/>
  3795. <node ref="U13" pin="E13"/>
  3796. <node ref="U13" pin="E12"/>
  3797. <node ref="U13" pin="D7"/>
  3798. <node ref="U13" pin="J11"/>
  3799. <node ref="U13" pin="C5"/>
  3800. <node ref="U13" pin="C12"/>
  3801. <node ref="U13" pin="B2"/>
  3802. <node ref="U13" pin="B15"/>
  3803. <node ref="U13" pin="J10"/>
  3804. <node ref="U13" pin="H9"/>
  3805. <node ref="U13" pin="H8"/>
  3806. <node ref="U13" pin="H7"/>
  3807. <node ref="J2" pin="17"/>
  3808. <node ref="U13" pin="M16"/>
  3809. <node ref="J2" pin="11"/>
  3810. <node ref="J2" pin="5"/>
  3811. <node ref="J2" pin="2"/>
  3812. <node ref="J2" pin="8"/>
  3813. <node ref="U13" pin="K10"/>
  3814. <node ref="C20" pin="2"/>
  3815. <node ref="C19" pin="2"/>
  3816. <node ref="C18" pin="2"/>
  3817. <node ref="C17" pin="2"/>
  3818. <node ref="C24" pin="2"/>
  3819. <node ref="C23" pin="2"/>
  3820. <node ref="C22" pin="2"/>
  3821. <node ref="C21" pin="2"/>
  3822. <node ref="J4" pin="2"/>
  3823. <node ref="J4" pin="39"/>
  3824. <node ref="J4" pin="37"/>
  3825. <node ref="J4" pin="35"/>
  3826. <node ref="J4" pin="33"/>
  3827. <node ref="J8" pin="11"/>
  3828. <node ref="J8" pin="12"/>
  3829. <node ref="J4" pin="10"/>
  3830. <node ref="U13" pin="T8"/>
  3831. <node ref="C73" pin="2"/>
  3832. <node ref="C71" pin="2"/>
  3833. <node ref="C65" pin="2"/>
  3834. <node ref="C38" pin="2"/>
  3835. <node ref="C37" pin="2"/>
  3836. <node ref="C35" pin="2"/>
  3837. <node ref="C36" pin="2"/>
  3838. <node ref="U8" pin="1"/>
  3839. <node ref="C72" pin="2"/>
  3840. <node ref="C70" pin="2"/>
  3841. <node ref="C64" pin="2"/>
  3842. <node ref="C67" pin="2"/>
  3843. <node ref="U16" pin="1"/>
  3844. <node ref="U1" pin="1"/>
  3845. <node ref="C59" pin="2"/>
  3846. <node ref="U13" pin="E1"/>
  3847. <node ref="C26" pin="2"/>
  3848. <node ref="U13" pin="E16"/>
  3849. <node ref="R24" pin="1"/>
  3850. <node ref="C51" pin="2"/>
  3851. <node ref="D22" pin="1"/>
  3852. <node ref="D17" pin="1"/>
  3853. <node ref="C6" pin="2"/>
  3854. <node ref="U2" pin="19"/>
  3855. <node ref="U2" pin="10"/>
  3856. <node ref="J3" pin="11"/>
  3857. <node ref="J3" pin="9"/>
  3858. <node ref="J3" pin="6"/>
  3859. <node ref="U13" pin="B8"/>
  3860. <node ref="Q6" pin="2"/>
  3861. <node ref="Q1" pin="2"/>
  3862. <node ref="X2" pin="B2"/>
  3863. <node ref="OSC1" pin="2"/>
  3864. <node ref="U13" pin="B9"/>
  3865. <node ref="U13" pin="M1"/>
  3866. <node ref="U13" pin="M2"/>
  3867. <node ref="U13" pin="A9"/>
  3868. <node ref="R42" pin="1"/>
  3869. <node ref="U6" pin="12"/>
  3870. <node ref="U6" pin="41"/>
  3871. <node ref="U6" pin="46"/>
  3872. <node ref="U6" pin="46"/>
  3873. <node ref="U6" pin="52"/>
  3874. <node ref="U6" pin="54"/>
  3875. <node ref="U6" pin="6"/>
  3876. <node ref="U6" pin="28"/>
  3877. <node ref="J6" pin="1"/>
  3878. <node ref="C49" pin="2"/>
  3879. <node ref="C48" pin="2"/>
  3880. <node ref="C60" pin="2"/>
  3881. <node ref="C61" pin="2"/>
  3882. <node ref="U7" pin="4"/>
  3883. <node ref="C2" pin="2"/>
  3884. <node ref="Q5" pin="2"/>
  3885. <node ref="X2" pin="A4"/>
  3886. <node ref="C34" pin="2"/>
  3887. <node ref="C33" pin="2"/>
  3888. <node ref="C7" pin="2"/>
  3889. <node ref="U13" pin="A8"/>
  3890. <node ref="U14" pin="10"/>
  3891. <node ref="C56" pin="2"/>
  3892. <node ref="C46" pin="2"/>
  3893. <node ref="U14" pin="19"/>
  3894. <node ref="D23" pin="1"/>
  3895. <node ref="C45" pin="2"/>
  3896. </net>
  3897. <net code="78" name="FPGA_JTAGEN">
  3898. <node ref="U13" pin="J3"/>
  3899. <node ref="R24" pin="2"/>
  3900. <node ref="J4" pin="7"/>
  3901. </net>
  3902. <net code="79" name="FPGA_TDI">
  3903. <node ref="J4" pin="9"/>
  3904. <node ref="U13" pin="H4"/>
  3905. <node ref="U11" pin="19"/>
  3906. <node ref="R39" pin="1"/>
  3907. </net>
  3908. <net code="80" name="DLCK">
  3909. <node ref="U7" pin="6"/>
  3910. <node ref="U13" pin="H1"/>
  3911. <node ref="D5" pin="2"/>
  3912. </net>
  3913. <net code="81" name="~OUT_ABC_3V3">
  3914. <node ref="U2" pin="8"/>
  3915. <node ref="U13" pin="G2"/>
  3916. </net>
  3917. <net code="82" name="Net-(R13-Pad1)">
  3918. <node ref="R13" pin="1"/>
  3919. <node ref="U13" pin="F4"/>
  3920. </net>
  3921. <net code="83" name="~CS_ABC_3V3">
  3922. <node ref="U13" pin="F2"/>
  3923. <node ref="U3" pin="2"/>
  3924. </net>
  3925. <net code="84" name="nCE0">
  3926. <node ref="U7" pin="1"/>
  3927. <node ref="D4" pin="2"/>
  3928. <node ref="U13" pin="D2"/>
  3929. </net>
  3930. <net code="85" name="ASD0">
  3931. <node ref="U7" pin="5"/>
  3932. <node ref="D6" pin="2"/>
  3933. <node ref="U13" pin="C1"/>
  3934. </net>
  3935. <net code="86" name="XM_ABC_3V3">
  3936. <node ref="Q6" pin="1"/>
  3937. <node ref="U13" pin="B1"/>
  3938. <node ref="R44" pin="2"/>
  3939. </net>
  3940. <net code="87" name="HDMI_D1-">
  3941. <node ref="U13" pin="N16"/>
  3942. <node ref="C78" pin="2"/>
  3943. </net>
  3944. <net code="88" name="HDMI_CK-">
  3945. <node ref="C82" pin="2"/>
  3946. <node ref="U13" pin="J16"/>
  3947. </net>
  3948. <net code="89" name="HDMI_CK+">
  3949. <node ref="C81" pin="2"/>
  3950. <node ref="U13" pin="J15"/>
  3951. </net>
  3952. <net code="90" name="FPGA_TCK">
  3953. <node ref="U13" pin="H3"/>
  3954. <node ref="R42" pin="2"/>
  3955. <node ref="J4" pin="1"/>
  3956. <node ref="U11" pin="21"/>
  3957. </net>
  3958. <net code="91" name="FPGA_TMS">
  3959. <node ref="R40" pin="2"/>
  3960. <node ref="U11" pin="17"/>
  3961. <node ref="J4" pin="5"/>
  3962. <node ref="U13" pin="J5"/>
  3963. </net>
  3964. <net code="92" name="FPGA_TDO">
  3965. <node ref="U13" pin="J4"/>
  3966. <node ref="U11" pin="20"/>
  3967. <node ref="J4" pin="3"/>
  3968. </net>
  3969. <net code="93" name="Net-(U13-PadF13)">
  3970. <node ref="U13" pin="F13"/>
  3971. </net>
  3972. <net code="94" name="/FPGA_USB_PU">
  3973. <node ref="R10" pin="1"/>
  3974. <node ref="U13" pin="C16"/>
  3975. </net>
  3976. <net code="96" name="/~SD_DETECT">
  3977. <node ref="J3" pin="10"/>
  3978. <node ref="R33" pin="1"/>
  3979. <node ref="U13" pin="L15"/>
  3980. </net>
  3981. <net code="97" name="Net-(D10-Pad2)">
  3982. <node ref="D10" pin="2"/>
  3983. <node ref="D22" pin="2"/>
  3984. <node ref="R30" pin="1"/>
  3985. </net>
  3986. <net code="98" name="Net-(D23-Pad2)">
  3987. <node ref="D23" pin="2"/>
  3988. <node ref="D9" pin="2"/>
  3989. <node ref="R31" pin="1"/>
  3990. </net>
  3991. <net code="99" name="Net-(D17-Pad2)">
  3992. <node ref="D8" pin="2"/>
  3993. <node ref="D17" pin="2"/>
  3994. <node ref="R29" pin="1"/>
  3995. </net>
  3996. <net code="100" name="Net-(U13-PadK6)">
  3997. <node ref="U13" pin="K6"/>
  3998. </net>
  3999. <net code="102" name="Net-(U13-PadL6)">
  4000. <node ref="U13" pin="L6"/>
  4001. </net>
  4002. <net code="103" name="/FPGA_USB_DS_DN">
  4003. <node ref="U13" pin="D16"/>
  4004. <node ref="R8" pin="1"/>
  4005. <node ref="U13" pin="L13"/>
  4006. </net>
  4007. <net code="104" name="/FPGA_USB_DS_DP">
  4008. <node ref="U13" pin="L16"/>
  4009. <node ref="U13" pin="D15"/>
  4010. <node ref="R10" pin="2"/>
  4011. <node ref="R7" pin="1"/>
  4012. </net>
  4013. <net code="105" name="/A0">
  4014. <node ref="U6" pin="23"/>
  4015. <node ref="U13" pin="A14"/>
  4016. </net>
  4017. <net code="106" name="Net-(J3-Pad1)">
  4018. <node ref="J3" pin="1"/>
  4019. </net>
  4020. <net code="107" name="Net-(J3-Pad8)">
  4021. <node ref="J3" pin="8"/>
  4022. </net>
  4023. <net code="108" name="/FPGA_SDA">
  4024. <node ref="U13" pin="C15"/>
  4025. <node ref="J4" pin="12"/>
  4026. <node ref="U12" pin="15"/>
  4027. <node ref="U11" pin="8"/>
  4028. <node ref="R14" pin="2"/>
  4029. </net>
  4030. <net code="109" name="/FPGA_SCL">
  4031. <node ref="U13" pin="G11"/>
  4032. <node ref="U11" pin="9"/>
  4033. <node ref="U12" pin="16"/>
  4034. <node ref="R12" pin="1"/>
  4035. <node ref="J4" pin="11"/>
  4036. </net>
  4037. <net code="110" name="/BA1">
  4038. <node ref="U13" pin="B13"/>
  4039. <node ref="U6" pin="21"/>
  4040. </net>
  4041. <net code="111" name="/BA0">
  4042. <node ref="U13" pin="A13"/>
  4043. <node ref="U6" pin="20"/>
  4044. </net>
  4045. <net code="112" name="/CS#">
  4046. <node ref="U6" pin="19"/>
  4047. <node ref="U13" pin="D12"/>
  4048. </net>
  4049. <net code="113" name="/RAS#">
  4050. <node ref="U13" pin="B12"/>
  4051. <node ref="U6" pin="18"/>
  4052. </net>
  4053. <net code="114" name="/CAS#">
  4054. <node ref="U6" pin="17"/>
  4055. <node ref="U13" pin="E9"/>
  4056. </net>
  4057. <net code="115" name="/RTC_INT">
  4058. <node ref="U13" pin="B16"/>
  4059. <node ref="R32" pin="2"/>
  4060. <node ref="U12" pin="3"/>
  4061. </net>
  4062. <net code="116" name="/SD_CLK">
  4063. <node ref="U13" pin="G15"/>
  4064. <node ref="J3" pin="5"/>
  4065. </net>
  4066. <net code="117" name="/SD_DAT0">
  4067. <node ref="U13" pin="F15"/>
  4068. <node ref="J3" pin="7"/>
  4069. </net>
  4070. <net code="118" name="Net-(U6-Pad40)">
  4071. <node ref="U6" pin="40"/>
  4072. </net>
  4073. <net code="119" name="~INP_ABC_3V3">
  4074. <node ref="U13" pin="L2"/>
  4075. <node ref="U4" pin="7"/>
  4076. </net>
  4077. <net code="120" name="~C2_ABC_3V3">
  4078. <node ref="U2" pin="4"/>
  4079. <node ref="U13" pin="K5"/>
  4080. </net>
  4081. <net code="121" name="~C4_ABC_3V3">
  4082. <node ref="U13" pin="K2"/>
  4083. <node ref="U4" pin="9"/>
  4084. </net>
  4085. <net code="122" name="~C1_ABC_3V3">
  4086. <node ref="U13" pin="J2"/>
  4087. <node ref="U2" pin="6"/>
  4088. </net>
  4089. <net code="123" name="/DQML">
  4090. <node ref="U13" pin="E10"/>
  4091. <node ref="U6" pin="15"/>
  4092. </net>
  4093. <net code="124" name="/A1">
  4094. <node ref="U13" pin="B14"/>
  4095. <node ref="U6" pin="24"/>
  4096. </net>
  4097. <net code="125" name="/A2">
  4098. <node ref="U6" pin="25"/>
  4099. <node ref="U13" pin="D14"/>
  4100. </net>
  4101. <net code="126" name="/A3">
  4102. <node ref="U13" pin="A15"/>
  4103. <node ref="U6" pin="26"/>
  4104. </net>
  4105. <net code="127" name="/A4">
  4106. <node ref="U6" pin="29"/>
  4107. <node ref="U13" pin="C9"/>
  4108. </net>
  4109. <net code="128" name="/A5">
  4110. <node ref="U13" pin="D9"/>
  4111. <node ref="U6" pin="30"/>
  4112. </net>
  4113. <net code="129" name="/A10">
  4114. <node ref="U13" pin="C14"/>
  4115. <node ref="U6" pin="22"/>
  4116. </net>
  4117. <net code="130" name="/IO0">
  4118. <node ref="U13" pin="A12"/>
  4119. <node ref="U6" pin="2"/>
  4120. </net>
  4121. <net code="131" name="/IO1">
  4122. <node ref="U6" pin="4"/>
  4123. <node ref="U13" pin="E11"/>
  4124. </net>
  4125. <net code="132" name="/IO2">
  4126. <node ref="U6" pin="5"/>
  4127. <node ref="U13" pin="D11"/>
  4128. </net>
  4129. <net code="133" name="/32KHZ">
  4130. <node ref="U13" pin="E15"/>
  4131. <node ref="U12" pin="1"/>
  4132. <node ref="R9" pin="2"/>
  4133. <node ref="U11" pin="18"/>
  4134. </net>
  4135. <net code="134" name="/IO3">
  4136. <node ref="U6" pin="7"/>
  4137. <node ref="U13" pin="C11"/>
  4138. </net>
  4139. <net code="135" name="/IO4">
  4140. <node ref="U6" pin="8"/>
  4141. <node ref="U13" pin="B11"/>
  4142. </net>
  4143. <net code="136" name="/IO5">
  4144. <node ref="U13" pin="A11"/>
  4145. <node ref="U6" pin="10"/>
  4146. </net>
  4147. <net code="137" name="/IO6">
  4148. <node ref="U6" pin="11"/>
  4149. <node ref="U13" pin="B10"/>
  4150. </net>
  4151. <net code="138" name="/IO7">
  4152. <node ref="U6" pin="13"/>
  4153. <node ref="U13" pin="A10"/>
  4154. </net>
  4155. <net code="139" name="/WE#">
  4156. <node ref="U6" pin="16"/>
  4157. <node ref="U13" pin="F9"/>
  4158. </net>
  4159. <net code="140" name="/SD_CMD">
  4160. <node ref="J3" pin="3"/>
  4161. <node ref="U13" pin="G16"/>
  4162. </net>
  4163. <net code="141" name="/SD_DAT3">
  4164. <node ref="U13" pin="F16"/>
  4165. <node ref="J3" pin="2"/>
  4166. </net>
  4167. <net code="142" name="Net-(R37-Pad2)">
  4168. <node ref="R37" pin="2"/>
  4169. <node ref="U13" pin="H5"/>
  4170. </net>
  4171. <net code="143" name="~RST_ABC_3V3">
  4172. <node ref="U13" pin="P2"/>
  4173. <node ref="U14" pin="7"/>
  4174. </net>
  4175. <net code="144" name="~C3_ABC_3V3">
  4176. <node ref="U2" pin="2"/>
  4177. <node ref="U13" pin="L3"/>
  4178. </net>
  4179. <net code="145" name="Net-(R38-Pad2)">
  4180. <node ref="U13" pin="H14"/>
  4181. <node ref="R38" pin="2"/>
  4182. </net>
  4183. <net code="146" name="DATA0">
  4184. <node ref="D7" pin="2"/>
  4185. <node ref="R41" pin="1"/>
  4186. <node ref="U13" pin="H2"/>
  4187. </net>
  4188. <net code="147" name="~XMEMW80_ABC_3V3">
  4189. <node ref="U13" pin="R1"/>
  4190. <node ref="U14" pin="3"/>
  4191. </net>
  4192. <net code="148" name="~XMEMW800_ABC_3V3">
  4193. <node ref="U14" pin="4"/>
  4194. <node ref="U13" pin="P1"/>
  4195. </net>
  4196. <net code="149" name="Net-(R41-Pad2)">
  4197. <node ref="R41" pin="2"/>
  4198. <node ref="U7" pin="2"/>
  4199. </net>
  4200. <net code="150" name="+5V">
  4201. <node ref="C52" pin="1"/>
  4202. <node ref="R47" pin="2"/>
  4203. <node ref="C67" pin="1"/>
  4204. <node ref="D28" pin="1"/>
  4205. <node ref="C35" pin="1"/>
  4206. <node ref="J2" pin="18"/>
  4207. <node ref="C36" pin="1"/>
  4208. <node ref="U8" pin="3"/>
  4209. <node ref="C60" pin="1"/>
  4210. <node ref="C70" pin="1"/>
  4211. <node ref="C64" pin="1"/>
  4212. <node ref="U16" pin="3"/>
  4213. <node ref="U1" pin="3"/>
  4214. <node ref="F2" pin="1"/>
  4215. <node ref="C65" pin="1"/>
  4216. <node ref="D19" pin="1"/>
  4217. </net>
  4218. <net code="151" name="AD16">
  4219. <node ref="U4" pin="1"/>
  4220. <node ref="U13" pin="C2"/>
  4221. <node ref="U14" pin="1"/>
  4222. <node ref="U3" pin="1"/>
  4223. <node ref="U2" pin="1"/>
  4224. </net>
  4225. <net code="152" name="Net-(R25-Pad2)">
  4226. <node ref="U14" pin="17"/>
  4227. <node ref="R25" pin="2"/>
  4228. </net>
  4229. <net code="153" name="/abc80bus/ABC_12V">
  4230. <node ref="X1" pin="B32"/>
  4231. <node ref="J7" pin="1"/>
  4232. <node ref="X2" pin="B32"/>
  4233. <node ref="X2" pin="A32"/>
  4234. <node ref="X1" pin="A32"/>
  4235. </net>
  4236. <net code="154" name="/abc80bus/~XMEMW80">
  4237. <node ref="R25" pin="1"/>
  4238. <node ref="Q5" pin="3"/>
  4239. <node ref="X2" pin="A5"/>
  4240. <node ref="R45" pin="1"/>
  4241. <node ref="X1" pin="A5"/>
  4242. </net>
  4243. <net code="155" name="/abc80bus/~INT">
  4244. <node ref="X1" pin="B13"/>
  4245. <node ref="X2" pin="B13"/>
  4246. <node ref="R43" pin="1"/>
  4247. <node ref="Q1" pin="3"/>
  4248. </net>
  4249. <net code="156" name="Net-(U14-Pad5)">
  4250. <node ref="U14" pin="5"/>
  4251. </net>
  4252. <net code="157" name="Net-(U14-Pad15)">
  4253. <node ref="U14" pin="15"/>
  4254. </net>
  4255. <net code="158" name="/abc80bus/~XM">
  4256. <node ref="X2" pin="A28"/>
  4257. <node ref="Q6" pin="3"/>
  4258. <node ref="X1" pin="A28"/>
  4259. <node ref="R44" pin="1"/>
  4260. </net>
  4261. <net code="159" name="/abc80bus/ABC_-12V">
  4262. <node ref="X1" pin="B1"/>
  4263. <node ref="X2" pin="B1"/>
  4264. <node ref="X2" pin="A1"/>
  4265. <node ref="J7" pin="2"/>
  4266. <node ref="X1" pin="A1"/>
  4267. </net>
  4268. <net code="160" name="/abc80bus/~XINPSTB">
  4269. <node ref="U14" pin="12"/>
  4270. <node ref="R22" pin="1"/>
  4271. <node ref="X1" pin="A26"/>
  4272. <node ref="X2" pin="A26"/>
  4273. </net>
  4274. <net code="161" name="/abc80bus/~XOUTSTB">
  4275. <node ref="U14" pin="11"/>
  4276. <node ref="R23" pin="1"/>
  4277. <node ref="X1" pin="A27"/>
  4278. <node ref="X2" pin="A27"/>
  4279. </net>
  4280. <net code="162" name="/abc80bus/~RST">
  4281. <node ref="X2" pin="A15"/>
  4282. <node ref="X1" pin="A15"/>
  4283. <node ref="U14" pin="13"/>
  4284. </net>
  4285. <net code="163" name="/abc80bus/~XMEMW800">
  4286. <node ref="X1" pin="B3"/>
  4287. <node ref="U14" pin="16"/>
  4288. <node ref="X2" pin="B3"/>
  4289. </net>
  4290. <net code="164" name="/abc80bus/~XMEMFL">
  4291. <node ref="U14" pin="18"/>
  4292. <node ref="X1" pin="B4"/>
  4293. <node ref="X2" pin="B4"/>
  4294. </net>
  4295. <net code="165" name="DD8">
  4296. <node ref="U13" pin="R5"/>
  4297. <node ref="U5" pin="1"/>
  4298. </net>
  4299. <net code="166" name="ABC_CLK_5">
  4300. <node ref="X2" pin="B5"/>
  4301. <node ref="X1" pin="B5"/>
  4302. <node ref="U14" pin="14"/>
  4303. </net>
  4304. <net code="167" name="/abc80bus/D6">
  4305. <node ref="U5" pin="17"/>
  4306. <node ref="X2" pin="A7"/>
  4307. <node ref="X1" pin="A7"/>
  4308. </net>
  4309. <net code="168" name="/abc80bus/A0">
  4310. <node ref="U3" pin="11"/>
  4311. <node ref="X2" pin="B29"/>
  4312. <node ref="X1" pin="B29"/>
  4313. </net>
  4314. <net code="169" name="/abc80bus/A6">
  4315. <node ref="X2" pin="B23"/>
  4316. <node ref="X1" pin="B23"/>
  4317. <node ref="U3" pin="17"/>
  4318. </net>
  4319. <net code="170" name="/abc80bus/A5">
  4320. <node ref="X1" pin="B24"/>
  4321. <node ref="U3" pin="16"/>
  4322. <node ref="X2" pin="B24"/>
  4323. </net>
  4324. <net code="171" name="/abc80bus/A4">
  4325. <node ref="U3" pin="15"/>
  4326. <node ref="X2" pin="B25"/>
  4327. <node ref="X1" pin="B25"/>
  4328. </net>
  4329. <net code="172" name="/abc80bus/A3">
  4330. <node ref="X2" pin="B26"/>
  4331. <node ref="X1" pin="B26"/>
  4332. <node ref="U3" pin="14"/>
  4333. </net>
  4334. <net code="173" name="/abc80bus/A2">
  4335. <node ref="U3" pin="13"/>
  4336. <node ref="X2" pin="B27"/>
  4337. <node ref="X1" pin="B27"/>
  4338. </net>
  4339. <net code="174" name="/abc80bus/A1">
  4340. <node ref="X2" pin="B28"/>
  4341. <node ref="X1" pin="B28"/>
  4342. <node ref="U3" pin="12"/>
  4343. </net>
  4344. <net code="175" name="Net-(X1-PadB30)">
  4345. <node ref="X1" pin="B30"/>
  4346. <node ref="X2" pin="B30"/>
  4347. </net>
  4348. <net code="176" name="/abc80bus/ABC5V">
  4349. <node ref="X1" pin="B31"/>
  4350. <node ref="X1" pin="A31"/>
  4351. <node ref="X2" pin="A31"/>
  4352. <node ref="X2" pin="B31"/>
  4353. <node ref="J1" pin="1"/>
  4354. </net>
  4355. <net code="177" name="Net-(X1-PadB6)">
  4356. <node ref="X1" pin="B6"/>
  4357. <node ref="X2" pin="B6"/>
  4358. </net>
  4359. <net code="178" name="Net-(X1-PadB7)">
  4360. <node ref="X1" pin="B7"/>
  4361. <node ref="X2" pin="B7"/>
  4362. </net>
  4363. <net code="179" name="Net-(X1-PadB8)">
  4364. <node ref="X1" pin="B8"/>
  4365. <node ref="X2" pin="B8"/>
  4366. </net>
  4367. <net code="180" name="Net-(X1-PadB9)">
  4368. <node ref="X1" pin="B9"/>
  4369. <node ref="X2" pin="B9"/>
  4370. </net>
  4371. <net code="181" name="/abc80bus/D7">
  4372. <node ref="X1" pin="A6"/>
  4373. <node ref="U5" pin="18"/>
  4374. <node ref="X2" pin="A6"/>
  4375. </net>
  4376. <net code="182" name="/abc80bus/~NMI">
  4377. <node ref="R27" pin="1"/>
  4378. <node ref="X1" pin="A24"/>
  4379. <node ref="X2" pin="A24"/>
  4380. <node ref="Q3" pin="3"/>
  4381. </net>
  4382. <net code="183" name="Net-(X1-PadA25)">
  4383. <node ref="X2" pin="A25"/>
  4384. <node ref="X1" pin="A25"/>
  4385. </net>
  4386. <net code="184" name="Net-(X1-PadA29)">
  4387. <node ref="X1" pin="A29"/>
  4388. <node ref="X2" pin="A29"/>
  4389. </net>
  4390. <net code="185" name="/abc80bus/~CS">
  4391. <node ref="U3" pin="18"/>
  4392. <node ref="X1" pin="A23"/>
  4393. <node ref="X2" pin="A23"/>
  4394. </net>
  4395. <net code="186" name="/abc80bus/D5">
  4396. <node ref="U5" pin="16"/>
  4397. <node ref="X2" pin="A8"/>
  4398. <node ref="X1" pin="A8"/>
  4399. </net>
  4400. <net code="187" name="/abc80bus/D4">
  4401. <node ref="U5" pin="15"/>
  4402. <node ref="X2" pin="A9"/>
  4403. <node ref="X1" pin="A9"/>
  4404. </net>
  4405. <net code="188" name="Net-(X1-PadB10)">
  4406. <node ref="X2" pin="B10"/>
  4407. <node ref="X1" pin="B10"/>
  4408. </net>
  4409. <net code="189" name="Net-(X1-PadB11)">
  4410. <node ref="X1" pin="B11"/>
  4411. <node ref="X2" pin="B11"/>
  4412. </net>
  4413. <net code="190" name="Net-(X1-PadB12)">
  4414. <node ref="X2" pin="B12"/>
  4415. <node ref="X1" pin="B12"/>
  4416. </net>
  4417. <net code="191" name="/abc80bus/D2">
  4418. <node ref="U5" pin="13"/>
  4419. <node ref="X1" pin="A11"/>
  4420. <node ref="X2" pin="A11"/>
  4421. </net>
  4422. <net code="192" name="/abc80bus/D3">
  4423. <node ref="U5" pin="14"/>
  4424. <node ref="X2" pin="A10"/>
  4425. <node ref="X1" pin="A10"/>
  4426. </net>
  4427. <net code="193" name="/abc80bus/D1">
  4428. <node ref="X2" pin="A12"/>
  4429. <node ref="U5" pin="12"/>
  4430. <node ref="X1" pin="A12"/>
  4431. </net>
  4432. <net code="194" name="/abc80bus/D0">
  4433. <node ref="X1" pin="A13"/>
  4434. <node ref="U5" pin="11"/>
  4435. <node ref="X2" pin="A13"/>
  4436. </net>
  4437. <net code="195" name="Net-(X1-PadA14)">
  4438. <node ref="X2" pin="A14"/>
  4439. <node ref="X1" pin="A14"/>
  4440. </net>
  4441. <net code="197" name="/abc80bus/~INP">
  4442. <node ref="X2" pin="A17"/>
  4443. <node ref="X1" pin="A17"/>
  4444. <node ref="U4" pin="13"/>
  4445. </net>
  4446. <net code="198" name="/abc80bus/READY">
  4447. <node ref="R26" pin="1"/>
  4448. <node ref="Q2" pin="3"/>
  4449. <node ref="X2" pin="A30"/>
  4450. <node ref="X1" pin="A30"/>
  4451. </net>
  4452. <net code="199" name="/abc80bus/~RESIN">
  4453. <node ref="X2" pin="A3"/>
  4454. <node ref="X1" pin="A3"/>
  4455. <node ref="R28" pin="1"/>
  4456. <node ref="Q4" pin="3"/>
  4457. </net>
  4458. <net code="200" name="/abc80bus/A7">
  4459. <node ref="X2" pin="B22"/>
  4460. <node ref="X1" pin="B22"/>
  4461. <node ref="U2" pin="11"/>
  4462. </net>
  4463. <net code="201" name="/abc80bus/A8">
  4464. <node ref="U2" pin="13"/>
  4465. <node ref="X1" pin="B21"/>
  4466. <node ref="X2" pin="B21"/>
  4467. </net>
  4468. <net code="202" name="/abc80bus/A9">
  4469. <node ref="X2" pin="B20"/>
  4470. <node ref="X1" pin="B20"/>
  4471. <node ref="U2" pin="15"/>
  4472. </net>
  4473. <net code="203" name="/abc80bus/A10">
  4474. <node ref="X1" pin="B19"/>
  4475. <node ref="X2" pin="B19"/>
  4476. <node ref="U2" pin="17"/>
  4477. </net>
  4478. <net code="204" name="/abc80bus/A11">
  4479. <node ref="X1" pin="B18"/>
  4480. <node ref="U4" pin="12"/>
  4481. <node ref="X2" pin="B18"/>
  4482. </net>
  4483. <net code="205" name="/abc80bus/A12">
  4484. <node ref="X2" pin="B17"/>
  4485. <node ref="U4" pin="14"/>
  4486. <node ref="X1" pin="B17"/>
  4487. </net>
  4488. <net code="206" name="/abc80bus/A13">
  4489. <node ref="U4" pin="16"/>
  4490. <node ref="X2" pin="B16"/>
  4491. <node ref="X1" pin="B16"/>
  4492. </net>
  4493. <net code="207" name="/abc80bus/A14">
  4494. <node ref="U4" pin="17"/>
  4495. <node ref="X1" pin="B15"/>
  4496. <node ref="X2" pin="B15"/>
  4497. </net>
  4498. <net code="208" name="/abc80bus/A15">
  4499. <node ref="X1" pin="B14"/>
  4500. <node ref="X2" pin="B14"/>
  4501. <node ref="U4" pin="18"/>
  4502. </net>
  4503. <net code="209" name="/abc80bus/~OUT">
  4504. <node ref="X2" pin="A22"/>
  4505. <node ref="U2" pin="12"/>
  4506. <node ref="X1" pin="A22"/>
  4507. </net>
  4508. <net code="210" name="/abc80bus/~STATUS">
  4509. <node ref="X2" pin="A16"/>
  4510. <node ref="X1" pin="A16"/>
  4511. <node ref="U4" pin="15"/>
  4512. </net>
  4513. <net code="211" name="/abc80bus/~C1">
  4514. <node ref="X2" pin="A21"/>
  4515. <node ref="X1" pin="A21"/>
  4516. <node ref="U2" pin="14"/>
  4517. </net>
  4518. <net code="212" name="/abc80bus/~C2">
  4519. <node ref="X2" pin="A20"/>
  4520. <node ref="U2" pin="16"/>
  4521. <node ref="X1" pin="A20"/>
  4522. </net>
  4523. <net code="213" name="/abc80bus/~C3">
  4524. <node ref="U2" pin="18"/>
  4525. <node ref="X1" pin="A19"/>
  4526. <node ref="X2" pin="A19"/>
  4527. </net>
  4528. <net code="214" name="/abc80bus/~C4">
  4529. <node ref="X1" pin="A18"/>
  4530. <node ref="U4" pin="11"/>
  4531. <node ref="X2" pin="A18"/>
  4532. </net>
  4533. <net code="215" name="Net-(D28-Pad2)">
  4534. <node ref="D28" pin="2"/>
  4535. <node ref="J1" pin="2"/>
  4536. </net>
  4537. <net code="216" name="Net-(R8-Pad2)">
  4538. <node ref="R8" pin="2"/>
  4539. <node ref="U9" pin="1"/>
  4540. </net>
  4541. <net code="217" name="Net-(USB1-Pad13)">
  4542. <node ref="USB1" pin="13"/>
  4543. </net>
  4544. <net code="218" name="Net-(R6-Pad2)">
  4545. <node ref="R6" pin="2"/>
  4546. <node ref="USB1" pin="10"/>
  4547. </net>
  4548. <net code="219" name="Net-(USB1-Pad3)">
  4549. <node ref="USB1" pin="3"/>
  4550. </net>
  4551. <net code="220" name="Net-(R5-Pad2)">
  4552. <node ref="R5" pin="2"/>
  4553. <node ref="USB1" pin="4"/>
  4554. </net>
  4555. <net code="221" name="Net-(U9-Pad6)">
  4556. <node ref="USB1" pin="5"/>
  4557. <node ref="U9" pin="6"/>
  4558. <node ref="USB1" pin="7"/>
  4559. </net>
  4560. <net code="222" name="Net-(U9-Pad4)">
  4561. <node ref="USB1" pin="8"/>
  4562. <node ref="U9" pin="4"/>
  4563. <node ref="USB1" pin="6"/>
  4564. </net>
  4565. <net code="223" name="Net-(USB1-Pad9)">
  4566. <node ref="USB1" pin="9"/>
  4567. </net>
  4568. <net code="225" name="Net-(R7-Pad2)">
  4569. <node ref="R7" pin="2"/>
  4570. <node ref="U9" pin="3"/>
  4571. </net>
  4572. <net code="226" name="Net-(F1-Pad2)">
  4573. <node ref="F1" pin="2"/>
  4574. <node ref="U9" pin="5"/>
  4575. <node ref="USB1" pin="2"/>
  4576. <node ref="USB1" pin="11"/>
  4577. </net>
  4578. <net code="227" name="+5VA">
  4579. <node ref="R36" pin="2"/>
  4580. <node ref="F2" pin="2"/>
  4581. <node ref="D19" pin="2"/>
  4582. <node ref="C39" pin="1"/>
  4583. <node ref="F1" pin="1"/>
  4584. <node ref="D27" pin="1"/>
  4585. <node ref="Q9" pin="2"/>
  4586. </net>
  4587. <net code="228" name="Net-(D13-Pad1)">
  4588. <node ref="D13" pin="1"/>
  4589. <node ref="D2" pin="1"/>
  4590. <node ref="R17" pin="1"/>
  4591. </net>
  4592. <net code="229" name="Net-(D12-Pad1)">
  4593. <node ref="D3" pin="1"/>
  4594. <node ref="R18" pin="1"/>
  4595. <node ref="D12" pin="1"/>
  4596. </net>
  4597. <net code="230" name="Net-(D1-Pad1)">
  4598. <node ref="R16" pin="1"/>
  4599. <node ref="D11" pin="1"/>
  4600. <node ref="D1" pin="1"/>
  4601. </net>
  4602. <net code="231" name="~USB_PWR_SINK">
  4603. <node ref="U11" pin="11"/>
  4604. <node ref="R3" pin="1"/>
  4605. <node ref="R4" pin="1"/>
  4606. </net>
  4607. <net code="232" name="USB_PWR_EN">
  4608. <node ref="Q8" pin="1"/>
  4609. <node ref="U11" pin="10"/>
  4610. <node ref="R48" pin="2"/>
  4611. </net>
  4612. <net code="233" name="Net-(U15-Pad6)">
  4613. <node ref="USB2" pin="7"/>
  4614. <node ref="USB2" pin="5"/>
  4615. <node ref="U15" pin="6"/>
  4616. </net>
  4617. <net code="234" name="Net-(USB2-Pad13)">
  4618. <node ref="USB2" pin="13"/>
  4619. </net>
  4620. <net code="235" name="Net-(U15-Pad4)">
  4621. <node ref="U15" pin="4"/>
  4622. <node ref="USB2" pin="6"/>
  4623. <node ref="USB2" pin="8"/>
  4624. </net>
  4625. <net code="236" name="Net-(USB2-Pad3)">
  4626. <node ref="USB2" pin="3"/>
  4627. </net>
  4628. <net code="237" name="Net-(USB2-Pad9)">
  4629. <node ref="USB2" pin="9"/>
  4630. </net>
  4631. <net code="238" name="Net-(R35-Pad2)">
  4632. <node ref="R4" pin="2"/>
  4633. <node ref="R35" pin="2"/>
  4634. <node ref="USB2" pin="10"/>
  4635. </net>
  4636. <net code="239" name="ESP32_EN">
  4637. <node ref="U11" pin="41"/>
  4638. <node ref="J4" pin="28"/>
  4639. <node ref="R15" pin="2"/>
  4640. </net>
  4641. <net code="240" name="Net-(D1-Pad2)">
  4642. <node ref="D11" pin="2"/>
  4643. <node ref="D1" pin="2"/>
  4644. <node ref="U11" pin="5"/>
  4645. </net>
  4646. <net code="241" name="Net-(D12-Pad2)">
  4647. <node ref="U11" pin="6"/>
  4648. <node ref="D3" pin="2"/>
  4649. <node ref="D12" pin="2"/>
  4650. </net>
  4651. <net code="242" name="Net-(D13-Pad2)">
  4652. <node ref="U11" pin="7"/>
  4653. <node ref="D13" pin="2"/>
  4654. <node ref="D2" pin="2"/>
  4655. </net>
  4656. <net code="243" name="Net-(U11-Pad40)">
  4657. <node ref="U11" pin="40"/>
  4658. </net>
  4659. <net code="244" name="Net-(R3-Pad2)">
  4660. <node ref="USB2" pin="4"/>
  4661. <node ref="R3" pin="2"/>
  4662. <node ref="R34" pin="2"/>
  4663. </net>
  4664. <net code="245" name="/ESP32/USB_D+">
  4665. <node ref="U11" pin="23"/>
  4666. <node ref="U15" pin="3"/>
  4667. </net>
  4668. <net code="246" name="/ESP32/USB_D-">
  4669. <node ref="U15" pin="1"/>
  4670. <node ref="U11" pin="22"/>
  4671. </net>
  4672. <net code="247" name="ESP32_CS2">
  4673. <node ref="J4" pin="19"/>
  4674. <node ref="U11" pin="24"/>
  4675. </net>
  4676. <net code="248" name="Net-(U11-Pad25)">
  4677. <node ref="U11" pin="25"/>
  4678. </net>
  4679. <net code="249" name="ESP32_MOSI">
  4680. <node ref="U11" pin="29"/>
  4681. <node ref="J4" pin="22"/>
  4682. </net>
  4683. <net code="250" name="ESP32_SDA">
  4684. <node ref="U11" pin="27"/>
  4685. <node ref="R20" pin="2"/>
  4686. <node ref="J4" pin="20"/>
  4687. </net>
  4688. <net code="251" name="ESP32_SCK">
  4689. <node ref="J4" pin="24"/>
  4690. <node ref="U11" pin="30"/>
  4691. </net>
  4692. <net code="252" name="ESP32_MISO">
  4693. <node ref="J4" pin="26"/>
  4694. <node ref="U11" pin="31"/>
  4695. </net>
  4696. <net code="253" name="ESP32_CS0">
  4697. <node ref="J4" pin="25"/>
  4698. <node ref="U11" pin="32"/>
  4699. </net>
  4700. <net code="254" name="ESP32_TCK">
  4701. <node ref="J4" pin="34"/>
  4702. <node ref="U11" pin="33"/>
  4703. </net>
  4704. <net code="255" name="ESP32_TDO">
  4705. <node ref="U11" pin="34"/>
  4706. <node ref="J4" pin="36"/>
  4707. </net>
  4708. <net code="256" name="ESP32_TDI">
  4709. <node ref="J4" pin="38"/>
  4710. <node ref="U11" pin="35"/>
  4711. </net>
  4712. <net code="257" name="ESP32_TMS">
  4713. <node ref="U11" pin="36"/>
  4714. <node ref="J4" pin="32"/>
  4715. </net>
  4716. <net code="258" name="ESP32_TXD">
  4717. <node ref="J4" pin="27"/>
  4718. <node ref="U11" pin="37"/>
  4719. </net>
  4720. <net code="259" name="ESP32_RXD">
  4721. <node ref="U11" pin="38"/>
  4722. <node ref="J4" pin="29"/>
  4723. </net>
  4724. <net code="260" name="ESP32_CS1">
  4725. <node ref="U11" pin="39"/>
  4726. <node ref="J4" pin="23"/>
  4727. </net>
  4728. <net code="261" name="ESP32_SCL">
  4729. <node ref="U11" pin="28"/>
  4730. <node ref="J4" pin="21"/>
  4731. <node ref="R19" pin="2"/>
  4732. </net>
  4733. <net code="262" name="Net-(C53-Pad1)">
  4734. <node ref="C53" pin="1"/>
  4735. <node ref="R1" pin="2"/>
  4736. <node ref="R15" pin="1"/>
  4737. </net>
  4738. <net code="263" name="Net-(Q8-Pad3)">
  4739. <node ref="R36" pin="1"/>
  4740. <node ref="Q8" pin="3"/>
  4741. <node ref="Q9" pin="1"/>
  4742. </net>
  4743. <net code="264" name="Net-(D27-Pad2)">
  4744. <node ref="D27" pin="2"/>
  4745. <node ref="USB2" pin="2"/>
  4746. <node ref="U15" pin="5"/>
  4747. <node ref="USB2" pin="11"/>
  4748. <node ref="Q9" pin="3"/>
  4749. </net>
  4750. <net code="265" name="Net-(BT1-Pad1)">
  4751. <node ref="BT1" pin="1"/>
  4752. <node ref="U12" pin="14"/>
  4753. </net>
  4754. <net code="266" name="+2V5">
  4755. <node ref="C59" pin="1"/>
  4756. <node ref="C43" pin="1"/>
  4757. <node ref="C32" pin="1"/>
  4758. <node ref="C42" pin="1"/>
  4759. <node ref="C9" pin="1"/>
  4760. <node ref="U13" pin="F5"/>
  4761. <node ref="U13" pin="F12"/>
  4762. <node ref="C15" pin="1"/>
  4763. <node ref="U16" pin="2"/>
  4764. <node ref="U13" pin="K14"/>
  4765. <node ref="C71" pin="1"/>
  4766. <node ref="C73" pin="1"/>
  4767. <node ref="C41" pin="1"/>
  4768. <node ref="U13" pin="L12"/>
  4769. <node ref="U13" pin="L5"/>
  4770. <node ref="U13" pin="M14"/>
  4771. </net>
  4772. <net code="267" name="+1V2">
  4773. <node ref="C63" pin="1"/>
  4774. <node ref="U13" pin="G6"/>
  4775. <node ref="U13" pin="H11"/>
  4776. <node ref="U13" pin="G9"/>
  4777. <node ref="U13" pin="F11"/>
  4778. <node ref="U13" pin="G8"/>
  4779. <node ref="C72" pin="1"/>
  4780. <node ref="U1" pin="2"/>
  4781. <node ref="U13" pin="G7"/>
  4782. <node ref="U13" pin="F7"/>
  4783. <node ref="U13" pin="G10"/>
  4784. <node ref="U13" pin="H6"/>
  4785. <node ref="C74" pin="1"/>
  4786. <node ref="U13" pin="D13"/>
  4787. <node ref="C20" pin="1"/>
  4788. <node ref="C23" pin="1"/>
  4789. <node ref="C18" pin="1"/>
  4790. <node ref="C19" pin="1"/>
  4791. <node ref="C66" pin="1"/>
  4792. <node ref="U13" pin="N4"/>
  4793. <node ref="C17" pin="1"/>
  4794. <node ref="C1" pin="1"/>
  4795. <node ref="U13" pin="N13"/>
  4796. <node ref="U13" pin="J6"/>
  4797. <node ref="U13" pin="K7"/>
  4798. <node ref="U13" pin="K11"/>
  4799. <node ref="C44" pin="1"/>
  4800. <node ref="U13" pin="D4"/>
  4801. <node ref="C50" pin="1"/>
  4802. <node ref="C62" pin="1"/>
  4803. <node ref="C12" pin="1"/>
  4804. </net>
  4805. <net code="268" name="Net-(J4-Pad40)">
  4806. <node ref="J4" pin="40"/>
  4807. </net>
  4808. <net code="269" name="Net-(J4-Pad6)">
  4809. <node ref="J4" pin="6"/>
  4810. </net>
  4811. <net code="270" name="Net-(J4-Pad8)">
  4812. <node ref="J4" pin="8"/>
  4813. </net>
  4814. <net code="271" name="Net-(J2-PadSH)">
  4815. <node ref="J2" pin="SH"/>
  4816. </net>
  4817. <net code="272" name="Net-(J2-Pad14)">
  4818. <node ref="J2" pin="14"/>
  4819. </net>
  4820. <net code="273" name="Net-(J2-Pad13)">
  4821. <node ref="J2" pin="13"/>
  4822. </net>
  4823. <net code="274" name="Net-(C82-Pad1)">
  4824. <node ref="C82" pin="1"/>
  4825. <node ref="J2" pin="12"/>
  4826. </net>
  4827. <net code="275" name="Net-(J2-Pad19)">
  4828. <node ref="Q7" pin="3"/>
  4829. <node ref="R47" pin="1"/>
  4830. <node ref="J2" pin="19"/>
  4831. </net>
  4832. <net code="276" name="Net-(C76-Pad1)">
  4833. <node ref="C76" pin="1"/>
  4834. <node ref="J2" pin="3"/>
  4835. </net>
  4836. <net code="277" name="Net-(C77-Pad1)">
  4837. <node ref="C77" pin="1"/>
  4838. <node ref="J2" pin="4"/>
  4839. </net>
  4840. <net code="278" name="Net-(C79-Pad1)">
  4841. <node ref="C79" pin="1"/>
  4842. <node ref="J2" pin="7"/>
  4843. </net>
  4844. <net code="279" name="Net-(C80-Pad1)">
  4845. <node ref="C80" pin="1"/>
  4846. <node ref="J2" pin="9"/>
  4847. </net>
  4848. <net code="280" name="Net-(C75-Pad1)">
  4849. <node ref="J2" pin="1"/>
  4850. <node ref="C75" pin="1"/>
  4851. </net>
  4852. <net code="281" name="Net-(C81-Pad1)">
  4853. <node ref="C81" pin="1"/>
  4854. <node ref="J2" pin="10"/>
  4855. </net>
  4856. <net code="282" name="Net-(C78-Pad1)">
  4857. <node ref="C78" pin="1"/>
  4858. <node ref="J2" pin="6"/>
  4859. </net>
  4860. <net code="283" name="DD7">
  4861. <node ref="U13" pin="T4"/>
  4862. <node ref="U5" pin="2"/>
  4863. </net>
  4864. <net code="291" name="DD6">
  4865. <node ref="U5" pin="3"/>
  4866. <node ref="U13" pin="R4"/>
  4867. </net>
  4868. <net code="292" name="DD5">
  4869. <node ref="U13" pin="T3"/>
  4870. <node ref="U5" pin="4"/>
  4871. </net>
  4872. <net code="293" name="DD4">
  4873. <node ref="U5" pin="5"/>
  4874. <node ref="U13" pin="R3"/>
  4875. </net>
  4876. <net code="294" name="AD15">
  4877. <node ref="U4" pin="2"/>
  4878. <node ref="U13" pin="N1"/>
  4879. </net>
  4880. <net code="295" name="AD8">
  4881. <node ref="U13" pin="G1"/>
  4882. <node ref="U2" pin="7"/>
  4883. </net>
  4884. <net code="296" name="AD7">
  4885. <node ref="U13" pin="F1"/>
  4886. <node ref="U2" pin="9"/>
  4887. </net>
  4888. <net code="297" name="AD6">
  4889. <node ref="U3" pin="3"/>
  4890. <node ref="U13" pin="M10"/>
  4891. </net>
  4892. <net code="298" name="AD5">
  4893. <node ref="U3" pin="4"/>
  4894. <node ref="U13" pin="F3"/>
  4895. </net>
  4896. <net code="299" name="AD4">
  4897. <node ref="U3" pin="5"/>
  4898. <node ref="U13" pin="G5"/>
  4899. </net>
  4900. <net code="300" name="AD3">
  4901. <node ref="U3" pin="6"/>
  4902. <node ref="U13" pin="D1"/>
  4903. </net>
  4904. <net code="301" name="AD2">
  4905. <node ref="U13" pin="F14"/>
  4906. <node ref="U3" pin="7"/>
  4907. </net>
  4908. <net code="302" name="AD1">
  4909. <node ref="U3" pin="8"/>
  4910. <node ref="U13" pin="T10"/>
  4911. </net>
  4912. <net code="303" name="AD0">
  4913. <node ref="U3" pin="9"/>
  4914. <node ref="U13" pin="F8"/>
  4915. </net>
  4916. <net code="304" name="AD9">
  4917. <node ref="U2" pin="5"/>
  4918. <node ref="U13" pin="J1"/>
  4919. </net>
  4920. <net code="305" name="AD14">
  4921. <node ref="U13" pin="N2"/>
  4922. <node ref="U4" pin="3"/>
  4923. </net>
  4924. <net code="306" name="AD13">
  4925. <node ref="U13" pin="T14"/>
  4926. <node ref="U4" pin="4"/>
  4927. </net>
  4928. <net code="307" name="AD12">
  4929. <node ref="U4" pin="6"/>
  4930. <node ref="U13" pin="L1"/>
  4931. </net>
  4932. <net code="308" name="AD11">
  4933. <node ref="U4" pin="8"/>
  4934. <node ref="U13" pin="K1"/>
  4935. </net>
  4936. <net code="309" name="AD10">
  4937. <node ref="U2" pin="3"/>
  4938. <node ref="U13" pin="L4"/>
  4939. </net>
  4940. </nets>
  4941. </export>