max80.xml 174 KB

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