123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977 |
- (kicad_sch (version 20211123) (generator eeschema)
- (uuid 1e518c2a-4cb7-4599-a1fa-5b9f847da7d3)
- (paper "B")
- (title_block
- (title "8051dumper")
- (date "2022-01-23")
- (rev "1.0a")
- (company "SweProj.com")
- )
- (lib_symbols
- (symbol "8051dumper-rescue:8051-MCU_8051" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
- (property "Reference" "U" (id 0) (at 0 1.27 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "8051-MCU_8051" (id 1) (at 0 -1.27 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "Package_DIP:DIP-40_W15.24mm" (id 2) (at 1.27 -35.56 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "Datasheet" "" (id 3) (at 15.24 8.89 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "MPN" "8051" (id 4) (at 1.27 -38.1 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "IPN" "TBD" (id 5) (at 1.27 -40.64 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "ki_fp_filters" "Package_DIP:DIP-40_W15.24mm*" (id 6) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "8051-MCU_8051_0_0"
- (pin bidirectional line (at 15.24 8.89 180) (length 2.54)
- (name "P1.0" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -15.24 -13.97 0) (length 2.54)
- (name "RxD/P3.0" (effects (font (size 1.27 1.27))))
- (number "10" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -15.24 -16.51 0) (length 2.54)
- (name "TxD/P3.1" (effects (font (size 1.27 1.27))))
- (number "11" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -15.24 -19.05 0) (length 2.54)
- (name "~{INT0}/P3.2" (effects (font (size 1.27 1.27))))
- (number "12" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -15.24 -21.59 0) (length 2.54)
- (name "~{INT1}/P3.3" (effects (font (size 1.27 1.27))))
- (number "13" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -15.24 -24.13 0) (length 2.54)
- (name "T0/P3.4" (effects (font (size 1.27 1.27))))
- (number "14" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -15.24 -26.67 0) (length 2.54)
- (name "T1/P3.5" (effects (font (size 1.27 1.27))))
- (number "15" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -15.24 -29.21 0) (length 2.54)
- (name "~{WR}/P3.6" (effects (font (size 1.27 1.27))))
- (number "16" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -15.24 -31.75 0) (length 2.54)
- (name "~{RD}/P3.7" (effects (font (size 1.27 1.27))))
- (number "17" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at -15.24 13.97 0) (length 2.54)
- (name "XTAL2" (effects (font (size 1.27 1.27))))
- (number "18" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -15.24 31.75 0) (length 2.54)
- (name "XTAL1" (effects (font (size 1.27 1.27))))
- (number "19" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 6.35 180) (length 2.54)
- (name "P1.1" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at 0 -36.83 90) (length 2.54)
- (name "VSS" (effects (font (size 1.27 1.27))))
- (number "20" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 -13.97 180) (length 2.54)
- (name "P2.0/A8" (effects (font (size 1.27 1.27))))
- (number "21" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 -16.51 180) (length 2.54)
- (name "P2.1/A9" (effects (font (size 1.27 1.27))))
- (number "22" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 -19.05 180) (length 2.54)
- (name "P2.2/A10" (effects (font (size 1.27 1.27))))
- (number "23" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 -21.59 180) (length 2.54)
- (name "P2.3/A11" (effects (font (size 1.27 1.27))))
- (number "24" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 -24.13 180) (length 2.54)
- (name "P2.4/A12" (effects (font (size 1.27 1.27))))
- (number "25" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 -26.67 180) (length 2.54)
- (name "P2.5/A13" (effects (font (size 1.27 1.27))))
- (number "26" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 -29.21 180) (length 2.54)
- (name "P2.6/A14" (effects (font (size 1.27 1.27))))
- (number "27" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 -31.75 180) (length 2.54)
- (name "P2.7/A15" (effects (font (size 1.27 1.27))))
- (number "28" (effects (font (size 1.27 1.27))))
- )
- (pin output line (at -15.24 3.81 0) (length 2.54)
- (name "~{PSEN}" (effects (font (size 1.27 1.27))))
- (number "29" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 3.81 180) (length 2.54)
- (name "P1.2" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin output line (at -15.24 -1.27 0) (length 2.54)
- (name "ALE" (effects (font (size 1.27 1.27))))
- (number "30" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -15.24 8.89 0) (length 2.54)
- (name "~{EA}" (effects (font (size 1.27 1.27))))
- (number "31" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 13.97 180) (length 2.54)
- (name "P0.7/AD7" (effects (font (size 1.27 1.27))))
- (number "32" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 16.51 180) (length 2.54)
- (name "P0.6/AD6" (effects (font (size 1.27 1.27))))
- (number "33" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 19.05 180) (length 2.54)
- (name "P0.5/AD5" (effects (font (size 1.27 1.27))))
- (number "34" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 21.59 180) (length 2.54)
- (name "P0.4/AD4" (effects (font (size 1.27 1.27))))
- (number "35" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 24.13 180) (length 2.54)
- (name "P0.3/AD3" (effects (font (size 1.27 1.27))))
- (number "36" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 26.67 180) (length 2.54)
- (name "P0.2/AD2" (effects (font (size 1.27 1.27))))
- (number "37" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 29.21 180) (length 2.54)
- (name "P0.1/AD1" (effects (font (size 1.27 1.27))))
- (number "38" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 31.75 180) (length 2.54)
- (name "P0.0/AD0" (effects (font (size 1.27 1.27))))
- (number "39" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 1.27 180) (length 2.54)
- (name "P1.3" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at 0 36.83 270) (length 2.54)
- (name "VCC" (effects (font (size 1.27 1.27))))
- (number "40" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 -1.27 180) (length 2.54)
- (name "P1.4" (effects (font (size 1.27 1.27))))
- (number "5" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 -3.81 180) (length 2.54)
- (name "P1.5" (effects (font (size 1.27 1.27))))
- (number "6" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 -6.35 180) (length 2.54)
- (name "P1.6" (effects (font (size 1.27 1.27))))
- (number "7" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 15.24 -8.89 180) (length 2.54)
- (name "P1.7" (effects (font (size 1.27 1.27))))
- (number "8" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -15.24 -8.89 0) (length 2.54)
- (name "RST" (effects (font (size 1.27 1.27))))
- (number "9" (effects (font (size 1.27 1.27))))
- )
- )
- (symbol "8051-MCU_8051_0_1"
- (rectangle (start -12.7 34.29) (end 12.7 -34.29)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type background))
- )
- )
- )
- (symbol "8051dumper-rescue:AT28C256-15PU-Memory_EEPROM" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
- (property "Reference" "U" (id 0) (at 17.78 -54.61 0)
- (effects (font (size 1.524 1.524)) (justify left))
- )
- (property "Value" "AT28C256-15PU-Memory_EEPROM" (id 1) (at 17.78 -57.15 0)
- (effects (font (size 1.524 1.524)) (justify left))
- )
- (property "Footprint" "Package_DIP:DIP-28_W15.24mm" (id 2) (at 17.78 -64.77 0)
- (effects (font (size 1.524 1.524)) (justify left) hide)
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "MPN" "Microchip:AT28C256-15PU" (id 4) (at 17.78 -59.69 0)
- (effects (font (size 1.524 1.524)) (justify left) hide)
- )
- (property "IPN" "TBD" (id 5) (at 17.78 -62.23 0)
- (effects (font (size 1.524 1.524)) (justify left) hide)
- )
- (property "ki_fp_filters" "DIP-28_W15.24mm*" (id 6) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "AT28C256-15PU-Memory_EEPROM_0_1"
- (rectangle (start 5.08 2.54) (end 25.4 -53.34)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type background))
- )
- )
- (symbol "AT28C256-15PU-Memory_EEPROM_1_1"
- (pin input line (at 0 -35.56 0) (length 5.08)
- (name "A14" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 0 0 0) (length 5.08)
- (name "A0" (effects (font (size 1.27 1.27))))
- (number "10" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 30.48 0 180) (length 5.08)
- (name "I/O0" (effects (font (size 1.27 1.27))))
- (number "11" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 30.48 -2.54 180) (length 5.08)
- (name "I/O1" (effects (font (size 1.27 1.27))))
- (number "12" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 30.48 -5.08 180) (length 5.08)
- (name "I/O2" (effects (font (size 1.27 1.27))))
- (number "13" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at 15.24 -58.42 90) (length 5.08)
- (name "GND" (effects (font (size 1.27 1.27))))
- (number "14" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 30.48 -7.62 180) (length 5.08)
- (name "I/O3" (effects (font (size 1.27 1.27))))
- (number "15" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 30.48 -10.16 180) (length 5.08)
- (name "I/O4" (effects (font (size 1.27 1.27))))
- (number "16" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 30.48 -12.7 180) (length 5.08)
- (name "I/O5" (effects (font (size 1.27 1.27))))
- (number "17" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 30.48 -15.24 180) (length 5.08)
- (name "I/O6" (effects (font (size 1.27 1.27))))
- (number "18" (effects (font (size 1.27 1.27))))
- )
- (pin bidirectional line (at 30.48 -17.78 180) (length 5.08)
- (name "I/O7" (effects (font (size 1.27 1.27))))
- (number "19" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 0 -30.48 0) (length 5.08)
- (name "A12" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 0 -45.72 0) (length 5.08)
- (name "~{CE}" (effects (font (size 1.27 1.27))))
- (number "20" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 0 -25.4 0) (length 5.08)
- (name "A10" (effects (font (size 1.27 1.27))))
- (number "21" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 0 -48.26 0) (length 5.08)
- (name "~{OE}" (effects (font (size 1.27 1.27))))
- (number "22" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 0 -27.94 0) (length 5.08)
- (name "A11" (effects (font (size 1.27 1.27))))
- (number "23" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 0 -22.86 0) (length 5.08)
- (name "A9" (effects (font (size 1.27 1.27))))
- (number "24" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 0 -20.32 0) (length 5.08)
- (name "A8" (effects (font (size 1.27 1.27))))
- (number "25" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 0 -33.02 0) (length 5.08)
- (name "A13" (effects (font (size 1.27 1.27))))
- (number "26" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 0 -50.8 0) (length 5.08)
- (name "~{WE}" (effects (font (size 1.27 1.27))))
- (number "27" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at 15.24 7.62 270) (length 5.08)
- (name "VCC" (effects (font (size 1.27 1.27))))
- (number "28" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 0 -17.78 0) (length 5.08)
- (name "A7" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 0 -15.24 0) (length 5.08)
- (name "A6" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 0 -12.7 0) (length 5.08)
- (name "A5" (effects (font (size 1.27 1.27))))
- (number "5" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 0 -10.16 0) (length 5.08)
- (name "A4" (effects (font (size 1.27 1.27))))
- (number "6" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 0 -7.62 0) (length 5.08)
- (name "A3" (effects (font (size 1.27 1.27))))
- (number "7" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 0 -5.08 0) (length 5.08)
- (name "A2" (effects (font (size 1.27 1.27))))
- (number "8" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 0 -2.54 0) (length 5.08)
- (name "A1" (effects (font (size 1.27 1.27))))
- (number "9" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "8051dumper-rescue:CK_1101M2S3CQE2-Switch" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
- (property "Reference" "S" (id 0) (at 0 11.43 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Value" "CK_1101M2S3CQE2-Switch" (id 1) (at 0 8.89 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Footprint" "Button_Switch_THT:SW_CK_1101M2S3CQE2" (id 2) (at 0 -13.97 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Datasheet" "" (id 3) (at 0 11.43 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "IPN" "TBD" (id 4) (at 0 -8.89 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "MPN" "CK:1101M2S3CQE2" (id 5) (at 0 -11.43 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (symbol "CK_1101M2S3CQE2-Switch_0_1"
- (rectangle (start -3.81 7.62) (end 0 -7.62)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center -2.54 -5.08) (radius 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type outline))
- )
- (circle (center -2.54 0) (radius 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type outline))
- )
- (circle (center -2.54 5.08) (radius 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type outline))
- )
- (rectangle (start -1.27 -1.27) (end 2.54 -3.81)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type outline))
- )
- (polyline
- (pts
- (xy -2.794 5.08)
- (xy -3.81 5.08)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -2.54 -5.08)
- (xy -3.81 -5.08)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -2.54 0)
- (xy -3.81 0)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -2.54 -5.08)
- (xy -1.27 -5.08)
- (xy -1.27 0)
- (xy -2.54 0)
- )
- (stroke (width 0.381) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "CK_1101M2S3CQE2-Switch_1_1"
- (pin passive line (at -8.89 -5.08 0) (length 5.08)
- (name "1" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -8.89 0 0) (length 5.08)
- (name "2" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -8.89 5.08 0) (length 5.08)
- (name "3" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "8051dumper-rescue:C_0.1uF_50V_X7R_radial-Capacitor" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
- (property "Reference" "C" (id 0) (at 0.635 2.54 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "C_0.1uF_50V_X7R_radial-Capacitor" (id 1) (at 0.635 -2.54 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Capacitor_THT:C_Disc_D3.8mm_W2.6mm_P2.50mm" (id 2) (at 0.635 -4.445 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "IPN" "TBD" (id 4) (at 0.635 -6.35 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "MPN" "Vishay:K104K10X7RF5UL2" (id 5) (at 0.635 -8.255 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "C_0.1uF_50V_X7R_radial-Capacitor_0_1"
- (polyline
- (pts
- (xy -2.032 -0.762)
- (xy 2.032 -0.762)
- )
- (stroke (width 0.508) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -2.032 0.762)
- (xy 2.032 0.762)
- )
- (stroke (width 0.508) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "C_0.1uF_50V_X7R_radial-Capacitor_1_1"
- (pin passive line (at 0 3.81 270) (length 2.794)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 0 -3.81 90) (length 2.794)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "8051dumper-rescue:C_10uF_10V_X7R_radial-Capacitor" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
- (property "Reference" "C" (id 0) (at 0.635 2.54 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "C_10uF_10V_X7R_radial-Capacitor" (id 1) (at 0.635 -2.54 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Capacitor_THT:C_Disc_D5.1mm_W3.2mm_P5.00mm" (id 2) (at 0.635 -4.445 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "IPN" "TBD" (id 4) (at 0.635 -6.35 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "MPN" "TDK:FG24X7R1A106KRT06" (id 5) (at 0.635 -8.255 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "C_10uF_10V_X7R_radial-Capacitor_0_1"
- (polyline
- (pts
- (xy -2.032 -0.762)
- (xy 2.032 -0.762)
- )
- (stroke (width 0.508) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -2.032 0.762)
- (xy 2.032 0.762)
- )
- (stroke (width 0.508) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "C_10uF_10V_X7R_radial-Capacitor_1_1"
- (pin passive line (at 0 3.81 270) (length 2.794)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 0 -3.81 90) (length 2.794)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "8051dumper-rescue:LED-LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
- (property "Reference" "D" (id 0) (at 0 2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "LED-LED" (id 1) (at 0 -2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 0 2.54 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "IPN" "TBD" (id 4) (at 0 -5.08 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "MPN" "TBD:TBD" (id 5) (at 0 -7.62 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "LED-LED_0_1"
- (polyline
- (pts
- (xy -1.27 -1.27)
- (xy -1.27 1.27)
- )
- (stroke (width 0.2032) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 1.27 -1.27)
- (xy 1.27 1.27)
- (xy -1.27 0)
- (xy 1.27 -1.27)
- )
- (stroke (width 0.2032) (type default) (color 0 0 0 0))
- (fill (type outline))
- )
- (polyline
- (pts
- (xy -3.048 -0.762)
- (xy -4.572 -2.286)
- (xy -3.81 -2.286)
- (xy -4.572 -2.286)
- (xy -4.572 -1.524)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.778 -0.762)
- (xy -3.302 -2.286)
- (xy -2.54 -2.286)
- (xy -3.302 -2.286)
- (xy -3.302 -1.524)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "LED-LED_1_1"
- (pin passive line (at -3.81 0 0) (length 2.54)
- (name "K" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 3.81 0 180) (length 2.54)
- (name "A" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "8051dumper-rescue:R_10k_1%_0p25W_axial-Resistor" (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
- (property "Reference" "R" (id 0) (at 2.032 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "R_10k_1%_0p25W_axial-Resistor" (id 1) (at 3.81 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (id 2) (at 6.35 0 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 2.032 0 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "IPN" "TBD" (id 4) (at 7.62 0 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "MPN" "Stackpole:RNF14FTD10K0" (id 5) (at 8.89 0 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "R_10k_1%_0p25W_axial-Resistor_0_1"
- (rectangle (start -1.016 -2.54) (end 1.016 2.54)
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "R_10k_1%_0p25W_axial-Resistor_1_1"
- (pin passive line (at 0 3.81 270) (length 1.27)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 0 -3.81 90) (length 1.27)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "8051dumper-rescue:R_332_1%_0p25W_axial-Resistor" (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
- (property "Reference" "R" (id 0) (at 2.032 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "R_332_1%_0p25W_axial-Resistor" (id 1) (at 3.81 0 90)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (id 2) (at 6.35 0 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 2.032 0 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "IPN" "TBD" (id 4) (at 7.62 0 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "MPN" "Stackpole:RNF14FTD332R" (id 5) (at 8.89 0 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "R_332_1%_0p25W_axial-Resistor_0_1"
- (rectangle (start -1.016 -2.54) (end 1.016 2.54)
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "R_332_1%_0p25W_axial-Resistor_1_1"
- (pin passive line (at 0 3.81 270) (length 1.27)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 0 -3.81 90) (length 1.27)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "8051dumper-rescue:SN74LS373N-Logic" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
- (property "Reference" "U" (id 0) (at 1.27 19.05 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "SN74LS373N-Logic" (id 1) (at 1.27 16.51 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Package_DIP:DIP-20_W7.62mm" (id 2) (at 1.27 -16.51 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "MPN" "TI:SN74LS373N" (id 4) (at 1.27 -19.05 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "IPN" "TBD" (id 5) (at 1.27 -21.59 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "ki_fp_filters" "DIP-20_W7.62mm*" (id 6) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "SN74LS373N-Logic_1_0"
- (pin input inverted (at -12.7 -12.7 0) (length 5.08)
- (name "OE" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at 0 -20.32 90) (length 5.08)
- (name "GND" (effects (font (size 1.27 1.27))))
- (number "10" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -12.7 -10.16 0) (length 5.08)
- (name "LE" (effects (font (size 1.27 1.27))))
- (number "11" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at 12.7 2.54 180) (length 5.08)
- (name "O4" (effects (font (size 1.27 1.27))))
- (number "12" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -12.7 2.54 0) (length 5.08)
- (name "D4" (effects (font (size 1.27 1.27))))
- (number "13" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -12.7 0 0) (length 5.08)
- (name "D5" (effects (font (size 1.27 1.27))))
- (number "14" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at 12.7 0 180) (length 5.08)
- (name "O5" (effects (font (size 1.27 1.27))))
- (number "15" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at 12.7 -2.54 180) (length 5.08)
- (name "O6" (effects (font (size 1.27 1.27))))
- (number "16" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -12.7 -2.54 0) (length 5.08)
- (name "D6" (effects (font (size 1.27 1.27))))
- (number "17" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -12.7 -5.08 0) (length 5.08)
- (name "D7" (effects (font (size 1.27 1.27))))
- (number "18" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at 12.7 -5.08 180) (length 5.08)
- (name "O7" (effects (font (size 1.27 1.27))))
- (number "19" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at 12.7 12.7 180) (length 5.08)
- (name "O0" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at 0 20.32 270) (length 5.08)
- (name "VCC" (effects (font (size 1.27 1.27))))
- (number "20" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -12.7 12.7 0) (length 5.08)
- (name "D0" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -12.7 10.16 0) (length 5.08)
- (name "D1" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at 12.7 10.16 180) (length 5.08)
- (name "O1" (effects (font (size 1.27 1.27))))
- (number "5" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at 12.7 7.62 180) (length 5.08)
- (name "O2" (effects (font (size 1.27 1.27))))
- (number "6" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -12.7 7.62 0) (length 5.08)
- (name "D2" (effects (font (size 1.27 1.27))))
- (number "7" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -12.7 5.08 0) (length 5.08)
- (name "D3" (effects (font (size 1.27 1.27))))
- (number "8" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at 12.7 5.08 180) (length 5.08)
- (name "O3" (effects (font (size 1.27 1.27))))
- (number "9" (effects (font (size 1.27 1.27))))
- )
- )
- (symbol "SN74LS373N-Logic_1_1"
- (rectangle (start -7.62 15.24) (end 7.62 -15.24)
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type background))
- )
- )
- )
- (symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
- (property "Reference" "D" (id 0) (at 0 2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "LED" (id 1) (at 0 -2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "LED diode" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Light emitting diode" (id 5) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "LED_0_1"
- (polyline
- (pts
- (xy -1.27 -1.27)
- (xy -1.27 1.27)
- )
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.27 0)
- (xy 1.27 0)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 1.27 -1.27)
- (xy 1.27 1.27)
- (xy -1.27 0)
- (xy 1.27 -1.27)
- )
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -3.048 -0.762)
- (xy -4.572 -2.286)
- (xy -3.81 -2.286)
- (xy -4.572 -2.286)
- (xy -4.572 -1.524)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.778 -0.762)
- (xy -3.302 -2.286)
- (xy -2.54 -2.286)
- (xy -3.302 -2.286)
- (xy -3.302 -1.524)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "LED_1_1"
- (pin passive line (at -3.81 0 0) (length 2.54)
- (name "K" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 3.81 0 180) (length 2.54)
- (name "A" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "Device:Q_PNP_BEC" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
- (property "Reference" "Q" (id 0) (at 5.08 1.27 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "Q_PNP_BEC" (id 1) (at 5.08 -1.27 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "" (id 2) (at 5.08 2.54 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "transistor PNP" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "PNP transistor, base/emitter/collector" (id 5) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "Q_PNP_BEC_0_1"
- (polyline
- (pts
- (xy 0.635 0.635)
- (xy 2.54 2.54)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0.635 -0.635)
- (xy 2.54 -2.54)
- (xy 2.54 -2.54)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0.635 1.905)
- (xy 0.635 -1.905)
- (xy 0.635 -1.905)
- )
- (stroke (width 0.508) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 2.286 -1.778)
- (xy 1.778 -2.286)
- (xy 1.27 -1.27)
- (xy 2.286 -1.778)
- (xy 2.286 -1.778)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type outline))
- )
- (circle (center 1.27 0) (radius 2.8194)
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "Q_PNP_BEC_1_1"
- (pin input line (at -5.08 0 0) (length 5.715)
- (name "B" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 2.54 -5.08 90) (length 2.54)
- (name "E" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 2.54 5.08 270) (length 2.54)
- (name "C" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "Mechanical:MountingHole" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
- (property "Reference" "H" (id 0) (at 0 5.08 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "MountingHole" (id 1) (at 0 3.175 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "mounting hole" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Mounting Hole without connection" (id 5) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_fp_filters" "MountingHole*" (id 6) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "MountingHole_0_1"
- (circle (center 0 0) (radius 1.27)
- (stroke (width 1.27) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- )
- (symbol "Oscillator:ASE-xxxMHz" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
- (property "Reference" "X" (id 0) (at -5.08 6.35 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "ASE-xxxMHz" (id 1) (at 1.27 -6.35 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Oscillator:Oscillator_SMD_Abracon_ASE-4Pin_3.2x2.5mm" (id 2) (at 17.78 -8.89 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "http://www.abracon.com/Oscillators/ASV.pdf" (id 3) (at -2.54 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "3.3V CMOS SMD Crystal Clock Oscillator" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "3.3V CMOS SMD Crystal Clock Oscillator, Abracon" (id 5) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_fp_filters" "Oscillator*SMD*Abracon*ASE*3.2x2.5mm*" (id 6) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "ASE-xxxMHz_0_1"
- (rectangle (start -5.08 5.08) (end 5.08 -5.08)
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type background))
- )
- (polyline
- (pts
- (xy -1.27 -0.762)
- (xy -1.016 -0.762)
- (xy -1.016 0.762)
- (xy -0.508 0.762)
- (xy -0.508 -0.762)
- (xy 0 -0.762)
- (xy 0 0.762)
- (xy 0.508 0.762)
- (xy 0.508 -0.762)
- (xy 0.762 -0.762)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "ASE-xxxMHz_1_1"
- (pin input line (at -7.62 0 0) (length 2.54)
- (name "EN" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at 0 -7.62 90) (length 2.54)
- (name "GND" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin output line (at 7.62 0 180) (length 2.54)
- (name "OUT" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at 0 7.62 270) (length 2.54)
- (name "Vdd" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "Switch:SW_DIP_x04" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
- (property "Reference" "SW" (id 0) (at 0 8.89 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "SW_DIP_x04" (id 1) (at 0 -6.35 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "dip switch" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "4x DIP Switch, Single Pole Single Throw (SPST) switch, small symbol" (id 5) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_fp_filters" "SW?DIP?x4*" (id 6) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "SW_DIP_x04_0_0"
- (circle (center -2.032 -2.54) (radius 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center -2.032 0) (radius 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center -2.032 2.54) (radius 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center -2.032 5.08) (radius 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.524 -2.3876)
- (xy 2.3622 -1.3462)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.524 0.127)
- (xy 2.3622 1.1684)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.524 2.667)
- (xy 2.3622 3.7084)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.524 5.207)
- (xy 2.3622 6.2484)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center 2.032 -2.54) (radius 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center 2.032 0) (radius 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center 2.032 2.54) (radius 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center 2.032 5.08) (radius 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "SW_DIP_x04_0_1"
- (rectangle (start -3.81 7.62) (end 3.81 -5.08)
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type background))
- )
- )
- (symbol "SW_DIP_x04_1_1"
- (pin passive line (at -7.62 5.08 0) (length 5.08)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -7.62 2.54 0) (length 5.08)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -7.62 0 0) (length 5.08)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -7.62 -2.54 0) (length 5.08)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 7.62 -2.54 180) (length 5.08)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "5" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 7.62 0 180) (length 5.08)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "6" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 7.62 2.54 180) (length 5.08)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "7" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 7.62 5.08 180) (length 5.08)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "8" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "Switch:SW_DPST_x2" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
- (property "Reference" "SW" (id 0) (at 0 3.175 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "SW_DPST_x2" (id 1) (at 0 -2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "switch lever" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Single Pole Single Throw (SPST) switch, separate symbol" (id 5) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "SW_DPST_x2_0_0"
- (circle (center -2.032 0) (radius 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.524 0.254)
- (xy 1.524 1.778)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center 2.032 0) (radius 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "SW_DPST_x2_1_1"
- (pin passive line (at -5.08 0 0) (length 2.54)
- (name "A" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 5.08 0 180) (length 2.54)
- (name "B" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- (symbol "SW_DPST_x2_2_1"
- (pin passive line (at -5.08 0 0) (length 2.54)
- (name "A" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 5.08 0 180) (length 2.54)
- (name "B" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
- (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5V" (id 1) (at 0 3.556 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "+5V_0_1"
- (polyline
- (pts
- (xy -0.762 1.27)
- (xy 0 2.54)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 0)
- (xy 0 2.54)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 2.54)
- (xy 0.762 1.27)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "+5V_1_1"
- (pin power_in line (at 0 0 90) (length 0) hide
- (name "+5V" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
- (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 0 -3.81 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "GND_0_1"
- (polyline
- (pts
- (xy 0 0)
- (xy 0 -1.27)
- (xy 1.27 -1.27)
- (xy 0 -2.54)
- (xy -1.27 -1.27)
- (xy 0 -1.27)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "GND_1_1"
- (pin power_in line (at 0 0 270) (length 0) hide
- (name "GND" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "power:VBUS" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
- (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "VBUS" (id 1) (at 0 3.81 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Power symbol creates a global label with name \"VBUS\"" (id 5) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "VBUS_0_1"
- (polyline
- (pts
- (xy -0.762 1.27)
- (xy 0 2.54)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 0)
- (xy 0 2.54)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 2.54)
- (xy 0.762 1.27)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "VBUS_1_1"
- (pin power_in line (at 0 0 90) (length 0) hide
- (name "VBUS" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- )
- )
- )
- (junction (at 302.26 146.05) (diameter 0) (color 0 0 0 0)
- (uuid 00e38d63-5436-49db-81f5-697421f168fc)
- )
- (junction (at 96.52 210.82) (diameter 0) (color 0 0 0 0)
- (uuid 1c052668-6749-425a-9a77-35f046c8aa39)
- )
- (junction (at 66.04 52.07) (diameter 0) (color 0 0 0 0)
- (uuid 212bf70c-2324-47d9-8700-59771063baeb)
- )
- (junction (at 64.77 210.82) (diameter 0) (color 0 0 0 0)
- (uuid 275b6416-db29-42cc-9307-bf426917c3b4)
- )
- (junction (at 96.52 194.31) (diameter 0) (color 0 0 0 0)
- (uuid 2a6075ae-c7fa-41db-86b8-3f996740bdc2)
- )
- (junction (at 198.12 104.14) (diameter 0) (color 0 0 0 0)
- (uuid 36d783e7-096f-4c97-9672-7e08c083b87b)
- )
- (junction (at 91.44 194.31) (diameter 0) (color 0 0 0 0)
- (uuid 4344bc11-e822-474b-8d61-d12211e719b1)
- )
- (junction (at 66.04 41.91) (diameter 0) (color 0 0 0 0)
- (uuid 4a53fa56-d65b-42a4-a4be-8f49c4c015bb)
- )
- (junction (at 91.44 208.28) (diameter 0) (color 0 0 0 0)
- (uuid 6bd46644-7209-4d4d-acd8-f4c0d045bc61)
- )
- (junction (at 135.89 129.54) (diameter 0) (color 0 0 0 0)
- (uuid 7c5f3091-7791-43b3-8d50-43f6a72274c9)
- )
- (junction (at 68.58 129.54) (diameter 0) (color 0 0 0 0)
- (uuid 9aaeec6e-84fe-4644-b0bc-5de24626ff48)
- )
- (junction (at 101.6 213.36) (diameter 0) (color 0 0 0 0)
- (uuid ab8b0540-9c9f-4195-88f5-7bed0b0a8ed6)
- )
- (junction (at 204.47 134.62) (diameter 0) (color 0 0 0 0)
- (uuid b0271cdd-de22-4bf4-8f55-fc137cfbd4ec)
- )
- (junction (at 111.76 137.16) (diameter 0) (color 0 0 0 0)
- (uuid b13e8448-bf35-4ec0-9c70-3f2250718cc2)
- )
- (junction (at 64.77 208.28) (diameter 0) (color 0 0 0 0)
- (uuid bb8162f0-99c8-4884-be5b-c0d0c7e81ff6)
- )
- (junction (at 64.77 213.36) (diameter 0) (color 0 0 0 0)
- (uuid bd085057-7c0e-463a-982b-968a2dc1f0f8)
- )
- (junction (at 278.13 92.71) (diameter 0) (color 0 0 0 0)
- (uuid e97b5984-9f0f-43a4-9b8a-838eef4cceb2)
- )
- (junction (at 86.36 205.74) (diameter 0) (color 0 0 0 0)
- (uuid ea2ea877-1ce1-4cd6-ad19-1da87f51601d)
- )
- (junction (at 93.98 194.31) (diameter 0) (color 0 0 0 0)
- (uuid eaa0d51a-ee4e-4d3a-a801-bddb7027e94c)
- )
- (no_connect (at 217.17 175.26) (uuid 20caf6d2-76a7-497e-ac56-f6d31eb9027b))
- (no_connect (at 217.17 172.72) (uuid 2f291a4b-4ecb-4692-9ad2-324f9784c0d4))
- (no_connect (at 217.17 162.56) (uuid 319639ae-c2c5-486d-93b1-d03bb1b64252))
- (no_connect (at 217.17 165.1) (uuid 3a70978e-dcc2-4620-a99c-514362812927))
- (no_connect (at 217.17 167.64) (uuid 62a1f3d4-027d-4ecf-a37a-6fcf4263e9d2))
- (no_connect (at 247.65 175.26) (uuid 759788bd-3cb9-4d38-b58c-5cb10b7dca6b))
- (no_connect (at 217.17 170.18) (uuid f447e585-df78-4239-b8cb-4653b3837bb1))
- (bus_entry (at 278.13 114.3) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 009a4fb4-fcc0-4623-ae5d-c1bae3219583)
- )
- (bus_entry (at 256.54 165.1) (size 2.54 -2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 026ac84e-b8b2-4dd2-b675-8323c24fd778)
- )
- (bus_entry (at 327.66 147.32) (size -2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 03c7f780-fc1b-487a-b30d-567d6c09fdc8)
- )
- (bus_entry (at 256.54 124.46) (size 2.54 -2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0ae82096-0994-4fb0-9a2a-d4ac4804abac)
- )
- (bus_entry (at 256.54 162.56) (size 2.54 -2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0bcafe80-ffba-4f1e-ae51-95a595b006db)
- )
- (bus_entry (at 328.93 124.46) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0cbeb329-a88d-4a47-a5c2-a1d693de2f8c)
- )
- (bus_entry (at 378.46 119.38) (size 2.54 -2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0f324b67-75ef-407f-8dbc-3c1fc5c2abba)
- )
- (bus_entry (at 256.54 121.92) (size 2.54 -2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0fdc6f30-77bc-4e9b-8665-c8aa9acf5bf9)
- )
- (bus_entry (at 378.46 121.92) (size 2.54 -2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1c68b844-c861-46b7-b734-0242168a4220)
- )
- (bus_entry (at 256.54 157.48) (size 2.54 -2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1f8b2c0c-b042-4e2e-80f6-4959a27b238f)
- )
- (bus_entry (at 278.13 119.38) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 2dc54bac-8640-4dd7-b8ed-3c7acb01a8ea)
- )
- (bus_entry (at 256.54 170.18) (size 2.54 -2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 34cdc1c9-c9e2-44c4-9677-c1c7d7efd83d)
- )
- (bus_entry (at 278.13 109.22) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 37f31dec-63fc-4634-a141-5dc5d2b60fe4)
- )
- (bus_entry (at 256.54 119.38) (size 2.54 -2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 4107d40a-e5df-4255-aacc-13f9928e090c)
- )
- (bus_entry (at 378.46 124.46) (size 2.54 -2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 4b03e854-02fe-44cc-bece-f8268b7cae54)
- )
- (bus_entry (at 378.46 111.76) (size 2.54 -2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 4fa10683-33cd-4dcd-8acc-2415cd63c62a)
- )
- (bus_entry (at 320.04 124.46) (size 2.54 -2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 52a8f1be-73ca-41a8-bc24-2320706b0ec1)
- )
- (bus_entry (at 328.93 116.84) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6d0c9e39-9878-44c8-8283-9a59e45006fa)
- )
- (bus_entry (at 327.66 132.08) (size -2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 700e8b73-5976-423f-a3f3-ab3d9f3e9760)
- )
- (bus_entry (at 278.13 124.46) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 70fb572d-d5ec-41e7-9482-63d4578b4f47)
- )
- (bus_entry (at 327.66 137.16) (size -2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 79e31048-072a-4a40-a625-26bb0b5f046b)
- )
- (bus_entry (at 278.13 127) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7afa54c4-2181-41d3-81f7-39efc497ecae)
- )
- (bus_entry (at 328.93 109.22) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7c2008c8-0626-4a09-a873-065e83502a0e)
- )
- (bus_entry (at 328.93 114.3) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7c411b3e-aca2-424f-b644-2d21c9d80fa7)
- )
- (bus_entry (at 320.04 116.84) (size 2.54 -2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7db990e4-92e1-4f99-b4d2-435bbec1ba83)
- )
- (bus_entry (at 256.54 129.54) (size 2.54 -2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8195a7cf-4576-44dd-9e0e-ee048fdb93dd)
- )
- (bus_entry (at 320.04 119.38) (size 2.54 -2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8efee08b-b92e-4ba6-8722-c058e18114fe)
- )
- (bus_entry (at 278.13 111.76) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 91c1eb0a-67ae-4ef0-95ce-d060a03a7313)
- )
- (bus_entry (at 328.93 119.38) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9c607e49-ee5c-4e85-a7da-6fede9912412)
- )
- (bus_entry (at 325.12 137.16) (size 2.54 -2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b4300db7-1220-431a-b7c3-2edbdf8fa6fc)
- )
- (bus_entry (at 378.46 127) (size 2.54 -2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b5071759-a4d7-4769-be02-251f23cd4454)
- )
- (bus_entry (at 325.12 147.32) (size 2.54 -2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b873bc5d-a9af-4bd9-afcb-87ce4d417120)
- )
- (bus_entry (at 256.54 116.84) (size 2.54 -2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b9bb0e73-161a-4d06-b6eb-a9f66d8a95f5)
- )
- (bus_entry (at 256.54 114.3) (size 2.54 -2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c04386e0-b49e-4fff-b380-675af13a62cb)
- )
- (bus_entry (at 256.54 172.72) (size 2.54 -2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c49d23ab-146d-4089-864f-2d22b5b414b9)
- )
- (bus_entry (at 325.12 142.24) (size 2.54 -2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c76d4423-ef1b-4a6f-8176-33d65f2877bb)
- )
- (bus_entry (at 378.46 129.54) (size 2.54 -2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid cada57e2-1fa7-4b9d-a2a0-2218773d5c50)
- )
- (bus_entry (at 320.04 114.3) (size 2.54 -2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid cd5e758d-cb66-484a-ae8b-21f53ceee49e)
- )
- (bus_entry (at 278.13 116.84) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid cf386a39-fc62-49dd-8ec5-e044f6bd67ce)
- )
- (bus_entry (at 320.04 129.54) (size 2.54 -2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d102186a-5b58-41d0-9985-3dbb3593f397)
- )
- (bus_entry (at 378.46 116.84) (size 2.54 -2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d2d7bea6-0c22-495f-8666-323b30e03150)
- )
- (bus_entry (at 256.54 167.64) (size 2.54 -2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid da25bf79-0abb-4fac-a221-ca5c574dfc29)
- )
- (bus_entry (at 256.54 127) (size 2.54 -2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e0f06b5c-de63-4833-a591-ca9e19217a35)
- )
- (bus_entry (at 320.04 121.92) (size 2.54 -2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e300709f-6c72-488d-a598-efcbd6d3af54)
- )
- (bus_entry (at 256.54 160.02) (size 2.54 -2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e32ee344-1030-4498-9cac-bfbf7540faf4)
- )
- (bus_entry (at 320.04 127) (size 2.54 -2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e36988d2-ecb2-461b-a443-7006f447e828)
- )
- (bus_entry (at 256.54 111.76) (size 2.54 -2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e3fc1e69-a11c-4c84-8952-fefb9372474e)
- )
- (bus_entry (at 328.93 121.92) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e5e5220d-5b7e-47da-a902-b997ec8d4d58)
- )
- (bus_entry (at 320.04 111.76) (size 2.54 -2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e6d68f56-4a40-4849-b8d1-13d5ca292900)
- )
- (bus_entry (at 378.46 114.3) (size 2.54 -2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e7bb7815-0d52-4bb8-b29a-8cf960bd2905)
- )
- (bus_entry (at 278.13 121.92) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid eae0ab9f-65b2-44d3-aba7-873c3227fba7)
- )
- (bus_entry (at 328.93 127) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f345e52a-8e0a-425a-b438-90809dd3b799)
- )
- (bus_entry (at 328.93 111.76) (size 2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f4a8afbe-ed68-4253-959f-6be4d2cbf8c5)
- )
- (bus_entry (at 327.66 142.24) (size -2.54 2.54)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f7667b23-296e-4362-a7e3-949632c8954b)
- )
- (wire (pts (xy 101.6 154.94) (xy 104.14 154.94))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 008da5b9-6f95-4113-b7d0-d93ac62efd33)
- )
- (wire (pts (xy 337.82 111.76) (xy 331.47 111.76))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 014d13cd-26ad-4d0e-86ad-a43b541cab14)
- )
- (wire (pts (xy 91.44 208.28) (xy 111.76 208.28))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 015f5586-ba76-4a98-9114-f5cd2c67134d)
- )
- (wire (pts (xy 353.06 101.6) (xy 353.06 104.14))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0520f61d-4522-4301-a3fa-8ed0bf060f69)
- )
- (wire (pts (xy 91.44 203.2) (xy 91.44 208.28))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 05d3e08e-e1f9-46cf-93d0-836d1306d03a)
- )
- (wire (pts (xy 289.56 129.54) (xy 280.67 129.54))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 065b9982-55f2-4822-977e-07e8a06e7b35)
- )
- (wire (pts (xy 247.65 114.3) (xy 256.54 114.3))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 071522c0-d0ed-49b9-906e-6295f67fb0dc)
- )
- (bus (pts (xy 322.58 109.22) (xy 322.58 111.76))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0808c593-81ba-4826-bbe5-f2679145e086)
- )
- (wire (pts (xy 82.55 213.36) (xy 101.6 213.36))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0b4c0f05-c855-4742-bad2-dbf645d5842b)
- )
- (wire (pts (xy 137.16 137.16) (xy 133.35 137.16))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0cc9bf07-55b9-458f-b8aa-41b2f51fa940)
- )
- (wire (pts (xy 86.36 195.58) (xy 86.36 194.31))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0f560957-a8c5-442f-b20c-c2d88613742c)
- )
- (wire (pts (xy 142.24 52.07) (xy 142.24 49.53))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0fd35a3e-b394-4aae-875a-fac843f9cbb7)
- )
- (wire (pts (xy 135.89 116.84) (xy 135.89 119.38))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 10e52e95-44f3-4059-a86d-dcda603e0623)
- )
- (wire (pts (xy 91.44 194.31) (xy 93.98 194.31))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 12c8f4c9-cb79-4390-b96c-a717c693de17)
- )
- (wire (pts (xy 93.98 193.04) (xy 93.98 194.31))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 12f8e43c-8f83-48d3-a9b5-5f3ebc0b6c43)
- )
- (wire (pts (xy 39.37 137.16) (xy 41.91 137.16))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 12fa3c3f-3d14-451a-a6a8-884fd1b32fa7)
- )
- (bus (pts (xy 259.08 154.94) (xy 259.08 157.48))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 13ac7bad-9618-4d8a-b0b5-06c64c878b0c)
- )
- (wire (pts (xy 138.43 129.54) (xy 135.89 129.54))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 142dd724-2a9f-4eea-ab21-209b1bc7ec65)
- )
- (wire (pts (xy 302.26 144.78) (xy 302.26 146.05))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 155b0b7c-70b4-4a26-a550-bac13cab0aa4)
- )
- (bus (pts (xy 278.13 92.71) (xy 259.08 92.71))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 16121028-bdf5-49c0-aae7-e28fe5bfa771)
- )
- (wire (pts (xy 119.38 41.91) (xy 119.38 39.37))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 180245d9-4a3f-4d1b-adcc-b4eafac722e0)
- )
- (wire (pts (xy 204.47 144.78) (xy 204.47 143.51))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 196a8dd5-5fd6-4c7f-ae4a-0104bd82e61b)
- )
- (wire (pts (xy 353.06 171.45) (xy 353.06 170.18))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1fa508ef-df83-4c99-846b-9acf535b3ad9)
- )
- (wire (pts (xy 331.47 151.13) (xy 331.47 152.4))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 21492bcd-343a-4b2b-b55a-b4586c11bdeb)
- )
- (wire (pts (xy 337.82 137.16) (xy 327.66 137.16))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 224768bc-6009-43ba-aa4a-70cbaa15b5a3)
- )
- (wire (pts (xy 64.77 208.28) (xy 67.31 208.28))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 22962957-1efd-404d-83db-5b233b6c15b0)
- )
- (wire (pts (xy 184.15 130.81) (xy 184.15 134.62))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 22bb6c80-05a9-4d89-98b0-f4c23fe6c1ce)
- )
- (wire (pts (xy 289.56 121.92) (xy 280.67 121.92))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 25e5aa8e-2696-44a3-8d3c-c2c53f2923cf)
- )
- (wire (pts (xy 82.55 208.28) (xy 91.44 208.28))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 282c8e53-3acc-42f0-a92a-6aa976b97a93)
- )
- (wire (pts (xy 247.65 111.76) (xy 256.54 111.76))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 2846428d-39de-4eae-8ce2-64955d56c493)
- )
- (wire (pts (xy 287.02 134.62) (xy 289.56 134.62))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 2891767f-251c-48c4-91c0-deb1b368f45c)
- )
- (wire (pts (xy 198.12 104.14) (xy 198.12 102.87))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 29bb7297-26fb-4776-9266-2355d022bab0)
- )
- (wire (pts (xy 68.58 129.54) (xy 68.58 132.08))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 2e0a9f64-1b78-4597-8d50-d12d2268a95a)
- )
- (wire (pts (xy 247.65 137.16) (xy 265.43 137.16))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 2e90e294-82e1-45da-9bf1-b91dfe0dc8f6)
- )
- (wire (pts (xy 247.65 149.86) (xy 256.54 149.86))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 2f424da3-8fae-4941-bc6d-20044787372f)
- )
- (bus (pts (xy 381 124.46) (xy 381 127))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 302ba6f9-09ed-47d6-ae75-b87f4c68166d)
- )
- (wire (pts (xy 205.74 113.03) (xy 209.55 113.03))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 30c33e3e-fb78-498d-bffe-76273d527004)
- )
- (bus (pts (xy 259.08 111.76) (xy 259.08 114.3))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 32ab9812-a740-4c89-b9ae-df323671b997)
- )
- (wire (pts (xy 130.81 41.91) (xy 130.81 39.37))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 3326423d-8df7-4a7e-a354-349430b8fbd7)
- )
- (wire (pts (xy 49.53 161.29) (xy 63.5 161.29))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 34c0bee6-7425-4435-8857-d1fe8dfb6d89)
- )
- (wire (pts (xy 247.65 165.1) (xy 256.54 165.1))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 34d03349-6d78-4165-a683-2d8b76f2bae8)
- )
- (bus (pts (xy 325.12 139.7) (xy 325.12 142.24))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 35a6d796-b5b6-48f3-92ef-fb45306d24a3)
- )
- (wire (pts (xy 111.76 138.43) (xy 111.76 137.16))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 35ef9c4a-35f6-467b-a704-b1d9354880cf)
- )
- (wire (pts (xy 137.16 161.29) (xy 137.16 137.16))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 363945f6-fbef-42be-99cf-4a8a48434d92)
- )
- (bus (pts (xy 328.93 114.3) (xy 328.93 116.84))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 369be60c-c456-43eb-bda9-0ae1128f132b)
- )
- (bus (pts (xy 381 111.76) (xy 381 114.3))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 377f1b96-81b5-4949-a2e7-416bb7db1297)
- )
- (wire (pts (xy 247.65 170.18) (xy 256.54 170.18))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 37b6c6d6-3e12-4736-912a-ea6e2bf06721)
- )
- (bus (pts (xy 259.08 153.67) (xy 325.12 153.67))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 38a501e2-0ee8-439d-bd02-e9e90e7503e9)
- )
- (wire (pts (xy 302.26 146.05) (xy 289.56 146.05))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 399fc36a-ed5d-44b5-82f7-c6f83d9acc14)
- )
- (bus (pts (xy 259.08 92.71) (xy 259.08 109.22))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 3bbbbb7d-391c-4fee-ac81-3c47878edc38)
- )
- (wire (pts (xy 64.77 210.82) (xy 64.77 213.36))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 3c22d605-7855-4cc6-8ad2-906cadbd02dc)
- )
- (wire (pts (xy 265.43 142.24) (xy 247.65 142.24))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 3d6cdd62-5634-4e30-acf8-1b9c1dbf6653)
- )
- (bus (pts (xy 322.58 114.3) (xy 322.58 116.84))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 4079d7b6-51ac-457a-8ba0-f050459c02ae)
- )
- (wire (pts (xy 64.77 205.74) (xy 64.77 208.28))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 4086cbd7-6ba7-4e63-8da9-17e60627ee17)
- )
- (wire (pts (xy 66.04 52.07) (xy 80.01 52.07))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 44035e53-ff94-45ad-801f-55a1ce042a0d)
- )
- (wire (pts (xy 337.82 121.92) (xy 331.47 121.92))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 443bc73a-8dc0-4e2f-a292-a5eff00efa5b)
- )
- (bus (pts (xy 322.58 111.76) (xy 322.58 114.3))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 452d6e44-cb4a-4c1b-91d0-84a0a526a85e)
- )
- (wire (pts (xy 173.99 125.73) (xy 176.53 125.73))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 4641c87c-bffa-41fe-ae77-be3a97a6f797)
- )
- (wire (pts (xy 190.5 113.03) (xy 189.23 113.03))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 4c843bdb-6c9e-40dd-85e2-0567846e18ba)
- )
- (bus (pts (xy 381 92.71) (xy 278.13 92.71))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 4db55cb8-197b-4402-871f-ce582b65664b)
- )
- (wire (pts (xy 247.65 116.84) (xy 256.54 116.84))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 4e315e69-0417-463a-8b7f-469a08d1496e)
- )
- (wire (pts (xy 130.81 52.07) (xy 130.81 49.53))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 4ec618ae-096f-4256-9328-005ee04f13d6)
- )
- (wire (pts (xy 101.6 213.36) (xy 111.76 213.36))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 541721d1-074b-496e-a833-813044b3e8ca)
- )
- (wire (pts (xy 119.38 52.07) (xy 119.38 49.53))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 54212c01-b363-47b8-a145-45c40df316f4)
- )
- (bus (pts (xy 322.58 124.46) (xy 322.58 127))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 544b8ab6-8acb-47af-8cf8-40b24f6c1ec6)
- )
- (wire (pts (xy 68.58 119.38) (xy 68.58 116.84))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 582622a2-fad4-4737-9a80-be9fffbba8ab)
- )
- (wire (pts (xy 247.65 129.54) (xy 256.54 129.54))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 597a11f2-5d2c-4a65-ac95-38ad106e1367)
- )
- (wire (pts (xy 247.65 124.46) (xy 256.54 124.46))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 59ec3156-036e-4049-89db-91a9dd07095f)
- )
- (wire (pts (xy 198.12 123.19) (xy 198.12 120.65))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 5b0a5a46-7b51-4262-a80e-d33dd1806615)
- )
- (bus (pts (xy 328.93 106.68) (xy 328.93 109.22))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 5bab6a37-1fdf-4cf8-b571-44c962ed86e9)
- )
- (wire (pts (xy 111.76 154.94) (xy 114.3 154.94))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 5d3d7893-1d11-4f1d-9052-85cf0e07d281)
- )
- (bus (pts (xy 278.13 111.76) (xy 278.13 114.3))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 5d3d866a-ac2c-4d64-8cb7-b79208e736c5)
- )
- (bus (pts (xy 325.12 147.32) (xy 325.12 149.86))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 5dc6452f-5e77-4f9a-9d59-f563d24d87b0)
- )
- (wire (pts (xy 93.98 194.31) (xy 96.52 194.31))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 5f38bdb2-3657-474e-8e86-d6bb0b298110)
- )
- (bus (pts (xy 381 109.22) (xy 381 111.76))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 5f53dcca-84a1-48c5-b948-5bb5c954e666)
- )
- (wire (pts (xy 86.36 194.31) (xy 91.44 194.31))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 5f6afe3e-3cb2-473a-819c-dc94ae52a6be)
- )
- (wire (pts (xy 289.56 111.76) (xy 280.67 111.76))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 609b9e1b-4e3b-42b7-ac76-a62ec4d0e7c7)
- )
- (wire (pts (xy 314.96 127) (xy 320.04 127))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 633292d3-80c5-4986-be82-ce926e9f09f4)
- )
- (bus (pts (xy 278.13 119.38) (xy 278.13 121.92))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 65c1889f-6c31-4bfa-b925-bccebe70e0bd)
- )
- (bus (pts (xy 381 119.38) (xy 381 121.92))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 65d4702b-88e4-4992-a6fe-53022259051a)
- )
- (wire (pts (xy 214.63 114.3) (xy 214.63 111.76))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 66bc2bca-dab7-4947-a0ff-403cdaf9fb89)
- )
- (bus (pts (xy 278.13 124.46) (xy 278.13 127))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6934f963-a577-4c3a-80a3-278b664e1f61)
- )
- (bus (pts (xy 328.93 109.22) (xy 328.93 111.76))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 69853def-a73a-4f09-a711-7f7570e5a75b)
- )
- (wire (pts (xy 214.63 144.78) (xy 217.17 144.78))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 699feae1-8cdd-4d2b-947f-f24849c73cdb)
- )
- (wire (pts (xy 214.63 157.48) (xy 217.17 157.48))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6a0919c2-460c-4229-b872-14e318e1ba8b)
- )
- (wire (pts (xy 247.65 119.38) (xy 256.54 119.38))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6a2b20ae-096c-4d9f-92f8-2087c865914f)
- )
- (wire (pts (xy 76.2 49.53) (xy 80.01 49.53))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6a2bcc72-047b-4846-8583-1109e3552669)
- )
- (bus (pts (xy 259.08 165.1) (xy 259.08 167.64))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6a5433ee-b187-4be9-8a27-92e9e208ccb9)
- )
- (wire (pts (xy 204.47 134.62) (xy 217.17 134.62))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6bd115d6-07e0-45db-8f2e-3cbb0429104f)
- )
- (wire (pts (xy 289.56 119.38) (xy 280.67 119.38))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6bf05d19-ba3e-4ba6-8a6f-4e0bc45ea3b2)
- )
- (wire (pts (xy 63.5 161.29) (xy 63.5 137.16))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6cb535a7-247d-4f99-997d-c21b160eadfa)
- )
- (wire (pts (xy 60.96 129.54) (xy 68.58 129.54))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6cb93665-0bcd-4104-8633-fffd1811eee0)
- )
- (wire (pts (xy 232.41 181.61) (xy 232.41 180.34))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6e435cd4-da2b-4602-a0aa-5dd988834dff)
- )
- (wire (pts (xy 111.76 129.54) (xy 111.76 137.16))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6f580eb1-88cc-489d-a7ca-9efa5e590715)
- )
- (bus (pts (xy 259.08 160.02) (xy 259.08 162.56))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6fccd5e6-6583-48f0-a04d-0296494a13e5)
- )
- (wire (pts (xy 184.15 118.11) (xy 184.15 120.65))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 701e1517-e8cf-46f4-b538-98e721c97380)
- )
- (bus (pts (xy 322.58 106.68) (xy 322.58 109.22))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 706c1cb9-5d96-4282-9efc-6147f0125147)
- )
- (wire (pts (xy 302.26 146.05) (xy 302.26 147.32))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 70e4263f-d95a-4431-b3f3-cfc800c82056)
- )
- (wire (pts (xy 189.23 113.03) (xy 189.23 104.14))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 72b36951-3ec7-4569-9c88-cf9b4afe1cae)
- )
- (bus (pts (xy 259.08 121.92) (xy 259.08 124.46))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7313772f-068f-4838-8cd8-a00f602bc273)
- )
- (wire (pts (xy 135.89 129.54) (xy 135.89 127))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 74f5ec08-7600-4a0b-a9e4-aae29f9ea08a)
- )
- (wire (pts (xy 337.82 132.08) (xy 327.66 132.08))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 752417ee-7d0b-4ac8-a22c-26669881a2ab)
- )
- (wire (pts (xy 314.96 129.54) (xy 320.04 129.54))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7744b6ee-910d-401d-b730-65c35d3d8092)
- )
- (wire (pts (xy 80.01 49.53) (xy 80.01 46.99))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 775e8983-a723-43c5-bf00-61681f0840f3)
- )
- (bus (pts (xy 322.58 106.68) (xy 328.93 106.68))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 78f9c3d3-3556-46f6-9744-05ad54b330f0)
- )
- (wire (pts (xy 111.76 137.16) (xy 114.3 137.16))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7bea05d4-1dec-4cd6-aa53-302dde803254)
- )
- (wire (pts (xy 254 139.7) (xy 247.65 139.7))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7e1217ba-8a3d-4079-8d7b-b45f90cfbf53)
- )
- (wire (pts (xy 53.34 129.54) (xy 50.8 129.54))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7f2b3ce3-2f20-426d-b769-e0329b6a8111)
- )
- (wire (pts (xy 66.04 41.91) (xy 80.01 41.91))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7f9683c1-2203-43df-8fa1-719a0dc360df)
- )
- (wire (pts (xy 184.15 134.62) (xy 204.47 134.62))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 802c2dc3-ca9f-491e-9d66-7893e89ac34c)
- )
- (wire (pts (xy 337.82 129.54) (xy 331.47 129.54))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 810ed4ff-ffe2-4032-9af6-fb5ada3bae5b)
- )
- (wire (pts (xy 337.82 116.84) (xy 331.47 116.84))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 83021f70-e61e-4ad3-bae7-b9f02b28be4f)
- )
- (wire (pts (xy 104.14 210.82) (xy 96.52 210.82))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 83c5181e-f5ee-453c-ae5c-d7256ba8837d)
- )
- (bus (pts (xy 328.93 111.76) (xy 328.93 114.3))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8555a851-d287-40dc-9175-561cb65355de)
- )
- (wire (pts (xy 247.65 172.72) (xy 256.54 172.72))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 86dc7a78-7d51-4111-9eea-8a8f7977eb16)
- )
- (wire (pts (xy 29.21 154.94) (xy 31.75 154.94))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 88002554-c459-46e5-8b22-6ea6fe07fd4c)
- )
- (wire (pts (xy 64.77 213.36) (xy 67.31 213.36))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 88606262-3ac5-44a1-aacc-18b26cf4d396)
- )
- (wire (pts (xy 368.3 129.54) (xy 378.46 129.54))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 88668202-3f0b-4d07-84d4-dcd790f57272)
- )
- (wire (pts (xy 153.67 52.07) (xy 153.67 49.53))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 88cb65f4-7e9e-44eb-8692-3b6e2e788a94)
- )
- (wire (pts (xy 247.65 157.48) (xy 256.54 157.48))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 88d2c4b8-79f2-4e8b-9f70-b7e0ed9c70f8)
- )
- (wire (pts (xy 66.04 38.1) (xy 66.04 41.91))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 88deea08-baa5-4041-beb7-01c299cf00e6)
- )
- (wire (pts (xy 337.82 144.78) (xy 327.66 144.78))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 89c0bc4d-eee5-4a77-ac35-d30b35db5cbe)
- )
- (wire (pts (xy 314.96 114.3) (xy 320.04 114.3))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 89c9afdc-c346-4300-a392-5f9dd8c1e5bd)
- )
- (wire (pts (xy 121.92 160.02) (xy 121.92 161.29))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8ac400bf-c9b3-4af4-b0a7-9aa9ab4ad17e)
- )
- (bus (pts (xy 278.13 121.92) (xy 278.13 124.46))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8b26b427-5c95-4ed4-9360-47ff3a84c4a0)
- )
- (wire (pts (xy 314.96 111.76) (xy 320.04 111.76))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8b7bbefd-8f78-41f8-809c-2534a5de3b39)
- )
- (wire (pts (xy 368.3 114.3) (xy 378.46 114.3))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8bc2c25a-a1f1-4ce8-b96a-a4f8f4c35079)
- )
- (wire (pts (xy 162.56 125.73) (xy 166.37 125.73))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8cd050d6-228c-4da0-9533-b4f8d14cfb34)
- )
- (wire (pts (xy 39.37 154.94) (xy 41.91 154.94))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8cdc8ef9-532e-4bf5-9998-7213b9e692a2)
- )
- (wire (pts (xy 64.77 205.74) (xy 67.31 205.74))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8eb98c56-17e4-4de6-a3e3-06dcfa392040)
- )
- (wire (pts (xy 96.52 194.31) (xy 101.6 194.31))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8f12311d-6f4c-4d28-a5bc-d6cb462bade7)
- )
- (wire (pts (xy 331.47 167.64) (xy 331.47 168.91))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9031bb33-c6aa-4758-bf5c-3274ed3ebab7)
- )
- (bus (pts (xy 328.93 116.84) (xy 328.93 119.38))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 90ed4e8b-59e1-4358-98ce-d2989a4bbc0c)
- )
- (bus (pts (xy 322.58 121.92) (xy 322.58 124.46))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 90fda119-0c39-4964-b578-66676a61b5e6)
- )
- (wire (pts (xy 64.77 208.28) (xy 64.77 210.82))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 91fc5800-6029-46b1-848d-ca0091f97267)
- )
- (wire (pts (xy 39.37 138.43) (xy 39.37 137.16))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 91fe070a-a49b-4bc5-805a-42f23e10d114)
- )
- (wire (pts (xy 247.65 127) (xy 256.54 127))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 926001fd-2747-4639-8c0f-4fc46ff7218d)
- )
- (bus (pts (xy 259.08 153.67) (xy 259.08 154.94))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 92f063a3-7cce-4a96-8a3a-cf5767f700c6)
- )
- (wire (pts (xy 250.19 147.32) (xy 247.65 147.32))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 946404ba-9297-43ec-9d67-30184041145f)
- )
- (wire (pts (xy 34.29 129.54) (xy 40.64 129.54))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9529c01f-e1cd-40be-b7f0-83780a544249)
- )
- (wire (pts (xy 214.63 152.4) (xy 217.17 152.4))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9565d2ee-a4f1-4d08-b2c9-0264233a0d2b)
- )
- (wire (pts (xy 331.47 151.13) (xy 337.82 151.13))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 96315415-cfed-47d2-b3dd-d782358bd0df)
- )
- (bus (pts (xy 259.08 119.38) (xy 259.08 121.92))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 969e3410-ef54-4f07-affc-63a1d00b7364)
- )
- (wire (pts (xy 34.29 128.27) (xy 34.29 129.54))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 96db52e2-6336-4f5e-846e-528c594d0509)
- )
- (wire (pts (xy 121.92 161.29) (xy 137.16 161.29))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 97dcf785-3264-40a1-a36e-8842acab24fb)
- )
- (wire (pts (xy 101.6 194.31) (xy 101.6 195.58))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 98970bf0-1168-4b4e-a1c9-3b0c8d7eaacf)
- )
- (wire (pts (xy 337.82 168.91) (xy 337.82 162.56))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9aedbb9e-8340-4899-b813-05b23382a36b)
- )
- (wire (pts (xy 214.63 111.76) (xy 217.17 111.76))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9b6bb172-1ac4-440a-ac75-c1917d9d59c7)
- )
- (wire (pts (xy 368.3 111.76) (xy 378.46 111.76))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9cbf35b8-f4d3-42a3-bb16-04ffd03fd8fd)
- )
- (bus (pts (xy 259.08 116.84) (xy 259.08 119.38))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9d38bcaa-16a0-4f54-a359-9973570cd751)
- )
- (wire (pts (xy 96.52 210.82) (xy 82.55 210.82))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9db16341-dac0-4aab-9c62-7d88c111c1ce)
- )
- (bus (pts (xy 278.13 116.84) (xy 278.13 119.38))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9ea0586a-1a38-405f-a9db-cc7c88b33927)
- )
- (bus (pts (xy 381 92.71) (xy 381 109.22))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9ed09117-33cf-45a3-85a7-2606522feaf8)
- )
- (bus (pts (xy 259.08 109.22) (xy 259.08 111.76))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9f54b021-662d-4bb5-ae7d-bad3e2041b4e)
- )
- (wire (pts (xy 337.82 134.62) (xy 327.66 134.62))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9f80220c-1612-4589-b9ca-a5579617bdb8)
- )
- (wire (pts (xy 289.56 124.46) (xy 280.67 124.46))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a24ddb4f-c217-42ca-b6cb-d12da84fb2b9)
- )
- (wire (pts (xy 337.82 114.3) (xy 331.47 114.3))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a25b7e01-1754-4cc9-8a14-3d9c461e5af5)
- )
- (wire (pts (xy 121.92 137.16) (xy 125.73 137.16))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a5362821-c161-4c7a-a00c-40e1d7472d56)
- )
- (wire (pts (xy 254 134.62) (xy 247.65 134.62))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a5be2cb8-c68d-4180-8412-69a6b4c5b1d4)
- )
- (wire (pts (xy 250.19 152.4) (xy 247.65 152.4))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a64aeb89-c24a-493b-9aab-87a6be930bde)
- )
- (wire (pts (xy 289.56 127) (xy 280.67 127))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a6ccc556-da88-4006-ae1a-cc35733efef3)
- )
- (wire (pts (xy 247.65 160.02) (xy 256.54 160.02))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a7531a95-7ca1-4f34-955e-18120cec99e6)
- )
- (wire (pts (xy 337.82 157.48) (xy 337.82 151.13))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a7f2e97b-29f3-44fd-bf8a-97a3c1528b61)
- )
- (wire (pts (xy 49.53 147.32) (xy 49.53 149.86))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a90361cd-254c-4d27-ae1f-9a6c85bafe28)
- )
- (bus (pts (xy 328.93 119.38) (xy 328.93 121.92))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid aad53ff4-6289-43f1-9787-415d5f604245)
- )
- (bus (pts (xy 325.12 134.62) (xy 325.12 137.16))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid ad4d05f5-6957-42f8-b65c-c657b9a26485)
- )
- (bus (pts (xy 278.13 114.3) (xy 278.13 116.84))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b1299430-0d43-44bf-bd6a-eac09d870db6)
- )
- (bus (pts (xy 381 116.84) (xy 381 119.38))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b1a6c22d-c40e-40c7-91ce-6c8614e38fa1)
- )
- (wire (pts (xy 368.3 116.84) (xy 378.46 116.84))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b1ddb058-f7b2-429c-9489-f4e2242ad7e5)
- )
- (wire (pts (xy 232.41 104.14) (xy 232.41 106.68))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b52d6ff3-fef1-496e-8dd5-ebb89b6bce6a)
- )
- (wire (pts (xy 123.19 129.54) (xy 135.89 129.54))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b54cae5b-c17c-4ed7-b249-2e7d5e83609a)
- )
- (bus (pts (xy 259.08 114.3) (xy 259.08 116.84))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b57f5173-83a4-43f2-8b60-0cfdaa48e60e)
- )
- (wire (pts (xy 289.56 116.84) (xy 280.67 116.84))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b7867831-ef82-4f33-a926-59e5c1c09b91)
- )
- (wire (pts (xy 101.6 203.2) (xy 101.6 213.36))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b7d06af4-a5b1-447f-9b1a-8b44eb1cc204)
- )
- (wire (pts (xy 314.96 119.38) (xy 320.04 119.38))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b854a395-bfc6-4140-9640-75d4f9296771)
- )
- (wire (pts (xy 332.74 160.02) (xy 337.82 160.02))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid bac7c5b3-99df-445a-ade9-1e608bbbe27e)
- )
- (wire (pts (xy 247.65 167.64) (xy 256.54 167.64))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid bb4b1afc-c46e-451d-8dad-36b7dec82f26)
- )
- (bus (pts (xy 259.08 124.46) (xy 259.08 127))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid bc090dc5-154c-4e02-8197-313661d9dd7d)
- )
- (wire (pts (xy 66.04 50.8) (xy 66.04 52.07))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid be2983fa-f06e-485e-bea1-3dd96b916ec5)
- )
- (wire (pts (xy 96.52 203.2) (xy 96.52 210.82))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid befdfbe5-f3e5-423b-a34e-7bba3f218536)
- )
- (bus (pts (xy 381 121.92) (xy 381 124.46))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid bf3efcef-5692-4912-bc43-222716f9654b)
- )
- (wire (pts (xy 142.24 41.91) (xy 142.24 39.37))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c088f712-1abe-4cac-9a8b-d564931395aa)
- )
- (wire (pts (xy 368.3 124.46) (xy 378.46 124.46))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c106154f-d948-43e5-abfa-e1b96055d91b)
- )
- (wire (pts (xy 368.3 127) (xy 378.46 127))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c24d6ac8-802d-4df3-a210-9cb1f693e865)
- )
- (bus (pts (xy 325.12 142.24) (xy 325.12 144.78))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c33e9a1c-e841-44ab-94b0-b02bcd9714c6)
- )
- (wire (pts (xy 209.55 113.03) (xy 209.55 129.54))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c3b3d7f4-943f-4cff-b180-87ef3e1bcbff)
- )
- (wire (pts (xy 64.77 213.36) (xy 64.77 217.17))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c66a19ed-90c0-4502-ae75-6a4c4ab9f297)
- )
- (wire (pts (xy 96.52 195.58) (xy 96.52 194.31))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c67ad10d-2f75-4ec6-a139-47058f7f06b2)
- )
- (wire (pts (xy 76.2 48.26) (xy 76.2 49.53))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c873689a-d206-42f5-aead-9199b4d63f51)
- )
- (wire (pts (xy 86.36 203.2) (xy 86.36 205.74))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid ca5b6af8-ca05-4338-b852-b51f2b49b1db)
- )
- (bus (pts (xy 325.12 144.78) (xy 325.12 147.32))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid ca6dbfa0-f908-413a-a8b8-fb43356c0f83)
- )
- (wire (pts (xy 198.12 105.41) (xy 198.12 104.14))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid cb6062da-8dcd-4826-92fd-4071e9e97213)
- )
- (bus (pts (xy 328.93 124.46) (xy 328.93 127))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid cbb42f39-5d09-4c42-aff2-820cb4647944)
- )
- (bus (pts (xy 259.08 162.56) (xy 259.08 165.1))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid cc3eaf72-de85-473a-b1a3-1fd7329af266)
- )
- (wire (pts (xy 337.82 119.38) (xy 331.47 119.38))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid cc75e5ae-3348-4e7a-bd16-4df685ee47bd)
- )
- (wire (pts (xy 64.77 210.82) (xy 67.31 210.82))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid cd1cff81-9d8a-4511-96d6-4ddb79484001)
- )
- (bus (pts (xy 278.13 109.22) (xy 278.13 111.76))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid cda52a67-b1c9-4d44-bff7-b404dd2fb8be)
- )
- (wire (pts (xy 66.04 53.34) (xy 66.04 52.07))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid cee2f43a-7d22-4585-a857-73949bd17a9d)
- )
- (wire (pts (xy 247.65 144.78) (xy 256.54 144.78))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d05faa1f-5f69-41bf-86d3-2cd224432e1b)
- )
- (wire (pts (xy 204.47 135.89) (xy 204.47 134.62))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d0a0deb1-4f0f-4ede-b730-2c6d67cb9618)
- )
- (wire (pts (xy 314.96 121.92) (xy 320.04 121.92))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d0cd3439-276c-41ba-b38d-f84f6da38415)
- )
- (wire (pts (xy 214.63 160.02) (xy 217.17 160.02))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d1c19c11-0a13-4237-b6b4-fb2ef1db7c6d)
- )
- (wire (pts (xy 337.82 142.24) (xy 327.66 142.24))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d21cc5e4-177a-4e1d-a8d5-060ed33e5b8e)
- )
- (wire (pts (xy 247.65 121.92) (xy 256.54 121.92))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d39d813e-3e64-490c-ba5c-a64bb5ad6bd0)
- )
- (wire (pts (xy 71.12 129.54) (xy 68.58 129.54))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d3e133b7-2c84-4206-a2b1-e693cb57fe56)
- )
- (wire (pts (xy 113.03 129.54) (xy 111.76 129.54))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d68e5ddb-039c-483f-88a3-1b0b7964b482)
- )
- (wire (pts (xy 104.14 205.74) (xy 86.36 205.74))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d72c89a6-7578-4468-964e-2a845431195f)
- )
- (wire (pts (xy 217.17 139.7) (xy 214.63 139.7))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d88958ac-68cd-4955-a63f-0eaa329dec86)
- )
- (bus (pts (xy 325.12 137.16) (xy 325.12 139.7))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d97e3707-fcbc-4198-85cc-a812eef10f9b)
- )
- (wire (pts (xy 68.58 142.24) (xy 68.58 139.7))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid da481376-0e49-44d3-91b8-aaa39b869dd1)
- )
- (wire (pts (xy 91.44 195.58) (xy 91.44 194.31))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid db742b9e-1fed-4e0c-b783-f911ab5116aa)
- )
- (wire (pts (xy 66.04 43.18) (xy 66.04 41.91))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid dc1d84c8-33da-4489-be8e-2a1de3001779)
- )
- (wire (pts (xy 121.92 147.32) (xy 121.92 149.86))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid dca1d7db-c913-4d73-a2cc-fdc9651eda69)
- )
- (wire (pts (xy 314.96 124.46) (xy 320.04 124.46))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid dda1e6ca-91ec-4136-b90b-3c54d79454b9)
- )
- (bus (pts (xy 322.58 119.38) (xy 322.58 121.92))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid debcb360-ece1-4ba9-9019-34b48461c4bb)
- )
- (bus (pts (xy 259.08 157.48) (xy 259.08 160.02))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e06140c2-6f59-4cac-a60a-49e917310252)
- )
- (wire (pts (xy 49.53 160.02) (xy 49.53 161.29))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e0830067-5b66-4ce1-b2d1-aaa8af20baf7)
- )
- (wire (pts (xy 337.82 147.32) (xy 327.66 147.32))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e1c30a32-820e-4b17-aec9-5cb8b76f0ccc)
- )
- (wire (pts (xy 289.56 114.3) (xy 280.67 114.3))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e54e5e19-1deb-49a9-8629-617db8e434c0)
- )
- (wire (pts (xy 153.67 41.91) (xy 153.67 39.37))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e5b328f6-dc69-4905-ae98-2dc3200a51d6)
- )
- (bus (pts (xy 325.12 149.86) (xy 325.12 153.67))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e9eaffbf-b4f2-43ca-ba28-81edd1ddfebc)
- )
- (wire (pts (xy 337.82 124.46) (xy 331.47 124.46))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid eac8d865-0226-4958-b547-6b5592f39713)
- )
- (bus (pts (xy 278.13 92.71) (xy 278.13 109.22))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid eb391a95-1c1d-4613-b508-c76b8bc13a73)
- )
- (wire (pts (xy 107.95 34.29) (xy 107.95 36.83))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid eb473bfd-fc2d-4cf0-8714-6b7dd95b0a03)
- )
- (wire (pts (xy 189.23 104.14) (xy 198.12 104.14))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid eb8d02e9-145c-465d-b6a8-bae84d47a94b)
- )
- (wire (pts (xy 368.3 119.38) (xy 378.46 119.38))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid eee16674-2d21-45b6-ab5e-d669125df26c)
- )
- (bus (pts (xy 259.08 167.64) (xy 259.08 170.18))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid efaa2164-6b1a-466b-8052-b6d68eeffe81)
- )
- (bus (pts (xy 381 114.3) (xy 381 116.84))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f21493bc-7539-494e-894d-50c7ee8c899b)
- )
- (wire (pts (xy 337.82 127) (xy 331.47 127))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f2480d0c-9b08-4037-9175-b2369af04d4c)
- )
- (wire (pts (xy 368.3 121.92) (xy 378.46 121.92))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f449bd37-cc90-4487-aee6-2a20b8d2843a)
- )
- (wire (pts (xy 49.53 137.16) (xy 53.34 137.16))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f4a1ab68-998b-43e3-aa33-40b58210bc99)
- )
- (wire (pts (xy 314.96 116.84) (xy 320.04 116.84))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f5bf5b4a-5213-48af-a5cd-0d67969d2de6)
- )
- (wire (pts (xy 63.5 137.16) (xy 60.96 137.16))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f5c43e09-08d6-4a29-a53a-3b9ea7fb34cd)
- )
- (wire (pts (xy 209.55 129.54) (xy 217.17 129.54))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f64497d1-1d62-44a4-8e5e-6fba4ebc969a)
- )
- (wire (pts (xy 86.36 205.74) (xy 82.55 205.74))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f699494a-77d6-4c73-bd50-29c1c1c5b879)
- )
- (bus (pts (xy 328.93 121.92) (xy 328.93 124.46))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f7b6d619-740e-4145-8372-81cc426784ef)
- )
- (wire (pts (xy 247.65 162.56) (xy 256.54 162.56))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f8fc38ec-0b98-40bc-ae2f-e5cc29973bca)
- )
- (wire (pts (xy 68.58 127) (xy 68.58 129.54))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f988d6ea-11c5-4837-b1d1-5c292ded50c6)
- )
- (wire (pts (xy 107.95 54.61) (xy 107.95 57.15))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid fa20e708-ec85-4e0b-8402-f74a2724f920)
- )
- (wire (pts (xy 331.47 168.91) (xy 337.82 168.91))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid fa918b6d-f6cf-4471-be3b-4ff713f55a2e)
- )
- (wire (pts (xy 107.95 44.45) (xy 107.95 46.99))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid fb35e3b1-aff6-41a7-9cf0-52694b95edeb)
- )
- (wire (pts (xy 289.56 146.05) (xy 289.56 137.16))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid fbe8ebfc-2a8e-4eb8-85c5-38ddeaa5dd00)
- )
- (bus (pts (xy 322.58 116.84) (xy 322.58 119.38))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid fc643923-9f70-467c-a1db-a24c7ed8a4be)
- )
- (wire (pts (xy 302.26 101.6) (xy 302.26 104.14))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid fd3499d5-6fd2-49a4-bdb0-109cee899fde)
- )
- (wire (pts (xy 337.82 139.7) (xy 327.66 139.7))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid fef37e8b-0ff0-4da2-8a57-acaf19551d1a)
- )
- (text "32k x8 EEPROM\nAliased at 0x0000 and 0x8000" (at 327.66 187.96 0)
- (effects (font (size 2.54 2.54)) (justify left bottom))
- (uuid 46cbe85d-ff47-428e-b187-4ebd50a66e0c)
- )
- (text "Reset button\nwith red LED." (at 43.18 171.45 0)
- (effects (font (size 2.54 2.54)) (justify left bottom))
- (uuid bb59b92a-e4d0-4b9e-82cd-26304f5c15b8)
- )
- (text "Dump Size:\n1: 8051 (4k)\n2: 8052 (8k)\n3: 8054 (16k)\n4: 8058 (32k)"
- (at 73.66 247.65 0)
- (effects (font (size 2.54 2.54)) (justify left bottom))
- (uuid e79c8e11-ed47-4701-ae80-a54cdb6682a5)
- )
- (text "ZIF socket for\n8051 to be dumped." (at 237.49 189.23 0)
- (effects (font (size 2.54 2.54)) (justify left bottom))
- (uuid f44d04c5-0d17-4d52-8328-ef3b4fdfba5f)
- )
- (text "Start button\nwith green LED." (at 105.41 171.45 0)
- (effects (font (size 2.54 2.54)) (justify left bottom))
- (uuid f6983918-fe05-46ea-b355-bc522ec53440)
- )
- (text "5 VDC Power Input" (at 46.99 26.67 0)
- (effects (font (size 2.54 2.54)) (justify left bottom))
- (uuid fc4ad874-c922-4070-89f9-7262080469d8)
- )
- (label "A5" (at 334.01 124.46 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 01f82238-6335-48fe-8b0a-6853e227345a)
- )
- (label "~{EA}" (at 210.82 134.62 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 076046ab-4b56-4060-b8d9-0d80806d0277)
- )
- (label "A11" (at 251.46 165.1 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 0cc45b5b-96b3-4284-9cae-a3a9e324a916)
- )
- (label "A6" (at 334.01 127 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 0e249018-17e7-42b3-ae5d-5ebf3ae299ae)
- )
- (label "A9" (at 330.2 134.62 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 0f31f11f-c374-4640-b9a4-07bbdba8d354)
- )
- (label "A2" (at 334.01 116.84 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 13bbfffc-affb-4b43-9eb1-f2ed90a8a919)
- )
- (label "A8" (at 330.2 132.08 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 18b7e157-ae67-48ad-bd7c-9fef6fe45b22)
- )
- (label "AD4" (at 373.38 121.92 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 1ab71a3c-340b-469a-ada5-4f87f0b7b2fa)
- )
- (label "AD2" (at 373.38 116.84 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 20cca02e-4c4d-4961-b6b4-b40a1731b220)
- )
- (label "AD0" (at 283.21 111.76 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 22999e73-da32-43a5-9163-4b3a41614f25)
- )
- (label "AD6" (at 283.21 124.46 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 240c10af-51b5-420e-a6f4-a2c8f5db1db5)
- )
- (label "AD1" (at 251.46 114.3 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 262f1ea9-0133-4b43-be36-456207ea857c)
- )
- (label "AD5" (at 283.21 127 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 2d697cf0-e02e-4ed1-a048-a704dab0ee43)
- )
- (label "AD3" (at 283.21 119.38 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 40b14a16-fb82-4b9d-89dd-55cd98abb5cc)
- )
- (label "CLK" (at 210.82 129.54 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 42ff012d-5eb7-42b9-bb45-415cf26799c6)
- )
- (label "A13" (at 251.46 170.18 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 4a850cb6-bb24-4274-a902-e49f34f0a0e3)
- )
- (label "AD7" (at 283.21 121.92 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 503dbd88-3e6b-48cc-a2ea-a6e28b52a1f7)
- )
- (label "AD3" (at 373.38 119.38 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 5487601b-81d3-4c70-8f3d-cf9df9c63302)
- )
- (label "AD0" (at 373.38 111.76 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 592f25e6-a01b-47fd-8172-3da01117d00a)
- )
- (label "AD4" (at 251.46 121.92 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 5edcefbe-9766-42c8-9529-28d0ec865573)
- )
- (label "A7" (at 316.23 121.92 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 5fc9acb6-6dbb-4598-825b-4b9e7c4c67c4)
- )
- (label "A7" (at 334.01 129.54 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 63489ebf-0f52-43a6-a0ab-158b1a7d4988)
- )
- (label "AD2" (at 283.21 116.84 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 658dad07-97fd-466c-8b49-21892ac96ea4)
- )
- (label "A12" (at 251.46 167.64 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 6b7c1048-12b6-46b2-b762-fa3ad30472dd)
- )
- (label "A3" (at 316.23 119.38 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 6d1d60ff-408a-47a7-892f-c5cf9ef6ca75)
- )
- (label "AD1" (at 283.21 114.3 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 6e68f0cd-800e-4167-9553-71fc59da1eeb)
- )
- (label "A3" (at 334.01 119.38 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 71f8d568-0f23-4ff2-8e60-1600ce517a48)
- )
- (label "AD3" (at 251.46 119.38 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 721d1be9-236e-470b-ba69-f1cc6c43faf9)
- )
- (label "A4" (at 334.01 121.92 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 7c00778a-4692-4f9b-87d5-2d355077ce1e)
- )
- (label "A13" (at 330.2 144.78 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 7c04618d-9115-4179-b234-a8faf854ea92)
- )
- (label "AD6" (at 251.46 127 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 81a15393-727e-448b-a777-b18773023d89)
- )
- (label "A8" (at 251.46 157.48 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 8c1605f9-6c91-4701-96bf-e753661d5e23)
- )
- (label "A1" (at 316.23 114.3 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 970e0f64-111f-41e3-9f5a-fb0d0f6fa101)
- )
- (label "A1" (at 334.01 114.3 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 97581b9a-3f6b-4e88-8768-6fdb60e6aca6)
- )
- (label "A10" (at 330.2 137.16 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 998b7fa5-31a5-472e-9572-49d5226d6098)
- )
- (label "AD7" (at 373.38 129.54 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid a29f8df0-3fae-4edf-8d9c-bd5a875b13e3)
- )
- (label "AD7" (at 251.46 129.54 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid a4f86a46-3bc8-4daa-9125-a63f297eb114)
- )
- (label "A6" (at 316.23 124.46 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid a53767ed-bb28-4f90-abe0-e0ea734812a4)
- )
- (label "AD6" (at 373.38 127 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid a5c8e189-1ddc-4a66-984b-e0fd1529d346)
- )
- (label "AD0" (at 251.46 111.76 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid a5e521b9-814e-4853-a5ac-f158785c6269)
- )
- (label "A2" (at 316.23 116.84 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid b6135480-ace6-42b2-9c47-856ef57cded1)
- )
- (label "AD4" (at 283.21 129.54 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid c09938fd-06b9-4771-9f63-2311626243b3)
- )
- (label "AD2" (at 251.46 116.84 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid c1c799a0-3c93-493a-9ad7-8a0561bc69ee)
- )
- (label "AD5" (at 373.38 124.46 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid c71f56c1-5b7c-4373-9716-fffac482104c)
- )
- (label "AD1" (at 373.38 114.3 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid cb614b23-9af3-4aec-bed8-c1374e001510)
- )
- (label "A0" (at 334.01 111.76 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid dbe92a0d-89cb-4d3f-9497-c2c1d93a3018)
- )
- (label "A0" (at 316.23 111.76 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid dc2801a1-d539-4721-b31f-fe196b9f13df)
- )
- (label "A4" (at 316.23 129.54 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid e4aa537c-eb9d-4dbb-ac87-fae46af42391)
- )
- (label "A11" (at 330.2 139.7 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid e4d2f565-25a0-48c6-be59-f4bf31ad2558)
- )
- (label "A12" (at 330.2 142.24 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid e502d1d5-04b0-4d4b-b5c3-8c52d09668e7)
- )
- (label "A14" (at 251.46 172.72 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid e5203297-b913-4288-a576-12a92185cb52)
- )
- (label "A14" (at 330.2 147.32 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid e67b9f8c-019b-4145-98a4-96545f6bb128)
- )
- (label "AD5" (at 251.46 124.46 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid ec5c2062-3a41-4636-8803-069e60a1641a)
- )
- (label "A9" (at 251.46 160.02 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid f1447ad6-651c-45be-a2d6-33bddf672c2c)
- )
- (label "A10" (at 251.46 162.56 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid f6c644f4-3036-41a6-9e14-2c08c079c6cd)
- )
- (label "A5" (at 316.23 127 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid f9403623-c00c-4b71-bc5c-d763ff009386)
- )
- (global_label "~{R8k}" (shape output) (at 111.76 208.28 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 0b9f21ed-3d41-4f23-ae45-74117a5f3153)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "~{GRNBTN}" (shape input) (at 265.43 142.24 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 15a82541-58d8-45b5-99c5-fb52e017e3ea)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "~{GRNLED}" (shape input) (at 101.6 154.94 180) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 1bdd5841-68b7-42e2-9447-cbdb608d8a08)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "TX" (shape input) (at 214.63 160.02 180) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 29cbb0bc-f66b-4d11-80e7-5bb270e42496)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "~{R16k}" (shape output) (at 104.14 210.82 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 2c95b9a6-9c71-4108-9cde-57ddfdd2dd19)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "~{GRNLED}" (shape output) (at 254 139.7 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 2db910a0-b943-40b4-b81f-068ba5265f56)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "~{R4k}" (shape input) (at 250.19 152.4 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 347562f5-b152-4e7b-8a69-40ca6daaaad4)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "~{REDLED}" (shape output) (at 265.43 137.16 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 3f8a5430-68a9-4732-9b89-4e00dd8ae219)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "EA" (shape output) (at 254 134.62 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 4e27930e-1827-4788-aa6b-487321d46602)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "EA" (shape input) (at 162.56 125.73 180) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 60aa0ce8-9d0e-48ca-bbf9-866403979e9b)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "ALE" (shape output) (at 214.63 144.78 180) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 61fe4c73-be59-4519-98f1-a634322a841d)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "RX" (shape input) (at 214.63 157.48 180) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 653a86ba-a1ae-4175-9d4c-c788087956d0)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "~{R16k}" (shape input) (at 250.19 147.32 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 718e5c6d-0e4c-46d8-a149-2f2bfc54c7f1)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "~{R4k}" (shape output) (at 104.14 205.74 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 76afa8e0-9b3a-439d-843c-ad039d3b6354)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "RST" (shape input) (at 214.63 152.4 180) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 7a2f50f6-0c99-4e8d-9c2a-8f2f961d2e6d)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "~{R32k}" (shape output) (at 111.76 213.36 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 7b766787-7689-40b8-9ef5-c0b1af45a9ae)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "~{REDLED}" (shape input) (at 29.21 154.94 180) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid 7ce7415d-7c22-49f6-8215-488853ccc8c6)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "~{R32k}" (shape input) (at 256.54 144.78 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid 90f81af1-b6de-44aa-a46b-6504a157ce6c)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "~{PSEN}" (shape input) (at 332.74 160.02 180) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid b6cd701f-4223-4e72-a305-466869ccb250)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "RST" (shape output) (at 71.12 129.54 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid ba6fc20e-7eff-4d5f-81e4-d1fad93be155)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 -2.54 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "~{PSEN}" (shape output) (at 214.63 139.7 180) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid c0c2eb8e-f6d1-4506-8e6b-4f995ad74c1f)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "~{R8k}" (shape input) (at 256.54 149.86 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid cbde200f-1075-469a-89f8-abbdcf30e36a)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "~{GRNBTN}" (shape output) (at 138.43 129.54 0) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify left))
- (uuid e70b6168-f98e-4322-bc55-500948ef7b77)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 -2.54 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (global_label "ALE" (shape input) (at 287.02 134.62 180) (fields_autoplaced)
- (effects (font (size 1.27 1.27)) (justify right))
- (uuid e7e08b48-3d04-49da-8349-6de530a20c67)
- (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (symbol (lib_id "8051dumper-rescue:8051-MCU_8051") (at 232.41 143.51 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e81c2bb)
- (property "Reference" "U1" (id 0) (at 237.49 104.14 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "8051" (id 1) (at 237.49 106.68 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Package_DIP:DIP-40_W15.24mm_ZIF_Socket_Aries_40-6554-10" (id 2) (at 233.68 179.07 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "Datasheet" "" (id 3) (at 247.65 134.62 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "MPN" "Aries:40-6554-10" (id 4) (at 233.68 181.61 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "IPN" "TBD" (id 5) (at 233.68 184.15 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (pin "1" (uuid aa15663b-6dcb-4b55-bccd-b3daf4fc9f59))
- (pin "10" (uuid b9f1296a-d256-4e78-b80c-b75b4234e3b2))
- (pin "11" (uuid bc1b4092-984b-436c-911b-e65cf64bf604))
- (pin "12" (uuid b1c291a9-2a73-4c20-81e1-4152dbb414b1))
- (pin "13" (uuid 4a01bd22-73b7-4601-8293-f9e17a44f8be))
- (pin "14" (uuid 332cc31b-6cdb-47a5-b648-2acad749f29a))
- (pin "15" (uuid 856d8097-fff2-488e-b67e-40ea394497ec))
- (pin "16" (uuid 399d11d4-d0af-4ff8-91bb-3100a25539e3))
- (pin "17" (uuid 6e13e8a8-917d-47d6-a620-6d34d444fc79))
- (pin "18" (uuid 459f86e1-248b-45db-95f9-c74da5aee646))
- (pin "19" (uuid f2e20119-a880-4c24-ac47-b1161e2cf47f))
- (pin "2" (uuid 08b5285c-e6ac-4fd5-89f1-751e1b10041c))
- (pin "20" (uuid be56bb85-ebac-481c-a743-f598ed561e0a))
- (pin "21" (uuid 964e9395-8fe1-432b-a91d-dc3d552e3e54))
- (pin "22" (uuid 8439d7a3-b496-4677-a990-230332b5384d))
- (pin "23" (uuid 0c8e07e4-e2fc-44da-866b-168f9fa1c55d))
- (pin "24" (uuid 2963c968-e38f-42e2-9931-63b33fdbec0a))
- (pin "25" (uuid a160dc76-f415-41d3-a422-b0720c49fddf))
- (pin "26" (uuid 3390d9e1-2304-43bf-ba81-2dfa76d200e4))
- (pin "27" (uuid 2a6c8797-0bb0-4781-98b9-9e9e049651c1))
- (pin "28" (uuid de1444b0-ee05-4391-ae2c-670051a2e5f2))
- (pin "29" (uuid de14f809-414a-40e7-91c6-8cc69eff023b))
- (pin "3" (uuid 2e98b1eb-67be-474b-a79c-d0a536546f86))
- (pin "30" (uuid 21642ca1-be87-45d4-97fa-b1927ddb822d))
- (pin "31" (uuid a750d69e-cb65-4ed6-ad9d-5914969ea708))
- (pin "32" (uuid 251c222f-47b1-4939-9663-915aa852f6d7))
- (pin "33" (uuid 01247e1e-5b49-4c8e-8ea1-3edd1a26657e))
- (pin "34" (uuid 613a8c68-dd03-404c-9ce0-0fd45408f807))
- (pin "35" (uuid 63a7ff5e-b311-4ddd-9448-5add419a896d))
- (pin "36" (uuid 08e06b48-b09c-4d54-9e7b-535eb81523f1))
- (pin "37" (uuid bba63fe1-8f85-4a48-a229-be6ce294e7fd))
- (pin "38" (uuid 5f568311-cf75-4b64-bf2a-24f069508cf5))
- (pin "39" (uuid 86dc982f-3c1c-4a60-9b44-a3fbe3fd622a))
- (pin "4" (uuid 9551e228-ddad-4e6f-b6b2-21ddb1efec37))
- (pin "40" (uuid 8f6452a4-f576-403e-b12d-634ebe6e21d1))
- (pin "5" (uuid 79723206-240f-41fa-bfc2-b0f2d66a86d3))
- (pin "6" (uuid 51aca591-1051-4cfa-9b3d-fa41d02ea89d))
- (pin "7" (uuid 98e3a82a-4e69-40aa-836c-ba7089edc682))
- (pin "8" (uuid 1d2c2a2e-9602-47da-a45e-551210998edd))
- (pin "9" (uuid d1abb560-45b1-43bc-94a0-0c73c6aab2ca))
- )
- (symbol (lib_id "8051dumper-rescue:SN74LS373N-Logic") (at 302.26 124.46 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e81dcb8)
- (property "Reference" "U2" (id 0) (at 303.53 104.14 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "SN74LS373N" (id 1) (at 303.53 106.68 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Package_DIP:DIP-20_W7.62mm" (id 2) (at 303.53 140.97 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS373" (id 3) (at 302.26 124.46 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "MPN" "TI:SN74LS373N" (id 4) (at 303.53 143.51 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "IPN" "TBD" (id 5) (at 303.53 146.05 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (pin "1" (uuid fbc6c91d-80ca-43fd-90a3-781cbdb71243))
- (pin "10" (uuid ac21dadf-ee51-42ab-8cac-a451eeb7ebd5))
- (pin "11" (uuid 47f85bfb-0077-4714-a665-9ef9622304b6))
- (pin "12" (uuid 2660c866-d3d0-4912-8149-9bf66a7073b0))
- (pin "13" (uuid a2be9f1c-f49f-48c6-9b82-fe513848f8c2))
- (pin "14" (uuid a0b83dff-95fb-4a94-b937-76a9b128457a))
- (pin "15" (uuid 1a1ae468-a772-4e3f-8cb1-1536f03ea476))
- (pin "16" (uuid 52b511f4-20fa-4b74-98da-f68593657639))
- (pin "17" (uuid b9bd15f0-2588-4766-b744-8271bd55c3ec))
- (pin "18" (uuid 3363a415-a61d-4b0a-a1ab-073cfca72e70))
- (pin "19" (uuid c58b13c2-4d04-468c-93ce-456e99782ecb))
- (pin "2" (uuid c42dae99-4d1b-4566-b7d6-c18adbc354ea))
- (pin "20" (uuid 1b2f13b8-c832-4653-b67c-ec89c45078a6))
- (pin "3" (uuid cbc1a1c2-5d5c-4668-b063-f4f54d697101))
- (pin "4" (uuid 56ff6c91-3a68-43f3-8d4b-d164437f7438))
- (pin "5" (uuid 4dfb291a-16cf-4f71-8036-ceb7df6ba1b2))
- (pin "6" (uuid f3658926-2388-42cb-b634-9f420ae967f1))
- (pin "7" (uuid 821327b3-1b91-4c27-8161-1995f1a78c3e))
- (pin "8" (uuid 5009f5dd-c6af-499f-aba5-a258608ac580))
- (pin "9" (uuid b17c80c7-8ca8-41eb-bd33-922d4ec1678f))
- )
- (symbol (lib_id "Oscillator:ASE-xxxMHz") (at 198.12 113.03 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e8234fd)
- (property "Reference" "X1" (id 0) (at 199.39 104.14 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "11.0592 MHz" (id 1) (at 199.39 106.68 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Oscillator:Oscillator_SMD_EuroQuartz_XO53-4Pin_5.0x3.2mm" (id 2) (at 209.55 121.92 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "http://www.ecsxtal.com/store/pdf/ecs-2200x.pdf" (id 3) (at 195.58 113.03 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "MPN" "ECS:ECS-2200BX-110.5" (id 4) (at 205.74 116.84 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "IPN" "" (id 5) (at 209.55 116.84 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C387216" (id 6) (at 198.12 113.03 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid f8884385-af1a-4fbc-baff-003573f2f33a))
- (pin "2" (uuid a5c8611d-96af-4758-9681-1dc52d00b35f))
- (pin "3" (uuid 5d64d5e2-7ae4-47ab-9695-e521a8efe139))
- (pin "4" (uuid 264cb5bf-bc1f-460b-8aba-c2739882326d))
- )
- (symbol (lib_id "8051dumper-rescue:AT28C256-15PU-Memory_EEPROM") (at 337.82 111.76 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e824c31)
- (property "Reference" "U3" (id 0) (at 354.33 104.14 0)
- (effects (font (size 1.524 1.524)) (justify left))
- )
- (property "Value" "AT28C256-15PU" (id 1) (at 354.33 106.68 0)
- (effects (font (size 1.524 1.524)) (justify left))
- )
- (property "Footprint" "Package_DIP:DIP-28_W15.24mm_Socket" (id 2) (at 355.6 176.53 0)
- (effects (font (size 1.524 1.524)) (justify left) hide)
- )
- (property "Datasheet" "" (id 3) (at 337.82 111.76 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "MPN" "Microchip:AT28C256-15PU" (id 4) (at 355.6 171.45 0)
- (effects (font (size 1.524 1.524)) (justify left) hide)
- )
- (property "IPN" "TBD" (id 5) (at 355.6 173.99 0)
- (effects (font (size 1.524 1.524)) (justify left) hide)
- )
- (pin "1" (uuid e969e00d-3e12-4e89-b2e5-fa2da282f8a9))
- (pin "10" (uuid 790dbd70-cad7-439d-a2fd-0f5c751d6f81))
- (pin "11" (uuid ff1b1bb7-c1a1-47ad-9045-c2d349ce320f))
- (pin "12" (uuid 4c81d6d5-ad24-4042-ab44-53c4a6bcd968))
- (pin "13" (uuid c3ef99da-2b8a-4643-b96e-6ad392c313ee))
- (pin "14" (uuid 5e26a5db-d7f3-4a6b-959d-6735112a36a6))
- (pin "15" (uuid 6dd0c8db-e9ff-40a0-8b1a-e007d195ad07))
- (pin "16" (uuid fac3c50b-7b17-4a39-8062-af8954b13534))
- (pin "17" (uuid 41334b7d-d0c4-4f58-b084-db5b24dac967))
- (pin "18" (uuid 13e76b50-6881-4466-92bf-2e647347bb2b))
- (pin "19" (uuid a944b33b-f602-4bd6-9e2f-6ba51e401c25))
- (pin "2" (uuid 598c5b27-7df0-4dad-ab18-5e5739cfa6d6))
- (pin "20" (uuid 346336da-45ea-4778-a844-d2e98cc1d306))
- (pin "21" (uuid 437e16fe-d82b-4564-a666-f25477c1e583))
- (pin "22" (uuid 9d6e330f-006c-4c84-aa1c-770c79ab2ccd))
- (pin "23" (uuid 86f1ce58-7241-4d4b-9f6d-1b2f1770aa2d))
- (pin "24" (uuid 21b4a2e6-0e40-4192-943e-bb939e580e2b))
- (pin "25" (uuid b6445f3a-dec2-4f51-9b1e-7a0208e84e23))
- (pin "26" (uuid 466a58a5-4eb9-4c69-97e9-4fb9fe6988c9))
- (pin "27" (uuid d3e4ea4f-e51c-45f4-8f0e-a294e95ffa49))
- (pin "28" (uuid 50d9dbff-4aec-4f88-9cce-560c958faa51))
- (pin "3" (uuid 8eef9d47-443a-4a8c-94bd-ad5d6b8994f9))
- (pin "4" (uuid 3b639d5b-5b2b-48f3-a1c1-e26227c92a17))
- (pin "5" (uuid 005a1ab2-ce64-4842-abf9-36bb47ceee5c))
- (pin "6" (uuid deba8366-d5b2-42b8-89d2-68ae19603adb))
- (pin "7" (uuid 11331dfc-94ab-41c8-aa3b-ac4ad5877ea9))
- (pin "8" (uuid c63006f4-f9c8-46c7-9bb9-8175dd3f9e59))
- (pin "9" (uuid 339af272-b753-45be-a8f1-5e3de643d818))
- )
- (symbol (lib_id "8051dumper-rescue:C_0.1uF_50V_X7R_radial-Capacitor") (at 119.38 45.72 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e8384e1)
- (property "Reference" "C1" (id 0) (at 122.301 44.5516 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "0.1uF" (id 1) (at 122.301 46.863 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 120.015 50.165 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "Datasheet" "http://www.vishay.com/docs/45171/kseries.pdf" (id 3) (at 119.38 45.72 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "IPN" "" (id 4) (at 120.015 52.07 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "MPN" "Vishay:K104K10X7RF5UL2" (id 5) (at 120.015 53.975 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C1525" (id 6) (at 119.38 45.72 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid c0ea8401-5770-44f1-86a5-f03597e947dd))
- (pin "2" (uuid 1fc47158-c461-4100-92f3-fb082b1eb402))
- )
- (symbol (lib_id "8051dumper-rescue:R_10k_1%_0p25W_axial-Resistor") (at 204.47 139.7 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e838b64)
- (property "Reference" "R2" (id 0) (at 201.93 139.7 90))
- (property "Value" "10k" (id 1) (at 204.47 139.7 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 210.82 139.7 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "https://www.seielect.com/catalog/sei-rnf_rnmf.pdf" (id 3) (at 206.502 139.7 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "IPN" "" (id 4) (at 212.09 139.7 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "MPN" "Stackpole:RNF14FTD10K0" (id 5) (at 213.36 139.7 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C25744" (id 6) (at 204.47 139.7 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 8b0ae9f5-5786-48f0-a888-41943240969c))
- (pin "2" (uuid ac4ce5f6-0b87-4f08-aed1-76ff7b681bd3))
- )
- (symbol (lib_id "8051dumper-rescue:R_332_1%_0p25W_axial-Resistor") (at 129.54 137.16 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e83b63c)
- (property "Reference" "R7" (id 0) (at 129.54 134.62 90))
- (property "Value" "330" (id 1) (at 129.54 137.16 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 129.54 143.51 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "https://www.seielect.com/catalog/sei-rnf_rnmf.pdf" (id 3) (at 129.54 139.192 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "IPN" "" (id 4) (at 129.54 144.78 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "MPN" "Stackpole:RNF14FTD332R" (id 5) (at 129.54 146.05 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C25104" (id 6) (at 129.54 137.16 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid d60342b5-c60d-4f98-a4c6-a76ed9edde1b))
- (pin "2" (uuid 59543de0-92c7-47ac-af02-56e54be08c42))
- )
- (symbol (lib_id "power:GND") (at 214.63 114.3 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e855078)
- (property "Reference" "#PWR07" (id 0) (at 214.63 120.65 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 214.757 118.6942 0))
- (property "Footprint" "" (id 2) (at 214.63 114.3 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 214.63 114.3 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 3a2cc43b-53b9-4f52-a08b-b8c3228b7852))
- )
- (symbol (lib_id "8051dumper-rescue:R_10k_1%_0p25W_axial-Resistor") (at 107.95 154.94 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e85bf4a)
- (property "Reference" "R4" (id 0) (at 107.95 152.4 90))
- (property "Value" "10k" (id 1) (at 107.95 154.94 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 107.95 161.29 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "https://www.seielect.com/catalog/sei-rnf_rnmf.pdf" (id 3) (at 107.95 156.972 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "IPN" "" (id 4) (at 107.95 162.56 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "MPN" "Stackpole:RNF14FTD10K0" (id 5) (at 107.95 163.83 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C25744" (id 6) (at 107.95 154.94 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid dd84aee3-9bb2-41a5-a1b3-5f40376c5839))
- (pin "2" (uuid 6cb976c4-268a-4aef-8409-ad204ec8af6f))
- )
- (symbol (lib_id "8051dumper-rescue:R_10k_1%_0p25W_axial-Resistor") (at 170.18 125.73 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e865007)
- (property "Reference" "R1" (id 0) (at 170.18 123.19 90))
- (property "Value" "10k" (id 1) (at 170.18 125.73 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 170.18 132.08 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "https://www.seielect.com/catalog/sei-rnf_rnmf.pdf" (id 3) (at 170.18 127.762 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "IPN" "" (id 4) (at 170.18 133.35 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "MPN" "Stackpole:RNF14FTD10K0" (id 5) (at 170.18 134.62 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C25744" (id 6) (at 170.18 125.73 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 81138b2d-6a69-4f81-94a4-8b22898091b6))
- (pin "2" (uuid d8b41034-d9dc-4628-9a45-ed02184d47ed))
- )
- (symbol (lib_id "power:+5V") (at 121.92 147.32 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e868184)
- (property "Reference" "#PWR016" (id 0) (at 121.92 151.13 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5V" (id 1) (at 122.301 142.9258 0))
- (property "Footprint" "" (id 2) (at 121.92 147.32 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 121.92 147.32 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 93d7abd4-41e1-4851-bded-301eeb454a23))
- )
- (symbol (lib_id "power:GND") (at 111.76 138.43 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e86e4e8)
- (property "Reference" "#PWR029" (id 0) (at 111.76 144.78 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 111.887 142.8242 0))
- (property "Footprint" "" (id 2) (at 111.76 138.43 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 111.76 138.43 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 813a4aa3-1438-4ed8-8682-303d1dc485af))
- )
- (symbol (lib_id "power:GND") (at 302.26 147.32 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e87ae28)
- (property "Reference" "#PWR010" (id 0) (at 302.26 153.67 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 302.387 151.7142 0))
- (property "Footprint" "" (id 2) (at 302.26 147.32 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 302.26 147.32 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 94411718-e83f-4ca6-ab66-879aa499256c))
- )
- (symbol (lib_id "power:GND") (at 232.41 181.61 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e87d0f6)
- (property "Reference" "#PWR014" (id 0) (at 232.41 187.96 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 232.537 186.0042 0))
- (property "Footprint" "" (id 2) (at 232.41 181.61 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 232.41 181.61 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid a1c2ba6d-0f8e-4e6f-827e-a48244e91854))
- )
- (symbol (lib_id "power:GND") (at 353.06 171.45 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e88074a)
- (property "Reference" "#PWR013" (id 0) (at 353.06 177.8 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 353.187 175.8442 0))
- (property "Footprint" "" (id 2) (at 353.06 171.45 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 353.06 171.45 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid cd8c5492-61d9-4250-a9b4-c2e015d13694))
- )
- (symbol (lib_id "8051dumper-rescue:R_332_1%_0p25W_axial-Resistor") (at 57.15 137.16 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e8827a7)
- (property "Reference" "R6" (id 0) (at 57.15 134.62 90))
- (property "Value" "330" (id 1) (at 57.15 137.16 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 57.15 143.51 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "https://www.seielect.com/catalog/sei-rnf_rnmf.pdf" (id 3) (at 57.15 139.192 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "IPN" "" (id 4) (at 57.15 144.78 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "MPN" "Stackpole:RNF14FTD332R" (id 5) (at 57.15 146.05 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C25104" (id 6) (at 57.15 137.16 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid e5c459d3-20b6-4833-8919-085434c3dc4d))
- (pin "2" (uuid f2532b53-a19d-49d7-ae1f-5c27329629fb))
- )
- (symbol (lib_id "8051dumper-rescue:R_10k_1%_0p25W_axial-Resistor") (at 35.56 154.94 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e8827c0)
- (property "Reference" "R3" (id 0) (at 35.56 152.4 90))
- (property "Value" "10k" (id 1) (at 35.56 154.94 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 35.56 161.29 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "https://www.seielect.com/catalog/sei-rnf_rnmf.pdf" (id 3) (at 35.56 156.972 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "IPN" "" (id 4) (at 35.56 162.56 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "MPN" "Stackpole:RNF14FTD10K0" (id 5) (at 35.56 163.83 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C25744" (id 6) (at 35.56 154.94 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid ed4ec7d6-47ec-4264-88b2-6e59ea0a396f))
- (pin "2" (uuid e13ce9a7-8af4-48dc-98a5-4dc025bf9cd3))
- )
- (symbol (lib_id "power:+5V") (at 49.53 147.32 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e8827cd)
- (property "Reference" "#PWR015" (id 0) (at 49.53 151.13 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5V" (id 1) (at 49.911 142.9258 0))
- (property "Footprint" "" (id 2) (at 49.53 147.32 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 49.53 147.32 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid e56d266a-2785-4eaa-96fb-00220a0e095a))
- )
- (symbol (lib_id "power:GND") (at 39.37 138.43 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e8827d8)
- (property "Reference" "#PWR028" (id 0) (at 39.37 144.78 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 39.497 142.8242 0))
- (property "Footprint" "" (id 2) (at 39.37 138.43 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 39.37 138.43 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 71378830-de3b-4b0a-8dcc-9f1696aa89d7))
- )
- (symbol (lib_id "8051dumper-rescue:R_332_1%_0p25W_axial-Resistor") (at 57.15 129.54 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e889540)
- (property "Reference" "R9" (id 0) (at 57.15 127 90))
- (property "Value" "330" (id 1) (at 57.15 129.54 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 57.15 135.89 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "https://www.seielect.com/catalog/sei-rnf_rnmf.pdf" (id 3) (at 57.15 131.572 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "IPN" "" (id 4) (at 57.15 137.16 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "MPN" "Stackpole:RNF14FTD332R" (id 5) (at 57.15 138.43 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C25104" (id 6) (at 57.15 129.54 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid a9c20e1b-3141-44a4-bf41-05b23c7b8717))
- (pin "2" (uuid 2b0cdde0-d64a-4085-9853-69fb0ac10684))
- )
- (symbol (lib_id "power:+5V") (at 302.26 101.6 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e8a2c81)
- (property "Reference" "#PWR03" (id 0) (at 302.26 105.41 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5V" (id 1) (at 302.641 97.2058 0))
- (property "Footprint" "" (id 2) (at 302.26 101.6 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 302.26 101.6 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 0a1c8dd3-79aa-4486-b130-3333f90ae4f8))
- )
- (symbol (lib_id "power:+5V") (at 353.06 101.6 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e8a33f4)
- (property "Reference" "#PWR04" (id 0) (at 353.06 105.41 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5V" (id 1) (at 353.441 97.2058 0))
- (property "Footprint" "" (id 2) (at 353.06 101.6 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 353.06 101.6 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid dbcbc980-21f6-4c6d-9727-55e1eb8299ce))
- )
- (symbol (lib_id "8051dumper-rescue:C_10uF_10V_X7R_radial-Capacitor") (at 68.58 123.19 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e8a610b)
- (property "Reference" "C5" (id 0) (at 71.501 122.0216 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "10uF" (id 1) (at 71.501 124.333 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 69.215 127.635 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "Datasheet" "https://product.tdk.com/info/en/catalog/datasheets/leadmlcc_halogenfree_fg_en.pdf" (id 3) (at 68.58 123.19 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "IPN" "" (id 4) (at 69.215 129.54 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "MPN" "TDK:FG24X7R1A106KRT06" (id 5) (at 69.215 131.445 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C15850" (id 6) (at 68.58 123.19 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 08919123-72b5-496a-a0cd-461a7b473595))
- (pin "2" (uuid 3c47307a-ad6b-457d-8440-ec1437fb2897))
- )
- (symbol (lib_id "power:+5V") (at 232.41 104.14 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e8a61a4)
- (property "Reference" "#PWR06" (id 0) (at 232.41 107.95 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5V" (id 1) (at 232.791 99.7458 0))
- (property "Footprint" "" (id 2) (at 232.41 104.14 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 232.41 104.14 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 6d3fe2e2-f863-41e5-8e0c-e75fee38bb03))
- )
- (symbol (lib_id "8051dumper-rescue:C_0.1uF_50V_X7R_radial-Capacitor") (at 130.81 45.72 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e8a6cf3)
- (property "Reference" "C2" (id 0) (at 133.731 44.5516 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "0.1uF" (id 1) (at 133.731 46.863 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 131.445 50.165 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "Datasheet" "http://www.vishay.com/docs/45171/kseries.pdf" (id 3) (at 130.81 45.72 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "IPN" "" (id 4) (at 131.445 52.07 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "MPN" "Vishay:K104K10X7RF5UL2" (id 5) (at 131.445 53.975 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C1525" (id 6) (at 130.81 45.72 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 150704fa-293a-4697-a5cf-8b313726b01c))
- (pin "2" (uuid bb8291b8-5b85-43c5-8e30-b2436118ec3e))
- )
- (symbol (lib_id "8051dumper-rescue:C_0.1uF_50V_X7R_radial-Capacitor") (at 142.24 45.72 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e8a7160)
- (property "Reference" "C3" (id 0) (at 145.161 44.5516 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "0.1uF" (id 1) (at 145.161 46.863 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 142.875 50.165 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "Datasheet" "http://www.vishay.com/docs/45171/kseries.pdf" (id 3) (at 142.24 45.72 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "IPN" "" (id 4) (at 142.875 52.07 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "MPN" "Vishay:K104K10X7RF5UL2" (id 5) (at 142.875 53.975 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C1525" (id 6) (at 142.24 45.72 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 5918d433-77ba-47d2-9b46-a1ab9722f357))
- (pin "2" (uuid b8f34bd4-26e4-459e-a9ba-e24abf8e0d13))
- )
- (symbol (lib_id "8051dumper-rescue:C_0.1uF_50V_X7R_radial-Capacitor") (at 153.67 45.72 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e8a746f)
- (property "Reference" "C4" (id 0) (at 156.591 44.5516 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "0.1uF" (id 1) (at 156.591 46.863 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 154.305 50.165 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "Datasheet" "http://www.vishay.com/docs/45171/kseries.pdf" (id 3) (at 153.67 45.72 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "IPN" "" (id 4) (at 154.305 52.07 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "MPN" "Vishay:K104K10X7RF5UL2" (id 5) (at 154.305 53.975 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C1525" (id 6) (at 153.67 45.72 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid a017592d-ad56-4c95-aa0f-fb6211f86805))
- (pin "2" (uuid 4b30ead3-1d42-46f1-ad3a-c9bc891ea896))
- )
- (symbol (lib_id "8051dumper-rescue:R_10k_1%_0p25W_axial-Resistor") (at 68.58 135.89 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e8a7e17)
- (property "Reference" "R8" (id 0) (at 66.04 135.89 90))
- (property "Value" "10k" (id 1) (at 68.58 135.89 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 74.93 135.89 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "https://www.seielect.com/catalog/sei-rnf_rnmf.pdf" (id 3) (at 70.612 135.89 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "IPN" "" (id 4) (at 76.2 135.89 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "MPN" "Stackpole:RNF14FTD10K0" (id 5) (at 77.47 135.89 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C25744" (id 6) (at 68.58 135.89 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 17374b55-4a22-4efc-befe-7f4d463d6852))
- (pin "2" (uuid d11aa384-b8aa-4c2a-93ce-e9c9918917b1))
- )
- (symbol (lib_id "power:+5V") (at 68.58 116.84 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e8a8e2e)
- (property "Reference" "#PWR021" (id 0) (at 68.58 120.65 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5V" (id 1) (at 68.961 112.4458 0))
- (property "Footprint" "" (id 2) (at 68.58 116.84 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 68.58 116.84 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 75e40eac-348b-4303-99b0-79bb64d549f0))
- )
- (symbol (lib_id "power:+5V") (at 76.2 48.26 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e8a9340)
- (property "Reference" "#PWR01" (id 0) (at 76.2 52.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5V" (id 1) (at 76.581 43.8658 0))
- (property "Footprint" "" (id 2) (at 76.2 48.26 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 76.2 48.26 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 329441cf-72e2-4c78-bebc-26c7cfb38bac))
- )
- (symbol (lib_id "power:GND") (at 66.04 53.34 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e8a95bc)
- (property "Reference" "#PWR02" (id 0) (at 66.04 59.69 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 66.167 57.7342 0))
- (property "Footprint" "" (id 2) (at 66.04 53.34 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 66.04 53.34 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 641b3225-6970-4b55-a402-60d53dfb3497))
- )
- (symbol (lib_id "power:GND") (at 68.58 142.24 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e8a973e)
- (property "Reference" "#PWR030" (id 0) (at 68.58 148.59 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 68.707 146.6342 0))
- (property "Footprint" "" (id 2) (at 68.58 142.24 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 68.58 142.24 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 6f45cfcd-af3f-4771-a924-04ea70626868))
- )
- (symbol (lib_id "power:+5V") (at 331.47 167.64 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e8b7dcb)
- (property "Reference" "#PWR012" (id 0) (at 331.47 171.45 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5V" (id 1) (at 331.851 163.2458 0))
- (property "Footprint" "" (id 2) (at 331.47 167.64 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 331.47 167.64 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 168b75fc-110b-4067-98bf-b8bbc138f56e))
- )
- (symbol (lib_id "power:GND") (at 204.47 144.78 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e8c5663)
- (property "Reference" "#PWR09" (id 0) (at 204.47 151.13 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 204.597 149.1742 0))
- (property "Footprint" "" (id 2) (at 204.47 144.78 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 204.47 144.78 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 79f34c08-35d1-4e77-8438-e57cda12e435))
- )
- (symbol (lib_id "power:+5V") (at 34.29 128.27 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e8caeef)
- (property "Reference" "#PWR027" (id 0) (at 34.29 132.08 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5V" (id 1) (at 34.671 123.8758 0))
- (property "Footprint" "" (id 2) (at 34.29 128.27 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 34.29 128.27 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 58377f22-fdac-4b4e-959d-9a75f98651c5))
- )
- (symbol (lib_id "power:+5V") (at 119.38 39.37 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e8cc15e)
- (property "Reference" "#PWR017" (id 0) (at 119.38 43.18 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5V" (id 1) (at 119.761 34.9758 0))
- (property "Footprint" "" (id 2) (at 119.38 39.37 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 119.38 39.37 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid b7bd2321-82dc-413a-bc00-9da8472e9fa6))
- )
- (symbol (lib_id "power:GND") (at 119.38 52.07 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e8cc7a0)
- (property "Reference" "#PWR023" (id 0) (at 119.38 58.42 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 119.507 56.4642 0))
- (property "Footprint" "" (id 2) (at 119.38 52.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 119.38 52.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 1695447c-b14c-4eb8-81a8-7c5b425c89bd))
- )
- (symbol (lib_id "power:+5V") (at 130.81 39.37 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e8d2bb3)
- (property "Reference" "#PWR018" (id 0) (at 130.81 43.18 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5V" (id 1) (at 131.191 34.9758 0))
- (property "Footprint" "" (id 2) (at 130.81 39.37 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 130.81 39.37 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 3808a36f-8661-457d-b134-4fa465464125))
- )
- (symbol (lib_id "power:GND") (at 130.81 52.07 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e8d2bbd)
- (property "Reference" "#PWR024" (id 0) (at 130.81 58.42 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 130.937 56.4642 0))
- (property "Footprint" "" (id 2) (at 130.81 52.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 130.81 52.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 0c23b7e2-2d65-432c-8530-e36755819c5a))
- )
- (symbol (lib_id "power:+5V") (at 142.24 39.37 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e8d7023)
- (property "Reference" "#PWR019" (id 0) (at 142.24 43.18 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5V" (id 1) (at 142.621 34.9758 0))
- (property "Footprint" "" (id 2) (at 142.24 39.37 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 142.24 39.37 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 5db10976-de50-4f9d-a2c3-7ef6de3063a7))
- )
- (symbol (lib_id "power:GND") (at 142.24 52.07 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e8d702d)
- (property "Reference" "#PWR025" (id 0) (at 142.24 58.42 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 142.367 56.4642 0))
- (property "Footprint" "" (id 2) (at 142.24 52.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 142.24 52.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 3a611341-c0ba-45c5-92b9-926d037a5760))
- )
- (symbol (lib_id "power:+5V") (at 153.67 39.37 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e8d7045)
- (property "Reference" "#PWR020" (id 0) (at 153.67 43.18 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5V" (id 1) (at 154.051 34.9758 0))
- (property "Footprint" "" (id 2) (at 153.67 39.37 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 153.67 39.37 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 84414a51-7c55-438f-afa1-e86f42e7659f))
- )
- (symbol (lib_id "power:GND") (at 153.67 52.07 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e8d704f)
- (property "Reference" "#PWR026" (id 0) (at 153.67 58.42 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 153.797 56.4642 0))
- (property "Footprint" "" (id 2) (at 153.67 52.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 153.67 52.07 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 63db0235-0a71-4019-aca4-eb12592aeaf0))
- )
- (symbol (lib_id "power:+5V") (at 198.12 102.87 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e8e74d5)
- (property "Reference" "#PWR05" (id 0) (at 198.12 106.68 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5V" (id 1) (at 198.501 98.4758 0))
- (property "Footprint" "" (id 2) (at 198.12 102.87 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 198.12 102.87 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid dd2a3432-ff60-41d1-af28-d6a6595dae78))
- )
- (symbol (lib_id "8051dumper-rescue:R_10k_1%_0p25W_axial-Resistor") (at 135.89 123.19 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e8eb7eb)
- (property "Reference" "R5" (id 0) (at 133.35 123.19 90))
- (property "Value" "10k" (id 1) (at 135.89 123.19 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 142.24 123.19 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "https://www.seielect.com/catalog/sei-rnf_rnmf.pdf" (id 3) (at 137.922 123.19 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "IPN" "" (id 4) (at 143.51 123.19 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "MPN" "Stackpole:RNF14FTD10K0" (id 5) (at 144.78 123.19 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C25744" (id 6) (at 135.89 123.19 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 28cacd2a-5925-4628-870a-347357e09c90))
- (pin "2" (uuid dac46a3f-d5eb-47ac-9e3d-f3cacdc2efd5))
- )
- (symbol (lib_id "power:+5V") (at 135.89 116.84 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e8ebf21)
- (property "Reference" "#PWR022" (id 0) (at 135.89 120.65 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5V" (id 1) (at 136.271 112.4458 0))
- (property "Footprint" "" (id 2) (at 135.89 116.84 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 135.89 116.84 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid c583b93a-6bc7-4b4c-bb20-dcbecc4b3766))
- )
- (symbol (lib_id "power:GND") (at 198.12 123.19 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e8ee916)
- (property "Reference" "#PWR08" (id 0) (at 198.12 129.54 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 198.247 127.5842 0))
- (property "Footprint" "" (id 2) (at 198.12 123.19 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 198.12 123.19 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid cd106792-d850-4ab2-a930-478cf30829dd))
- )
- (symbol (lib_id "8051dumper-rescue:CK_1101M2S3CQE2-Switch") (at 88.9 46.99 0) (mirror x) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e91843a)
- (property "Reference" "S1" (id 0) (at 85.5218 37.3126 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "Value" "CK_1101M2S3CQE2" (id 1) (at 92.1512 45.6438 0)
- (effects (font (size 1.524 1.524)) (justify left) hide)
- )
- (property "Footprint" "Button_Switch_THT:SW_CK_1101M2S3CQE2" (id 2) (at 88.9 33.02 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "Datasheet" "" (id 3) (at 88.9 58.42 0)
- (effects (font (size 1.524 1.524)))
- )
- (property "IPN" "TBD" (id 4) (at 88.9 38.1 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "MPN" "CK:1101M2S3CQE2" (id 5) (at 88.9 35.56 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (pin "1" (uuid 34784234-7545-4b65-b805-372f5cfc6f78))
- (pin "2" (uuid bd3efddb-a394-4bfa-a7f4-e5056f729f47))
- (pin "3" (uuid 727fe13a-31cb-4cd6-9f2a-3ac7da09e08c))
- )
- (symbol (lib_id "power:GND") (at 331.47 152.4 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e9192ee)
- (property "Reference" "#PWR033" (id 0) (at 331.47 158.75 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 331.597 156.7942 0))
- (property "Footprint" "" (id 2) (at 331.47 152.4 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 331.47 152.4 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 41c905a2-5cb3-4936-a8e5-c7c833a365ba))
- )
- (symbol (lib_id "power:GND") (at 64.77 217.17 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e92b1a7)
- (property "Reference" "#PWR035" (id 0) (at 64.77 223.52 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 64.897 221.5642 0))
- (property "Footprint" "" (id 2) (at 64.77 217.17 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 64.77 217.17 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 30431d7f-471e-4f87-9d2b-cac2f187a241))
- )
- (symbol (lib_id "8051dumper-rescue:LED-LED") (at 107.95 50.8 90) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e93c724)
- (property "Reference" "D1" (id 0) (at 110.9472 50.9778 90)
- (effects (font (size 1.27 1.27)) (justify right))
- )
- (property "Value" "LED" (id 1) (at 104.775 50.9778 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 107.95 50.8 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 105.41 50.8 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "IPN" "" (id 4) (at 113.03 50.8 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "MPN" "Kingbright:WP7113GD" (id 5) (at 115.57 50.8 0)
- (effects (font (size 1.524 1.524)) hide)
- )
- (property "LCSC" "C72041" (id 6) (at 107.95 50.8 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 927a8958-9bc3-4c0f-b85b-e1fa1b641777))
- (pin "2" (uuid d36c4515-caf6-4826-9163-255fc3043cf3))
- )
- (symbol (lib_id "8051dumper-rescue:R_332_1%_0p25W_axial-Resistor") (at 107.95 40.64 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e9407f3)
- (property "Reference" "R14" (id 0) (at 105.41 40.64 90))
- (property "Value" "330" (id 1) (at 107.95 40.64 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 114.3 40.64 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "https://www.seielect.com/catalog/sei-rnf_rnmf.pdf" (id 3) (at 109.982 40.64 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "IPN" "" (id 4) (at 115.57 40.64 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "MPN" "Stackpole:RNF14FTD332R" (id 5) (at 116.84 40.64 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C25104" (id 6) (at 107.95 40.64 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 0aaba41e-b0fe-441d-9c59-b8a0dcedc1dc))
- (pin "2" (uuid a1b897f6-3bf5-4a87-8f4a-4b8e8bd738ef))
- )
- (symbol (lib_id "power:GND") (at 107.95 57.15 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e9418c0)
- (property "Reference" "#PWR037" (id 0) (at 107.95 63.5 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 108.077 61.5442 0))
- (property "Footprint" "" (id 2) (at 107.95 57.15 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 107.95 57.15 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid db9f8450-3c6f-407c-97ed-c7200a0e472a))
- )
- (symbol (lib_id "power:+5V") (at 107.95 34.29 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e941e14)
- (property "Reference" "#PWR036" (id 0) (at 107.95 38.1 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5V" (id 1) (at 108.331 29.8958 0))
- (property "Footprint" "" (id 2) (at 107.95 34.29 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 107.95 34.29 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 3ae6d83f-1a71-4c61-866a-d48cb3d7fe7f))
- )
- (symbol (lib_id "8051dumper-rescue:R_10k_1%_0p25W_axial-Resistor") (at 86.36 199.39 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e961a7f)
- (property "Reference" "R10" (id 0) (at 83.82 199.39 90))
- (property "Value" "10k" (id 1) (at 86.36 199.39 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 92.71 199.39 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "https://www.seielect.com/catalog/sei-rnf_rnmf.pdf" (id 3) (at 88.392 199.39 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "IPN" "" (id 4) (at 93.98 199.39 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "MPN" "Stackpole:RNF14FTD10K0" (id 5) (at 95.25 199.39 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C25744" (id 6) (at 86.36 199.39 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid e40a658e-5095-49ef-906c-b2d9ebca28bb))
- (pin "2" (uuid b06665ba-7a4d-414f-b0a4-f93d2cb82c1e))
- )
- (symbol (lib_id "8051dumper-rescue:R_10k_1%_0p25W_axial-Resistor") (at 91.44 199.39 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e962690)
- (property "Reference" "R11" (id 0) (at 88.9 199.39 90))
- (property "Value" "10k" (id 1) (at 91.44 199.39 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 97.79 199.39 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "https://www.seielect.com/catalog/sei-rnf_rnmf.pdf" (id 3) (at 93.472 199.39 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "IPN" "" (id 4) (at 99.06 199.39 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "MPN" "Stackpole:RNF14FTD10K0" (id 5) (at 100.33 199.39 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C25744" (id 6) (at 91.44 199.39 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid a4de5b32-3fa5-4b00-b7a4-454fb46c1a37))
- (pin "2" (uuid 9441c925-84dc-46bb-b90f-85a62f709352))
- )
- (symbol (lib_id "8051dumper-rescue:R_10k_1%_0p25W_axial-Resistor") (at 96.52 199.39 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e962c13)
- (property "Reference" "R12" (id 0) (at 93.98 199.39 90))
- (property "Value" "10k" (id 1) (at 96.52 199.39 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 102.87 199.39 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "https://www.seielect.com/catalog/sei-rnf_rnmf.pdf" (id 3) (at 98.552 199.39 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "IPN" "" (id 4) (at 104.14 199.39 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "MPN" "Stackpole:RNF14FTD10K0" (id 5) (at 105.41 199.39 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C25744" (id 6) (at 96.52 199.39 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid ae2ff78e-40d2-403f-9fd7-1d06c23286c1))
- (pin "2" (uuid c376a890-e6f4-48d0-87db-0352d61b1d96))
- )
- (symbol (lib_id "8051dumper-rescue:R_10k_1%_0p25W_axial-Resistor") (at 101.6 199.39 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e963026)
- (property "Reference" "R13" (id 0) (at 99.06 199.39 90))
- (property "Value" "10k" (id 1) (at 101.6 199.39 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 107.95 199.39 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "https://www.seielect.com/catalog/sei-rnf_rnmf.pdf" (id 3) (at 103.632 199.39 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "IPN" "" (id 4) (at 109.22 199.39 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "MPN" "Stackpole:RNF14FTD10K0" (id 5) (at 110.49 199.39 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C25744" (id 6) (at 101.6 199.39 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid ea7c2cdb-975a-464d-a2c3-ef7fb79f7b6d))
- (pin "2" (uuid f59bff2e-0f4d-4f6a-b29b-37751e2bbc9a))
- )
- (symbol (lib_id "power:+5V") (at 93.98 193.04 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e963409)
- (property "Reference" "#PWR034" (id 0) (at 93.98 196.85 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5V" (id 1) (at 94.361 188.6458 0))
- (property "Footprint" "" (id 2) (at 93.98 193.04 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 93.98 193.04 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 9e31afea-0dd3-4784-b3df-cda163e8ee3e))
- )
- (symbol (lib_id "8051dumper-rescue:C_10uF_10V_X7R_radial-Capacitor") (at 66.04 46.99 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e97a766)
- (property "Reference" "C6" (id 0) (at 68.961 45.8216 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "10uF" (id 1) (at 68.961 48.133 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 66.675 51.435 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "Datasheet" "https://product.tdk.com/info/en/catalog/datasheets/leadmlcc_halogenfree_fg_en.pdf" (id 3) (at 66.04 46.99 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "IPN" "" (id 4) (at 66.675 53.34 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "MPN" "TDK:FG24X7R1A106KRT06" (id 5) (at 66.675 55.245 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C15850" (id 6) (at 66.04 46.99 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 9206fefa-d1c6-44cd-ba6a-1134a8ae496a))
- (pin "2" (uuid 63d398a4-779d-43f2-937d-b177eb84fb43))
- )
- (symbol (lib_id "power:+5V") (at 184.15 118.11 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e9deb57)
- (property "Reference" "#PWR031" (id 0) (at 184.15 121.92 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5V" (id 1) (at 184.531 113.7158 0))
- (property "Footprint" "" (id 2) (at 184.15 118.11 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 184.15 118.11 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 72f4afbf-0722-4df9-99bb-8ff15fa3e9b6))
- )
- (symbol (lib_id "Device:LED") (at 118.11 137.16 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061b6b9b3)
- (property "Reference" "D3" (id 0) (at 117.9322 131.6482 0))
- (property "Value" "LED" (id 1) (at 117.9322 133.9596 0))
- (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 118.11 137.16 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 118.11 137.16 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C72043" (id 4) (at 118.11 137.16 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 2604f2dd-a5e9-4884-b0a3-f3a0008430f9))
- (pin "2" (uuid a900f6c6-d9f1-47be-b5a3-0778b44425b1))
- )
- (symbol (lib_id "Device:LED") (at 45.72 137.16 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061b8a3ab)
- (property "Reference" "D2" (id 0) (at 45.5422 131.6482 0))
- (property "Value" "LED" (id 1) (at 45.5422 133.9596 0))
- (property "Footprint" "LED_SMD:LED_0603_1608Metric" (id 2) (at 45.72 137.16 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 45.72 137.16 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C2286" (id 4) (at 45.72 137.16 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid b8a83f4f-4d43-4c6b-9a7a-28a20638c581))
- (pin "2" (uuid 1872f82c-846c-480c-9e6c-8c60c9005126))
- )
- (symbol (lib_id "Switch:SW_DPST_x2") (at 45.72 129.54 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061ba7315)
- (property "Reference" "SW1" (id 0) (at 45.72 123.571 0))
- (property "Value" "SW_DPST_x2" (id 1) (at 45.72 125.8824 0))
- (property "Footprint" "sm6uax:SW_Push_1P1T_NO_CK_K2-1102SP-C4SC-04" (id 2) (at 45.72 129.54 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 45.72 129.54 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C127509" (id 4) (at 45.72 129.54 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 1d3e83b5-45f8-4158-b1e4-970f3d5fd2e8))
- (pin "2" (uuid b1f854f5-7657-44bc-88db-ec79ef3ff95b))
- )
- (symbol (lib_id "Switch:SW_DPST_x2") (at 118.11 129.54 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061be2ab1)
- (property "Reference" "SW2" (id 0) (at 118.11 123.571 0))
- (property "Value" "SW_DPST_x2" (id 1) (at 118.11 125.8824 0))
- (property "Footprint" "sm6uax:SW_Push_1P1T_NO_CK_K2-1102SP-C4SC-04" (id 2) (at 118.11 129.54 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 118.11 129.54 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C127509" (id 4) (at 118.11 129.54 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid b73175c4-514f-4fcd-888b-07a3b1af842f))
- (pin "2" (uuid 99d99005-5ce8-40a9-9df6-6a17c35b5489))
- )
- (symbol (lib_id "Switch:SW_DIP_x04") (at 74.93 210.82 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061c5703c)
- (property "Reference" "J1" (id 0) (at 74.93 198.9582 0))
- (property "Value" "Conn_02x04_Odd_Even" (id 1) (at 74.93 201.2696 0))
- (property "Footprint" "Button_Switch_THT:SW_DIP_SPSTx04_Slide_9.78x12.34mm_W7.62mm_P2.54mm" (id 2) (at 74.93 210.82 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 74.93 210.82 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid e9cbe3fd-4118-4a8e-aa72-fa737e46c859))
- (pin "2" (uuid ed14e9ec-5091-4be6-836e-89757f8b6e94))
- (pin "3" (uuid 3b0f7152-3895-451d-af55-3ad446576262))
- (pin "4" (uuid e888e497-49a1-4762-a080-601d074dad4a))
- (pin "5" (uuid e0fa2d15-17ce-4439-922d-4e68895bbf00))
- (pin "6" (uuid 46523a41-a37c-4184-b0f0-37c06c0037c7))
- (pin "7" (uuid 4e662efc-eb21-43c9-bde0-ef448e2789dd))
- (pin "8" (uuid 55a6bd68-8a04-49f4-9ca3-4a38d1abe34a))
- )
- (symbol (lib_id "Device:Q_PNP_BEC") (at 46.99 154.94 0) (mirror x) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061cf4156)
- (property "Reference" "Q1" (id 0) (at 51.816 153.7716 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "MMBT5401" (id 1) (at 51.816 156.083 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 52.07 151.13 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "Datasheet" "" (id 3) (at 52.07 156.21 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "IPN" "" (id 4) (at 52.07 148.59 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "MPN" "ON Semiconductor:2N3906TF" (id 5) (at 52.07 146.05 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C8326" (id 6) (at 46.99 154.94 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 1ba0b489-8f4c-40ae-9f60-1d3428afc073))
- (pin "2" (uuid a14fc406-600c-4ea0-b386-12e73ad2dbed))
- (pin "3" (uuid f2b0b7f0-1268-457b-a1c1-71fc5a20826e))
- )
- (symbol (lib_id "Device:Q_PNP_BEC") (at 119.38 154.94 0) (mirror x) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061d10698)
- (property "Reference" "Q2" (id 0) (at 124.206 153.7716 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "MMBT5401" (id 1) (at 124.206 156.083 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 124.46 151.13 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "Datasheet" "" (id 3) (at 124.46 156.21 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "IPN" "" (id 4) (at 124.46 148.59 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "MPN" "ON Semiconductor:2N3906TF" (id 5) (at 124.46 146.05 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C8326" (id 6) (at 119.38 154.94 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid dca2e3a7-2ba5-4b94-a023-2ce50f4cfd10))
- (pin "2" (uuid b1f943a4-d091-4278-9eac-8068fc85da06))
- (pin "3" (uuid 34484d47-2953-4d0e-9683-6502dfbfbe41))
- )
- (symbol (lib_id "Device:Q_PNP_BEC") (at 181.61 125.73 0) (mirror x) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061d1198d)
- (property "Reference" "Q3" (id 0) (at 176.53 120.65 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "MMBT5401" (id 1) (at 173.99 130.81 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 186.69 121.92 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "Datasheet" "" (id 3) (at 186.69 127 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "IPN" "" (id 4) (at 186.69 119.38 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "MPN" "ON Semiconductor:2N3906TF" (id 5) (at 186.69 116.84 0)
- (effects (font (size 1.27 1.27)) (justify left) hide)
- )
- (property "LCSC" "C8326" (id 6) (at 181.61 125.73 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid d5f6fe4e-01d3-4cee-a805-76d6131281b1))
- (pin "2" (uuid 3d84df74-3b15-4d21-86c7-dc1411ed0df8))
- (pin "3" (uuid ff0c8b1b-2c36-45ef-b3c3-6bfbeb05653c))
- )
- (symbol (lib_id "Mechanical:MountingHole") (at 381 26.67 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061d18083)
- (property "Reference" "H1" (id 0) (at 383.54 25.5016 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "MountingHole" (id 1) (at 383.54 27.813 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "MountingHole:MountingHole_3.2mm_M3" (id 2) (at 381 26.67 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 381 26.67 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (symbol (lib_id "Mechanical:MountingHole") (at 381 31.75 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061d1ae50)
- (property "Reference" "H2" (id 0) (at 383.54 30.5816 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "MountingHole" (id 1) (at 383.54 32.893 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "MountingHole:MountingHole_3.2mm_M3" (id 2) (at 381 31.75 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 381 31.75 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (symbol (lib_id "Mechanical:MountingHole") (at 381 36.83 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061d1b213)
- (property "Reference" "H3" (id 0) (at 383.54 35.6616 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "MountingHole" (id 1) (at 383.54 37.973 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "MountingHole:MountingHole_3.2mm_M3" (id 2) (at 381 36.83 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 381 36.83 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (symbol (lib_id "Mechanical:MountingHole") (at 381 41.91 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061d1b63b)
- (property "Reference" "H4" (id 0) (at 383.54 40.7416 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "MountingHole" (id 1) (at 383.54 43.053 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "MountingHole:MountingHole_3.2mm_M3" (id 2) (at 381 41.91 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 381 41.91 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- )
- (symbol (lib_id "power:VBUS") (at 66.04 38.1 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-000061dba40b)
- (property "Reference" "#PWR0107" (id 0) (at 66.04 41.91 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "VBUS" (id 1) (at 66.421 33.7058 0))
- (property "Footprint" "" (id 2) (at 66.04 38.1 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 66.04 38.1 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid e7b9148e-692b-4cde-83d8-29df46023977))
- )
- (sheet (at 143.51 218.44) (size 49.53 29.21) (fields_autoplaced)
- (stroke (width 0) (type solid) (color 0 0 0 0))
- (fill (color 0 0 0 0.0000))
- (uuid 00000000-0000-0000-0000-000061bf978d)
- (property "Sheet name" "usb" (id 0) (at 143.51 217.7284 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- )
- (property "Sheet file" "usb.kicad_sch" (id 1) (at 143.51 248.2346 0)
- (effects (font (size 1.27 1.27)) (justify left top))
- )
- )
- (sheet_instances
- (path "/" (page "1"))
- (path "/00000000-0000-0000-0000-000061bf978d" (page "2"))
- )
- (symbol_instances
- (path "/00000000-0000-0000-0000-00005e8a9340"
- (reference "#PWR01") (unit 1) (value "+5V") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005e8a95bc"
- (reference "#PWR02") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005e8a2c81"
- (reference "#PWR03") (unit 1) (value "+5V") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005e8a33f4"
- (reference "#PWR04") (unit 1) (value "+5V") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005e8e74d5"
- (reference "#PWR05") (unit 1) (value "+5V") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005e8a61a4"
- (reference "#PWR06") (unit 1) (value "+5V") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005e855078"
- (reference "#PWR07") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005e8ee916"
- (reference "#PWR08") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005e8c5663"
- (reference "#PWR09") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005e87ae28"
- (reference "#PWR010") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005e8b7dcb"
- (reference "#PWR012") (unit 1) (value "+5V") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005e88074a"
- (reference "#PWR013") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005e87d0f6"
- (reference "#PWR014") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005e8827cd"
- (reference "#PWR015") (unit 1) (value "+5V") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005e868184"
- (reference "#PWR016") (unit 1) (value "+5V") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005e8cc15e"
- (reference "#PWR017") (unit 1) (value "+5V") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005e8d2bb3"
- (reference "#PWR018") (unit 1) (value "+5V") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005e8d7023"
- (reference "#PWR019") (unit 1) (value "+5V") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005e8d7045"
- (reference "#PWR020") (unit 1) (value "+5V") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005e8a8e2e"
- (reference "#PWR021") (unit 1) (value "+5V") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005e8ebf21"
- (reference "#PWR022") (unit 1) (value "+5V") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005e8cc7a0"
- (reference "#PWR023") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005e8d2bbd"
- (reference "#PWR024") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005e8d702d"
- (reference "#PWR025") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005e8d704f"
- (reference "#PWR026") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005e8caeef"
- (reference "#PWR027") (unit 1) (value "+5V") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005e8827d8"
- (reference "#PWR028") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005e86e4e8"
- (reference "#PWR029") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005e8a973e"
- (reference "#PWR030") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005e9deb57"
- (reference "#PWR031") (unit 1) (value "+5V") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005e9192ee"
- (reference "#PWR033") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005e963409"
- (reference "#PWR034") (unit 1) (value "+5V") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005e92b1a7"
- (reference "#PWR035") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005e941e14"
- (reference "#PWR036") (unit 1) (value "+5V") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005e9418c0"
- (reference "#PWR037") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000061bf978d/00000000-0000-0000-0000-000061d331f6"
- (reference "#PWR0101") (unit 1) (value "+5V") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000061bf978d/00000000-0000-0000-0000-00005cc8b39c"
- (reference "#PWR0102") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000061bf978d/00000000-0000-0000-0000-00005cc7520b"
- (reference "#PWR0103") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000061bf978d/00000000-0000-0000-0000-00005e671d3e"
- (reference "#PWR0104") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000061bf978d/00000000-0000-0000-0000-00005e80db90"
- (reference "#PWR0105") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000061bf978d/00000000-0000-0000-0000-00005e9ecde8"
- (reference "#PWR0106") (unit 1) (value "GND") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000061dba40b"
- (reference "#PWR0107") (unit 1) (value "VBUS") (footprint "")
- )
- (path "/00000000-0000-0000-0000-000061bf978d/00000000-0000-0000-0000-000061db3af3"
- (reference "#PWR0108") (unit 1) (value "VBUS") (footprint "")
- )
- (path "/00000000-0000-0000-0000-00005e8384e1"
- (reference "C1") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0402_1005Metric")
- )
- (path "/00000000-0000-0000-0000-00005e8a6cf3"
- (reference "C2") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0402_1005Metric")
- )
- (path "/00000000-0000-0000-0000-00005e8a7160"
- (reference "C3") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0402_1005Metric")
- )
- (path "/00000000-0000-0000-0000-00005e8a746f"
- (reference "C4") (unit 1) (value "0.1uF") (footprint "Capacitor_SMD:C_0402_1005Metric")
- )
- (path "/00000000-0000-0000-0000-00005e8a610b"
- (reference "C5") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
- )
- (path "/00000000-0000-0000-0000-00005e97a766"
- (reference "C6") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
- )
- (path "/00000000-0000-0000-0000-000061bf978d/00000000-0000-0000-0000-00005e7feac9"
- (reference "C7") (unit 1) (value "1uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
- )
- (path "/00000000-0000-0000-0000-000061bf978d/00000000-0000-0000-0000-00005cc8a742"
- (reference "C8") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0805_2012Metric")
- )
- (path "/00000000-0000-0000-0000-00005e93c724"
- (reference "D1") (unit 1) (value "LED") (footprint "LED_SMD:LED_0603_1608Metric")
- )
- (path "/00000000-0000-0000-0000-000061b8a3ab"
- (reference "D2") (unit 1) (value "LED") (footprint "LED_SMD:LED_0603_1608Metric")
- )
- (path "/00000000-0000-0000-0000-000061b6b9b3"
- (reference "D3") (unit 1) (value "LED") (footprint "LED_SMD:LED_0603_1608Metric")
- )
- (path "/00000000-0000-0000-0000-000061bf978d/00000000-0000-0000-0000-00005cc74192"
- (reference "F1") (unit 1) (value "Polyfuse 1A") (footprint "sm6uax:Fuse_1206_3216Metric")
- )
- (path "/00000000-0000-0000-0000-000061d18083"
- (reference "H1") (unit 1) (value "MountingHole") (footprint "MountingHole:MountingHole_3.2mm_M3")
- )
- (path "/00000000-0000-0000-0000-000061d1ae50"
- (reference "H2") (unit 1) (value "MountingHole") (footprint "MountingHole:MountingHole_3.2mm_M3")
- )
- (path "/00000000-0000-0000-0000-000061d1b213"
- (reference "H3") (unit 1) (value "MountingHole") (footprint "MountingHole:MountingHole_3.2mm_M3")
- )
- (path "/00000000-0000-0000-0000-000061d1b63b"
- (reference "H4") (unit 1) (value "MountingHole") (footprint "MountingHole:MountingHole_3.2mm_M3")
- )
- (path "/00000000-0000-0000-0000-000061c5703c"
- (reference "J1") (unit 1) (value "Conn_02x04_Odd_Even") (footprint "Button_Switch_THT:SW_DIP_SPSTx04_Slide_9.78x12.34mm_W7.62mm_P2.54mm")
- )
- (path "/00000000-0000-0000-0000-000061cf4156"
- (reference "Q1") (unit 1) (value "MMBT5401") (footprint "Package_TO_SOT_SMD:SOT-23")
- )
- (path "/00000000-0000-0000-0000-000061d10698"
- (reference "Q2") (unit 1) (value "MMBT5401") (footprint "Package_TO_SOT_SMD:SOT-23")
- )
- (path "/00000000-0000-0000-0000-000061d1198d"
- (reference "Q3") (unit 1) (value "MMBT5401") (footprint "Package_TO_SOT_SMD:SOT-23")
- )
- (path "/00000000-0000-0000-0000-00005e865007"
- (reference "R1") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
- )
- (path "/00000000-0000-0000-0000-00005e838b64"
- (reference "R2") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
- )
- (path "/00000000-0000-0000-0000-00005e8827c0"
- (reference "R3") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
- )
- (path "/00000000-0000-0000-0000-00005e85bf4a"
- (reference "R4") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
- )
- (path "/00000000-0000-0000-0000-00005e8eb7eb"
- (reference "R5") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
- )
- (path "/00000000-0000-0000-0000-00005e8827a7"
- (reference "R6") (unit 1) (value "330") (footprint "Resistor_SMD:R_0402_1005Metric")
- )
- (path "/00000000-0000-0000-0000-00005e83b63c"
- (reference "R7") (unit 1) (value "330") (footprint "Resistor_SMD:R_0402_1005Metric")
- )
- (path "/00000000-0000-0000-0000-00005e8a7e17"
- (reference "R8") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
- )
- (path "/00000000-0000-0000-0000-00005e889540"
- (reference "R9") (unit 1) (value "330") (footprint "Resistor_SMD:R_0402_1005Metric")
- )
- (path "/00000000-0000-0000-0000-00005e961a7f"
- (reference "R10") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
- )
- (path "/00000000-0000-0000-0000-00005e962690"
- (reference "R11") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
- )
- (path "/00000000-0000-0000-0000-00005e962c13"
- (reference "R12") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
- )
- (path "/00000000-0000-0000-0000-00005e963026"
- (reference "R13") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0402_1005Metric")
- )
- (path "/00000000-0000-0000-0000-00005e9407f3"
- (reference "R14") (unit 1) (value "330") (footprint "Resistor_SMD:R_0402_1005Metric")
- )
- (path "/00000000-0000-0000-0000-000061bf978d/00000000-0000-0000-0000-00005e733708"
- (reference "R15") (unit 1) (value "5.1k") (footprint "Resistor_SMD:R_0402_1005Metric")
- )
- (path "/00000000-0000-0000-0000-000061bf978d/00000000-0000-0000-0000-00005e79f20f"
- (reference "R16") (unit 1) (value "5.1k") (footprint "Resistor_SMD:R_0402_1005Metric")
- )
- (path "/00000000-0000-0000-0000-000061bf978d/00000000-0000-0000-0000-00005e5fd9c5"
- (reference "R17") (unit 1) (value "4.7k") (footprint "Resistor_SMD:R_0402_1005Metric")
- )
- (path "/00000000-0000-0000-0000-00005e91843a"
- (reference "S1") (unit 1) (value "CK_1101M2S3CQE2") (footprint "Button_Switch_THT:SW_CK_1101M2S3CQE2")
- )
- (path "/00000000-0000-0000-0000-000061ba7315"
- (reference "SW1") (unit 1) (value "SW_DPST_x2") (footprint "sm6uax:SW_Push_1P1T_NO_CK_K2-1102SP-C4SC-04")
- )
- (path "/00000000-0000-0000-0000-000061be2ab1"
- (reference "SW2") (unit 1) (value "SW_DPST_x2") (footprint "sm6uax:SW_Push_1P1T_NO_CK_K2-1102SP-C4SC-04")
- )
- (path "/00000000-0000-0000-0000-00005e81c2bb"
- (reference "U1") (unit 1) (value "8051") (footprint "Package_DIP:DIP-40_W15.24mm_ZIF_Socket_Aries_40-6554-10")
- )
- (path "/00000000-0000-0000-0000-00005e81dcb8"
- (reference "U2") (unit 1) (value "SN74LS373N") (footprint "Package_DIP:DIP-20_W7.62mm")
- )
- (path "/00000000-0000-0000-0000-00005e824c31"
- (reference "U3") (unit 1) (value "AT28C256-15PU") (footprint "Package_DIP:DIP-28_W15.24mm_Socket")
- )
- (path "/00000000-0000-0000-0000-000061bf978d/00000000-0000-0000-0000-00005e95f9cd"
- (reference "U4") (unit 1) (value "USBLC6-2SC6") (footprint "Package_TO_SOT_SMD:SOT-23-6")
- )
- (path "/00000000-0000-0000-0000-000061bf978d/00000000-0000-0000-0000-00005e5d03c7"
- (reference "U5") (unit 1) (value "CP2102N-A01-GQFN28") (footprint "Package_DFN_QFN:QFN-28-1EP_5x5mm_P0.5mm_EP3.35x3.35mm")
- )
- (path "/00000000-0000-0000-0000-000061bf978d/00000000-0000-0000-0000-00005e68a6b6"
- (reference "USB1") (unit 1) (value "HRO-TYPE-C-31-M-12") (footprint "sm6uax:HRO-TYPE-C-31-M-12")
- )
- (path "/00000000-0000-0000-0000-00005e8234fd"
- (reference "X1") (unit 1) (value "11.0592 MHz") (footprint "Oscillator:Oscillator_SMD_EuroQuartz_XO53-4Pin_5.0x3.2mm")
- )
- )
- )
|