123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220 |
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
- "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
- <!-- Generated by graphviz version 9.0.0 (20230911.1827)
- -->
- <!-- Title: protodot Pages: 1 -->
- <svg width="1285pt" height="2507pt"
- viewBox="0.00 0.00 1285.00 2506.75" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
- <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 2502.75)">
- <title>protodot</title>
- <g id="a_graph0"><a xlink:title="sys">
- <text text-anchor="middle" x="638.5" y="-6.45" font-family="Times New Roman,serif" font-size="14.00">sys</text>
- </a>
- </g>
- <!-- Node_Ja_151 -->
- <g id="node1" class="node">
- <title>Node_Ja_151</title>
- <g id="a_node1"><a xlink:title="sys.dev.eth.rmii">
- <polygon fill="#fffaf0" stroke="none" points="534,-431.75 534,-481.75 599,-481.75 599,-431.75 534,-431.75"/>
- <polygon fill="#e31a1c" stroke="none" points="535,-464.75 535,-480.75 598,-480.75 598,-464.75 535,-464.75"/>
- <text text-anchor="start" x="578.75" y="-470.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">rmii</text>
- <text text-anchor="start" x="540.88" y="-453.25" font-family="Ubuntu" font-size="10.00">1</text>
- <text text-anchor="start" x="550" y="-453.25" font-family="Ubuntu" font-size="10.00">mdc</text>
- <polygon fill="#a6cee3" stroke="none" points="573,-448.75 573,-464.75 598,-464.75 598,-448.75 573,-448.75"/>
- <text text-anchor="start" x="575" y="-454.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <text text-anchor="start" x="540.88" y="-437.25" font-family="Ubuntu" font-size="10.00">2</text>
- <text text-anchor="start" x="550" y="-437.25" font-family="Ubuntu" font-size="10.00">mdio</text>
- <polygon fill="#a6cee3" stroke="none" points="573,-432.75 573,-448.75 598,-448.75 598,-432.75 573,-432.75"/>
- <text text-anchor="start" x="575" y="-438.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <polygon fill="none" stroke="black" points="534,-431.75 534,-481.75 599,-481.75 599,-431.75 534,-431.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_150 -->
- <g id="node2" class="node">
- <title>Node_Ja_150</title>
- <g id="a_node2"><a xlink:title="sys.dev.eth.spi">
- <polygon fill="#fffaf0" stroke="none" points="502.5,-787.75 502.5,-869.75 630.5,-869.75 630.5,-787.75 502.5,-787.75"/>
- <polygon fill="#e31a1c" stroke="none" points="503.5,-852.75 503.5,-868.75 629.5,-868.75 629.5,-852.75 503.5,-852.75"/>
- <text text-anchor="start" x="614" y="-858.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">spi</text>
- <text text-anchor="start" x="509.38" y="-841.25" font-family="Ubuntu" font-size="10.00">1</text>
- <text text-anchor="start" x="518.5" y="-841.25" font-family="Ubuntu" font-size="10.00">cs</text>
- <polygon fill="#a6cee3" stroke="none" points="545.5,-836.75 545.5,-852.75 629.5,-852.75 629.5,-836.75 545.5,-836.75"/>
- <text text-anchor="start" x="606.5" y="-842.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <text text-anchor="start" x="509.38" y="-825.25" font-family="Ubuntu" font-size="10.00">2</text>
- <text text-anchor="start" x="518.25" y="-825.25" font-family="Ubuntu" font-size="10.00">speed</text>
- <polygon fill="#a6cee3" stroke="none" points="545.5,-820.75 545.5,-836.75 629.5,-836.75 629.5,-820.75 545.5,-820.75"/>
- <text text-anchor="start" x="601.25" y="-826.25" font-family="Ubuntu" font-style="italic" font-size="10.00">uint32</text>
- <text text-anchor="start" x="509.38" y="-809.25" font-family="Ubuntu" font-size="10.00">3</text>
- <text text-anchor="start" x="518.5" y="-809.25" font-family="Ubuntu" font-size="10.00">intr</text>
- <polygon fill="#a6cee3" stroke="none" points="545.5,-804.75 545.5,-820.75 629.5,-820.75 629.5,-804.75 545.5,-804.75"/>
- <text text-anchor="start" x="606.5" y="-810.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <text text-anchor="start" x="509.38" y="-793.25" font-family="Ubuntu" font-size="10.00">4</text>
- <text text-anchor="start" x="518.5" y="-793.25" font-family="Ubuntu" font-size="10.00">host</text>
- <polygon fill="#b2df8a" stroke="none" points="545.5,-788.75 545.5,-804.75 629.5,-804.75 629.5,-788.75 545.5,-788.75"/>
- <text text-anchor="start" x="547.38" y="-794.25" font-family="Ubuntu" text-decoration="underline" font-size="10.00">dev.common.hosts</text>
- <polygon fill="none" stroke="black" points="502.5,-787.75 502.5,-869.75 630.5,-869.75 630.5,-787.75 502.5,-787.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_102 -->
- <g id="node51" class="node">
- <title>Node_Ja_102</title>
- <g id="a_node51"><a xlink:title="hosts">
- <polygon fill="#b2df8a" stroke="none" points="709.5,-1109.75 709.5,-1175.75 769.5,-1175.75 769.5,-1109.75 709.5,-1109.75"/>
- <polygon fill="#33a02c" stroke="none" points="710.5,-1158.75 710.5,-1174.75 768.5,-1174.75 768.5,-1158.75 710.5,-1158.75"/>
- <text text-anchor="start" x="712.5" y="-1164.25" font-family="Ubuntu" font-size="10.00">enum </text>
- <text text-anchor="start" x="739.5" y="-1164.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">hosts</text>
- <polygon fill="#b2df8a" stroke="none" points="710.5,-1142.75 710.5,-1158.75 748.5,-1158.75 748.5,-1142.75 710.5,-1142.75"/>
- <text text-anchor="start" x="712.5" y="-1147.25" font-family="Ubuntu" font-size="10.00">NONE</text>
- <polygon fill="#b2df8a" stroke="none" points="748.5,-1142.75 748.5,-1158.75 768.5,-1158.75 768.5,-1142.75 748.5,-1142.75"/>
- <text text-anchor="start" x="750.5" y="-1147.25" font-family="Ubuntu" font-size="10.00">0</text>
- <polygon fill="#b2df8a" stroke="none" points="710.5,-1126.75 710.5,-1142.75 748.5,-1142.75 748.5,-1126.75 710.5,-1126.75"/>
- <text text-anchor="start" x="712.5" y="-1131.25" font-family="Ubuntu" font-size="10.00">Host0</text>
- <polygon fill="#b2df8a" stroke="none" points="748.5,-1126.75 748.5,-1142.75 768.5,-1142.75 768.5,-1126.75 748.5,-1126.75"/>
- <text text-anchor="start" x="750.5" y="-1131.25" font-family="Ubuntu" font-size="10.00">1</text>
- <polygon fill="#b2df8a" stroke="none" points="710.5,-1110.75 710.5,-1126.75 748.5,-1126.75 748.5,-1110.75 710.5,-1110.75"/>
- <text text-anchor="start" x="712.5" y="-1115.25" font-family="Ubuntu" font-size="10.00">Host1</text>
- <polygon fill="#b2df8a" stroke="none" points="748.5,-1110.75 748.5,-1126.75 768.5,-1126.75 768.5,-1110.75 748.5,-1110.75"/>
- <text text-anchor="start" x="750.5" y="-1115.25" font-family="Ubuntu" font-size="10.00">2</text>
- <polygon fill="none" stroke="black" points="709.5,-1109.75 709.5,-1175.75 769.5,-1175.75 769.5,-1109.75 709.5,-1109.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_150->Node_Ja_102 -->
- <g id="edge56" class="edge">
- <title>Node_Ja_150:e->Node_Ja_102</title>
- <g id="a_edge56"><a xlink:title="Ja_150 --> Ja_102">
- <path fill="none" stroke="#008000" d="M630.5,-796.75C698.1,-796.75 646.74,-1038.47 681,-1096.75 684.32,-1102.4 688.61,-1107.63 693.36,-1112.38"/>
- <polygon fill="#008000" stroke="#008000" points="690.8,-1114.79 700.56,-1118.91 695.5,-1109.6 690.8,-1114.79"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_118 -->
- <g id="node3" class="node">
- <title>Node_Ja_118</title>
- <g id="a_node3"><a xlink:title="sys.dac.control.Item">
- <polygon fill="#fffaf0" stroke="none" points="845,-1763.75 845,-1865.75 948,-1865.75 948,-1763.75 845,-1763.75"/>
- <polygon fill="#e31a1c" stroke="none" points="846,-1848.75 846,-1864.75 947,-1864.75 947,-1848.75 846,-1848.75"/>
- <text text-anchor="start" x="922.5" y="-1854.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Item</text>
- <polygon fill="#fdbf6f" stroke="none" points="846,-1832.75 846,-1848.75 947,-1848.75 947,-1832.75 846,-1832.75"/>
- <text text-anchor="start" x="848" y="-1837.25" font-family="Ubuntu" font-size="10.00">item_type</text>
- <polygon fill="#fdbf6f" stroke="none" points="846,-1816.75 846,-1832.75 850,-1832.75 850,-1816.75 846,-1816.75"/>
- <text text-anchor="start" x="851.88" y="-1821.25" font-family="Ubuntu" font-size="10.00">1</text>
- <text text-anchor="start" x="861" y="-1821.25" font-family="Ubuntu" font-size="10.00">reg_action</text>
- <polygon fill="#fb9a99" stroke="none" points="916,-1816.75 916,-1832.75 947,-1832.75 947,-1816.75 916,-1816.75"/>
- <text text-anchor="start" x="926.25" y="-1822.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Reg</text>
- <polygon fill="#fdbf6f" stroke="none" points="846,-1800.75 846,-1816.75 850,-1816.75 850,-1800.75 846,-1800.75"/>
- <text text-anchor="start" x="851.88" y="-1805.25" font-family="Ubuntu" font-size="10.00">2</text>
- <text text-anchor="start" x="861" y="-1805.25" font-family="Ubuntu" font-size="10.00">gpio_action</text>
- <polygon fill="#fb9a99" stroke="none" points="916,-1800.75 916,-1816.75 947,-1816.75 947,-1800.75 916,-1800.75"/>
- <text text-anchor="start" x="924.75" y="-1806.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Gpio</text>
- <polygon fill="#fdbf6f" stroke="none" points="846,-1784.75 846,-1800.75 850,-1800.75 850,-1784.75 846,-1784.75"/>
- <text text-anchor="start" x="851.88" y="-1789.25" font-family="Ubuntu" font-size="10.00">3</text>
- <text text-anchor="start" x="860.88" y="-1789.25" font-family="Ubuntu" font-size="10.00">delay_action</text>
- <polygon fill="#fb9a99" stroke="none" points="916,-1784.75 916,-1800.75 947,-1800.75 947,-1784.75 916,-1784.75"/>
- <text text-anchor="start" x="918" y="-1790.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Delay</text>
- <polygon fill="#fdbf6f" stroke="none" points="846,-1768.75 846,-1784.75 850,-1784.75 850,-1768.75 846,-1768.75"/>
- <text text-anchor="start" x="851.88" y="-1773.25" font-family="Ubuntu" font-size="10.00">4</text>
- <text text-anchor="start" x="861" y="-1773.25" font-family="Ubuntu" font-size="10.00">regs_action</text>
- <polygon fill="#fb9a99" stroke="none" points="916,-1768.75 916,-1784.75 947,-1784.75 947,-1768.75 916,-1768.75"/>
- <text text-anchor="start" x="921" y="-1774.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Regs</text>
- <polygon fill="#fdbf6f" stroke="none" points="846,-1764.75 846,-1768.75 947,-1768.75 947,-1764.75 846,-1764.75"/>
- <polygon fill="none" stroke="black" points="845,-1763.75 845,-1865.75 948,-1865.75 948,-1763.75 845,-1763.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_123 -->
- <g id="node13" class="node">
- <title>Node_Ja_123</title>
- <g id="a_node13"><a xlink:title="sys.dac.control.Delay">
- <polygon fill="#fffaf0" stroke="none" points="1010.5,-1737.75 1010.5,-1771.75 1076.5,-1771.75 1076.5,-1737.75 1010.5,-1737.75"/>
- <polygon fill="#e31a1c" stroke="none" points="1011.5,-1754.75 1011.5,-1770.75 1075.5,-1770.75 1075.5,-1754.75 1011.5,-1754.75"/>
- <text text-anchor="start" x="1046.5" y="-1760.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Delay</text>
- <text text-anchor="start" x="1017.38" y="-1743.25" font-family="Ubuntu" font-size="10.00">1</text>
- <text text-anchor="start" x="1026.25" y="-1743.25" font-family="Ubuntu" font-size="10.00">delay</text>
- <polygon fill="#a6cee3" stroke="none" points="1050.5,-1738.75 1050.5,-1754.75 1075.5,-1754.75 1075.5,-1738.75 1050.5,-1738.75"/>
- <text text-anchor="start" x="1052.5" y="-1744.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int64</text>
- <polygon fill="none" stroke="black" points="1010.5,-1737.75 1010.5,-1771.75 1076.5,-1771.75 1076.5,-1737.75 1010.5,-1737.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_118->Node_Ja_123 -->
- <g id="edge42" class="edge">
- <title>Node_Ja_118:e->Node_Ja_123:header</title>
- <g id="a_edge42"><a xlink:title="Ja_118 --> Ja_123">
- <path fill="none" stroke="#000000" d="M948.5,-1792.75C974.81,-1792.75 979.08,-1770.59 999.19,-1764.36"/>
- <polygon fill="#000000" stroke="#000000" points="999.6,-1767.84 1009,-1762.96 998.61,-1760.91 999.6,-1767.84"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_122 -->
- <g id="node20" class="node">
- <title>Node_Ja_122</title>
- <g id="a_node20"><a xlink:title="sys.dac.control.Gpio">
- <polygon fill="#fffaf0" stroke="none" points="1012,-1797.75 1012,-1847.75 1075,-1847.75 1075,-1797.75 1012,-1797.75"/>
- <polygon fill="#e31a1c" stroke="none" points="1013,-1830.75 1013,-1846.75 1074,-1846.75 1074,-1830.75 1013,-1830.75"/>
- <text text-anchor="start" x="1051.75" y="-1836.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Gpio</text>
- <text text-anchor="start" x="1018.88" y="-1819.25" font-family="Ubuntu" font-size="10.00">1</text>
- <text text-anchor="start" x="1028" y="-1819.25" font-family="Ubuntu" font-size="10.00">gpio</text>
- <polygon fill="#a6cee3" stroke="none" points="1049,-1814.75 1049,-1830.75 1074,-1830.75 1074,-1814.75 1049,-1814.75"/>
- <text text-anchor="start" x="1051" y="-1820.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <text text-anchor="start" x="1018.88" y="-1803.25" font-family="Ubuntu" font-size="10.00">2</text>
- <text text-anchor="start" x="1027.75" y="-1803.25" font-family="Ubuntu" font-size="10.00">level</text>
- <polygon fill="#b2df8a" stroke="none" points="1049,-1798.75 1049,-1814.75 1074,-1814.75 1074,-1798.75 1049,-1798.75"/>
- <text text-anchor="start" x="1060.75" y="-1804.25" font-family="Ubuntu" text-decoration="underline" font-size="10.00">Lvl</text>
- <polygon fill="none" stroke="black" points="1012,-1797.75 1012,-1847.75 1075,-1847.75 1075,-1797.75 1012,-1797.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_118->Node_Ja_122 -->
- <g id="edge39" class="edge">
- <title>Node_Ja_118:e->Node_Ja_122:header</title>
- <g id="a_edge39"><a xlink:title="Ja_118 --> Ja_122">
- <path fill="none" stroke="#000000" d="M948.5,-1808.75C975.27,-1808.75 979.66,-1831.11 1000.31,-1837.22"/>
- <polygon fill="#000000" stroke="#000000" points="999.62,-1840.66 1010,-1838.55 1000.57,-1833.72 999.62,-1840.66"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_120 -->
- <g id="node36" class="node">
- <title>Node_Ja_120</title>
- <g id="a_node36"><a xlink:title="sys.dac.control.Regs">
- <polygon fill="#fffaf0" stroke="none" points="1003,-1661.75 1003,-1711.75 1084,-1711.75 1084,-1661.75 1003,-1661.75"/>
- <polygon fill="#e31a1c" stroke="none" points="1004,-1694.75 1004,-1710.75 1083,-1710.75 1083,-1694.75 1004,-1694.75"/>
- <text text-anchor="start" x="1057" y="-1700.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Regs</text>
- <text text-anchor="start" x="1025.88" y="-1683.25" font-family="Ubuntu" font-size="10.00">1</text>
- <text text-anchor="start" x="1035" y="-1683.25" font-family="Ubuntu" font-size="10.00">reg</text>
- <polygon fill="#a6cee3" stroke="none" points="1053,-1678.75 1053,-1694.75 1083,-1694.75 1083,-1678.75 1053,-1678.75"/>
- <text text-anchor="start" x="1054.88" y="-1684.25" font-family="Ubuntu" font-style="italic" font-size="10.00">uint32</text>
- <text text-anchor="start" x="1005.75" y="-1667.25" font-family="Ubuntu" font-size="10.00">[...]</text>
- <text text-anchor="start" x="1025.88" y="-1667.25" font-family="Ubuntu" font-size="10.00">2</text>
- <text text-anchor="start" x="1034.75" y="-1667.25" font-family="Ubuntu" font-size="10.00">vals</text>
- <polygon fill="#a6cee3" stroke="none" points="1053,-1662.75 1053,-1678.75 1083,-1678.75 1083,-1662.75 1053,-1662.75"/>
- <text text-anchor="start" x="1054.88" y="-1668.25" font-family="Ubuntu" font-style="italic" font-size="10.00">uint32</text>
- <polygon fill="none" stroke="black" points="1003,-1661.75 1003,-1711.75 1084,-1711.75 1084,-1661.75 1003,-1661.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_118->Node_Ja_120 -->
- <g id="edge27" class="edge">
- <title>Node_Ja_118:e->Node_Ja_120:header</title>
- <g id="a_edge27"><a xlink:title="Ja_118 --> Ja_120">
- <path fill="none" stroke="#000000" d="M948.5,-1776.75C984.76,-1776.75 966.97,-1718.05 991.41,-1705.21"/>
- <polygon fill="#000000" stroke="#000000" points="992.02,-1708.66 1001.02,-1703.08 990.5,-1701.83 992.02,-1708.66"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_119 -->
- <g id="node42" class="node">
- <title>Node_Ja_119</title>
- <g id="a_node42"><a xlink:title="sys.dac.control.Reg">
- <polygon fill="#fffaf0" stroke="none" points="1007,-1877.75 1007,-1943.75 1080,-1943.75 1080,-1877.75 1007,-1877.75"/>
- <polygon fill="#e31a1c" stroke="none" points="1008,-1926.75 1008,-1942.75 1079,-1942.75 1079,-1926.75 1008,-1926.75"/>
- <text text-anchor="start" x="1058.25" y="-1932.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Reg</text>
- <text text-anchor="start" x="1013.88" y="-1915.25" font-family="Ubuntu" font-size="10.00">1</text>
- <text text-anchor="start" x="1023" y="-1915.25" font-family="Ubuntu" font-size="10.00">reg</text>
- <polygon fill="#a6cee3" stroke="none" points="1049,-1910.75 1049,-1926.75 1079,-1926.75 1079,-1910.75 1049,-1910.75"/>
- <text text-anchor="start" x="1050.88" y="-1916.25" font-family="Ubuntu" font-style="italic" font-size="10.00">uint32</text>
- <text text-anchor="start" x="1013.88" y="-1899.25" font-family="Ubuntu" font-size="10.00">2</text>
- <text text-anchor="start" x="1023" y="-1899.25" font-family="Ubuntu" font-size="10.00">val</text>
- <polygon fill="#a6cee3" stroke="none" points="1049,-1894.75 1049,-1910.75 1079,-1910.75 1079,-1894.75 1049,-1894.75"/>
- <text text-anchor="start" x="1050.88" y="-1900.25" font-family="Ubuntu" font-style="italic" font-size="10.00">uint32</text>
- <text text-anchor="start" x="1013.88" y="-1883.25" font-family="Ubuntu" font-size="10.00">3</text>
- <text text-anchor="start" x="1023" y="-1883.25" font-family="Ubuntu" font-size="10.00">mode</text>
- <polygon fill="#b2df8a" stroke="none" points="1049,-1878.75 1049,-1894.75 1079,-1894.75 1079,-1878.75 1049,-1878.75"/>
- <text text-anchor="start" x="1053.75" y="-1884.25" font-family="Ubuntu" text-decoration="underline" font-size="10.00">Mode</text>
- <polygon fill="none" stroke="black" points="1007,-1877.75 1007,-1943.75 1080,-1943.75 1080,-1877.75 1007,-1877.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_118->Node_Ja_119 -->
- <g id="edge41" class="edge">
- <title>Node_Ja_118:e->Node_Ja_119:header</title>
- <g id="a_edge41"><a xlink:title="Ja_118 --> Ja_119">
- <path fill="none" stroke="#000000" d="M948.5,-1824.75C999.45,-1824.75 958.78,-1918.23 995.42,-1932.84"/>
- <polygon fill="#000000" stroke="#000000" points="994.56,-1936.24 1005.01,-1934.49 995.75,-1929.35 994.56,-1936.24"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_152 -->
- <g id="node4" class="node">
- <title>Node_Ja_152</title>
- <g id="a_node4"><a xlink:title="sys.dev.eth.config">
- <polygon fill="#fffaf0" stroke="none" points="287.5,-698.75 287.5,-800.75 426.5,-800.75 426.5,-698.75 287.5,-698.75"/>
- <polygon fill="#e31a1c" stroke="none" points="288.5,-783.75 288.5,-799.75 425.5,-799.75 425.5,-783.75 288.5,-783.75"/>
- <text text-anchor="start" x="394.25" y="-789.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">config</text>
- <text text-anchor="start" x="294.38" y="-772.25" font-family="Ubuntu" font-size="10.00">1</text>
- <text text-anchor="start" x="303.5" y="-772.25" font-family="Ubuntu" font-size="10.00">type</text>
- <polygon fill="#b2df8a" stroke="none" points="341.5,-767.75 341.5,-783.75 425.5,-783.75 425.5,-767.75 341.5,-767.75"/>
- <text text-anchor="start" x="343.38" y="-773.25" font-family="Ubuntu" text-decoration="underline" font-size="10.00">dev.common.types</text>
- <text text-anchor="start" x="294.38" y="-756.25" font-family="Ubuntu" font-size="10.00">2</text>
- <text text-anchor="start" x="303.12" y="-756.25" font-family="Ubuntu" font-size="10.00">common</text>
- <polygon fill="#fb9a99" stroke="none" points="341.5,-751.75 341.5,-767.75 425.5,-767.75 425.5,-751.75 341.5,-751.75"/>
- <text text-anchor="start" x="383.75" y="-757.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">common</text>
- <polygon fill="#fdbf6f" stroke="none" points="288.5,-735.75 288.5,-751.75 425.5,-751.75 425.5,-735.75 288.5,-735.75"/>
- <text text-anchor="start" x="290.5" y="-740.25" font-family="Ubuntu" font-size="10.00">ethType</text>
- <polygon fill="#fdbf6f" stroke="none" points="288.5,-719.75 288.5,-735.75 292.5,-735.75 292.5,-719.75 288.5,-719.75"/>
- <text text-anchor="start" x="294.38" y="-724.25" font-family="Ubuntu" font-size="10.00">3</text>
- <text text-anchor="start" x="303.5" y="-724.25" font-family="Ubuntu" font-size="10.00">spi</text>
- <polygon fill="#fb9a99" stroke="none" points="341.5,-719.75 341.5,-735.75 425.5,-735.75 425.5,-719.75 341.5,-719.75"/>
- <text text-anchor="start" x="410" y="-725.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">spi</text>
- <polygon fill="#fdbf6f" stroke="none" points="288.5,-703.75 288.5,-719.75 292.5,-719.75 292.5,-703.75 288.5,-703.75"/>
- <text text-anchor="start" x="294.38" y="-708.25" font-family="Ubuntu" font-size="10.00">4</text>
- <text text-anchor="start" x="303.5" y="-708.25" font-family="Ubuntu" font-size="10.00">rmii</text>
- <polygon fill="#fb9a99" stroke="none" points="341.5,-703.75 341.5,-719.75 425.5,-719.75 425.5,-703.75 341.5,-703.75"/>
- <text text-anchor="start" x="406.25" y="-709.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">rmii</text>
- <polygon fill="#fdbf6f" stroke="none" points="288.5,-699.75 288.5,-703.75 425.5,-703.75 425.5,-699.75 288.5,-699.75"/>
- <polygon fill="none" stroke="black" points="287.5,-698.75 287.5,-800.75 426.5,-800.75 426.5,-698.75 287.5,-698.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_152->Node_Ja_151 -->
- <g id="edge44" class="edge">
- <title>Node_Ja_152:e->Node_Ja_151:header</title>
- <g id="a_edge44"><a xlink:title="Ja_152 --> Ja_151">
- <path fill="none" stroke="#000000" d="M427,-711.75C527.18,-711.75 423.67,-571.55 488,-494.75 499.72,-480.76 507.6,-474.98 522.2,-473.3"/>
- <polygon fill="#000000" stroke="#000000" points="522.17,-476.81 531.99,-472.82 521.83,-469.82 522.17,-476.81"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_152->Node_Ja_150 -->
- <g id="edge19" class="edge">
- <title>Node_Ja_152:e->Node_Ja_150:header</title>
- <g id="a_edge19"><a xlink:title="Ja_152 --> Ja_150">
- <path fill="none" stroke="#000000" d="M427,-727.75C490.72,-727.75 441.58,-844.64 491.2,-859.26"/>
- <polygon fill="#000000" stroke="#000000" points="490.63,-862.71 501,-860.55 491.54,-855.77 490.63,-862.71"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_149 -->
- <g id="node41" class="node">
- <title>Node_Ja_149</title>
- <g id="a_node41"><a xlink:title="sys.dev.eth.common">
- <polygon fill="#fffaf0" stroke="none" points="516,-507.75 516,-573.75 617,-573.75 617,-507.75 516,-507.75"/>
- <polygon fill="#e31a1c" stroke="none" points="517,-556.75 517,-572.75 616,-572.75 616,-556.75 517,-556.75"/>
- <text text-anchor="start" x="574.25" y="-562.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">common</text>
- <text text-anchor="start" x="522.88" y="-545.25" font-family="Ubuntu" font-size="10.00">1</text>
- <text text-anchor="start" x="532" y="-545.25" font-family="Ubuntu" font-size="10.00">model</text>
- <polygon fill="#b2df8a" stroke="none" points="582,-540.75 582,-556.75 616,-556.75 616,-540.75 582,-540.75"/>
- <text text-anchor="start" x="583.62" y="-546.25" font-family="Ubuntu" text-decoration="underline" font-size="10.00">models</text>
- <text text-anchor="start" x="522.88" y="-529.25" font-family="Ubuntu" font-size="10.00">2</text>
- <text text-anchor="start" x="532" y="-529.25" font-family="Ubuntu" font-size="10.00">rst</text>
- <polygon fill="#a6cee3" stroke="none" points="582,-524.75 582,-540.75 616,-540.75 616,-524.75 582,-524.75"/>
- <text text-anchor="start" x="593" y="-530.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <text text-anchor="start" x="522.88" y="-513.25" font-family="Ubuntu" font-size="10.00">3</text>
- <text text-anchor="start" x="532" y="-513.25" font-family="Ubuntu" font-size="10.00">ethtmout_s</text>
- <polygon fill="#a6cee3" stroke="none" points="582,-508.75 582,-524.75 616,-524.75 616,-508.75 582,-508.75"/>
- <text text-anchor="start" x="587.75" y="-514.25" font-family="Ubuntu" font-style="italic" font-size="10.00">uint32</text>
- <polygon fill="none" stroke="black" points="516,-507.75 516,-573.75 617,-573.75 617,-507.75 516,-507.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_152->Node_Ja_149 -->
- <g id="edge18" class="edge">
- <title>Node_Ja_152:e->Node_Ja_149:header</title>
- <g id="a_edge18"><a xlink:title="Ja_152 --> Ja_149">
- <path fill="none" stroke="#000000" d="M427,-759.75C518.09,-759.75 428.71,-581.15 504.29,-565.8"/>
- <polygon fill="#000000" stroke="#000000" points="504.36,-569.31 513.99,-564.89 503.71,-562.34 504.36,-569.31"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_100 -->
- <g id="node46" class="node">
- <title>Node_Ja_100</title>
- <g id="a_node46"><a xlink:title="types">
- <polygon fill="#b2df8a" stroke="none" points="536.5,-1797.75 536.5,-1879.75 596.5,-1879.75 596.5,-1797.75 536.5,-1797.75"/>
- <polygon fill="#33a02c" stroke="none" points="537.5,-1862.75 537.5,-1878.75 595.5,-1878.75 595.5,-1862.75 537.5,-1862.75"/>
- <text text-anchor="start" x="539.12" y="-1868.25" font-family="Ubuntu" font-size="10.00">enum </text>
- <text text-anchor="start" x="566.12" y="-1868.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">types</text>
- <polygon fill="#b2df8a" stroke="none" points="537.5,-1846.75 537.5,-1862.75 586.5,-1862.75 586.5,-1846.75 537.5,-1846.75"/>
- <text text-anchor="start" x="539.5" y="-1851.25" font-family="Ubuntu" font-size="10.00">UNKNOWN</text>
- <polygon fill="#b2df8a" stroke="none" points="586.5,-1846.75 586.5,-1862.75 595.5,-1862.75 595.5,-1846.75 586.5,-1846.75"/>
- <text text-anchor="start" x="588.38" y="-1851.25" font-family="Ubuntu" font-size="10.00">0</text>
- <polygon fill="#b2df8a" stroke="none" points="537.5,-1830.75 537.5,-1846.75 586.5,-1846.75 586.5,-1830.75 537.5,-1830.75"/>
- <text text-anchor="start" x="539.5" y="-1835.25" font-family="Ubuntu" font-size="10.00">SPI</text>
- <polygon fill="#b2df8a" stroke="none" points="586.5,-1830.75 586.5,-1846.75 595.5,-1846.75 595.5,-1830.75 586.5,-1830.75"/>
- <text text-anchor="start" x="588.38" y="-1835.25" font-family="Ubuntu" font-size="10.00">1</text>
- <polygon fill="#b2df8a" stroke="none" points="537.5,-1814.75 537.5,-1830.75 586.5,-1830.75 586.5,-1814.75 537.5,-1814.75"/>
- <text text-anchor="start" x="539.5" y="-1819.25" font-family="Ubuntu" font-size="10.00">I2C</text>
- <polygon fill="#b2df8a" stroke="none" points="586.5,-1814.75 586.5,-1830.75 595.5,-1830.75 595.5,-1814.75 586.5,-1814.75"/>
- <text text-anchor="start" x="588.38" y="-1819.25" font-family="Ubuntu" font-size="10.00">2</text>
- <polygon fill="#b2df8a" stroke="none" points="537.5,-1798.75 537.5,-1814.75 586.5,-1814.75 586.5,-1798.75 537.5,-1798.75"/>
- <text text-anchor="start" x="539.5" y="-1803.25" font-family="Ubuntu" font-size="10.00">RMII</text>
- <polygon fill="#b2df8a" stroke="none" points="586.5,-1798.75 586.5,-1814.75 595.5,-1814.75 595.5,-1798.75 586.5,-1798.75"/>
- <text text-anchor="start" x="588.38" y="-1803.25" font-family="Ubuntu" font-size="10.00">3</text>
- <polygon fill="none" stroke="black" points="536.5,-1797.75 536.5,-1879.75 596.5,-1879.75 596.5,-1797.75 536.5,-1797.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_152->Node_Ja_100 -->
- <g id="edge59" class="edge">
- <title>Node_Ja_152:e->Node_Ja_100</title>
- <g id="a_edge59"><a xlink:title="Ja_152 --> Ja_100">
- <path fill="none" stroke="#008000" d="M427,-775.75C539.32,-775.75 434.19,-1686.16 488,-1784.75 495.14,-1797.83 506.97,-1808.42 519.26,-1816.65"/>
- <polygon fill="#008000" stroke="#008000" points="517.05,-1819.4 527.4,-1821.69 520.74,-1813.45 517.05,-1819.4"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_111 -->
- <g id="node5" class="node">
- <title>Node_Ja_111</title>
- <g id="a_node5"><a xlink:title="sys.gpio.ExpSPI">
- <polygon fill="#fffaf0" stroke="none" points="502.5,-1117.75 502.5,-1183.75 630.5,-1183.75 630.5,-1117.75 502.5,-1117.75"/>
- <polygon fill="#e31a1c" stroke="none" points="503.5,-1166.75 503.5,-1182.75 629.5,-1182.75 629.5,-1166.75 503.5,-1166.75"/>
- <text text-anchor="start" x="595.25" y="-1172.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">ExpSPI</text>
- <text text-anchor="start" x="509.38" y="-1155.25" font-family="Ubuntu" font-size="10.00">1</text>
- <text text-anchor="start" x="518.25" y="-1155.25" font-family="Ubuntu" font-size="10.00">speed</text>
- <polygon fill="#a6cee3" stroke="none" points="545.5,-1150.75 545.5,-1166.75 629.5,-1166.75 629.5,-1150.75 545.5,-1150.75"/>
- <text text-anchor="start" x="601.25" y="-1156.25" font-family="Ubuntu" font-style="italic" font-size="10.00">uint32</text>
- <text text-anchor="start" x="509.38" y="-1139.25" font-family="Ubuntu" font-size="10.00">2</text>
- <text text-anchor="start" x="518.5" y="-1139.25" font-family="Ubuntu" font-size="10.00">host</text>
- <polygon fill="#b2df8a" stroke="none" points="545.5,-1134.75 545.5,-1150.75 629.5,-1150.75 629.5,-1134.75 545.5,-1134.75"/>
- <text text-anchor="start" x="547.38" y="-1140.25" font-family="Ubuntu" text-decoration="underline" font-size="10.00">dev.common.hosts</text>
- <text text-anchor="start" x="509.38" y="-1123.25" font-family="Ubuntu" font-size="10.00">3</text>
- <text text-anchor="start" x="518.5" y="-1123.25" font-family="Ubuntu" font-size="10.00">cs</text>
- <polygon fill="#a6cee3" stroke="none" points="545.5,-1118.75 545.5,-1134.75 629.5,-1134.75 629.5,-1118.75 545.5,-1118.75"/>
- <text text-anchor="start" x="606.5" y="-1124.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <polygon fill="none" stroke="black" points="502.5,-1117.75 502.5,-1183.75 630.5,-1183.75 630.5,-1117.75 502.5,-1117.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_111->Node_Ja_102 -->
- <g id="edge40" class="edge">
- <title>Node_Ja_111:e->Node_Ja_102</title>
- <g id="a_edge40"><a xlink:title="Ja_111 --> Ja_102">
- <path fill="none" stroke="#008000" d="M630.5,-1142.75C649.97,-1142.75 671.42,-1142.75 690.03,-1142.75"/>
- <polygon fill="#008000" stroke="#008000" points="690,-1146.25 700,-1142.75 690,-1139.25 690,-1146.25"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_116 -->
- <g id="node6" class="node">
- <title>Node_Ja_116</title>
- <g id="a_node6"><a xlink:title="Type">
- <polygon fill="#b2df8a" stroke="none" points="857.5,-1891.75 857.5,-2021.75 935.5,-2021.75 935.5,-1891.75 857.5,-1891.75"/>
- <polygon fill="#33a02c" stroke="none" points="858.5,-2004.75 858.5,-2020.75 934.5,-2020.75 934.5,-2004.75 858.5,-2004.75"/>
- <text text-anchor="start" x="882.25" y="-2010.25" font-family="Ubuntu" font-size="10.00">enum </text>
- <text text-anchor="start" x="909.25" y="-2010.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Type</text>
- <polygon fill="#b2df8a" stroke="none" points="858.5,-1988.75 858.5,-2004.75 925.5,-2004.75 925.5,-1988.75 858.5,-1988.75"/>
- <text text-anchor="start" x="860.5" y="-1993.25" font-family="Ubuntu" font-size="10.00">INIT</text>
- <polygon fill="#b2df8a" stroke="none" points="925.5,-1988.75 925.5,-2004.75 934.5,-2004.75 934.5,-1988.75 925.5,-1988.75"/>
- <text text-anchor="start" x="927.38" y="-1993.25" font-family="Ubuntu" font-size="10.00">0</text>
- <polygon fill="#b2df8a" stroke="none" points="858.5,-1972.75 858.5,-1988.75 925.5,-1988.75 925.5,-1972.75 858.5,-1972.75"/>
- <text text-anchor="start" x="860.5" y="-1977.25" font-family="Ubuntu" font-size="10.00">POWER_ON</text>
- <polygon fill="#b2df8a" stroke="none" points="925.5,-1972.75 925.5,-1988.75 934.5,-1988.75 934.5,-1972.75 925.5,-1972.75"/>
- <text text-anchor="start" x="927.38" y="-1977.25" font-family="Ubuntu" font-size="10.00">1</text>
- <polygon fill="#b2df8a" stroke="none" points="858.5,-1956.75 858.5,-1972.75 925.5,-1972.75 925.5,-1956.75 858.5,-1956.75"/>
- <text text-anchor="start" x="860.5" y="-1961.25" font-family="Ubuntu" font-size="10.00">POWER_OFF</text>
- <polygon fill="#b2df8a" stroke="none" points="925.5,-1956.75 925.5,-1972.75 934.5,-1972.75 934.5,-1956.75 925.5,-1956.75"/>
- <text text-anchor="start" x="927.38" y="-1961.25" font-family="Ubuntu" font-size="10.00">2</text>
- <polygon fill="#b2df8a" stroke="none" points="858.5,-1940.75 858.5,-1956.75 925.5,-1956.75 925.5,-1940.75 858.5,-1940.75"/>
- <text text-anchor="start" x="860.5" y="-1945.25" font-family="Ubuntu" font-size="10.00">SPEAKER_ON</text>
- <polygon fill="#b2df8a" stroke="none" points="925.5,-1940.75 925.5,-1956.75 934.5,-1956.75 934.5,-1940.75 925.5,-1940.75"/>
- <text text-anchor="start" x="927.38" y="-1945.25" font-family="Ubuntu" font-size="10.00">3</text>
- <polygon fill="#b2df8a" stroke="none" points="858.5,-1924.75 858.5,-1940.75 925.5,-1940.75 925.5,-1924.75 858.5,-1924.75"/>
- <text text-anchor="start" x="860.5" y="-1929.25" font-family="Ubuntu" font-size="10.00">SPEAKER_OFF</text>
- <polygon fill="#b2df8a" stroke="none" points="925.5,-1924.75 925.5,-1940.75 934.5,-1940.75 934.5,-1924.75 925.5,-1924.75"/>
- <text text-anchor="start" x="927.38" y="-1929.25" font-family="Ubuntu" font-size="10.00">4</text>
- <polygon fill="#b2df8a" stroke="none" points="858.5,-1908.75 858.5,-1924.75 925.5,-1924.75 925.5,-1908.75 858.5,-1908.75"/>
- <text text-anchor="start" x="860.5" y="-1913.25" font-family="Ubuntu" font-size="10.00">HEADSET_ON</text>
- <polygon fill="#b2df8a" stroke="none" points="925.5,-1908.75 925.5,-1924.75 934.5,-1924.75 934.5,-1908.75 925.5,-1908.75"/>
- <text text-anchor="start" x="927.38" y="-1913.25" font-family="Ubuntu" font-size="10.00">5</text>
- <polygon fill="#b2df8a" stroke="none" points="858.5,-1892.75 858.5,-1908.75 925.5,-1908.75 925.5,-1892.75 858.5,-1892.75"/>
- <text text-anchor="start" x="860.5" y="-1897.25" font-family="Ubuntu" font-size="10.00">HEADSET_OFF</text>
- <polygon fill="#b2df8a" stroke="none" points="925.5,-1892.75 925.5,-1908.75 934.5,-1908.75 934.5,-1892.75 925.5,-1892.75"/>
- <text text-anchor="start" x="927.38" y="-1897.25" font-family="Ubuntu" font-size="10.00">6</text>
- <polygon fill="none" stroke="black" points="857.5,-1891.75 857.5,-2021.75 935.5,-2021.75 935.5,-1891.75 857.5,-1891.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_121 -->
- <g id="node7" class="node">
- <title>Node_Ja_121</title>
- <g id="a_node7"><a xlink:title="Lvl">
- <polygon fill="#b2df8a" stroke="none" points="1136,-1769.75 1136,-1835.75 1269,-1835.75 1269,-1769.75 1136,-1769.75"/>
- <polygon fill="#33a02c" stroke="none" points="1137,-1818.75 1137,-1834.75 1268,-1834.75 1268,-1818.75 1137,-1818.75"/>
- <text text-anchor="start" x="1225.5" y="-1824.25" font-family="Ubuntu" font-size="10.00">enum </text>
- <text text-anchor="start" x="1252.5" y="-1824.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Lvl</text>
- <polygon fill="#b2df8a" stroke="none" points="1137,-1802.75 1137,-1818.75 1259,-1818.75 1259,-1802.75 1137,-1802.75"/>
- <text text-anchor="start" x="1138.75" y="-1807.25" font-family="Ubuntu" font-size="10.00">ACTION_LEVEL_UNDEFINED</text>
- <polygon fill="#b2df8a" stroke="none" points="1259,-1802.75 1259,-1818.75 1268,-1818.75 1268,-1802.75 1259,-1802.75"/>
- <text text-anchor="start" x="1260.88" y="-1807.25" font-family="Ubuntu" font-size="10.00">0</text>
- <polygon fill="#b2df8a" stroke="none" points="1137,-1786.75 1137,-1802.75 1259,-1802.75 1259,-1786.75 1137,-1786.75"/>
- <text text-anchor="start" x="1139" y="-1791.25" font-family="Ubuntu" font-size="10.00">ACTION_LEVEL_0</text>
- <polygon fill="#b2df8a" stroke="none" points="1259,-1786.75 1259,-1802.75 1268,-1802.75 1268,-1786.75 1259,-1786.75"/>
- <text text-anchor="start" x="1260.88" y="-1791.25" font-family="Ubuntu" font-size="10.00">1</text>
- <polygon fill="#b2df8a" stroke="none" points="1137,-1770.75 1137,-1786.75 1259,-1786.75 1259,-1770.75 1137,-1770.75"/>
- <text text-anchor="start" x="1139" y="-1775.25" font-family="Ubuntu" font-size="10.00">ACTION_LEVEL_1</text>
- <polygon fill="#b2df8a" stroke="none" points="1259,-1770.75 1259,-1786.75 1268,-1786.75 1268,-1770.75 1259,-1770.75"/>
- <text text-anchor="start" x="1260.88" y="-1775.25" font-family="Ubuntu" font-size="10.00">2</text>
- <polygon fill="none" stroke="black" points="1136,-1769.75 1136,-1835.75 1269,-1835.75 1269,-1769.75 1136,-1769.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_154 -->
- <g id="node8" class="node">
- <title>Node_Ja_154</title>
- <g id="a_node8"><a xlink:title="sys.SPIBus">
- <polygon fill="#fffaf0" stroke="none" points="295.5,-2396.75 295.5,-2494.75 418.5,-2494.75 418.5,-2396.75 295.5,-2396.75"/>
- <polygon fill="#e31a1c" stroke="none" points="296.5,-2477.75 296.5,-2493.75 417.5,-2493.75 417.5,-2477.75 296.5,-2477.75"/>
- <text text-anchor="start" x="382.5" y="-2483.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">SPIBus</text>
- <text text-anchor="start" x="302.38" y="-2466.25" font-family="Ubuntu" font-size="10.00">1</text>
- <text text-anchor="start" x="311.38" y="-2466.25" font-family="Ubuntu" font-size="10.00">mosi</text>
- <polygon fill="#a6cee3" stroke="none" points="333.5,-2461.75 333.5,-2477.75 417.5,-2477.75 417.5,-2461.75 333.5,-2461.75"/>
- <text text-anchor="start" x="394.5" y="-2467.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <text text-anchor="start" x="302.38" y="-2450.25" font-family="Ubuntu" font-size="10.00">2</text>
- <text text-anchor="start" x="311.38" y="-2450.25" font-family="Ubuntu" font-size="10.00">miso</text>
- <polygon fill="#a6cee3" stroke="none" points="333.5,-2445.75 333.5,-2461.75 417.5,-2461.75 417.5,-2445.75 333.5,-2445.75"/>
- <text text-anchor="start" x="394.5" y="-2451.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <text text-anchor="start" x="302.38" y="-2434.25" font-family="Ubuntu" font-size="10.00">3</text>
- <text text-anchor="start" x="311.5" y="-2434.25" font-family="Ubuntu" font-size="10.00">clk</text>
- <polygon fill="#a6cee3" stroke="none" points="333.5,-2429.75 333.5,-2445.75 417.5,-2445.75 417.5,-2429.75 333.5,-2429.75"/>
- <text text-anchor="start" x="394.5" y="-2435.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <text text-anchor="start" x="302.38" y="-2418.25" font-family="Ubuntu" font-size="10.00">4</text>
- <text text-anchor="start" x="311.5" y="-2418.25" font-family="Ubuntu" font-size="10.00">dc</text>
- <polygon fill="#a6cee3" stroke="none" points="333.5,-2413.75 333.5,-2429.75 417.5,-2429.75 417.5,-2413.75 333.5,-2413.75"/>
- <text text-anchor="start" x="394.5" y="-2419.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <text text-anchor="start" x="302.38" y="-2402.25" font-family="Ubuntu" font-size="10.00">5</text>
- <text text-anchor="start" x="311.5" y="-2402.25" font-family="Ubuntu" font-size="10.00">host</text>
- <polygon fill="#b2df8a" stroke="none" points="333.5,-2397.75 333.5,-2413.75 417.5,-2413.75 417.5,-2397.75 333.5,-2397.75"/>
- <text text-anchor="start" x="335.38" y="-2403.25" font-family="Ubuntu" text-decoration="underline" font-size="10.00">dev.common.hosts</text>
- <polygon fill="none" stroke="black" points="295.5,-2396.75 295.5,-2494.75 418.5,-2494.75 418.5,-2396.75 295.5,-2396.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_154->Node_Ja_102 -->
- <g id="edge6" class="edge">
- <title>Node_Ja_154:e->Node_Ja_102</title>
- <g id="a_edge6"><a xlink:title="Ja_154 --> Ja_102">
- <path fill="none" stroke="#008000" d="M419,-2405.75C451.06,-2405.75 456.29,-2422.03 488,-2426.75 557.02,-2437.02 594.95,-2475.37 645,-2426.75 694.36,-2378.81 650.3,-1250.33 681,-1188.75 684.11,-1182.52 688.5,-1176.86 693.48,-1171.8"/>
- <polygon fill="#008000" stroke="#008000" points="695.51,-1174.69 700.58,-1165.38 690.81,-1169.49 695.51,-1174.69"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_112 -->
- <g id="node9" class="node">
- <title>Node_Ja_112</title>
- <g id="a_node9"><a xlink:title="sys.gpio.Exp">
- <polygon fill="#fffaf0" stroke="none" points="310,-1134.75 310,-1300.75 404,-1300.75 404,-1134.75 310,-1134.75"/>
- <polygon fill="#e31a1c" stroke="none" points="311,-1283.75 311,-1299.75 403,-1299.75 403,-1283.75 311,-1283.75"/>
- <text text-anchor="start" x="384.5" y="-1289.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Exp</text>
- <text text-anchor="start" x="316.88" y="-1272.25" font-family="Ubuntu" font-size="10.00">1</text>
- <text text-anchor="start" x="325.88" y="-1272.25" font-family="Ubuntu" font-size="10.00">model</text>
- <polygon fill="#b2df8a" stroke="none" points="354,-1267.75 354,-1283.75 403,-1283.75 403,-1267.75 354,-1267.75"/>
- <text text-anchor="start" x="356" y="-1273.25" font-family="Ubuntu" text-decoration="underline" font-size="10.00">ExpModels</text>
- <text text-anchor="start" x="316.88" y="-1256.25" font-family="Ubuntu" font-size="10.00">2</text>
- <text text-anchor="start" x="326" y="-1256.25" font-family="Ubuntu" font-size="10.00">addr</text>
- <polygon fill="#a6cee3" stroke="none" points="354,-1251.75 354,-1267.75 403,-1267.75 403,-1251.75 354,-1251.75"/>
- <text text-anchor="start" x="380" y="-1257.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <polygon fill="#fdbf6f" stroke="none" points="311,-1235.75 311,-1251.75 403,-1251.75 403,-1235.75 311,-1235.75"/>
- <text text-anchor="start" x="313" y="-1240.25" font-family="Ubuntu" font-size="10.00">ExpType</text>
- <polygon fill="#fdbf6f" stroke="none" points="311,-1219.75 311,-1235.75 315,-1235.75 315,-1219.75 311,-1219.75"/>
- <text text-anchor="start" x="316.88" y="-1224.25" font-family="Ubuntu" font-size="10.00">3</text>
- <text text-anchor="start" x="326" y="-1224.25" font-family="Ubuntu" font-size="10.00">i2c</text>
- <polygon fill="#fb9a99" stroke="none" points="354,-1219.75 354,-1235.75 403,-1235.75 403,-1219.75 354,-1219.75"/>
- <text text-anchor="start" x="368.75" y="-1225.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">ExpI2C</text>
- <polygon fill="#fdbf6f" stroke="none" points="311,-1203.75 311,-1219.75 315,-1219.75 315,-1203.75 311,-1203.75"/>
- <text text-anchor="start" x="316.88" y="-1208.25" font-family="Ubuntu" font-size="10.00">4</text>
- <text text-anchor="start" x="326" y="-1208.25" font-family="Ubuntu" font-size="10.00">spi</text>
- <polygon fill="#fb9a99" stroke="none" points="354,-1203.75 354,-1219.75 403,-1219.75 403,-1203.75 354,-1203.75"/>
- <text text-anchor="start" x="368.75" y="-1209.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">ExpSPI</text>
- <polygon fill="#fdbf6f" stroke="none" points="311,-1199.75 311,-1203.75 403,-1203.75 403,-1199.75 311,-1199.75"/>
- <text text-anchor="start" x="316.88" y="-1188.25" font-family="Ubuntu" font-size="10.00">5</text>
- <text text-anchor="start" x="326" y="-1188.25" font-family="Ubuntu" font-size="10.00">base</text>
- <polygon fill="#a6cee3" stroke="none" points="354,-1183.75 354,-1199.75 403,-1199.75 403,-1183.75 354,-1183.75"/>
- <text text-anchor="start" x="380" y="-1189.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <text text-anchor="start" x="316.88" y="-1172.25" font-family="Ubuntu" font-size="10.00">6</text>
- <text text-anchor="start" x="326" y="-1172.25" font-family="Ubuntu" font-size="10.00">count</text>
- <polygon fill="#a6cee3" stroke="none" points="354,-1167.75 354,-1183.75 403,-1183.75 403,-1167.75 354,-1167.75"/>
- <text text-anchor="start" x="380" y="-1173.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <text text-anchor="start" x="316.88" y="-1156.25" font-family="Ubuntu" font-size="10.00">7</text>
- <text text-anchor="start" x="326" y="-1156.25" font-family="Ubuntu" font-size="10.00">intr</text>
- <polygon fill="#a6cee3" stroke="none" points="354,-1151.75 354,-1167.75 403,-1167.75 403,-1151.75 354,-1151.75"/>
- <text text-anchor="start" x="380" y="-1157.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <text text-anchor="start" x="316.88" y="-1140.25" font-family="Ubuntu" font-size="10.00">8</text>
- <text text-anchor="start" x="326" y="-1140.25" font-family="Ubuntu" font-size="10.00">ena</text>
- <polygon fill="#fb9a99" stroke="none" points="354,-1135.75 354,-1151.75 403,-1151.75 403,-1135.75 354,-1135.75"/>
- <text text-anchor="start" x="385.25" y="-1141.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">PIN</text>
- <polygon fill="none" stroke="black" points="310,-1134.75 310,-1300.75 404,-1300.75 404,-1134.75 310,-1134.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_112->Node_Ja_111 -->
- <g id="edge37" class="edge">
- <title>Node_Ja_112:e->Node_Ja_111:header</title>
- <g id="a_edge37"><a xlink:title="Ja_112 --> Ja_111">
- <path fill="none" stroke="#000000" d="M404,-1211.75C446.75,-1211.75 454.57,-1180.84 491.32,-1175.52"/>
- <polygon fill="#000000" stroke="#000000" points="491.26,-1179.04 500.99,-1174.85 490.77,-1172.05 491.26,-1179.04"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_110 -->
- <g id="node12" class="node">
- <title>Node_Ja_110</title>
- <g id="a_node12"><a xlink:title="sys.gpio.ExpI2C">
- <polygon fill="#fffaf0" stroke="none" points="507,-1209.75 507,-1243.75 626,-1243.75 626,-1209.75 507,-1209.75"/>
- <polygon fill="#e31a1c" stroke="none" points="508,-1226.75 508,-1242.75 625,-1242.75 625,-1226.75 508,-1226.75"/>
- <text text-anchor="start" x="590.75" y="-1232.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">ExpI2C</text>
- <text text-anchor="start" x="513.88" y="-1215.25" font-family="Ubuntu" font-size="10.00">5</text>
- <text text-anchor="start" x="522.88" y="-1215.25" font-family="Ubuntu" font-size="10.00">port</text>
- <polygon fill="#b2df8a" stroke="none" points="542,-1210.75 542,-1226.75 625,-1226.75 625,-1210.75 542,-1210.75"/>
- <text text-anchor="start" x="543.75" y="-1216.25" font-family="Ubuntu" text-decoration="underline" font-size="10.00">dev.common.ports</text>
- <polygon fill="none" stroke="black" points="507,-1209.75 507,-1243.75 626,-1243.75 626,-1209.75 507,-1209.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_112->Node_Ja_110 -->
- <g id="edge60" class="edge">
- <title>Node_Ja_112:e->Node_Ja_110:header</title>
- <g id="a_edge60"><a xlink:title="Ja_112 --> Ja_110">
- <path fill="none" stroke="#000000" d="M404,-1227.75C445.74,-1227.75 458.66,-1233.6 495.45,-1234.6"/>
- <polygon fill="#000000" stroke="#000000" points="494.94,-1238.1 504.99,-1234.73 495.03,-1231.1 494.94,-1238.1"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_109 -->
- <g id="node17" class="node">
- <title>Node_Ja_109</title>
- <g id="a_node17"><a xlink:title="ExpModels">
- <polygon fill="#b2df8a" stroke="none" points="520,-1269.75 520,-1367.75 613,-1367.75 613,-1269.75 520,-1269.75"/>
- <polygon fill="#33a02c" stroke="none" points="521,-1350.75 521,-1366.75 612,-1366.75 612,-1350.75 521,-1350.75"/>
- <text text-anchor="start" x="532.75" y="-1356.25" font-family="Ubuntu" font-size="10.00">enum </text>
- <text text-anchor="start" x="559.75" y="-1356.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">ExpModels</text>
- <polygon fill="#b2df8a" stroke="none" points="521,-1334.75 521,-1350.75 603,-1350.75 603,-1334.75 521,-1334.75"/>
- <text text-anchor="start" x="522.62" y="-1339.25" font-family="Ubuntu" font-size="10.00">UNSPECIFIED_EXP</text>
- <polygon fill="#b2df8a" stroke="none" points="603,-1334.75 603,-1350.75 612,-1350.75 612,-1334.75 603,-1334.75"/>
- <text text-anchor="start" x="604.88" y="-1339.25" font-family="Ubuntu" font-size="10.00">0</text>
- <polygon fill="#b2df8a" stroke="none" points="521,-1318.75 521,-1334.75 603,-1334.75 603,-1318.75 521,-1318.75"/>
- <text text-anchor="start" x="523" y="-1323.25" font-family="Ubuntu" font-size="10.00">PCA9535</text>
- <polygon fill="#b2df8a" stroke="none" points="603,-1318.75 603,-1334.75 612,-1334.75 612,-1318.75 603,-1318.75"/>
- <text text-anchor="start" x="604.88" y="-1323.25" font-family="Ubuntu" font-size="10.00">1</text>
- <polygon fill="#b2df8a" stroke="none" points="521,-1302.75 521,-1318.75 603,-1318.75 603,-1302.75 521,-1302.75"/>
- <text text-anchor="start" x="523" y="-1307.25" font-family="Ubuntu" font-size="10.00">PCA85XX</text>
- <polygon fill="#b2df8a" stroke="none" points="603,-1302.75 603,-1318.75 612,-1318.75 612,-1302.75 603,-1302.75"/>
- <text text-anchor="start" x="604.88" y="-1307.25" font-family="Ubuntu" font-size="10.00">2</text>
- <polygon fill="#b2df8a" stroke="none" points="521,-1286.75 521,-1302.75 603,-1302.75 603,-1286.75 521,-1286.75"/>
- <text text-anchor="start" x="523" y="-1291.25" font-family="Ubuntu" font-size="10.00">MCP23017</text>
- <polygon fill="#b2df8a" stroke="none" points="603,-1286.75 603,-1302.75 612,-1302.75 612,-1286.75 603,-1286.75"/>
- <text text-anchor="start" x="604.88" y="-1291.25" font-family="Ubuntu" font-size="10.00">3</text>
- <polygon fill="#b2df8a" stroke="none" points="521,-1270.75 521,-1286.75 603,-1286.75 603,-1270.75 521,-1270.75"/>
- <text text-anchor="start" x="523" y="-1275.25" font-family="Ubuntu" font-size="10.00">MCP23S17</text>
- <polygon fill="#b2df8a" stroke="none" points="603,-1270.75 603,-1286.75 612,-1286.75 612,-1270.75 603,-1270.75"/>
- <text text-anchor="start" x="604.88" y="-1275.25" font-family="Ubuntu" font-size="10.00">4</text>
- <polygon fill="none" stroke="black" points="520,-1269.75 520,-1367.75 613,-1367.75 613,-1269.75 520,-1269.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_112->Node_Ja_109 -->
- <g id="edge1" class="edge">
- <title>Node_Ja_112:e->Node_Ja_109</title>
- <g id="a_edge1"><a xlink:title="Ja_112 --> Ja_109">
- <path fill="none" stroke="#008000" d="M404,-1275.75C436.8,-1275.75 472.13,-1284.14 501.36,-1293.5"/>
- <polygon fill="#008000" stroke="#008000" points="500.21,-1296.81 510.8,-1296.65 502.42,-1290.17 500.21,-1296.81"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_105 -->
- <g id="node18" class="node">
- <title>Node_Ja_105</title>
- <g id="a_node18"><a xlink:title="sys.gpio.PIN">
- <polygon fill="#fffaf0" stroke="none" points="705.5,-1033.75 705.5,-1083.75 773.5,-1083.75 773.5,-1033.75 705.5,-1033.75"/>
- <polygon fill="#e31a1c" stroke="none" points="706.5,-1066.75 706.5,-1082.75 772.5,-1082.75 772.5,-1066.75 706.5,-1066.75"/>
- <text text-anchor="start" x="754.75" y="-1072.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">PIN</text>
- <text text-anchor="start" x="712.38" y="-1055.25" font-family="Ubuntu" font-size="10.00">1</text>
- <text text-anchor="start" x="721.5" y="-1055.25" font-family="Ubuntu" font-size="10.00">pin</text>
- <polygon fill="#a6cee3" stroke="none" points="742.5,-1050.75 742.5,-1066.75 772.5,-1066.75 772.5,-1050.75 742.5,-1050.75"/>
- <text text-anchor="start" x="749.5" y="-1056.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <text text-anchor="start" x="712.38" y="-1039.25" font-family="Ubuntu" font-size="10.00">2</text>
- <text text-anchor="start" x="721.25" y="-1039.25" font-family="Ubuntu" font-size="10.00">level</text>
- <polygon fill="#b2df8a" stroke="none" points="742.5,-1034.75 742.5,-1050.75 772.5,-1050.75 772.5,-1034.75 742.5,-1034.75"/>
- <text text-anchor="start" x="744.38" y="-1040.25" font-family="Ubuntu" text-decoration="underline" font-size="10.00">Levels</text>
- <polygon fill="none" stroke="black" points="705.5,-1033.75 705.5,-1083.75 773.5,-1083.75 773.5,-1033.75 705.5,-1033.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_112->Node_Ja_105 -->
- <g id="edge35" class="edge">
- <title>Node_Ja_112:e->Node_Ja_105:header</title>
- <g id="a_edge35"><a xlink:title="Ja_112 --> Ja_105">
- <path fill="none" stroke="#000000" d="M404,-1143.75C445.16,-1143.75 448.55,-1116.49 488,-1104.75 577.79,-1078.04 605.7,-1074.97 694.11,-1074.76"/>
- <polygon fill="#000000" stroke="#000000" points="693.99,-1078.26 703.99,-1074.75 693.98,-1071.26 693.99,-1078.26"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_136 -->
- <g id="node10" class="node">
- <title>Node_Ja_136</title>
- <g id="a_node10"><a xlink:title="sys.display.config">
- <polygon fill="#fffaf0" stroke="none" points="287.5,-1459.75 287.5,-1561.75 426.5,-1561.75 426.5,-1459.75 287.5,-1459.75"/>
- <polygon fill="#e31a1c" stroke="none" points="288.5,-1544.75 288.5,-1560.75 425.5,-1560.75 425.5,-1544.75 288.5,-1544.75"/>
- <text text-anchor="start" x="394.25" y="-1550.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">config</text>
- <text text-anchor="start" x="294.38" y="-1533.25" font-family="Ubuntu" font-size="10.00">1</text>
- <text text-anchor="start" x="303.5" y="-1533.25" font-family="Ubuntu" font-size="10.00">type</text>
- <polygon fill="#b2df8a" stroke="none" points="341.5,-1528.75 341.5,-1544.75 425.5,-1544.75 425.5,-1528.75 341.5,-1528.75"/>
- <text text-anchor="start" x="343.38" y="-1534.25" font-family="Ubuntu" text-decoration="underline" font-size="10.00">dev.common.types</text>
- <text text-anchor="start" x="294.38" y="-1517.25" font-family="Ubuntu" font-size="10.00">2</text>
- <text text-anchor="start" x="303.12" y="-1517.25" font-family="Ubuntu" font-size="10.00">common</text>
- <polygon fill="#fb9a99" stroke="none" points="341.5,-1512.75 341.5,-1528.75 425.5,-1528.75 425.5,-1512.75 341.5,-1512.75"/>
- <text text-anchor="start" x="383.75" y="-1518.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">common</text>
- <polygon fill="#fdbf6f" stroke="none" points="288.5,-1496.75 288.5,-1512.75 425.5,-1512.75 425.5,-1496.75 288.5,-1496.75"/>
- <text text-anchor="start" x="290.5" y="-1501.25" font-family="Ubuntu" font-size="10.00">dispType</text>
- <polygon fill="#fdbf6f" stroke="none" points="288.5,-1480.75 288.5,-1496.75 292.5,-1496.75 292.5,-1480.75 288.5,-1480.75"/>
- <text text-anchor="start" x="294.38" y="-1485.25" font-family="Ubuntu" font-size="10.00">3</text>
- <text text-anchor="start" x="303.5" y="-1485.25" font-family="Ubuntu" font-size="10.00">i2c</text>
- <polygon fill="#fb9a99" stroke="none" points="341.5,-1480.75 341.5,-1496.75 425.5,-1496.75 425.5,-1480.75 341.5,-1480.75"/>
- <text text-anchor="start" x="410" y="-1486.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">i2c</text>
- <polygon fill="#fdbf6f" stroke="none" points="288.5,-1464.75 288.5,-1480.75 292.5,-1480.75 292.5,-1464.75 288.5,-1464.75"/>
- <text text-anchor="start" x="294.38" y="-1469.25" font-family="Ubuntu" font-size="10.00">4</text>
- <text text-anchor="start" x="303.5" y="-1469.25" font-family="Ubuntu" font-size="10.00">spi</text>
- <polygon fill="#fb9a99" stroke="none" points="341.5,-1464.75 341.5,-1480.75 425.5,-1480.75 425.5,-1464.75 341.5,-1464.75"/>
- <text text-anchor="start" x="410" y="-1470.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">spi</text>
- <polygon fill="#fdbf6f" stroke="none" points="288.5,-1460.75 288.5,-1464.75 425.5,-1464.75 425.5,-1460.75 288.5,-1460.75"/>
- <polygon fill="none" stroke="black" points="287.5,-1459.75 287.5,-1561.75 426.5,-1561.75 426.5,-1459.75 287.5,-1459.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_132 -->
- <g id="node25" class="node">
- <title>Node_Ja_132</title>
- <g id="a_node25"><a xlink:title="sys.display.i2c">
- <polygon fill="#fffaf0" stroke="none" points="528,-1485.75 528,-1519.75 605,-1519.75 605,-1485.75 528,-1485.75"/>
- <polygon fill="#e31a1c" stroke="none" points="529,-1502.75 529,-1518.75 604,-1518.75 604,-1502.75 529,-1502.75"/>
- <text text-anchor="start" x="588.5" y="-1508.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">i2c</text>
- <text text-anchor="start" x="534.88" y="-1491.25" font-family="Ubuntu" font-size="10.00">1</text>
- <text text-anchor="start" x="543.62" y="-1491.25" font-family="Ubuntu" font-size="10.00">address</text>
- <polygon fill="#a6cee3" stroke="none" points="579,-1486.75 579,-1502.75 604,-1502.75 604,-1486.75 579,-1486.75"/>
- <text text-anchor="start" x="581" y="-1492.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <polygon fill="none" stroke="black" points="528,-1485.75 528,-1519.75 605,-1519.75 605,-1485.75 528,-1485.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_136->Node_Ja_132 -->
- <g id="edge29" class="edge">
- <title>Node_Ja_136:e->Node_Ja_132:header</title>
- <g id="a_edge29"><a xlink:title="Ja_136 --> Ja_132">
- <path fill="none" stroke="#000000" d="M427,-1488.75C468.62,-1488.75 479.85,-1506.97 516.01,-1510.25"/>
- <polygon fill="#000000" stroke="#000000" points="515.84,-1513.75 525.99,-1510.68 516.15,-1506.75 515.84,-1513.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_133 -->
- <g id="node38" class="node">
- <title>Node_Ja_133</title>
- <g id="a_node38"><a xlink:title="sys.display.spi">
- <polygon fill="#fffaf0" stroke="none" points="531,-1393.75 531,-1459.75 602,-1459.75 602,-1393.75 531,-1393.75"/>
- <polygon fill="#e31a1c" stroke="none" points="532,-1442.75 532,-1458.75 601,-1458.75 601,-1442.75 532,-1442.75"/>
- <text text-anchor="start" x="585.5" y="-1448.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">spi</text>
- <text text-anchor="start" x="537.88" y="-1431.25" font-family="Ubuntu" font-size="10.00">1</text>
- <text text-anchor="start" x="547" y="-1431.25" font-family="Ubuntu" font-size="10.00">cs</text>
- <polygon fill="#a6cee3" stroke="none" points="574,-1426.75 574,-1442.75 601,-1442.75 601,-1426.75 574,-1426.75"/>
- <text text-anchor="start" x="578" y="-1432.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <text text-anchor="start" x="537.88" y="-1415.25" font-family="Ubuntu" font-size="10.00">4</text>
- <text text-anchor="start" x="546.75" y="-1415.25" font-family="Ubuntu" font-size="10.00">speed</text>
- <polygon fill="#a6cee3" stroke="none" points="574,-1410.75 574,-1426.75 601,-1426.75 601,-1410.75 574,-1410.75"/>
- <text text-anchor="start" x="578" y="-1416.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <text text-anchor="start" x="537.88" y="-1399.25" font-family="Ubuntu" font-size="10.00">5</text>
- <text text-anchor="start" x="547" y="-1399.25" font-family="Ubuntu" font-size="10.00">mode</text>
- <polygon fill="#b2df8a" stroke="none" points="574,-1394.75 574,-1410.75 601,-1410.75 601,-1394.75 574,-1394.75"/>
- <text text-anchor="start" x="575.88" y="-1400.25" font-family="Ubuntu" text-decoration="underline" font-size="10.00">Mode</text>
- <polygon fill="none" stroke="black" points="531,-1393.75 531,-1459.75 602,-1459.75 602,-1393.75 531,-1393.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_136->Node_Ja_133 -->
- <g id="edge30" class="edge">
- <title>Node_Ja_136:e->Node_Ja_133:header</title>
- <g id="a_edge30"><a xlink:title="Ja_136 --> Ja_133">
- <path fill="none" stroke="#000000" d="M427,-1472.75C469.99,-1472.75 481.57,-1454.37 519.16,-1451.21"/>
- <polygon fill="#000000" stroke="#000000" points="519.14,-1454.71 528.99,-1450.81 518.85,-1447.72 519.14,-1454.71"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_136->Node_Ja_100 -->
- <g id="edge54" class="edge">
- <title>Node_Ja_136:e->Node_Ja_100</title>
- <g id="a_edge54"><a xlink:title="Ja_136 --> Ja_100">
- <path fill="none" stroke="#008000" d="M427,-1536.75C447.22,-1536.75 444.58,-1555.94 452,-1574.75 486.76,-1662.84 437.22,-1704.82 488,-1784.75 495.77,-1796.98 507.41,-1807.2 519.33,-1815.35"/>
- <polygon fill="#008000" stroke="#008000" points="517.28,-1818.19 527.6,-1820.62 521.04,-1812.29 517.28,-1818.19"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_135 -->
- <g id="node48" class="node">
- <title>Node_Ja_135</title>
- <g id="a_node48"><a xlink:title="sys.display.common">
- <polygon fill="#fffaf0" stroke="none" points="509,-1545.75 509,-1771.75 624,-1771.75 624,-1545.75 509,-1545.75"/>
- <polygon fill="#e31a1c" stroke="none" points="510,-1754.75 510,-1770.75 623,-1770.75 623,-1754.75 510,-1754.75"/>
- <text text-anchor="start" x="581.25" y="-1760.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">common</text>
- <text text-anchor="start" x="520.75" y="-1743.25" font-family="Ubuntu" font-size="10.00">1</text>
- <text text-anchor="start" x="530" y="-1743.25" font-family="Ubuntu" font-size="10.00">width</text>
- <polygon fill="#a6cee3" stroke="none" points="584,-1738.75 584,-1754.75 623,-1754.75 623,-1738.75 584,-1738.75"/>
- <text text-anchor="start" x="600" y="-1744.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <text text-anchor="start" x="520.75" y="-1727.25" font-family="Ubuntu" font-size="10.00">2</text>
- <text text-anchor="start" x="530" y="-1727.25" font-family="Ubuntu" font-size="10.00">height</text>
- <polygon fill="#a6cee3" stroke="none" points="584,-1722.75 584,-1738.75 623,-1738.75 623,-1722.75 584,-1722.75"/>
- <text text-anchor="start" x="600" y="-1728.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <text text-anchor="start" x="520.75" y="-1711.25" font-family="Ubuntu" font-size="10.00">3</text>
- <text text-anchor="start" x="530" y="-1711.25" font-family="Ubuntu" font-size="10.00">HFlip</text>
- <polygon fill="#a6cee3" stroke="none" points="584,-1706.75 584,-1722.75 623,-1722.75 623,-1706.75 584,-1706.75"/>
- <text text-anchor="start" x="603" y="-1712.25" font-family="Ubuntu" font-style="italic" font-size="10.00">bool</text>
- <text text-anchor="start" x="520.75" y="-1695.25" font-family="Ubuntu" font-size="10.00">4</text>
- <text text-anchor="start" x="530" y="-1695.25" font-family="Ubuntu" font-size="10.00">VFlip</text>
- <polygon fill="#a6cee3" stroke="none" points="584,-1690.75 584,-1706.75 623,-1706.75 623,-1690.75 584,-1690.75"/>
- <text text-anchor="start" x="603" y="-1696.25" font-family="Ubuntu" font-style="italic" font-size="10.00">bool</text>
- <text text-anchor="start" x="520.75" y="-1679.25" font-family="Ubuntu" font-size="10.00">5</text>
- <text text-anchor="start" x="530" y="-1679.25" font-family="Ubuntu" font-size="10.00">driver</text>
- <polygon fill="#b2df8a" stroke="none" points="584,-1674.75 584,-1690.75 623,-1690.75 623,-1674.75 584,-1674.75"/>
- <text text-anchor="start" x="591" y="-1680.25" font-family="Ubuntu" text-decoration="underline" font-size="10.00">Drivers</text>
- <text text-anchor="start" x="520.75" y="-1663.25" font-family="Ubuntu" font-size="10.00">6</text>
- <text text-anchor="start" x="530" y="-1663.25" font-family="Ubuntu" font-size="10.00">bitDepth</text>
- <polygon fill="#a6cee3" stroke="none" points="584,-1658.75 584,-1674.75 623,-1674.75 623,-1658.75 584,-1658.75"/>
- <text text-anchor="start" x="600" y="-1664.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <text text-anchor="start" x="520.75" y="-1647.25" font-family="Ubuntu" font-size="10.00">7</text>
- <text text-anchor="start" x="530" y="-1647.25" font-family="Ubuntu" font-size="10.00">back</text>
- <polygon fill="#a6cee3" stroke="none" points="584,-1642.75 584,-1658.75 623,-1658.75 623,-1642.75 584,-1642.75"/>
- <text text-anchor="start" x="600" y="-1648.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <text text-anchor="start" x="520.75" y="-1631.25" font-family="Ubuntu" font-size="10.00">8</text>
- <text text-anchor="start" x="530" y="-1631.25" font-family="Ubuntu" font-size="10.00">reset</text>
- <polygon fill="#a6cee3" stroke="none" points="584,-1626.75 584,-1642.75 623,-1642.75 623,-1626.75 584,-1626.75"/>
- <text text-anchor="start" x="600" y="-1632.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <text text-anchor="start" x="520.75" y="-1615.25" font-family="Ubuntu" font-size="10.00">9</text>
- <text text-anchor="start" x="530" y="-1615.25" font-family="Ubuntu" font-size="10.00">ready</text>
- <polygon fill="#a6cee3" stroke="none" points="584,-1610.75 584,-1626.75 623,-1626.75 623,-1610.75 584,-1610.75"/>
- <text text-anchor="start" x="600" y="-1616.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <text text-anchor="start" x="515.75" y="-1599.25" font-family="Ubuntu" font-size="10.00">10</text>
- <text text-anchor="start" x="530" y="-1599.25" font-family="Ubuntu" font-size="10.00">offsets</text>
- <polygon fill="#fb9a99" stroke="none" points="584,-1594.75 584,-1610.75 623,-1610.75 623,-1594.75 584,-1594.75"/>
- <text text-anchor="start" x="585.88" y="-1600.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Offsets</text>
- <text text-anchor="start" x="515.75" y="-1583.25" font-family="Ubuntu" font-size="10.00">11</text>
- <text text-anchor="start" x="530" y="-1583.25" font-family="Ubuntu" font-size="10.00">rotate</text>
- <polygon fill="#a6cee3" stroke="none" points="584,-1578.75 584,-1594.75 623,-1594.75 623,-1578.75 584,-1578.75"/>
- <text text-anchor="start" x="603" y="-1584.25" font-family="Ubuntu" font-style="italic" font-size="10.00">bool</text>
- <text text-anchor="start" x="515.75" y="-1567.25" font-family="Ubuntu" font-size="10.00">12</text>
- <text text-anchor="start" x="530" y="-1567.25" font-family="Ubuntu" font-size="10.00">invert</text>
- <polygon fill="#a6cee3" stroke="none" points="584,-1562.75 584,-1578.75 623,-1578.75 623,-1562.75 584,-1562.75"/>
- <text text-anchor="start" x="603" y="-1568.25" font-family="Ubuntu" font-style="italic" font-size="10.00">bool</text>
- <text text-anchor="start" x="515.75" y="-1551.25" font-family="Ubuntu" font-size="10.00">13</text>
- <text text-anchor="start" x="529.75" y="-1551.25" font-family="Ubuntu" font-size="10.00">colow_swap</text>
- <polygon fill="#a6cee3" stroke="none" points="584,-1546.75 584,-1562.75 623,-1562.75 623,-1546.75 584,-1546.75"/>
- <text text-anchor="start" x="603" y="-1552.25" font-family="Ubuntu" font-style="italic" font-size="10.00">bool</text>
- <polygon fill="none" stroke="black" points="509,-1545.75 509,-1771.75 624,-1771.75 624,-1545.75 509,-1545.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_136->Node_Ja_135 -->
- <g id="edge48" class="edge">
- <title>Node_Ja_136:e->Node_Ja_135:header</title>
- <g id="a_edge48"><a xlink:title="Ja_136 --> Ja_135">
- <path fill="none" stroke="#000000" d="M427,-1520.75C536.39,-1520.75 405.18,-1745.58 497.19,-1761.82"/>
- <polygon fill="#000000" stroke="#000000" points="496.74,-1765.3 506.99,-1762.63 497.31,-1758.32 496.74,-1765.3"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_143 -->
- <g id="node11" class="node">
- <title>Node_Ja_143</title>
- <g id="a_node11"><a xlink:title="sys.btns.Rotary">
- <polygon fill="#fffaf0" stroke="none" points="302.5,-902.75 302.5,-1016.75 411.5,-1016.75 411.5,-902.75 302.5,-902.75"/>
- <polygon fill="#e31a1c" stroke="none" points="303.5,-999.75 303.5,-1015.75 410.5,-1015.75 410.5,-999.75 303.5,-999.75"/>
- <text text-anchor="start" x="374.75" y="-1005.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Rotary</text>
- <text text-anchor="start" x="309.38" y="-988.25" font-family="Ubuntu" font-size="10.00">1</text>
- <text text-anchor="start" x="318.5" y="-988.25" font-family="Ubuntu" font-size="10.00">A</text>
- <polygon fill="#a6cee3" stroke="none" points="361.5,-983.75 361.5,-999.75 410.5,-999.75 410.5,-983.75 361.5,-983.75"/>
- <text text-anchor="start" x="387.5" y="-989.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <text text-anchor="start" x="309.38" y="-972.25" font-family="Ubuntu" font-size="10.00">2</text>
- <text text-anchor="start" x="318.5" y="-972.25" font-family="Ubuntu" font-size="10.00">B</text>
- <polygon fill="#a6cee3" stroke="none" points="361.5,-967.75 361.5,-983.75 410.5,-983.75 410.5,-967.75 361.5,-967.75"/>
- <text text-anchor="start" x="387.5" y="-973.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <text text-anchor="start" x="309.38" y="-956.25" font-family="Ubuntu" font-size="10.00">3</text>
- <text text-anchor="start" x="318.5" y="-956.25" font-family="Ubuntu" font-size="10.00">SW</text>
- <polygon fill="#a6cee3" stroke="none" points="361.5,-951.75 361.5,-967.75 410.5,-967.75 410.5,-951.75 361.5,-951.75"/>
- <text text-anchor="start" x="387.5" y="-957.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <text text-anchor="start" x="309.38" y="-940.25" font-family="Ubuntu" font-size="10.00">4</text>
- <text text-anchor="start" x="318.5" y="-940.25" font-family="Ubuntu" font-size="10.00">knobonly</text>
- <polygon fill="#fb9a99" stroke="none" points="361.5,-935.75 361.5,-951.75 410.5,-951.75 410.5,-935.75 361.5,-935.75"/>
- <text text-anchor="start" x="363.5" y="-941.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">KnobOnly</text>
- <text text-anchor="start" x="309.38" y="-924.25" font-family="Ubuntu" font-size="10.00">5</text>
- <text text-anchor="start" x="318.5" y="-924.25" font-family="Ubuntu" font-size="10.00">volume</text>
- <polygon fill="#a6cee3" stroke="none" points="361.5,-919.75 361.5,-935.75 410.5,-935.75 410.5,-919.75 361.5,-919.75"/>
- <text text-anchor="start" x="390.5" y="-925.25" font-family="Ubuntu" font-style="italic" font-size="10.00">bool</text>
- <text text-anchor="start" x="309.38" y="-908.25" font-family="Ubuntu" font-size="10.00">6</text>
- <text text-anchor="start" x="318.38" y="-908.25" font-family="Ubuntu" font-size="10.00">longpress</text>
- <polygon fill="#a6cee3" stroke="none" points="361.5,-903.75 361.5,-919.75 410.5,-919.75 410.5,-903.75 361.5,-903.75"/>
- <text text-anchor="start" x="390.5" y="-909.25" font-family="Ubuntu" font-style="italic" font-size="10.00">bool</text>
- <polygon fill="none" stroke="black" points="302.5,-902.75 302.5,-1016.75 411.5,-1016.75 411.5,-902.75 302.5,-902.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_142 -->
- <g id="node49" class="node">
- <title>Node_Ja_142</title>
- <g id="a_node49"><a xlink:title="sys.btns.KnobOnly">
- <polygon fill="#fffaf0" stroke="none" points="524.5,-895.75 524.5,-945.75 608.5,-945.75 608.5,-895.75 524.5,-895.75"/>
- <polygon fill="#e31a1c" stroke="none" points="525.5,-928.75 525.5,-944.75 607.5,-944.75 607.5,-928.75 525.5,-928.75"/>
- <text text-anchor="start" x="560.5" y="-934.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">KnobOnly</text>
- <text text-anchor="start" x="531.38" y="-917.25" font-family="Ubuntu" font-size="10.00">1</text>
- <text text-anchor="start" x="540.5" y="-917.25" font-family="Ubuntu" font-size="10.00">enable</text>
- <polygon fill="#a6cee3" stroke="none" points="582.5,-912.75 582.5,-928.75 607.5,-928.75 607.5,-912.75 582.5,-912.75"/>
- <text text-anchor="start" x="587.5" y="-918.25" font-family="Ubuntu" font-style="italic" font-size="10.00">bool</text>
- <text text-anchor="start" x="531.38" y="-901.25" font-family="Ubuntu" font-size="10.00">2</text>
- <text text-anchor="start" x="540.25" y="-901.25" font-family="Ubuntu" font-size="10.00">delay_ms</text>
- <polygon fill="#a6cee3" stroke="none" points="582.5,-896.75 582.5,-912.75 607.5,-912.75 607.5,-896.75 582.5,-896.75"/>
- <text text-anchor="start" x="584.5" y="-902.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <polygon fill="none" stroke="black" points="524.5,-895.75 524.5,-945.75 608.5,-945.75 608.5,-895.75 524.5,-895.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_143->Node_Ja_142 -->
- <g id="edge24" class="edge">
- <title>Node_Ja_143:e->Node_Ja_142:header</title>
- <g id="a_edge24"><a xlink:title="Ja_143 --> Ja_142">
- <path fill="none" stroke="#000000" d="M412,-943.75C458.09,-943.75 472.19,-937.83 513.15,-936.88"/>
- <polygon fill="#000000" stroke="#000000" points="513.03,-940.38 522.99,-936.77 512.95,-933.38 513.03,-940.38"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_101 -->
- <g id="node52" class="node">
- <title>Node_Ja_101</title>
- <g id="a_node52"><a xlink:title="ports">
- <polygon fill="#b2df8a" stroke="none" points="703.5,-1201.75 703.5,-1267.75 775.5,-1267.75 775.5,-1201.75 703.5,-1201.75"/>
- <polygon fill="#33a02c" stroke="none" points="704.5,-1250.75 704.5,-1266.75 774.5,-1266.75 774.5,-1250.75 704.5,-1250.75"/>
- <text text-anchor="start" x="719.25" y="-1256.25" font-family="Ubuntu" font-size="10.00">enum </text>
- <text text-anchor="start" x="746.25" y="-1256.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">ports</text>
- <polygon fill="#b2df8a" stroke="none" points="704.5,-1234.75 704.5,-1250.75 765.5,-1250.75 765.5,-1234.75 704.5,-1234.75"/>
- <text text-anchor="start" x="706.5" y="-1239.25" font-family="Ubuntu" font-size="10.00">UNSPECIFIED</text>
- <polygon fill="#b2df8a" stroke="none" points="765.5,-1234.75 765.5,-1250.75 774.5,-1250.75 774.5,-1234.75 765.5,-1234.75"/>
- <text text-anchor="start" x="767.38" y="-1239.25" font-family="Ubuntu" font-size="10.00">0</text>
- <polygon fill="#b2df8a" stroke="none" points="704.5,-1218.75 704.5,-1234.75 765.5,-1234.75 765.5,-1218.75 704.5,-1218.75"/>
- <text text-anchor="start" x="706.5" y="-1223.25" font-family="Ubuntu" font-size="10.00">SYSTEM</text>
- <polygon fill="#b2df8a" stroke="none" points="765.5,-1218.75 765.5,-1234.75 774.5,-1234.75 774.5,-1218.75 765.5,-1218.75"/>
- <text text-anchor="start" x="767.38" y="-1223.25" font-family="Ubuntu" font-size="10.00">1</text>
- <polygon fill="#b2df8a" stroke="none" points="704.5,-1202.75 704.5,-1218.75 765.5,-1218.75 765.5,-1202.75 704.5,-1202.75"/>
- <text text-anchor="start" x="706.5" y="-1207.25" font-family="Ubuntu" font-size="10.00">DAC</text>
- <polygon fill="#b2df8a" stroke="none" points="765.5,-1202.75 765.5,-1218.75 774.5,-1218.75 774.5,-1202.75 765.5,-1202.75"/>
- <text text-anchor="start" x="767.38" y="-1207.25" font-family="Ubuntu" font-size="10.00">2</text>
- <polygon fill="none" stroke="black" points="703.5,-1201.75 703.5,-1267.75 775.5,-1267.75 775.5,-1201.75 703.5,-1201.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_110->Node_Ja_101 -->
- <g id="edge4" class="edge">
- <title>Node_Ja_110:e->Node_Ja_101</title>
- <g id="a_edge4"><a xlink:title="Ja_110 --> Ja_101">
- <path fill="none" stroke="#008000" d="M626.5,-1218.75C645.44,-1218.75 666.01,-1221.02 684.28,-1223.85"/>
- <polygon fill="#008000" stroke="#008000" points="683.69,-1227.3 694.13,-1225.48 684.83,-1220.39 683.69,-1227.3"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_113 -->
- <g id="node14" class="node">
- <title>Node_Ja_113</title>
- <g id="a_node14"><a xlink:title="I2CPortEnum">
- <polygon fill="#b2df8a" stroke="none" points="689,-2355.75 689,-2421.75 790,-2421.75 790,-2355.75 689,-2355.75"/>
- <polygon fill="#33a02c" stroke="none" points="690,-2404.75 690,-2420.75 789,-2420.75 789,-2404.75 690,-2404.75"/>
- <text text-anchor="start" x="697.75" y="-2410.25" font-family="Ubuntu" font-size="10.00">enum </text>
- <text text-anchor="start" x="724.75" y="-2410.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">I2CPortEnum</text>
- <polygon fill="#b2df8a" stroke="none" points="690,-2388.75 690,-2404.75 780,-2404.75 780,-2388.75 690,-2388.75"/>
- <text text-anchor="start" x="691.88" y="-2393.25" font-family="Ubuntu" font-size="10.00">UNSPECIFIED_PORT</text>
- <polygon fill="#b2df8a" stroke="none" points="780,-2388.75 780,-2404.75 789,-2404.75 789,-2388.75 780,-2388.75"/>
- <text text-anchor="start" x="781.88" y="-2393.25" font-family="Ubuntu" font-size="10.00">0</text>
- <polygon fill="#b2df8a" stroke="none" points="690,-2372.75 690,-2388.75 780,-2388.75 780,-2372.75 690,-2372.75"/>
- <text text-anchor="start" x="692" y="-2377.25" font-family="Ubuntu" font-size="10.00">PORT0</text>
- <polygon fill="#b2df8a" stroke="none" points="780,-2372.75 780,-2388.75 789,-2388.75 789,-2372.75 780,-2372.75"/>
- <text text-anchor="start" x="781.88" y="-2377.25" font-family="Ubuntu" font-size="10.00">1</text>
- <polygon fill="#b2df8a" stroke="none" points="690,-2356.75 690,-2372.75 780,-2372.75 780,-2356.75 690,-2356.75"/>
- <text text-anchor="start" x="692" y="-2361.25" font-family="Ubuntu" font-size="10.00">PORT1</text>
- <polygon fill="#b2df8a" stroke="none" points="780,-2356.75 780,-2372.75 789,-2372.75 789,-2356.75 780,-2356.75"/>
- <text text-anchor="start" x="781.88" y="-2361.25" font-family="Ubuntu" font-size="10.00">2</text>
- <polygon fill="none" stroke="black" points="689,-2355.75 689,-2421.75 790,-2421.75 790,-2355.75 689,-2355.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_155 -->
- <g id="node15" class="node">
- <title>Node_Ja_155</title>
- <g id="a_node15"><a xlink:title="LEDStripType">
- <polygon fill="#b2df8a" stroke="none" points="518.5,-971.75 518.5,-1053.75 614.5,-1053.75 614.5,-971.75 518.5,-971.75"/>
- <polygon fill="#33a02c" stroke="none" points="519.5,-1036.75 519.5,-1052.75 613.5,-1052.75 613.5,-1036.75 519.5,-1036.75"/>
- <text text-anchor="start" x="521.12" y="-1042.25" font-family="Ubuntu" font-size="10.00">enum </text>
- <text text-anchor="start" x="548.12" y="-1042.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">LEDStripType</text>
- <polygon fill="#b2df8a" stroke="none" points="519.5,-1020.75 519.5,-1036.75 593.5,-1036.75 593.5,-1020.75 519.5,-1020.75"/>
- <text text-anchor="start" x="521.5" y="-1025.25" font-family="Ubuntu" font-size="10.00">LS_UNKNOWN</text>
- <polygon fill="#b2df8a" stroke="none" points="593.5,-1020.75 593.5,-1036.75 613.5,-1036.75 613.5,-1020.75 593.5,-1020.75"/>
- <text text-anchor="start" x="595.5" y="-1025.25" font-family="Ubuntu" font-size="10.00">0</text>
- <polygon fill="#b2df8a" stroke="none" points="519.5,-1004.75 519.5,-1020.75 593.5,-1020.75 593.5,-1004.75 519.5,-1004.75"/>
- <text text-anchor="start" x="521.5" y="-1009.25" font-family="Ubuntu" font-size="10.00">LS_WS2812</text>
- <polygon fill="#b2df8a" stroke="none" points="593.5,-1004.75 593.5,-1020.75 613.5,-1020.75 613.5,-1004.75 593.5,-1004.75"/>
- <text text-anchor="start" x="595.5" y="-1009.25" font-family="Ubuntu" font-size="10.00">1</text>
- <polygon fill="#b2df8a" stroke="none" points="519.5,-988.75 519.5,-1004.75 593.5,-1004.75 593.5,-988.75 519.5,-988.75"/>
- <text text-anchor="start" x="521.5" y="-993.25" font-family="Ubuntu" font-size="10.00">LS_SK6812</text>
- <polygon fill="#b2df8a" stroke="none" points="593.5,-988.75 593.5,-1004.75 613.5,-1004.75 613.5,-988.75 593.5,-988.75"/>
- <text text-anchor="start" x="595.5" y="-993.25" font-family="Ubuntu" font-size="10.00">2</text>
- <polygon fill="#b2df8a" stroke="none" points="519.5,-972.75 519.5,-988.75 593.5,-988.75 593.5,-972.75 519.5,-972.75"/>
- <text text-anchor="start" x="521.5" y="-977.25" font-family="Ubuntu" font-size="10.00">LS_APA106</text>
- <polygon fill="#b2df8a" stroke="none" points="593.5,-972.75 593.5,-988.75 613.5,-988.75 613.5,-972.75 593.5,-972.75"/>
- <text text-anchor="start" x="595.5" y="-977.25" font-family="Ubuntu" font-size="10.00">3</text>
- <polygon fill="none" stroke="black" points="518.5,-971.75 518.5,-1053.75 614.5,-1053.75 614.5,-971.75 518.5,-971.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_145 -->
- <g id="node16" class="node">
- <title>Node_Ja_145</title>
- <g id="a_node16"><a xlink:title="BatteryAttenEnum">
- <polygon fill="#b2df8a" stroke="none" points="504.5,-119.75 504.5,-217.75 628.5,-217.75 628.5,-119.75 504.5,-119.75"/>
- <polygon fill="#33a02c" stroke="none" points="505.5,-200.75 505.5,-216.75 627.5,-216.75 627.5,-200.75 505.5,-200.75"/>
- <text text-anchor="start" x="507.25" y="-206.25" font-family="Ubuntu" font-size="10.00">enum </text>
- <text text-anchor="start" x="534.25" y="-206.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">BatteryAttenEnum</text>
- <polygon fill="#b2df8a" stroke="none" points="505.5,-184.75 505.5,-200.75 603.5,-200.75 603.5,-184.75 505.5,-184.75"/>
- <text text-anchor="start" x="507.5" y="-189.25" font-family="Ubuntu" font-size="10.00">UNSPECIFIED_ATT</text>
- <polygon fill="#b2df8a" stroke="none" points="603.5,-184.75 603.5,-200.75 627.5,-200.75 627.5,-184.75 603.5,-184.75"/>
- <text text-anchor="start" x="605.5" y="-189.25" font-family="Ubuntu" font-size="10.00">0</text>
- <polygon fill="#b2df8a" stroke="none" points="505.5,-168.75 505.5,-184.75 603.5,-184.75 603.5,-168.75 505.5,-168.75"/>
- <text text-anchor="start" x="507.5" y="-173.25" font-family="Ubuntu" font-size="10.00">ATT_0</text>
- <polygon fill="#b2df8a" stroke="none" points="603.5,-168.75 603.5,-184.75 627.5,-184.75 627.5,-168.75 603.5,-168.75"/>
- <text text-anchor="start" x="605.5" y="-173.25" font-family="Ubuntu" font-size="10.00">1</text>
- <polygon fill="#b2df8a" stroke="none" points="505.5,-152.75 505.5,-168.75 603.5,-168.75 603.5,-152.75 505.5,-152.75"/>
- <text text-anchor="start" x="507.5" y="-157.25" font-family="Ubuntu" font-size="10.00">ATT_1</text>
- <polygon fill="#b2df8a" stroke="none" points="603.5,-152.75 603.5,-168.75 627.5,-168.75 627.5,-152.75 603.5,-152.75"/>
- <text text-anchor="start" x="605.5" y="-157.25" font-family="Ubuntu" font-size="10.00">2</text>
- <polygon fill="#b2df8a" stroke="none" points="505.5,-136.75 505.5,-152.75 603.5,-152.75 603.5,-136.75 505.5,-136.75"/>
- <text text-anchor="start" x="507.5" y="-141.25" font-family="Ubuntu" font-size="10.00">ATT_2</text>
- <polygon fill="#b2df8a" stroke="none" points="603.5,-136.75 603.5,-152.75 627.5,-152.75 627.5,-136.75 603.5,-136.75"/>
- <text text-anchor="start" x="605.5" y="-141.25" font-family="Ubuntu" font-size="10.00">3</text>
- <polygon fill="#b2df8a" stroke="none" points="505.5,-120.75 505.5,-136.75 603.5,-136.75 603.5,-120.75 505.5,-120.75"/>
- <text text-anchor="start" x="507.5" y="-125.25" font-family="Ubuntu" font-size="10.00">ATT_3</text>
- <polygon fill="#b2df8a" stroke="none" points="603.5,-120.75 603.5,-136.75 627.5,-136.75 627.5,-120.75 603.5,-120.75"/>
- <text text-anchor="start" x="605.5" y="-125.25" font-family="Ubuntu" font-size="10.00">4</text>
- <polygon fill="none" stroke="black" points="504.5,-119.75 504.5,-217.75 628.5,-217.75 628.5,-119.75 504.5,-119.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_104 -->
- <g id="node33" class="node">
- <title>Node_Ja_104</title>
- <g id="a_node33"><a xlink:title="Levels">
- <polygon fill="#b2df8a" stroke="none" points="865,-1017.75 865,-1067.75 928,-1067.75 928,-1017.75 865,-1017.75"/>
- <polygon fill="#33a02c" stroke="none" points="866,-1050.75 866,-1066.75 927,-1066.75 927,-1050.75 866,-1050.75"/>
- <text text-anchor="start" x="867.62" y="-1056.25" font-family="Ubuntu" font-size="10.00">enum </text>
- <text text-anchor="start" x="894.62" y="-1056.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Levels</text>
- <polygon fill="#b2df8a" stroke="none" points="866,-1034.75 866,-1050.75 904,-1050.75 904,-1034.75 866,-1034.75"/>
- <text text-anchor="start" x="868" y="-1039.25" font-family="Ubuntu" font-size="10.00">LOW</text>
- <polygon fill="#b2df8a" stroke="none" points="904,-1034.75 904,-1050.75 927,-1050.75 927,-1034.75 904,-1034.75"/>
- <text text-anchor="start" x="906" y="-1039.25" font-family="Ubuntu" font-size="10.00">0</text>
- <polygon fill="#b2df8a" stroke="none" points="866,-1018.75 866,-1034.75 904,-1034.75 904,-1018.75 866,-1018.75"/>
- <text text-anchor="start" x="868" y="-1023.25" font-family="Ubuntu" font-size="10.00">HIGH</text>
- <polygon fill="#b2df8a" stroke="none" points="904,-1018.75 904,-1034.75 927,-1034.75 927,-1018.75 904,-1018.75"/>
- <text text-anchor="start" x="906" y="-1023.25" font-family="Ubuntu" font-size="10.00">1</text>
- <polygon fill="none" stroke="black" points="865,-1017.75 865,-1067.75 928,-1067.75 928,-1017.75 865,-1017.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_105->Node_Ja_104 -->
- <g id="edge49" class="edge">
- <title>Node_Ja_105:e->Node_Ja_104</title>
- <g id="a_edge49"><a xlink:title="Ja_105 --> Ja_104">
- <path fill="none" stroke="#008000" d="M773.5,-1042.75C797.2,-1042.75 823.49,-1042.75 845.57,-1042.75"/>
- <polygon fill="#008000" stroke="#008000" points="845.52,-1046.25 855.52,-1042.75 845.52,-1039.25 845.52,-1046.25"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_147 -->
- <g id="node19" class="node">
- <title>Node_Ja_147</title>
- <g id="a_node19"><a xlink:title="models">
- <polygon fill="#b2df8a" stroke="none" points="706.5,-491.75 706.5,-573.75 772.5,-573.75 772.5,-491.75 706.5,-491.75"/>
- <polygon fill="#33a02c" stroke="none" points="707.5,-556.75 707.5,-572.75 771.5,-572.75 771.5,-556.75 707.5,-556.75"/>
- <text text-anchor="start" x="709.12" y="-562.25" font-family="Ubuntu" font-size="10.00">enum </text>
- <text text-anchor="start" x="736.12" y="-562.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">models</text>
- <polygon fill="#b2df8a" stroke="none" points="707.5,-540.75 707.5,-556.75 755.5,-556.75 755.5,-540.75 707.5,-540.75"/>
- <text text-anchor="start" x="709.5" y="-545.25" font-family="Ubuntu" font-size="10.00">NONE</text>
- <polygon fill="#b2df8a" stroke="none" points="755.5,-540.75 755.5,-556.75 771.5,-556.75 771.5,-540.75 755.5,-540.75"/>
- <text text-anchor="start" x="757.5" y="-545.25" font-family="Ubuntu" font-size="10.00">0</text>
- <polygon fill="#b2df8a" stroke="none" points="707.5,-524.75 707.5,-540.75 755.5,-540.75 755.5,-524.75 707.5,-524.75"/>
- <text text-anchor="start" x="709.5" y="-529.25" font-family="Ubuntu" font-size="10.00">LAN8720</text>
- <polygon fill="#b2df8a" stroke="none" points="755.5,-524.75 755.5,-540.75 771.5,-540.75 771.5,-524.75 755.5,-524.75"/>
- <text text-anchor="start" x="757.5" y="-529.25" font-family="Ubuntu" font-size="10.00">1</text>
- <polygon fill="#b2df8a" stroke="none" points="707.5,-508.75 707.5,-524.75 755.5,-524.75 755.5,-508.75 707.5,-508.75"/>
- <text text-anchor="start" x="709.5" y="-513.25" font-family="Ubuntu" font-size="10.00">DM9051</text>
- <polygon fill="#b2df8a" stroke="none" points="755.5,-508.75 755.5,-524.75 771.5,-524.75 771.5,-508.75 755.5,-508.75"/>
- <text text-anchor="start" x="757.5" y="-513.25" font-family="Ubuntu" font-size="10.00">2</text>
- <polygon fill="#b2df8a" stroke="none" points="707.5,-492.75 707.5,-508.75 755.5,-508.75 755.5,-492.75 707.5,-492.75"/>
- <text text-anchor="start" x="709.5" y="-497.25" font-family="Ubuntu" font-size="10.00">W5500</text>
- <polygon fill="#b2df8a" stroke="none" points="755.5,-492.75 755.5,-508.75 771.5,-508.75 771.5,-492.75 755.5,-492.75"/>
- <text text-anchor="start" x="757.5" y="-497.25" font-family="Ubuntu" font-size="10.00">3</text>
- <polygon fill="none" stroke="black" points="706.5,-491.75 706.5,-573.75 772.5,-573.75 772.5,-491.75 706.5,-491.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_122->Node_Ja_121 -->
- <g id="edge43" class="edge">
- <title>Node_Ja_122:e->Node_Ja_121</title>
- <g id="a_edge43"><a xlink:title="Ja_122 --> Ja_121">
- <path fill="none" stroke="#008000" d="M1075.5,-1806.75C1088.84,-1806.75 1102.96,-1806.52 1116.75,-1806.18"/>
- <polygon fill="#008000" stroke="#008000" points="1116.81,-1809.68 1126.71,-1805.9 1116.62,-1802.68 1116.81,-1809.68"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_146 -->
- <g id="node21" class="node">
- <title>Node_Ja_146</title>
- <g id="a_node21"><a xlink:title="sys.Battery">
- <polygon fill="#fffaf0" stroke="none" points="285,-267.75 285,-349.75 429,-349.75 429,-267.75 285,-267.75"/>
- <polygon fill="#e31a1c" stroke="none" points="286,-332.75 286,-348.75 428,-348.75 428,-332.75 286,-332.75"/>
- <text text-anchor="start" x="388.5" y="-338.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Battery</text>
- <text text-anchor="start" x="291.88" y="-321.25" font-family="Ubuntu" font-size="10.00">1</text>
- <text text-anchor="start" x="301" y="-321.25" font-family="Ubuntu" font-size="10.00">channel</text>
- <polygon fill="#b2df8a" stroke="none" points="336,-316.75 336,-332.75 428,-332.75 428,-316.75 336,-316.75"/>
- <text text-anchor="start" x="337.75" y="-322.25" font-family="Ubuntu" text-decoration="underline" font-size="10.00">BatteryChannelEnum</text>
- <text text-anchor="start" x="291.88" y="-305.25" font-family="Ubuntu" font-size="10.00">2</text>
- <text text-anchor="start" x="301" y="-305.25" font-family="Ubuntu" font-size="10.00">scale</text>
- <polygon fill="#a6cee3" stroke="none" points="336,-300.75 336,-316.75 428,-316.75 428,-300.75 336,-300.75"/>
- <text text-anchor="start" x="407.25" y="-306.25" font-family="Ubuntu" font-style="italic" font-size="10.00">float</text>
- <text text-anchor="start" x="291.88" y="-289.25" font-family="Ubuntu" font-size="10.00">3</text>
- <text text-anchor="start" x="301" y="-289.25" font-family="Ubuntu" font-size="10.00">cells</text>
- <polygon fill="#a6cee3" stroke="none" points="336,-284.75 336,-300.75 428,-300.75 428,-284.75 336,-284.75"/>
- <text text-anchor="start" x="405" y="-290.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <text text-anchor="start" x="291.88" y="-273.25" font-family="Ubuntu" font-size="10.00">4</text>
- <text text-anchor="start" x="301" y="-273.25" font-family="Ubuntu" font-size="10.00">atten</text>
- <polygon fill="#b2df8a" stroke="none" points="336,-268.75 336,-284.75 428,-284.75 428,-268.75 336,-268.75"/>
- <text text-anchor="start" x="349.5" y="-274.25" font-family="Ubuntu" text-decoration="underline" font-size="10.00">BatteryAttenEnum</text>
- <polygon fill="none" stroke="black" points="285,-267.75 285,-349.75 429,-349.75 429,-267.75 285,-267.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_146->Node_Ja_145 -->
- <g id="edge14" class="edge">
- <title>Node_Ja_146:e->Node_Ja_145</title>
- <g id="a_edge14"><a xlink:title="Ja_146 --> Ja_145">
- <path fill="none" stroke="#008000" d="M429,-276.75C429.56,-276.75 459.01,-253.48 490.41,-228.54"/>
- <polygon fill="#008000" stroke="#008000" points="492.46,-231.39 498.11,-222.43 488.1,-225.91 492.46,-231.39"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_144 -->
- <g id="node29" class="node">
- <title>Node_Ja_144</title>
- <g id="a_node29"><a xlink:title="BatteryChannelEnum">
- <polygon fill="#b2df8a" stroke="none" points="499.5,-243.75 499.5,-405.75 633.5,-405.75 633.5,-243.75 499.5,-243.75"/>
- <polygon fill="#33a02c" stroke="none" points="500.5,-388.75 500.5,-404.75 632.5,-404.75 632.5,-388.75 500.5,-388.75"/>
- <text text-anchor="start" x="502.38" y="-394.25" font-family="Ubuntu" font-size="10.00">enum </text>
- <text text-anchor="start" x="529.38" y="-394.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">BatteryChannelEnum</text>
- <polygon fill="#b2df8a" stroke="none" points="500.5,-372.75 500.5,-388.75 600.5,-388.75 600.5,-372.75 500.5,-372.75"/>
- <text text-anchor="start" x="502.5" y="-377.25" font-family="Ubuntu" font-size="10.00">UNSPECIFIED_CH</text>
- <polygon fill="#b2df8a" stroke="none" points="600.5,-372.75 600.5,-388.75 632.5,-388.75 632.5,-372.75 600.5,-372.75"/>
- <text text-anchor="start" x="602.5" y="-377.25" font-family="Ubuntu" font-size="10.00">0</text>
- <polygon fill="#b2df8a" stroke="none" points="500.5,-356.75 500.5,-372.75 600.5,-372.75 600.5,-356.75 500.5,-356.75"/>
- <text text-anchor="start" x="502.5" y="-361.25" font-family="Ubuntu" font-size="10.00">CH0</text>
- <polygon fill="#b2df8a" stroke="none" points="600.5,-356.75 600.5,-372.75 632.5,-372.75 632.5,-356.75 600.5,-356.75"/>
- <text text-anchor="start" x="602.5" y="-361.25" font-family="Ubuntu" font-size="10.00">1</text>
- <polygon fill="#b2df8a" stroke="none" points="500.5,-340.75 500.5,-356.75 600.5,-356.75 600.5,-340.75 500.5,-340.75"/>
- <text text-anchor="start" x="502.5" y="-345.25" font-family="Ubuntu" font-size="10.00">CH1</text>
- <polygon fill="#b2df8a" stroke="none" points="600.5,-340.75 600.5,-356.75 632.5,-356.75 632.5,-340.75 600.5,-340.75"/>
- <text text-anchor="start" x="602.5" y="-345.25" font-family="Ubuntu" font-size="10.00">2</text>
- <polygon fill="#b2df8a" stroke="none" points="500.5,-324.75 500.5,-340.75 600.5,-340.75 600.5,-324.75 500.5,-324.75"/>
- <text text-anchor="start" x="502.5" y="-329.25" font-family="Ubuntu" font-size="10.00">CH2</text>
- <polygon fill="#b2df8a" stroke="none" points="600.5,-324.75 600.5,-340.75 632.5,-340.75 632.5,-324.75 600.5,-324.75"/>
- <text text-anchor="start" x="602.5" y="-329.25" font-family="Ubuntu" font-size="10.00">3</text>
- <polygon fill="#b2df8a" stroke="none" points="500.5,-308.75 500.5,-324.75 600.5,-324.75 600.5,-308.75 500.5,-308.75"/>
- <text text-anchor="start" x="502.5" y="-313.25" font-family="Ubuntu" font-size="10.00">CH3</text>
- <polygon fill="#b2df8a" stroke="none" points="600.5,-308.75 600.5,-324.75 632.5,-324.75 632.5,-308.75 600.5,-308.75"/>
- <text text-anchor="start" x="602.5" y="-313.25" font-family="Ubuntu" font-size="10.00">4</text>
- <polygon fill="#b2df8a" stroke="none" points="500.5,-292.75 500.5,-308.75 600.5,-308.75 600.5,-292.75 500.5,-292.75"/>
- <text text-anchor="start" x="502.5" y="-297.25" font-family="Ubuntu" font-size="10.00">CH4</text>
- <polygon fill="#b2df8a" stroke="none" points="600.5,-292.75 600.5,-308.75 632.5,-308.75 632.5,-292.75 600.5,-292.75"/>
- <text text-anchor="start" x="602.5" y="-297.25" font-family="Ubuntu" font-size="10.00">5</text>
- <polygon fill="#b2df8a" stroke="none" points="500.5,-276.75 500.5,-292.75 600.5,-292.75 600.5,-276.75 500.5,-276.75"/>
- <text text-anchor="start" x="502.5" y="-281.25" font-family="Ubuntu" font-size="10.00">CH5</text>
- <polygon fill="#b2df8a" stroke="none" points="600.5,-276.75 600.5,-292.75 632.5,-292.75 632.5,-276.75 600.5,-276.75"/>
- <text text-anchor="start" x="602.5" y="-281.25" font-family="Ubuntu" font-size="10.00">6</text>
- <polygon fill="#b2df8a" stroke="none" points="500.5,-260.75 500.5,-276.75 600.5,-276.75 600.5,-260.75 500.5,-260.75"/>
- <text text-anchor="start" x="502.5" y="-265.25" font-family="Ubuntu" font-size="10.00">CH6</text>
- <polygon fill="#b2df8a" stroke="none" points="600.5,-260.75 600.5,-276.75 632.5,-276.75 632.5,-260.75 600.5,-260.75"/>
- <text text-anchor="start" x="602.5" y="-265.25" font-family="Ubuntu" font-size="10.00">7</text>
- <polygon fill="#b2df8a" stroke="none" points="500.5,-244.75 500.5,-260.75 600.5,-260.75 600.5,-244.75 500.5,-244.75"/>
- <text text-anchor="start" x="502.5" y="-249.25" font-family="Ubuntu" font-size="10.00">CH7</text>
- <polygon fill="#b2df8a" stroke="none" points="600.5,-244.75 600.5,-260.75 632.5,-260.75 632.5,-244.75 600.5,-244.75"/>
- <text text-anchor="start" x="602.5" y="-249.25" font-family="Ubuntu" font-size="10.00">8</text>
- <polygon fill="none" stroke="black" points="499.5,-243.75 499.5,-405.75 633.5,-405.75 633.5,-243.75 499.5,-243.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_146->Node_Ja_144 -->
- <g id="edge61" class="edge">
- <title>Node_Ja_146:e->Node_Ja_144</title>
- <g id="a_edge61"><a xlink:title="Ja_146 --> Ja_144">
- <path fill="none" stroke="#008000" d="M429,-324.75C445.72,-324.75 463.59,-324.75 480.71,-324.75"/>
- <polygon fill="#008000" stroke="#008000" points="480.31,-328.25 490.31,-324.75 480.31,-321.25 480.31,-328.25"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_114 -->
- <g id="node22" class="node">
- <title>Node_Ja_114</title>
- <g id="a_node22"><a xlink:title="sys.I2CBus">
- <polygon fill="#fffaf0" stroke="none" points="515,-2331.75 515,-2413.75 618,-2413.75 618,-2331.75 515,-2331.75"/>
- <polygon fill="#e31a1c" stroke="none" points="516,-2396.75 516,-2412.75 617,-2412.75 617,-2396.75 516,-2396.75"/>
- <text text-anchor="start" x="582" y="-2402.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">I2CBus</text>
- <text text-anchor="start" x="521.88" y="-2385.25" font-family="Ubuntu" font-size="10.00">1</text>
- <text text-anchor="start" x="531" y="-2385.25" font-family="Ubuntu" font-size="10.00">port</text>
- <polygon fill="#b2df8a" stroke="none" points="558,-2380.75 558,-2396.75 617,-2396.75 617,-2380.75 558,-2380.75"/>
- <text text-anchor="start" x="559.75" y="-2386.25" font-family="Ubuntu" text-decoration="underline" font-size="10.00">I2CPortEnum</text>
- <text text-anchor="start" x="521.88" y="-2369.25" font-family="Ubuntu" font-size="10.00">2</text>
- <text text-anchor="start" x="530.75" y="-2369.25" font-family="Ubuntu" font-size="10.00">speed</text>
- <polygon fill="#a6cee3" stroke="none" points="558,-2364.75 558,-2380.75 617,-2380.75 617,-2364.75 558,-2364.75"/>
- <text text-anchor="start" x="594" y="-2370.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int64</text>
- <text text-anchor="start" x="521.88" y="-2353.25" font-family="Ubuntu" font-size="10.00">3</text>
- <text text-anchor="start" x="531" y="-2353.25" font-family="Ubuntu" font-size="10.00">sda</text>
- <polygon fill="#a6cee3" stroke="none" points="558,-2348.75 558,-2364.75 617,-2364.75 617,-2348.75 558,-2348.75"/>
- <text text-anchor="start" x="594" y="-2354.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <text text-anchor="start" x="521.88" y="-2337.25" font-family="Ubuntu" font-size="10.00">4</text>
- <text text-anchor="start" x="531" y="-2337.25" font-family="Ubuntu" font-size="10.00">scl</text>
- <polygon fill="#a6cee3" stroke="none" points="558,-2332.75 558,-2348.75 617,-2348.75 617,-2332.75 558,-2332.75"/>
- <text text-anchor="start" x="594" y="-2338.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <polygon fill="none" stroke="black" points="515,-2331.75 515,-2413.75 618,-2413.75 618,-2331.75 515,-2331.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_114->Node_Ja_113 -->
- <g id="edge28" class="edge">
- <title>Node_Ja_114:e->Node_Ja_113</title>
- <g id="a_edge28"><a xlink:title="Ja_114 --> Ja_113">
- <path fill="none" stroke="#008000" d="M618.5,-2388.75C635.09,-2388.75 652.97,-2388.75 669.73,-2388.75"/>
- <polygon fill="#008000" stroke="#008000" points="669.61,-2392.25 679.61,-2388.75 669.61,-2385.25 669.61,-2392.25"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_141 -->
- <g id="node23" class="node">
- <title>Node_Ja_141</title>
- <g id="a_node23"><a xlink:title="sys.btns.Profile">
- <polygon fill="#fffaf0" stroke="none" points="293,-826.75 293,-876.75 421,-876.75 421,-826.75 293,-826.75"/>
- <polygon fill="#e31a1c" stroke="none" points="294,-859.75 294,-875.75 420,-875.75 420,-859.75 294,-859.75"/>
- <text text-anchor="start" x="387.25" y="-865.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Profile</text>
- <text text-anchor="start" x="315.88" y="-848.25" font-family="Ubuntu" font-size="10.00">1</text>
- <text text-anchor="start" x="324.88" y="-848.25" font-family="Ubuntu" font-size="10.00">profile_name</text>
- <polygon fill="#a6cee3" stroke="none" points="383,-843.75 383,-859.75 420,-859.75 420,-843.75 383,-843.75"/>
- <text text-anchor="start" x="394" y="-849.25" font-family="Ubuntu" font-style="italic" font-size="10.00">string</text>
- <text text-anchor="start" x="295.75" y="-832.25" font-family="Ubuntu" font-size="10.00">[...]</text>
- <text text-anchor="start" x="315.88" y="-832.25" font-family="Ubuntu" font-size="10.00">2</text>
- <text text-anchor="start" x="325" y="-832.25" font-family="Ubuntu" font-size="10.00">buttons</text>
- <polygon fill="#fb9a99" stroke="none" points="383,-827.75 383,-843.75 420,-843.75 420,-827.75 383,-827.75"/>
- <text text-anchor="start" x="385" y="-833.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Button</text>
- <polygon fill="none" stroke="black" points="293,-826.75 293,-876.75 421,-876.75 421,-826.75 293,-826.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_140 -->
- <g id="node26" class="node">
- <title>Node_Ja_140</title>
- <g id="a_node26"><a xlink:title="sys.btns.Button">
- <polygon fill="#fffaf0" stroke="none" points="509,-599.75 509,-761.75 624,-761.75 624,-599.75 509,-599.75"/>
- <polygon fill="#e31a1c" stroke="none" points="510,-744.75 510,-760.75 623,-760.75 623,-744.75 510,-744.75"/>
- <text text-anchor="start" x="588" y="-750.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Button</text>
- <text text-anchor="start" x="515.88" y="-733.25" font-family="Ubuntu" font-size="10.00">1</text>
- <text text-anchor="start" x="525" y="-733.25" font-family="Ubuntu" font-size="10.00">gpio</text>
- <polygon fill="#fb9a99" stroke="none" points="580,-728.75 580,-744.75 623,-744.75 623,-728.75 580,-728.75"/>
- <text text-anchor="start" x="582" y="-734.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">gpio.PIN</text>
- <text text-anchor="start" x="515.88" y="-717.25" font-family="Ubuntu" font-size="10.00">2</text>
- <text text-anchor="start" x="525" y="-717.25" font-family="Ubuntu" font-size="10.00">pull</text>
- <polygon fill="#a6cee3" stroke="none" points="580,-712.75 580,-728.75 623,-728.75 623,-712.75 580,-712.75"/>
- <text text-anchor="start" x="603" y="-718.25" font-family="Ubuntu" font-style="italic" font-size="10.00">bool</text>
- <text text-anchor="start" x="515.88" y="-701.25" font-family="Ubuntu" font-size="10.00">3</text>
- <text text-anchor="start" x="525" y="-701.25" font-family="Ubuntu" font-size="10.00">debounce</text>
- <polygon fill="#a6cee3" stroke="none" points="580,-696.75 580,-712.75 623,-712.75 623,-696.75 580,-696.75"/>
- <text text-anchor="start" x="600" y="-702.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <text text-anchor="start" x="515.88" y="-685.25" font-family="Ubuntu" font-size="10.00">4</text>
- <text text-anchor="start" x="525" y="-685.25" font-family="Ubuntu" font-size="10.00">shifter</text>
- <polygon fill="#a6cee3" stroke="none" points="580,-680.75 580,-696.75 623,-696.75 623,-680.75 580,-680.75"/>
- <text text-anchor="start" x="600" y="-686.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <text text-anchor="start" x="515.88" y="-669.25" font-family="Ubuntu" font-size="10.00">5</text>
- <text text-anchor="start" x="524.88" y="-669.25" font-family="Ubuntu" font-size="10.00">longduration</text>
- <polygon fill="#a6cee3" stroke="none" points="580,-664.75 580,-680.75 623,-680.75 623,-664.75 580,-664.75"/>
- <text text-anchor="start" x="600" y="-670.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <text text-anchor="start" x="515.88" y="-653.25" font-family="Ubuntu" font-size="10.00">6</text>
- <text text-anchor="start" x="525" y="-653.25" font-family="Ubuntu" font-size="10.00">normal</text>
- <polygon fill="#fb9a99" stroke="none" points="580,-648.75 580,-664.75 623,-664.75 623,-648.75 580,-648.75"/>
- <text text-anchor="start" x="594" y="-654.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Press</text>
- <text text-anchor="start" x="515.88" y="-637.25" font-family="Ubuntu" font-size="10.00">7</text>
- <text text-anchor="start" x="525" y="-637.25" font-family="Ubuntu" font-size="10.00">longpress</text>
- <polygon fill="#fb9a99" stroke="none" points="580,-632.75 580,-648.75 623,-648.75 623,-632.75 580,-632.75"/>
- <text text-anchor="start" x="594" y="-638.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Press</text>
- <text text-anchor="start" x="515.88" y="-621.25" font-family="Ubuntu" font-size="10.00">8</text>
- <text text-anchor="start" x="525" y="-621.25" font-family="Ubuntu" font-size="10.00">shifted</text>
- <polygon fill="#fb9a99" stroke="none" points="580,-616.75 580,-632.75 623,-632.75 623,-616.75 580,-616.75"/>
- <text text-anchor="start" x="594" y="-622.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Press</text>
- <text text-anchor="start" x="515.88" y="-605.25" font-family="Ubuntu" font-size="10.00">9</text>
- <text text-anchor="start" x="525" y="-605.25" font-family="Ubuntu" font-size="10.00">longshifted</text>
- <polygon fill="#fb9a99" stroke="none" points="580,-600.75 580,-616.75 623,-616.75 623,-600.75 580,-600.75"/>
- <text text-anchor="start" x="594" y="-606.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Press</text>
- <polygon fill="none" stroke="black" points="509,-599.75 509,-761.75 624,-761.75 624,-599.75 509,-599.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_141->Node_Ja_140 -->
- <g id="edge10" class="edge">
- <title>Node_Ja_141:e->Node_Ja_140:header</title>
- <g id="a_edge10"><a xlink:title="Ja_141 --> Ja_140">
- <path fill="none" stroke="#000000" d="M421,-835.75C470.41,-835.75 457.53,-765.21 497.21,-754.19"/>
- <polygon fill="#000000" stroke="#000000" points="497.52,-757.68 507,-752.94 496.64,-750.74 497.52,-757.68"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_125 -->
- <g id="node24" class="node">
- <title>Node_Ja_125</title>
- <g id="a_node24"><a xlink:title="Models">
- <polygon fill="#b2df8a" stroke="none" points="530.5,-1981.75 530.5,-2143.75 602.5,-2143.75 602.5,-1981.75 530.5,-1981.75"/>
- <polygon fill="#33a02c" stroke="none" points="531.5,-2126.75 531.5,-2142.75 601.5,-2142.75 601.5,-2126.75 531.5,-2126.75"/>
- <text text-anchor="start" x="538.75" y="-2132.25" font-family="Ubuntu" font-size="10.00">enum </text>
- <text text-anchor="start" x="565.75" y="-2132.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Models</text>
- <polygon fill="#b2df8a" stroke="none" points="531.5,-2110.75 531.5,-2126.75 592.5,-2126.75 592.5,-2110.75 531.5,-2110.75"/>
- <text text-anchor="start" x="533.5" y="-2115.25" font-family="Ubuntu" font-size="10.00">UNSPECIFIED</text>
- <polygon fill="#b2df8a" stroke="none" points="592.5,-2110.75 592.5,-2126.75 601.5,-2126.75 601.5,-2110.75 592.5,-2110.75"/>
- <text text-anchor="start" x="594.38" y="-2115.25" font-family="Ubuntu" font-size="10.00">0</text>
- <polygon fill="#b2df8a" stroke="none" points="531.5,-2094.75 531.5,-2110.75 592.5,-2110.75 592.5,-2094.75 531.5,-2094.75"/>
- <text text-anchor="start" x="533.5" y="-2099.25" font-family="Ubuntu" font-size="10.00">TAS57xx</text>
- <polygon fill="#b2df8a" stroke="none" points="592.5,-2094.75 592.5,-2110.75 601.5,-2110.75 601.5,-2094.75 592.5,-2094.75"/>
- <text text-anchor="start" x="594.38" y="-2099.25" font-family="Ubuntu" font-size="10.00">1</text>
- <polygon fill="#b2df8a" stroke="none" points="531.5,-2078.75 531.5,-2094.75 592.5,-2094.75 592.5,-2078.75 531.5,-2078.75"/>
- <text text-anchor="start" x="533.5" y="-2083.25" font-family="Ubuntu" font-size="10.00">TAS5713</text>
- <polygon fill="#b2df8a" stroke="none" points="592.5,-2078.75 592.5,-2094.75 601.5,-2094.75 601.5,-2078.75 592.5,-2078.75"/>
- <text text-anchor="start" x="594.38" y="-2083.25" font-family="Ubuntu" font-size="10.00">2</text>
- <polygon fill="#b2df8a" stroke="none" points="531.5,-2062.75 531.5,-2078.75 592.5,-2078.75 592.5,-2062.75 531.5,-2062.75"/>
- <text text-anchor="start" x="533.5" y="-2067.25" font-family="Ubuntu" font-size="10.00">AC101</text>
- <polygon fill="#b2df8a" stroke="none" points="592.5,-2062.75 592.5,-2078.75 601.5,-2078.75 601.5,-2062.75 592.5,-2062.75"/>
- <text text-anchor="start" x="594.38" y="-2067.25" font-family="Ubuntu" font-size="10.00">3</text>
- <polygon fill="#b2df8a" stroke="none" points="531.5,-2046.75 531.5,-2062.75 592.5,-2062.75 592.5,-2046.75 531.5,-2046.75"/>
- <text text-anchor="start" x="533.5" y="-2051.25" font-family="Ubuntu" font-size="10.00">WM8978</text>
- <polygon fill="#b2df8a" stroke="none" points="592.5,-2046.75 592.5,-2062.75 601.5,-2062.75 601.5,-2046.75 592.5,-2046.75"/>
- <text text-anchor="start" x="594.38" y="-2051.25" font-family="Ubuntu" font-size="10.00">4</text>
- <polygon fill="#b2df8a" stroke="none" points="531.5,-2030.75 531.5,-2046.75 592.5,-2046.75 592.5,-2030.75 531.5,-2030.75"/>
- <text text-anchor="start" x="533.5" y="-2035.25" font-family="Ubuntu" font-size="10.00">ES8388</text>
- <polygon fill="#b2df8a" stroke="none" points="592.5,-2030.75 592.5,-2046.75 601.5,-2046.75 601.5,-2030.75 592.5,-2030.75"/>
- <text text-anchor="start" x="594.38" y="-2035.25" font-family="Ubuntu" font-size="10.00">5</text>
- <polygon fill="#b2df8a" stroke="none" points="531.5,-2014.75 531.5,-2030.75 592.5,-2030.75 592.5,-2014.75 531.5,-2014.75"/>
- <text text-anchor="start" x="533.5" y="-2019.25" font-family="Ubuntu" font-size="10.00">I2S</text>
- <polygon fill="#b2df8a" stroke="none" points="592.5,-2014.75 592.5,-2030.75 601.5,-2030.75 601.5,-2014.75 592.5,-2014.75"/>
- <text text-anchor="start" x="594.38" y="-2019.25" font-family="Ubuntu" font-size="10.00">6</text>
- <polygon fill="#b2df8a" stroke="none" points="531.5,-1998.75 531.5,-2014.75 592.5,-2014.75 592.5,-1998.75 531.5,-1998.75"/>
- <text text-anchor="start" x="533.5" y="-2003.25" font-family="Ubuntu" font-size="10.00">CS4265</text>
- <polygon fill="#b2df8a" stroke="none" points="592.5,-1998.75 592.5,-2014.75 601.5,-2014.75 601.5,-1998.75 592.5,-1998.75"/>
- <text text-anchor="start" x="594.38" y="-2003.25" font-family="Ubuntu" font-size="10.00">7</text>
- <polygon fill="#b2df8a" stroke="none" points="531.5,-1982.75 531.5,-1998.75 592.5,-1998.75 592.5,-1982.75 531.5,-1982.75"/>
- <text text-anchor="start" x="533.5" y="-1987.25" font-family="Ubuntu" font-size="10.00">OTHER</text>
- <polygon fill="#b2df8a" stroke="none" points="592.5,-1982.75 592.5,-1998.75 601.5,-1998.75 601.5,-1982.75 592.5,-1982.75"/>
- <text text-anchor="start" x="594.38" y="-1987.25" font-family="Ubuntu" font-size="10.00">8</text>
- <polygon fill="none" stroke="black" points="530.5,-1981.75 530.5,-2143.75 602.5,-2143.75 602.5,-1981.75 530.5,-1981.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_140->Node_Ja_105 -->
- <g id="edge2" class="edge">
- <title>Node_Ja_140:e->Node_Ja_105:header</title>
- <g id="a_edge2"><a xlink:title="Ja_140 --> Ja_105">
- <path fill="none" stroke="#000000" d="M624.5,-736.75C774.9,-736.75 562.78,-1057.16 694.06,-1074.06"/>
- <polygon fill="#000000" stroke="#000000" points="693.8,-1077.55 703.99,-1074.66 694.22,-1070.56 693.8,-1077.55"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_139 -->
- <g id="node53" class="node">
- <title>Node_Ja_139</title>
- <g id="a_node53"><a xlink:title="sys.btns.Press">
- <polygon fill="#fffaf0" stroke="none" points="694.5,-599.75 694.5,-649.75 784.5,-649.75 784.5,-599.75 694.5,-599.75"/>
- <polygon fill="#e31a1c" stroke="none" points="695.5,-632.75 695.5,-648.75 783.5,-648.75 783.5,-632.75 695.5,-632.75"/>
- <text text-anchor="start" x="754.5" y="-638.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Press</text>
- <text text-anchor="start" x="701.38" y="-621.25" font-family="Ubuntu" font-size="10.00">1</text>
- <text text-anchor="start" x="710.5" y="-621.25" font-family="Ubuntu" font-size="10.00">pressed</text>
- <polygon fill="#fb9a99" stroke="none" points="748.5,-616.75 748.5,-632.75 783.5,-632.75 783.5,-616.75 748.5,-616.75"/>
- <text text-anchor="start" x="750.25" y="-622.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Action</text>
- <text text-anchor="start" x="701.38" y="-605.25" font-family="Ubuntu" font-size="10.00">2</text>
- <text text-anchor="start" x="710.12" y="-605.25" font-family="Ubuntu" font-size="10.00">released</text>
- <polygon fill="#fb9a99" stroke="none" points="748.5,-600.75 748.5,-616.75 783.5,-616.75 783.5,-600.75 748.5,-600.75"/>
- <text text-anchor="start" x="750.25" y="-606.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Action</text>
- <polygon fill="none" stroke="black" points="694.5,-599.75 694.5,-649.75 784.5,-649.75 784.5,-599.75 694.5,-599.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_140->Node_Ja_139 -->
- <g id="edge20" class="edge">
- <title>Node_Ja_140:e->Node_Ja_139:header</title>
- <g id="a_edge20"><a xlink:title="Ja_140 --> Ja_139">
- <path fill="none" stroke="#000000" d="M624.5,-656.75C652.17,-656.75 660.49,-644.72 683.03,-641.52"/>
- <polygon fill="#000000" stroke="#000000" points="683.25,-645.01 692.99,-640.85 682.78,-638.03 683.25,-645.01"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_140->Node_Ja_139 -->
- <g id="edge25" class="edge">
- <title>Node_Ja_140:e->Node_Ja_139:header</title>
- <g id="a_edge25"><a xlink:title="Ja_140 --> Ja_139">
- <path fill="none" stroke="#000000" d="M624.5,-608.75C654.43,-608.75 659.39,-633.25 683.07,-639.38"/>
- <polygon fill="#000000" stroke="#000000" points="682.65,-642.85 693,-640.57 683.49,-635.9 682.65,-642.85"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_140->Node_Ja_139 -->
- <g id="edge51" class="edge">
- <title>Node_Ja_140:e->Node_Ja_139:header</title>
- <g id="a_edge51"><a xlink:title="Ja_140 --> Ja_139">
- <path fill="none" stroke="#000000" d="M624.5,-624.75C652.17,-624.75 660.49,-636.78 683.03,-639.98"/>
- <polygon fill="#000000" stroke="#000000" points="682.78,-643.47 692.99,-640.65 683.25,-636.49 682.78,-643.47"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_140->Node_Ja_139 -->
- <g id="edge57" class="edge">
- <title>Node_Ja_140:e->Node_Ja_139:header</title>
- <g id="a_edge57"><a xlink:title="Ja_140 --> Ja_139">
- <path fill="none" stroke="#000000" d="M624.5,-640.75C651.48,-640.75 660.91,-640.75 683.23,-640.75"/>
- <polygon fill="#000000" stroke="#000000" points="682.99,-644.25 692.99,-640.75 682.99,-637.25 682.99,-644.25"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_117 -->
- <g id="node27" class="node">
- <title>Node_Ja_117</title>
- <g id="a_node27"><a xlink:title="sys.dac.control.Command">
- <polygon fill="#fffaf0" stroke="none" points="697.5,-1889.75 697.5,-1939.75 781.5,-1939.75 781.5,-1889.75 697.5,-1889.75"/>
- <polygon fill="#e31a1c" stroke="none" points="698.5,-1922.75 698.5,-1938.75 780.5,-1938.75 780.5,-1922.75 698.5,-1922.75"/>
- <text text-anchor="start" x="732" y="-1928.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Command</text>
- <text text-anchor="start" x="720.38" y="-1911.25" font-family="Ubuntu" font-size="10.00">1</text>
- <text text-anchor="start" x="729.5" y="-1911.25" font-family="Ubuntu" font-size="10.00">type</text>
- <polygon fill="#b2df8a" stroke="none" points="754.5,-1906.75 754.5,-1922.75 780.5,-1922.75 780.5,-1906.75 754.5,-1906.75"/>
- <text text-anchor="start" x="757.5" y="-1912.25" font-family="Ubuntu" text-decoration="underline" font-size="10.00">Type</text>
- <text text-anchor="start" x="700.25" y="-1895.25" font-family="Ubuntu" font-size="10.00">[...]</text>
- <text text-anchor="start" x="720.38" y="-1895.25" font-family="Ubuntu" font-size="10.00">2</text>
- <text text-anchor="start" x="729.38" y="-1895.25" font-family="Ubuntu" font-size="10.00">items</text>
- <polygon fill="#fb9a99" stroke="none" points="754.5,-1890.75 754.5,-1906.75 780.5,-1906.75 780.5,-1890.75 754.5,-1890.75"/>
- <text text-anchor="start" x="756.25" y="-1896.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Item</text>
- <polygon fill="none" stroke="black" points="697.5,-1889.75 697.5,-1939.75 781.5,-1939.75 781.5,-1889.75 697.5,-1889.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_117->Node_Ja_118 -->
- <g id="edge26" class="edge">
- <title>Node_Ja_117:e->Node_Ja_118:header</title>
- <g id="a_edge26"><a xlink:title="Ja_117 --> Ja_118">
- <path fill="none" stroke="#000000" d="M781.5,-1898.75C810.81,-1898.75 811.33,-1866.88 833.22,-1858.66"/>
- <polygon fill="#000000" stroke="#000000" points="833.73,-1862.13 843.01,-1857 832.56,-1855.22 833.73,-1862.13"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_117->Node_Ja_116 -->
- <g id="edge31" class="edge">
- <title>Node_Ja_117:e->Node_Ja_116</title>
- <g id="a_edge31"><a xlink:title="Ja_117 --> Ja_116">
- <path fill="none" stroke="#008000" d="M781.5,-1914.75C800.98,-1914.75 821.24,-1920.22 839.19,-1927.2"/>
- <polygon fill="#008000" stroke="#008000" points="837.77,-1930.41 848.35,-1931.01 840.45,-1923.94 837.77,-1930.41"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_134 -->
- <g id="node28" class="node">
- <title>Node_Ja_134</title>
- <g id="a_node28"><a xlink:title="Mode">
- <polygon fill="#b2df8a" stroke="none" points="701,-1361.75 701,-1443.75 778,-1443.75 778,-1361.75 701,-1361.75"/>
- <polygon fill="#33a02c" stroke="none" points="702,-1426.75 702,-1442.75 777,-1442.75 777,-1426.75 702,-1426.75"/>
- <text text-anchor="start" x="721.75" y="-1432.25" font-family="Ubuntu" font-size="10.00">enum </text>
- <text text-anchor="start" x="748.75" y="-1432.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Mode</text>
- <polygon fill="#b2df8a" stroke="none" points="702,-1410.75 702,-1426.75 768,-1426.75 768,-1410.75 702,-1410.75"/>
- <text text-anchor="start" x="703.88" y="-1415.25" font-family="Ubuntu" font-size="10.00">SPI_MOODE_0</text>
- <polygon fill="#b2df8a" stroke="none" points="768,-1410.75 768,-1426.75 777,-1426.75 777,-1410.75 768,-1410.75"/>
- <text text-anchor="start" x="769.88" y="-1415.25" font-family="Ubuntu" font-size="10.00">0</text>
- <polygon fill="#b2df8a" stroke="none" points="702,-1394.75 702,-1410.75 768,-1410.75 768,-1394.75 702,-1394.75"/>
- <text text-anchor="start" x="703.88" y="-1399.25" font-family="Ubuntu" font-size="10.00">SPI_MOODE_1</text>
- <polygon fill="#b2df8a" stroke="none" points="768,-1394.75 768,-1410.75 777,-1410.75 777,-1394.75 768,-1394.75"/>
- <text text-anchor="start" x="769.88" y="-1399.25" font-family="Ubuntu" font-size="10.00">1</text>
- <polygon fill="#b2df8a" stroke="none" points="702,-1378.75 702,-1394.75 768,-1394.75 768,-1378.75 702,-1378.75"/>
- <text text-anchor="start" x="703.88" y="-1383.25" font-family="Ubuntu" font-size="10.00">SPI_MOODE_2</text>
- <polygon fill="#b2df8a" stroke="none" points="768,-1378.75 768,-1394.75 777,-1394.75 777,-1378.75 768,-1378.75"/>
- <text text-anchor="start" x="769.88" y="-1383.25" font-family="Ubuntu" font-size="10.00">2</text>
- <polygon fill="#b2df8a" stroke="none" points="702,-1362.75 702,-1378.75 768,-1378.75 768,-1362.75 702,-1362.75"/>
- <text text-anchor="start" x="703.88" y="-1367.25" font-family="Ubuntu" font-size="10.00">SPI_MOODE_3</text>
- <polygon fill="#b2df8a" stroke="none" points="768,-1362.75 768,-1378.75 777,-1378.75 777,-1362.75 768,-1362.75"/>
- <text text-anchor="start" x="769.88" y="-1367.25" font-family="Ubuntu" font-size="10.00">3</text>
- <polygon fill="none" stroke="black" points="701,-1361.75 701,-1443.75 778,-1443.75 778,-1361.75 701,-1361.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_158 -->
- <g id="node30" class="node">
- <title>Node_Ja_158</title>
- <g id="a_node30"><a xlink:title="sys.Infrared">
- <polygon fill="#fffaf0" stroke="none" points="309,-113.75 309,-163.75 405,-163.75 405,-113.75 309,-113.75"/>
- <polygon fill="#e31a1c" stroke="none" points="310,-146.75 310,-162.75 404,-162.75 404,-146.75 310,-146.75"/>
- <text text-anchor="start" x="361.5" y="-152.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Infrared</text>
- <text text-anchor="start" x="315.88" y="-135.25" font-family="Ubuntu" font-size="10.00">1</text>
- <text text-anchor="start" x="325" y="-135.25" font-family="Ubuntu" font-size="10.00">type</text>
- <polygon fill="#b2df8a" stroke="none" points="345,-130.75 345,-146.75 404,-146.75 404,-130.75 345,-130.75"/>
- <text text-anchor="start" x="346.75" y="-136.25" font-family="Ubuntu" text-decoration="underline" font-size="10.00">InfraredType</text>
- <text text-anchor="start" x="315.88" y="-119.25" font-family="Ubuntu" font-size="10.00">2</text>
- <text text-anchor="start" x="325" y="-119.25" font-family="Ubuntu" font-size="10.00">gpio</text>
- <polygon fill="#a6cee3" stroke="none" points="345,-114.75 345,-130.75 404,-130.75 404,-114.75 345,-114.75"/>
- <text text-anchor="start" x="381" y="-120.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <polygon fill="none" stroke="black" points="309,-113.75 309,-163.75 405,-163.75 405,-113.75 309,-113.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_157 -->
- <g id="node40" class="node">
- <title>Node_Ja_157</title>
- <g id="a_node40"><a xlink:title="InfraredType">
- <polygon fill="#b2df8a" stroke="none" points="518.5,-27.75 518.5,-93.75 614.5,-93.75 614.5,-27.75 518.5,-27.75"/>
- <polygon fill="#33a02c" stroke="none" points="519.5,-76.75 519.5,-92.75 613.5,-92.75 613.5,-76.75 519.5,-76.75"/>
- <text text-anchor="start" x="521.12" y="-82.25" font-family="Ubuntu" font-size="10.00">enum </text>
- <text text-anchor="start" x="548.12" y="-82.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">InfraredType</text>
- <polygon fill="#b2df8a" stroke="none" points="519.5,-60.75 519.5,-76.75 593.5,-76.75 593.5,-60.75 519.5,-60.75"/>
- <text text-anchor="start" x="521.5" y="-65.25" font-family="Ubuntu" font-size="10.00">IR_UNKNOWN</text>
- <polygon fill="#b2df8a" stroke="none" points="593.5,-60.75 593.5,-76.75 613.5,-76.75 613.5,-60.75 593.5,-60.75"/>
- <text text-anchor="start" x="595.5" y="-65.25" font-family="Ubuntu" font-size="10.00">0</text>
- <polygon fill="#b2df8a" stroke="none" points="519.5,-44.75 519.5,-60.75 593.5,-60.75 593.5,-44.75 519.5,-44.75"/>
- <text text-anchor="start" x="521.5" y="-49.25" font-family="Ubuntu" font-size="10.00">IR_RC5</text>
- <polygon fill="#b2df8a" stroke="none" points="593.5,-44.75 593.5,-60.75 613.5,-60.75 613.5,-44.75 593.5,-44.75"/>
- <text text-anchor="start" x="595.5" y="-49.25" font-family="Ubuntu" font-size="10.00">1</text>
- <polygon fill="#b2df8a" stroke="none" points="519.5,-28.75 519.5,-44.75 593.5,-44.75 593.5,-28.75 519.5,-28.75"/>
- <text text-anchor="start" x="521.5" y="-33.25" font-family="Ubuntu" font-size="10.00">IR_NEC</text>
- <polygon fill="#b2df8a" stroke="none" points="593.5,-28.75 593.5,-44.75 613.5,-44.75 613.5,-28.75 593.5,-28.75"/>
- <text text-anchor="start" x="595.5" y="-33.25" font-family="Ubuntu" font-size="10.00">2</text>
- <polygon fill="none" stroke="black" points="518.5,-27.75 518.5,-93.75 614.5,-93.75 614.5,-27.75 518.5,-27.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_158->Node_Ja_157 -->
- <g id="edge33" class="edge">
- <title>Node_Ja_158:e->Node_Ja_157</title>
- <g id="a_edge33"><a xlink:title="Ja_158 --> Ja_157">
- <path fill="none" stroke="#008000" d="M405,-138.75C424.96,-138.75 465.51,-118.98 500.85,-99.35"/>
- <polygon fill="#008000" stroke="#008000" points="502.34,-102.52 509.34,-94.57 498.91,-96.42 502.34,-102.52"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_153 -->
- <g id="node31" class="node">
- <title>Node_Ja_153</title>
- <g id="a_node31"><a xlink:title="sys.SPDIF">
- <polygon fill="#fffaf0" stroke="none" points="326,-1587.75 326,-1653.75 388,-1653.75 388,-1587.75 326,-1587.75"/>
- <polygon fill="#e31a1c" stroke="none" points="327,-1636.75 327,-1652.75 387,-1652.75 387,-1636.75 327,-1636.75"/>
- <text text-anchor="start" x="358" y="-1642.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">SPDIF</text>
- <text text-anchor="start" x="332.88" y="-1625.25" font-family="Ubuntu" font-size="10.00">1</text>
- <text text-anchor="start" x="342" y="-1625.25" font-family="Ubuntu" font-size="10.00">ws</text>
- <polygon fill="#a6cee3" stroke="none" points="362,-1620.75 362,-1636.75 387,-1636.75 387,-1620.75 362,-1620.75"/>
- <text text-anchor="start" x="364" y="-1626.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <text text-anchor="start" x="332.88" y="-1609.25" font-family="Ubuntu" font-size="10.00">2</text>
- <text text-anchor="start" x="341.62" y="-1609.25" font-family="Ubuntu" font-size="10.00">data</text>
- <polygon fill="#a6cee3" stroke="none" points="362,-1604.75 362,-1620.75 387,-1620.75 387,-1604.75 362,-1604.75"/>
- <text text-anchor="start" x="364" y="-1610.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <text text-anchor="start" x="332.88" y="-1593.25" font-family="Ubuntu" font-size="10.00">3</text>
- <text text-anchor="start" x="342" y="-1593.25" font-family="Ubuntu" font-size="10.00">clk</text>
- <polygon fill="#a6cee3" stroke="none" points="362,-1588.75 362,-1604.75 387,-1604.75 387,-1588.75 362,-1588.75"/>
- <text text-anchor="start" x="364" y="-1594.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <polygon fill="none" stroke="black" points="326,-1587.75 326,-1653.75 388,-1653.75 388,-1587.75 326,-1587.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_126 -->
- <g id="node32" class="node">
- <title>Node_Ja_126</title>
- <g id="a_node32"><a xlink:title="MCK">
- <polygon fill="#b2df8a" stroke="none" points="539.5,-2207.75 539.5,-2305.75 593.5,-2305.75 593.5,-2207.75 539.5,-2207.75"/>
- <polygon fill="#33a02c" stroke="none" points="540.5,-2288.75 540.5,-2304.75 592.5,-2304.75 592.5,-2288.75 540.5,-2288.75"/>
- <text text-anchor="start" x="543.25" y="-2294.25" font-family="Ubuntu" font-size="10.00">enum </text>
- <text text-anchor="start" x="570.25" y="-2294.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">MCK</text>
- <polygon fill="#b2df8a" stroke="none" points="540.5,-2272.75 540.5,-2288.75 583.5,-2288.75 583.5,-2272.75 540.5,-2272.75"/>
- <text text-anchor="start" x="542.5" y="-2277.25" font-family="Ubuntu" font-size="10.00">NONE</text>
- <polygon fill="#b2df8a" stroke="none" points="583.5,-2272.75 583.5,-2288.75 592.5,-2288.75 592.5,-2272.75 583.5,-2272.75"/>
- <text text-anchor="start" x="585.38" y="-2277.25" font-family="Ubuntu" font-size="10.00">0</text>
- <polygon fill="#b2df8a" stroke="none" points="540.5,-2256.75 540.5,-2272.75 583.5,-2272.75 583.5,-2256.75 540.5,-2256.75"/>
- <text text-anchor="start" x="542.5" y="-2261.25" font-family="Ubuntu" font-size="10.00">GPIO0</text>
- <polygon fill="#b2df8a" stroke="none" points="583.5,-2256.75 583.5,-2272.75 592.5,-2272.75 592.5,-2256.75 583.5,-2256.75"/>
- <text text-anchor="start" x="585.38" y="-2261.25" font-family="Ubuntu" font-size="10.00">1</text>
- <polygon fill="#b2df8a" stroke="none" points="540.5,-2240.75 540.5,-2256.75 583.5,-2256.75 583.5,-2240.75 540.5,-2240.75"/>
- <text text-anchor="start" x="542.5" y="-2245.25" font-family="Ubuntu" font-size="10.00">TXD</text>
- <polygon fill="#b2df8a" stroke="none" points="583.5,-2240.75 583.5,-2256.75 592.5,-2256.75 592.5,-2240.75 583.5,-2240.75"/>
- <text text-anchor="start" x="585.38" y="-2245.25" font-family="Ubuntu" font-size="10.00">2</text>
- <polygon fill="#b2df8a" stroke="none" points="540.5,-2224.75 540.5,-2240.75 583.5,-2240.75 583.5,-2224.75 540.5,-2224.75"/>
- <text text-anchor="start" x="542.12" y="-2229.25" font-family="Ubuntu" font-size="10.00">INVALID1</text>
- <polygon fill="#b2df8a" stroke="none" points="583.5,-2224.75 583.5,-2240.75 592.5,-2240.75 592.5,-2224.75 583.5,-2224.75"/>
- <text text-anchor="start" x="585.38" y="-2229.25" font-family="Ubuntu" font-size="10.00">3</text>
- <polygon fill="#b2df8a" stroke="none" points="540.5,-2208.75 540.5,-2224.75 583.5,-2224.75 583.5,-2208.75 540.5,-2208.75"/>
- <text text-anchor="start" x="542.5" y="-2213.25" font-family="Ubuntu" font-size="10.00">RXD</text>
- <polygon fill="#b2df8a" stroke="none" points="583.5,-2208.75 583.5,-2224.75 592.5,-2224.75 592.5,-2208.75 583.5,-2208.75"/>
- <text text-anchor="start" x="585.38" y="-2213.25" font-family="Ubuntu" font-size="10.00">4</text>
- <polygon fill="none" stroke="black" points="539.5,-2207.75 539.5,-2305.75 593.5,-2305.75 593.5,-2207.75 539.5,-2207.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_130 -->
- <g id="node34" class="node">
- <title>Node_Ja_130</title>
- <g id="a_node34"><a xlink:title="sys.display.Offsets">
- <polygon fill="#fffaf0" stroke="none" points="704.5,-1531.75 704.5,-1581.75 774.5,-1581.75 774.5,-1531.75 704.5,-1531.75"/>
- <polygon fill="#e31a1c" stroke="none" points="705.5,-1564.75 705.5,-1580.75 773.5,-1580.75 773.5,-1564.75 705.5,-1564.75"/>
- <text text-anchor="start" x="736.25" y="-1570.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Offsets</text>
- <text text-anchor="start" x="711.38" y="-1553.25" font-family="Ubuntu" font-size="10.00">1</text>
- <text text-anchor="start" x="720.38" y="-1553.25" font-family="Ubuntu" font-size="10.00">height</text>
- <polygon fill="#a6cee3" stroke="none" points="748.5,-1548.75 748.5,-1564.75 773.5,-1564.75 773.5,-1548.75 748.5,-1548.75"/>
- <text text-anchor="start" x="750.5" y="-1554.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <text text-anchor="start" x="711.38" y="-1537.25" font-family="Ubuntu" font-size="10.00">2</text>
- <text text-anchor="start" x="720.5" y="-1537.25" font-family="Ubuntu" font-size="10.00">width</text>
- <polygon fill="#a6cee3" stroke="none" points="748.5,-1532.75 748.5,-1548.75 773.5,-1548.75 773.5,-1532.75 748.5,-1532.75"/>
- <text text-anchor="start" x="750.5" y="-1538.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <polygon fill="none" stroke="black" points="704.5,-1531.75 704.5,-1581.75 774.5,-1581.75 774.5,-1531.75 704.5,-1531.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_131 -->
- <g id="node35" class="node">
- <title>Node_Ja_131</title>
- <g id="a_node35"><a xlink:title="Drivers">
- <polygon fill="#b2df8a" stroke="none" points="701,-1607.75 701,-1817.75 778,-1817.75 778,-1607.75 701,-1607.75"/>
- <polygon fill="#33a02c" stroke="none" points="702,-1800.75 702,-1816.75 777,-1816.75 777,-1800.75 702,-1800.75"/>
- <text text-anchor="start" x="712.75" y="-1806.25" font-family="Ubuntu" font-size="10.00">enum </text>
- <text text-anchor="start" x="739.75" y="-1806.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Drivers</text>
- <polygon fill="#b2df8a" stroke="none" points="702,-1784.75 702,-1800.75 763,-1800.75 763,-1784.75 702,-1784.75"/>
- <text text-anchor="start" x="704" y="-1789.25" font-family="Ubuntu" font-size="10.00">UNSPECIFIED</text>
- <polygon fill="#b2df8a" stroke="none" points="763,-1784.75 763,-1800.75 777,-1800.75 777,-1784.75 763,-1784.75"/>
- <text text-anchor="start" x="765" y="-1789.25" font-family="Ubuntu" font-size="10.00">0</text>
- <polygon fill="#b2df8a" stroke="none" points="702,-1768.75 702,-1784.75 763,-1784.75 763,-1768.75 702,-1768.75"/>
- <text text-anchor="start" x="704" y="-1773.25" font-family="Ubuntu" font-size="10.00">SSD1306</text>
- <polygon fill="#b2df8a" stroke="none" points="763,-1768.75 763,-1784.75 777,-1784.75 777,-1768.75 763,-1768.75"/>
- <text text-anchor="start" x="765" y="-1773.25" font-family="Ubuntu" font-size="10.00">1</text>
- <polygon fill="#b2df8a" stroke="none" points="702,-1752.75 702,-1768.75 763,-1768.75 763,-1752.75 702,-1752.75"/>
- <text text-anchor="start" x="704" y="-1757.25" font-family="Ubuntu" font-size="10.00">SSD1322</text>
- <polygon fill="#b2df8a" stroke="none" points="763,-1752.75 763,-1768.75 777,-1768.75 777,-1752.75 763,-1752.75"/>
- <text text-anchor="start" x="765" y="-1757.25" font-family="Ubuntu" font-size="10.00">2</text>
- <polygon fill="#b2df8a" stroke="none" points="702,-1736.75 702,-1752.75 763,-1752.75 763,-1736.75 702,-1736.75"/>
- <text text-anchor="start" x="704" y="-1741.25" font-family="Ubuntu" font-size="10.00">SSD1326</text>
- <polygon fill="#b2df8a" stroke="none" points="763,-1736.75 763,-1752.75 777,-1752.75 777,-1736.75 763,-1736.75"/>
- <text text-anchor="start" x="765" y="-1741.25" font-family="Ubuntu" font-size="10.00">3</text>
- <polygon fill="#b2df8a" stroke="none" points="702,-1720.75 702,-1736.75 763,-1736.75 763,-1720.75 702,-1720.75"/>
- <text text-anchor="start" x="704" y="-1725.25" font-family="Ubuntu" font-size="10.00">SSD1327</text>
- <polygon fill="#b2df8a" stroke="none" points="763,-1720.75 763,-1736.75 777,-1736.75 777,-1720.75 763,-1720.75"/>
- <text text-anchor="start" x="765" y="-1725.25" font-family="Ubuntu" font-size="10.00">4</text>
- <polygon fill="#b2df8a" stroke="none" points="702,-1704.75 702,-1720.75 763,-1720.75 763,-1704.75 702,-1704.75"/>
- <text text-anchor="start" x="704" y="-1709.25" font-family="Ubuntu" font-size="10.00">SH1106</text>
- <polygon fill="#b2df8a" stroke="none" points="763,-1704.75 763,-1720.75 777,-1720.75 777,-1704.75 763,-1704.75"/>
- <text text-anchor="start" x="765" y="-1709.25" font-family="Ubuntu" font-size="10.00">5</text>
- <polygon fill="#b2df8a" stroke="none" points="702,-1688.75 702,-1704.75 763,-1704.75 763,-1688.75 702,-1688.75"/>
- <text text-anchor="start" x="704" y="-1693.25" font-family="Ubuntu" font-size="10.00">SSD1675</text>
- <polygon fill="#b2df8a" stroke="none" points="763,-1688.75 763,-1704.75 777,-1704.75 777,-1688.75 763,-1688.75"/>
- <text text-anchor="start" x="765" y="-1693.25" font-family="Ubuntu" font-size="10.00">6</text>
- <polygon fill="#b2df8a" stroke="none" points="702,-1672.75 702,-1688.75 763,-1688.75 763,-1672.75 702,-1672.75"/>
- <text text-anchor="start" x="704" y="-1677.25" font-family="Ubuntu" font-size="10.00">ST7735</text>
- <polygon fill="#b2df8a" stroke="none" points="763,-1672.75 763,-1688.75 777,-1688.75 777,-1672.75 763,-1672.75"/>
- <text text-anchor="start" x="765" y="-1677.25" font-family="Ubuntu" font-size="10.00">7</text>
- <polygon fill="#b2df8a" stroke="none" points="702,-1656.75 702,-1672.75 763,-1672.75 763,-1656.75 702,-1656.75"/>
- <text text-anchor="start" x="704" y="-1661.25" font-family="Ubuntu" font-size="10.00">ST7789</text>
- <polygon fill="#b2df8a" stroke="none" points="763,-1656.75 763,-1672.75 777,-1672.75 777,-1656.75 763,-1656.75"/>
- <text text-anchor="start" x="765" y="-1661.25" font-family="Ubuntu" font-size="10.00">8</text>
- <polygon fill="#b2df8a" stroke="none" points="702,-1640.75 702,-1656.75 763,-1656.75 763,-1640.75 702,-1640.75"/>
- <text text-anchor="start" x="704" y="-1645.25" font-family="Ubuntu" font-size="10.00">ILI9341</text>
- <polygon fill="#b2df8a" stroke="none" points="763,-1640.75 763,-1656.75 777,-1656.75 777,-1640.75 763,-1640.75"/>
- <text text-anchor="start" x="765" y="-1645.25" font-family="Ubuntu" font-size="10.00">9</text>
- <polygon fill="#b2df8a" stroke="none" points="702,-1624.75 702,-1640.75 763,-1640.75 763,-1624.75 702,-1624.75"/>
- <text text-anchor="start" x="704" y="-1629.25" font-family="Ubuntu" font-size="10.00">ILI9341_24</text>
- <polygon fill="#b2df8a" stroke="none" points="763,-1624.75 763,-1640.75 777,-1640.75 777,-1624.75 763,-1624.75"/>
- <text text-anchor="start" x="764.75" y="-1629.25" font-family="Ubuntu" font-size="10.00">10</text>
- <polygon fill="#b2df8a" stroke="none" points="702,-1608.75 702,-1624.75 763,-1624.75 763,-1608.75 702,-1608.75"/>
- <text text-anchor="start" x="704" y="-1613.25" font-family="Ubuntu" font-size="10.00">SSD1351</text>
- <polygon fill="#b2df8a" stroke="none" points="763,-1608.75 763,-1624.75 777,-1624.75 777,-1608.75 763,-1608.75"/>
- <text text-anchor="start" x="764.75" y="-1613.25" font-family="Ubuntu" font-size="10.00">11</text>
- <polygon fill="none" stroke="black" points="701,-1607.75 701,-1817.75 778,-1817.75 778,-1607.75 701,-1607.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_137 -->
- <g id="node37" class="node">
- <title>Node_Ja_137</title>
- <g id="a_node37"><a xlink:title="Actions">
- <polygon fill="#b2df8a" stroke="none" points="1005.5,-335.75 1005.5,-865.75 1081.5,-865.75 1081.5,-335.75 1005.5,-335.75"/>
- <polygon fill="#33a02c" stroke="none" points="1006.5,-848.75 1006.5,-864.75 1080.5,-864.75 1080.5,-848.75 1006.5,-848.75"/>
- <text text-anchor="start" x="1014.75" y="-854.25" font-family="Ubuntu" font-size="10.00">enum </text>
- <text text-anchor="start" x="1041.75" y="-854.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Actions</text>
- <polygon fill="#b2df8a" stroke="none" points="1006.5,-832.75 1006.5,-848.75 1066.5,-848.75 1066.5,-832.75 1006.5,-832.75"/>
- <text text-anchor="start" x="1008.5" y="-837.25" font-family="Ubuntu" font-size="10.00">A_NONE</text>
- <polygon fill="#b2df8a" stroke="none" points="1066.5,-832.75 1066.5,-848.75 1080.5,-848.75 1080.5,-832.75 1066.5,-832.75"/>
- <text text-anchor="start" x="1068.5" y="-837.25" font-family="Ubuntu" font-size="10.00">0</text>
- <polygon fill="#b2df8a" stroke="none" points="1006.5,-816.75 1006.5,-832.75 1066.5,-832.75 1066.5,-816.75 1006.5,-816.75"/>
- <text text-anchor="start" x="1008.5" y="-821.25" font-family="Ubuntu" font-size="10.00">A_POWER</text>
- <polygon fill="#b2df8a" stroke="none" points="1066.5,-816.75 1066.5,-832.75 1080.5,-832.75 1080.5,-816.75 1066.5,-816.75"/>
- <text text-anchor="start" x="1068.5" y="-821.25" font-family="Ubuntu" font-size="10.00">1</text>
- <polygon fill="#b2df8a" stroke="none" points="1006.5,-800.75 1006.5,-816.75 1066.5,-816.75 1066.5,-800.75 1006.5,-800.75"/>
- <text text-anchor="start" x="1008.5" y="-805.25" font-family="Ubuntu" font-size="10.00">A_VOLUP</text>
- <polygon fill="#b2df8a" stroke="none" points="1066.5,-800.75 1066.5,-816.75 1080.5,-816.75 1080.5,-800.75 1066.5,-800.75"/>
- <text text-anchor="start" x="1068.5" y="-805.25" font-family="Ubuntu" font-size="10.00">2</text>
- <polygon fill="#b2df8a" stroke="none" points="1006.5,-784.75 1006.5,-800.75 1066.5,-800.75 1066.5,-784.75 1006.5,-784.75"/>
- <text text-anchor="start" x="1008.38" y="-789.25" font-family="Ubuntu" font-size="10.00">A_VOLDOWN</text>
- <polygon fill="#b2df8a" stroke="none" points="1066.5,-784.75 1066.5,-800.75 1080.5,-800.75 1080.5,-784.75 1066.5,-784.75"/>
- <text text-anchor="start" x="1068.5" y="-789.25" font-family="Ubuntu" font-size="10.00">3</text>
- <polygon fill="#b2df8a" stroke="none" points="1006.5,-768.75 1006.5,-784.75 1066.5,-784.75 1066.5,-768.75 1006.5,-768.75"/>
- <text text-anchor="start" x="1008.5" y="-773.25" font-family="Ubuntu" font-size="10.00">A_TOGGLE</text>
- <polygon fill="#b2df8a" stroke="none" points="1066.5,-768.75 1066.5,-784.75 1080.5,-784.75 1080.5,-768.75 1066.5,-768.75"/>
- <text text-anchor="start" x="1068.5" y="-773.25" font-family="Ubuntu" font-size="10.00">4</text>
- <polygon fill="#b2df8a" stroke="none" points="1006.5,-752.75 1006.5,-768.75 1066.5,-768.75 1066.5,-752.75 1006.5,-752.75"/>
- <text text-anchor="start" x="1008.5" y="-757.25" font-family="Ubuntu" font-size="10.00">A_PLAY</text>
- <polygon fill="#b2df8a" stroke="none" points="1066.5,-752.75 1066.5,-768.75 1080.5,-768.75 1080.5,-752.75 1066.5,-752.75"/>
- <text text-anchor="start" x="1068.5" y="-757.25" font-family="Ubuntu" font-size="10.00">5</text>
- <polygon fill="#b2df8a" stroke="none" points="1006.5,-736.75 1006.5,-752.75 1066.5,-752.75 1066.5,-736.75 1006.5,-736.75"/>
- <text text-anchor="start" x="1008.5" y="-741.25" font-family="Ubuntu" font-size="10.00">A_PAUSE</text>
- <polygon fill="#b2df8a" stroke="none" points="1066.5,-736.75 1066.5,-752.75 1080.5,-752.75 1080.5,-736.75 1066.5,-736.75"/>
- <text text-anchor="start" x="1068.5" y="-741.25" font-family="Ubuntu" font-size="10.00">6</text>
- <polygon fill="#b2df8a" stroke="none" points="1006.5,-720.75 1006.5,-736.75 1066.5,-736.75 1066.5,-720.75 1006.5,-720.75"/>
- <text text-anchor="start" x="1008.5" y="-725.25" font-family="Ubuntu" font-size="10.00">A_STOP</text>
- <polygon fill="#b2df8a" stroke="none" points="1066.5,-720.75 1066.5,-736.75 1080.5,-736.75 1080.5,-720.75 1066.5,-720.75"/>
- <text text-anchor="start" x="1068.5" y="-725.25" font-family="Ubuntu" font-size="10.00">7</text>
- <polygon fill="#b2df8a" stroke="none" points="1006.5,-704.75 1006.5,-720.75 1066.5,-720.75 1066.5,-704.75 1006.5,-704.75"/>
- <text text-anchor="start" x="1008.5" y="-709.25" font-family="Ubuntu" font-size="10.00">A_REW</text>
- <polygon fill="#b2df8a" stroke="none" points="1066.5,-704.75 1066.5,-720.75 1080.5,-720.75 1080.5,-704.75 1066.5,-704.75"/>
- <text text-anchor="start" x="1068.5" y="-709.25" font-family="Ubuntu" font-size="10.00">8</text>
- <polygon fill="#b2df8a" stroke="none" points="1006.5,-688.75 1006.5,-704.75 1066.5,-704.75 1066.5,-688.75 1006.5,-688.75"/>
- <text text-anchor="start" x="1008.5" y="-693.25" font-family="Ubuntu" font-size="10.00">A_FWD</text>
- <polygon fill="#b2df8a" stroke="none" points="1066.5,-688.75 1066.5,-704.75 1080.5,-704.75 1080.5,-688.75 1066.5,-688.75"/>
- <text text-anchor="start" x="1068.5" y="-693.25" font-family="Ubuntu" font-size="10.00">9</text>
- <polygon fill="#b2df8a" stroke="none" points="1006.5,-672.75 1006.5,-688.75 1066.5,-688.75 1066.5,-672.75 1006.5,-672.75"/>
- <text text-anchor="start" x="1008.5" y="-677.25" font-family="Ubuntu" font-size="10.00">A_PREV</text>
- <polygon fill="#b2df8a" stroke="none" points="1066.5,-672.75 1066.5,-688.75 1080.5,-688.75 1080.5,-672.75 1066.5,-672.75"/>
- <text text-anchor="start" x="1068.25" y="-677.25" font-family="Ubuntu" font-size="10.00">10</text>
- <polygon fill="#b2df8a" stroke="none" points="1006.5,-656.75 1006.5,-672.75 1066.5,-672.75 1066.5,-656.75 1006.5,-656.75"/>
- <text text-anchor="start" x="1008.5" y="-661.25" font-family="Ubuntu" font-size="10.00">A_NEXT</text>
- <polygon fill="#b2df8a" stroke="none" points="1066.5,-656.75 1066.5,-672.75 1080.5,-672.75 1080.5,-656.75 1066.5,-656.75"/>
- <text text-anchor="start" x="1068.25" y="-661.25" font-family="Ubuntu" font-size="10.00">11</text>
- <polygon fill="#b2df8a" stroke="none" points="1006.5,-640.75 1006.5,-656.75 1066.5,-656.75 1066.5,-640.75 1006.5,-640.75"/>
- <text text-anchor="start" x="1008.5" y="-645.25" font-family="Ubuntu" font-size="10.00">B_UP</text>
- <polygon fill="#b2df8a" stroke="none" points="1066.5,-640.75 1066.5,-656.75 1080.5,-656.75 1080.5,-640.75 1066.5,-640.75"/>
- <text text-anchor="start" x="1068.25" y="-645.25" font-family="Ubuntu" font-size="10.00">12</text>
- <polygon fill="#b2df8a" stroke="none" points="1006.5,-624.75 1006.5,-640.75 1066.5,-640.75 1066.5,-624.75 1006.5,-624.75"/>
- <text text-anchor="start" x="1008.5" y="-629.25" font-family="Ubuntu" font-size="10.00">B_DOWN</text>
- <polygon fill="#b2df8a" stroke="none" points="1066.5,-624.75 1066.5,-640.75 1080.5,-640.75 1080.5,-624.75 1066.5,-624.75"/>
- <text text-anchor="start" x="1068.25" y="-629.25" font-family="Ubuntu" font-size="10.00">13</text>
- <polygon fill="#b2df8a" stroke="none" points="1006.5,-608.75 1006.5,-624.75 1066.5,-624.75 1066.5,-608.75 1006.5,-608.75"/>
- <text text-anchor="start" x="1008.5" y="-613.25" font-family="Ubuntu" font-size="10.00">B_LEFT</text>
- <polygon fill="#b2df8a" stroke="none" points="1066.5,-608.75 1066.5,-624.75 1080.5,-624.75 1080.5,-608.75 1066.5,-608.75"/>
- <text text-anchor="start" x="1068.25" y="-613.25" font-family="Ubuntu" font-size="10.00">14</text>
- <polygon fill="#b2df8a" stroke="none" points="1006.5,-592.75 1006.5,-608.75 1066.5,-608.75 1066.5,-592.75 1006.5,-592.75"/>
- <text text-anchor="start" x="1008.5" y="-597.25" font-family="Ubuntu" font-size="10.00">B_RIGHT</text>
- <polygon fill="#b2df8a" stroke="none" points="1066.5,-592.75 1066.5,-608.75 1080.5,-608.75 1080.5,-592.75 1066.5,-592.75"/>
- <text text-anchor="start" x="1068.25" y="-597.25" font-family="Ubuntu" font-size="10.00">15</text>
- <polygon fill="#b2df8a" stroke="none" points="1006.5,-576.75 1006.5,-592.75 1066.5,-592.75 1066.5,-576.75 1006.5,-576.75"/>
- <text text-anchor="start" x="1008.5" y="-581.25" font-family="Ubuntu" font-size="10.00">B_PS1</text>
- <polygon fill="#b2df8a" stroke="none" points="1066.5,-576.75 1066.5,-592.75 1080.5,-592.75 1080.5,-576.75 1066.5,-576.75"/>
- <text text-anchor="start" x="1068.25" y="-581.25" font-family="Ubuntu" font-size="10.00">16</text>
- <polygon fill="#b2df8a" stroke="none" points="1006.5,-560.75 1006.5,-576.75 1066.5,-576.75 1066.5,-560.75 1006.5,-560.75"/>
- <text text-anchor="start" x="1008.5" y="-565.25" font-family="Ubuntu" font-size="10.00">B_PS2</text>
- <polygon fill="#b2df8a" stroke="none" points="1066.5,-560.75 1066.5,-576.75 1080.5,-576.75 1080.5,-560.75 1066.5,-560.75"/>
- <text text-anchor="start" x="1068.25" y="-565.25" font-family="Ubuntu" font-size="10.00">17</text>
- <polygon fill="#b2df8a" stroke="none" points="1006.5,-544.75 1006.5,-560.75 1066.5,-560.75 1066.5,-544.75 1006.5,-544.75"/>
- <text text-anchor="start" x="1008.5" y="-549.25" font-family="Ubuntu" font-size="10.00">B_PS3</text>
- <polygon fill="#b2df8a" stroke="none" points="1066.5,-544.75 1066.5,-560.75 1080.5,-560.75 1080.5,-544.75 1066.5,-544.75"/>
- <text text-anchor="start" x="1068.25" y="-549.25" font-family="Ubuntu" font-size="10.00">18</text>
- <polygon fill="#b2df8a" stroke="none" points="1006.5,-528.75 1006.5,-544.75 1066.5,-544.75 1066.5,-528.75 1006.5,-528.75"/>
- <text text-anchor="start" x="1008.5" y="-533.25" font-family="Ubuntu" font-size="10.00">B_PS4</text>
- <polygon fill="#b2df8a" stroke="none" points="1066.5,-528.75 1066.5,-544.75 1080.5,-544.75 1080.5,-528.75 1066.5,-528.75"/>
- <text text-anchor="start" x="1068.25" y="-533.25" font-family="Ubuntu" font-size="10.00">19</text>
- <polygon fill="#b2df8a" stroke="none" points="1006.5,-512.75 1006.5,-528.75 1066.5,-528.75 1066.5,-512.75 1006.5,-512.75"/>
- <text text-anchor="start" x="1008.5" y="-517.25" font-family="Ubuntu" font-size="10.00">B_PS5</text>
- <polygon fill="#b2df8a" stroke="none" points="1066.5,-512.75 1066.5,-528.75 1080.5,-528.75 1080.5,-512.75 1066.5,-512.75"/>
- <text text-anchor="start" x="1068.25" y="-517.25" font-family="Ubuntu" font-size="10.00">20</text>
- <polygon fill="#b2df8a" stroke="none" points="1006.5,-496.75 1006.5,-512.75 1066.5,-512.75 1066.5,-496.75 1006.5,-496.75"/>
- <text text-anchor="start" x="1008.5" y="-501.25" font-family="Ubuntu" font-size="10.00">B_PS6</text>
- <polygon fill="#b2df8a" stroke="none" points="1066.5,-496.75 1066.5,-512.75 1080.5,-512.75 1080.5,-496.75 1066.5,-496.75"/>
- <text text-anchor="start" x="1068.25" y="-501.25" font-family="Ubuntu" font-size="10.00">21</text>
- <polygon fill="#b2df8a" stroke="none" points="1006.5,-480.75 1006.5,-496.75 1066.5,-496.75 1066.5,-480.75 1006.5,-480.75"/>
- <text text-anchor="start" x="1008.5" y="-485.25" font-family="Ubuntu" font-size="10.00">B_PS7</text>
- <polygon fill="#b2df8a" stroke="none" points="1066.5,-480.75 1066.5,-496.75 1080.5,-496.75 1080.5,-480.75 1066.5,-480.75"/>
- <text text-anchor="start" x="1068.25" y="-485.25" font-family="Ubuntu" font-size="10.00">22</text>
- <polygon fill="#b2df8a" stroke="none" points="1006.5,-464.75 1006.5,-480.75 1066.5,-480.75 1066.5,-464.75 1006.5,-464.75"/>
- <text text-anchor="start" x="1008.5" y="-469.25" font-family="Ubuntu" font-size="10.00">B_PS8</text>
- <polygon fill="#b2df8a" stroke="none" points="1066.5,-464.75 1066.5,-480.75 1080.5,-480.75 1080.5,-464.75 1066.5,-464.75"/>
- <text text-anchor="start" x="1068.25" y="-469.25" font-family="Ubuntu" font-size="10.00">23</text>
- <polygon fill="#b2df8a" stroke="none" points="1006.5,-448.75 1006.5,-464.75 1066.5,-464.75 1066.5,-448.75 1006.5,-448.75"/>
- <text text-anchor="start" x="1008.5" y="-453.25" font-family="Ubuntu" font-size="10.00">B_PS9</text>
- <polygon fill="#b2df8a" stroke="none" points="1066.5,-448.75 1066.5,-464.75 1080.5,-464.75 1080.5,-448.75 1066.5,-448.75"/>
- <text text-anchor="start" x="1068.25" y="-453.25" font-family="Ubuntu" font-size="10.00">24</text>
- <polygon fill="#b2df8a" stroke="none" points="1006.5,-432.75 1006.5,-448.75 1066.5,-448.75 1066.5,-432.75 1006.5,-432.75"/>
- <text text-anchor="start" x="1008.5" y="-437.25" font-family="Ubuntu" font-size="10.00">B_PS10</text>
- <polygon fill="#b2df8a" stroke="none" points="1066.5,-432.75 1066.5,-448.75 1080.5,-448.75 1080.5,-432.75 1066.5,-432.75"/>
- <text text-anchor="start" x="1068.25" y="-437.25" font-family="Ubuntu" font-size="10.00">25</text>
- <polygon fill="#b2df8a" stroke="none" points="1006.5,-416.75 1006.5,-432.75 1066.5,-432.75 1066.5,-416.75 1006.5,-416.75"/>
- <text text-anchor="start" x="1008.5" y="-421.25" font-family="Ubuntu" font-size="10.00">KNOB_LEFT</text>
- <polygon fill="#b2df8a" stroke="none" points="1066.5,-416.75 1066.5,-432.75 1080.5,-432.75 1080.5,-416.75 1066.5,-416.75"/>
- <text text-anchor="start" x="1068.25" y="-421.25" font-family="Ubuntu" font-size="10.00">26</text>
- <polygon fill="#b2df8a" stroke="none" points="1006.5,-400.75 1006.5,-416.75 1066.5,-416.75 1066.5,-400.75 1006.5,-400.75"/>
- <text text-anchor="start" x="1008.5" y="-405.25" font-family="Ubuntu" font-size="10.00">KNOB_RIGHT</text>
- <polygon fill="#b2df8a" stroke="none" points="1066.5,-400.75 1066.5,-416.75 1080.5,-416.75 1080.5,-400.75 1066.5,-400.75"/>
- <text text-anchor="start" x="1068.25" y="-405.25" font-family="Ubuntu" font-size="10.00">27</text>
- <polygon fill="#b2df8a" stroke="none" points="1006.5,-384.75 1006.5,-400.75 1066.5,-400.75 1066.5,-384.75 1006.5,-384.75"/>
- <text text-anchor="start" x="1008.5" y="-389.25" font-family="Ubuntu" font-size="10.00">KNOB_PUSH</text>
- <polygon fill="#b2df8a" stroke="none" points="1066.5,-384.75 1066.5,-400.75 1080.5,-400.75 1080.5,-384.75 1066.5,-384.75"/>
- <text text-anchor="start" x="1068.25" y="-389.25" font-family="Ubuntu" font-size="10.00">28</text>
- <polygon fill="#b2df8a" stroke="none" points="1006.5,-368.75 1006.5,-384.75 1066.5,-384.75 1066.5,-368.75 1006.5,-368.75"/>
- <text text-anchor="start" x="1008.5" y="-373.25" font-family="Ubuntu" font-size="10.00">A_SLEEP</text>
- <polygon fill="#b2df8a" stroke="none" points="1066.5,-368.75 1066.5,-384.75 1080.5,-384.75 1080.5,-368.75 1066.5,-368.75"/>
- <text text-anchor="start" x="1068.25" y="-373.25" font-family="Ubuntu" font-size="10.00">29</text>
- <polygon fill="#b2df8a" stroke="none" points="1006.5,-352.75 1006.5,-368.75 1066.5,-368.75 1066.5,-352.75 1006.5,-352.75"/>
- <text text-anchor="start" x="1008.5" y="-357.25" font-family="Ubuntu" font-size="10.00">REMAP</text>
- <polygon fill="#b2df8a" stroke="none" points="1066.5,-352.75 1066.5,-368.75 1080.5,-368.75 1080.5,-352.75 1066.5,-352.75"/>
- <text text-anchor="start" x="1068.25" y="-357.25" font-family="Ubuntu" font-size="10.00">30</text>
- <polygon fill="#b2df8a" stroke="none" points="1006.5,-336.75 1006.5,-352.75 1066.5,-352.75 1066.5,-336.75 1006.5,-336.75"/>
- <text text-anchor="start" x="1008.5" y="-341.25" font-family="Ubuntu" font-size="10.00">MAX</text>
- <polygon fill="#b2df8a" stroke="none" points="1066.5,-336.75 1066.5,-352.75 1080.5,-352.75 1080.5,-336.75 1066.5,-336.75"/>
- <text text-anchor="start" x="1068.25" y="-341.25" font-family="Ubuntu" font-size="10.00">31</text>
- <polygon fill="none" stroke="black" points="1005.5,-335.75 1005.5,-865.75 1081.5,-865.75 1081.5,-335.75 1005.5,-335.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_133->Node_Ja_134 -->
- <g id="edge38" class="edge">
- <title>Node_Ja_133:e->Node_Ja_134</title>
- <g id="a_edge38"><a xlink:title="Ja_133 --> Ja_134">
- <path fill="none" stroke="#008000" d="M602.5,-1402.75C628.59,-1402.75 657.5,-1402.75 681.93,-1402.75"/>
- <polygon fill="#008000" stroke="#008000" points="681.65,-1406.25 691.65,-1402.75 681.65,-1399.25 681.65,-1406.25"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_159 -->
- <g id="node39" class="node">
- <title>Node_Ja_159</title>
- <g id="a_node39"><a xlink:title="sys.Dev">
- <polygon fill="#fffaf0" stroke="none" points="8,-1082.75 8,-1308.75 218,-1308.75 218,-1082.75 8,-1082.75"/>
- <polygon fill="#e31a1c" stroke="none" points="9,-1291.75 9,-1307.75 217,-1307.75 217,-1291.75 9,-1291.75"/>
- <text text-anchor="start" x="196.25" y="-1297.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Dev</text>
- <text text-anchor="start" x="35.75" y="-1280.25" font-family="Ubuntu" font-size="10.00">1</text>
- <text text-anchor="start" x="45" y="-1280.25" font-family="Ubuntu" font-size="10.00">spi</text>
- <polygon fill="#fb9a99" stroke="none" points="128,-1275.75 128,-1291.75 217,-1291.75 217,-1275.75 128,-1275.75"/>
- <text text-anchor="start" x="182" y="-1281.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">SPIBus</text>
- <text text-anchor="start" x="35.75" y="-1264.25" font-family="Ubuntu" font-size="10.00">2</text>
- <text text-anchor="start" x="45" y="-1264.25" font-family="Ubuntu" font-size="10.00">i2c</text>
- <polygon fill="#fb9a99" stroke="none" points="128,-1259.75 128,-1275.75 217,-1275.75 217,-1259.75 128,-1259.75"/>
- <text text-anchor="start" x="182" y="-1265.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">I2CBus</text>
- <text text-anchor="start" x="35.75" y="-1248.25" font-family="Ubuntu" font-size="10.00">3</text>
- <text text-anchor="start" x="45" y="-1248.25" font-family="Ubuntu" font-size="10.00">dac</text>
- <polygon fill="#fb9a99" stroke="none" points="128,-1243.75 128,-1259.75 217,-1259.75 217,-1243.75 128,-1243.75"/>
- <text text-anchor="start" x="165.5" y="-1249.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">dac.config</text>
- <text text-anchor="start" x="35.75" y="-1232.25" font-family="Ubuntu" font-size="10.00">4</text>
- <text text-anchor="start" x="45" y="-1232.25" font-family="Ubuntu" font-size="10.00">spdif</text>
- <polygon fill="#fb9a99" stroke="none" points="128,-1227.75 128,-1243.75 217,-1243.75 217,-1227.75 128,-1227.75"/>
- <text text-anchor="start" x="188" y="-1233.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">SPDIF</text>
- <text text-anchor="start" x="35.75" y="-1216.25" font-family="Ubuntu" font-size="10.00">5</text>
- <text text-anchor="start" x="45" y="-1216.25" font-family="Ubuntu" font-size="10.00">display</text>
- <polygon fill="#fb9a99" stroke="none" points="128,-1211.75 128,-1227.75 217,-1227.75 217,-1211.75 128,-1211.75"/>
- <text text-anchor="start" x="129.75" y="-1217.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">sys.display.config</text>
- <text text-anchor="start" x="10.75" y="-1200.25" font-family="Ubuntu" font-size="10.00">[...]</text>
- <text text-anchor="start" x="35.75" y="-1200.25" font-family="Ubuntu" font-size="10.00">6</text>
- <text text-anchor="start" x="45" y="-1200.25" font-family="Ubuntu" font-size="10.00">gpio_exp</text>
- <polygon fill="#fb9a99" stroke="none" points="128,-1195.75 128,-1211.75 217,-1211.75 217,-1195.75 128,-1195.75"/>
- <text text-anchor="start" x="175.25" y="-1201.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">gpio.Exp</text>
- <text text-anchor="start" x="35.75" y="-1184.25" font-family="Ubuntu" font-size="10.00">7</text>
- <text text-anchor="start" x="45" y="-1184.25" font-family="Ubuntu" font-size="10.00">led_strip</text>
- <polygon fill="#fb9a99" stroke="none" points="128,-1179.75 128,-1195.75 217,-1195.75 217,-1179.75 128,-1179.75"/>
- <text text-anchor="start" x="174.5" y="-1185.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">LEDStrip</text>
- <text text-anchor="start" x="35.75" y="-1168.25" font-family="Ubuntu" font-size="10.00">8</text>
- <text text-anchor="start" x="45" y="-1168.25" font-family="Ubuntu" font-size="10.00">rotary</text>
- <polygon fill="#fb9a99" stroke="none" points="128,-1163.75 128,-1179.75 217,-1179.75 217,-1163.75 128,-1163.75"/>
- <text text-anchor="start" x="156.5" y="-1169.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">btns.Rotary</text>
- <text text-anchor="start" x="35.75" y="-1152.25" font-family="Ubuntu" font-size="10.00">9</text>
- <text text-anchor="start" x="44.62" y="-1152.25" font-family="Ubuntu" font-size="10.00">root_button_profile</text>
- <polygon fill="#a6cee3" stroke="none" points="128,-1147.75 128,-1163.75 217,-1163.75 217,-1147.75 128,-1147.75"/>
- <text text-anchor="start" x="191" y="-1153.25" font-family="Ubuntu" font-style="italic" font-size="10.00">string</text>
- <text text-anchor="start" x="10.75" y="-1136.25" font-family="Ubuntu" font-size="10.00">[...]</text>
- <text text-anchor="start" x="30.75" y="-1136.25" font-family="Ubuntu" font-size="10.00">10</text>
- <text text-anchor="start" x="45" y="-1136.25" font-family="Ubuntu" font-size="10.00">buttons_profiles</text>
- <polygon fill="#fb9a99" stroke="none" points="128,-1131.75 128,-1147.75 217,-1147.75 217,-1131.75 128,-1131.75"/>
- <text text-anchor="start" x="159.5" y="-1137.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">btns.Profile</text>
- <text text-anchor="start" x="30.75" y="-1120.25" font-family="Ubuntu" font-size="10.00">11</text>
- <text text-anchor="start" x="45" y="-1120.25" font-family="Ubuntu" font-size="10.00">eth</text>
- <polygon fill="#fb9a99" stroke="none" points="128,-1115.75 128,-1131.75 217,-1131.75 217,-1115.75 128,-1115.75"/>
- <text text-anchor="start" x="145.25" y="-1121.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">dev.eth.config</text>
- <text text-anchor="start" x="30.75" y="-1104.25" font-family="Ubuntu" font-size="10.00">12</text>
- <text text-anchor="start" x="45" y="-1104.25" font-family="Ubuntu" font-size="10.00">battery</text>
- <polygon fill="#fb9a99" stroke="none" points="128,-1099.75 128,-1115.75 217,-1115.75 217,-1099.75 128,-1099.75"/>
- <text text-anchor="start" x="177.5" y="-1105.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Battery</text>
- <text text-anchor="start" x="30.75" y="-1088.25" font-family="Ubuntu" font-size="10.00">13</text>
- <text text-anchor="start" x="45" y="-1088.25" font-family="Ubuntu" font-size="10.00">ir</text>
- <polygon fill="#fb9a99" stroke="none" points="128,-1083.75 128,-1099.75 217,-1099.75 217,-1083.75 128,-1083.75"/>
- <text text-anchor="start" x="174.5" y="-1089.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Infrared</text>
- <polygon fill="none" stroke="black" points="8,-1082.75 8,-1308.75 218,-1308.75 218,-1082.75 8,-1082.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_159->Node_Ja_152 -->
- <g id="edge46" class="edge">
- <title>Node_Ja_159:e->Node_Ja_152:header</title>
- <g id="a_edge46"><a xlink:title="Ja_159 --> Ja_152">
- <path fill="none" stroke="#000000" d="M218,-1123.75C289.23,-1123.75 220.11,-827.07 276,-794.62"/>
- <polygon fill="#000000" stroke="#000000" points="276.74,-798.04 285.54,-792.13 274.98,-791.27 276.74,-798.04"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_159->Node_Ja_154 -->
- <g id="edge17" class="edge">
- <title>Node_Ja_159:e->Node_Ja_154:header</title>
- <g id="a_edge17"><a xlink:title="Ja_159 --> Ja_154">
- <path fill="none" stroke="#000000" d="M218,-1283.75C276.72,-1283.75 254.27,-2281.54 262,-2339.75 270.21,-2401.58 233.56,-2475.8 283.76,-2484.83"/>
- <polygon fill="#000000" stroke="#000000" points="283.24,-2488.3 293.49,-2485.63 283.81,-2481.33 283.24,-2488.3"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_159->Node_Ja_112 -->
- <g id="edge12" class="edge">
- <title>Node_Ja_159:e->Node_Ja_112:header</title>
- <g id="a_edge12"><a xlink:title="Ja_159 --> Ja_112">
- <path fill="none" stroke="#000000" d="M218,-1203.75C270.38,-1203.75 256.13,-1279.17 298.62,-1290.37"/>
- <polygon fill="#000000" stroke="#000000" points="298.15,-1293.84 308.5,-1291.57 298.99,-1286.89 298.15,-1293.84"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_159->Node_Ja_136 -->
- <g id="edge9" class="edge">
- <title>Node_Ja_159:e->Node_Ja_136:header</title>
- <g id="a_edge9"><a xlink:title="Ja_159 --> Ja_136">
- <path fill="none" stroke="#000000" d="M218,-1219.75C289.44,-1219.75 219.94,-1517.32 275.96,-1549.87"/>
- <polygon fill="#000000" stroke="#000000" points="274.98,-1553.23 285.54,-1552.37 276.74,-1546.46 274.98,-1553.23"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_159->Node_Ja_143 -->
- <g id="edge47" class="edge">
- <title>Node_Ja_159:e->Node_Ja_143:header</title>
- <g id="a_edge47"><a xlink:title="Ja_159 --> Ja_143">
- <path fill="none" stroke="#000000" d="M218,-1171.75C284.07,-1171.75 220.24,-1080.95 262,-1029.75 272.12,-1017.34 278.54,-1010.82 290.77,-1008.62"/>
- <polygon fill="#000000" stroke="#000000" points="290.79,-1012.13 300.49,-1007.87 290.25,-1005.15 290.79,-1012.13"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_159->Node_Ja_146 -->
- <g id="edge34" class="edge">
- <title>Node_Ja_159:e->Node_Ja_146:header</title>
- <g id="a_edge34"><a xlink:title="Ja_159 --> Ja_146">
- <path fill="none" stroke="#000000" d="M218,-1107.75C299.7,-1107.75 208.42,-408.11 274.58,-345.25"/>
- <polygon fill="#000000" stroke="#000000" points="275.82,-348.53 283.61,-341.35 273.04,-342.11 275.82,-348.53"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_159->Node_Ja_114 -->
- <g id="edge55" class="edge">
- <title>Node_Ja_159:e->Node_Ja_114:header</title>
- <g id="a_edge55"><a xlink:title="Ja_159 --> Ja_114">
- <path fill="none" stroke="#000000" d="M218,-1267.75C271.44,-1267.75 236.19,-2181.95 262,-2228.75 277.22,-2256.36 449.9,-2382.64 503.58,-2402.2"/>
- <polygon fill="#000000" stroke="#000000" points="502.49,-2405.54 513.03,-2404.41 504.08,-2398.72 502.49,-2405.54"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_159->Node_Ja_141 -->
- <g id="edge58" class="edge">
- <title>Node_Ja_159:e->Node_Ja_141:header</title>
- <g id="a_edge58"><a xlink:title="Ja_159 --> Ja_141">
- <path fill="none" stroke="#000000" d="M218,-1139.75C274.41,-1139.75 231.85,-937.43 262,-889.75 268.63,-879.26 273.13,-872.31 281.74,-869.36"/>
- <polygon fill="#000000" stroke="#000000" points="282.1,-872.85 291.5,-867.96 281.11,-865.92 282.1,-872.85"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_159->Node_Ja_158 -->
- <g id="edge7" class="edge">
- <title>Node_Ja_159:e->Node_Ja_158:header</title>
- <g id="a_edge7"><a xlink:title="Ja_159 --> Ja_158">
- <path fill="none" stroke="#000000" d="M218,-1091.75C264.56,-1091.75 250.66,-299.91 262,-254.75 272.93,-211.21 262.12,-163.72 297.68,-155.87"/>
- <polygon fill="#000000" stroke="#000000" points="297.89,-159.37 307.49,-154.9 297.2,-152.41 297.89,-159.37"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_159->Node_Ja_153 -->
- <g id="edge53" class="edge">
- <title>Node_Ja_159:e->Node_Ja_153:header</title>
- <g id="a_edge53"><a xlink:title="Ja_159 --> Ja_153">
- <path fill="none" stroke="#000000" d="M218,-1235.75C293.97,-1235.75 230,-1505.85 262,-1574.75 278.02,-1609.25 282.92,-1638.48 314.69,-1643.86"/>
- <polygon fill="#000000" stroke="#000000" points="314.25,-1647.34 324.49,-1644.63 314.79,-1640.36 314.25,-1647.34"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_156 -->
- <g id="node44" class="node">
- <title>Node_Ja_156</title>
- <g id="a_node44"><a xlink:title="sys.LEDStrip">
- <polygon fill="#fffaf0" stroke="none" points="296,-1042.75 296,-1108.75 418,-1108.75 418,-1042.75 296,-1042.75"/>
- <polygon fill="#e31a1c" stroke="none" points="297,-1091.75 297,-1107.75 417,-1107.75 417,-1091.75 297,-1091.75"/>
- <text text-anchor="start" x="374.5" y="-1097.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">LEDStrip</text>
- <text text-anchor="start" x="302.88" y="-1080.25" font-family="Ubuntu" font-size="10.00">1</text>
- <text text-anchor="start" x="312" y="-1080.25" font-family="Ubuntu" font-size="10.00">gpio</text>
- <polygon fill="#a6cee3" stroke="none" points="356,-1075.75 356,-1091.75 417,-1091.75 417,-1075.75 356,-1075.75"/>
- <text text-anchor="start" x="394" y="-1081.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <text text-anchor="start" x="302.88" y="-1064.25" font-family="Ubuntu" font-size="10.00">2</text>
- <text text-anchor="start" x="312" y="-1064.25" font-family="Ubuntu" font-size="10.00">length</text>
- <polygon fill="#a6cee3" stroke="none" points="356,-1059.75 356,-1075.75 417,-1075.75 417,-1059.75 356,-1059.75"/>
- <text text-anchor="start" x="394" y="-1065.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <text text-anchor="start" x="302.88" y="-1048.25" font-family="Ubuntu" font-size="10.00">3</text>
- <text text-anchor="start" x="312" y="-1048.25" font-family="Ubuntu" font-size="10.00">strip_type</text>
- <polygon fill="#b2df8a" stroke="none" points="356,-1043.75 356,-1059.75 417,-1059.75 417,-1043.75 356,-1043.75"/>
- <text text-anchor="start" x="358" y="-1049.25" font-family="Ubuntu" text-decoration="underline" font-size="10.00">LEDStripType</text>
- <polygon fill="none" stroke="black" points="296,-1042.75 296,-1108.75 418,-1108.75 418,-1042.75 296,-1042.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_159->Node_Ja_156 -->
- <g id="edge13" class="edge">
- <title>Node_Ja_159:e->Node_Ja_156:header</title>
- <g id="a_edge13"><a xlink:title="Ja_159 --> Ja_156">
- <path fill="none" stroke="#000000" d="M218,-1187.75C253.25,-1187.75 236.9,-1146.51 262,-1121.75 271.61,-1112.27 275.81,-1104.64 284.9,-1101.41"/>
- <polygon fill="#000000" stroke="#000000" points="285.13,-1104.91 294.5,-1099.97 284.1,-1097.99 285.13,-1104.91"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_129 -->
- <g id="node45" class="node">
- <title>Node_Ja_129</title>
- <g id="a_node45"><a xlink:title="sys.dac.config">
- <polygon fill="#fffaf0" stroke="none" points="270,-2021.75 270,-2215.75 444,-2215.75 444,-2021.75 270,-2021.75"/>
- <polygon fill="#e31a1c" stroke="none" points="271,-2198.75 271,-2214.75 443,-2214.75 443,-2198.75 271,-2198.75"/>
- <text text-anchor="start" x="411.75" y="-2204.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">config</text>
- <text text-anchor="start" x="281.75" y="-2187.25" font-family="Ubuntu" font-size="10.00">1</text>
- <text text-anchor="start" x="291" y="-2187.25" font-family="Ubuntu" font-size="10.00">bck</text>
- <polygon fill="#a6cee3" stroke="none" points="365,-2182.75 365,-2198.75 443,-2198.75 443,-2182.75 365,-2182.75"/>
- <text text-anchor="start" x="420" y="-2188.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <text text-anchor="start" x="281.75" y="-2171.25" font-family="Ubuntu" font-size="10.00">2</text>
- <text text-anchor="start" x="291" y="-2171.25" font-family="Ubuntu" font-size="10.00">ws</text>
- <polygon fill="#a6cee3" stroke="none" points="365,-2166.75 365,-2182.75 443,-2182.75 443,-2166.75 365,-2166.75"/>
- <text text-anchor="start" x="420" y="-2172.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <text text-anchor="start" x="281.75" y="-2155.25" font-family="Ubuntu" font-size="10.00">3</text>
- <text text-anchor="start" x="291" y="-2155.25" font-family="Ubuntu" font-size="10.00">dout</text>
- <polygon fill="#a6cee3" stroke="none" points="365,-2150.75 365,-2166.75 443,-2166.75 443,-2150.75 365,-2150.75"/>
- <text text-anchor="start" x="420" y="-2156.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <text text-anchor="start" x="281.75" y="-2139.25" font-family="Ubuntu" font-size="10.00">4</text>
- <text text-anchor="start" x="291" y="-2139.25" font-family="Ubuntu" font-size="10.00">mck</text>
- <polygon fill="#b2df8a" stroke="none" points="365,-2134.75 365,-2150.75 443,-2150.75 443,-2134.75 365,-2134.75"/>
- <text text-anchor="start" x="422.25" y="-2140.25" font-family="Ubuntu" text-decoration="underline" font-size="10.00">MCK</text>
- <text text-anchor="start" x="281.75" y="-2123.25" font-family="Ubuntu" font-size="10.00">5</text>
- <text text-anchor="start" x="291" y="-2123.25" font-family="Ubuntu" font-size="10.00">mute</text>
- <polygon fill="#fb9a99" stroke="none" points="365,-2118.75 365,-2134.75 443,-2134.75 443,-2118.75 365,-2118.75"/>
- <text text-anchor="start" x="402" y="-2124.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">gpio.PIN</text>
- <text text-anchor="start" x="281.75" y="-2107.25" font-family="Ubuntu" font-size="10.00">6</text>
- <text text-anchor="start" x="291" y="-2107.25" font-family="Ubuntu" font-size="10.00">model</text>
- <polygon fill="#b2df8a" stroke="none" points="365,-2102.75 365,-2118.75 443,-2118.75 443,-2102.75 365,-2102.75"/>
- <text text-anchor="start" x="411" y="-2108.25" font-family="Ubuntu" text-decoration="underline" font-size="10.00">Models</text>
- <text text-anchor="start" x="281.75" y="-2091.25" font-family="Ubuntu" font-size="10.00">7</text>
- <text text-anchor="start" x="291" y="-2091.25" font-family="Ubuntu" font-size="10.00">i2c</text>
- <polygon fill="#fb9a99" stroke="none" points="365,-2086.75 365,-2102.75 443,-2102.75 443,-2086.75 365,-2086.75"/>
- <text text-anchor="start" x="408" y="-2092.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">I2CBus</text>
- <text text-anchor="start" x="281.75" y="-2075.25" font-family="Ubuntu" font-size="10.00">8</text>
- <text text-anchor="start" x="291" y="-2075.25" font-family="Ubuntu" font-size="10.00">daccontrolset</text>
- <polygon fill="#fb9a99" stroke="none" points="365,-2070.75 365,-2086.75 443,-2086.75 443,-2070.75 365,-2070.75"/>
- <text text-anchor="start" x="366.88" y="-2076.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">dac.control.Set</text>
- <text text-anchor="start" x="281.75" y="-2059.25" font-family="Ubuntu" font-size="10.00">9</text>
- <text text-anchor="start" x="290.62" y="-2059.25" font-family="Ubuntu" font-size="10.00">jack_mutes_amp</text>
- <polygon fill="#a6cee3" stroke="none" points="365,-2054.75 365,-2070.75 443,-2070.75 443,-2054.75 365,-2054.75"/>
- <text text-anchor="start" x="423" y="-2060.25" font-family="Ubuntu" font-style="italic" font-size="10.00">bool</text>
- <text text-anchor="start" x="276.75" y="-2043.25" font-family="Ubuntu" font-size="10.00">10</text>
- <text text-anchor="start" x="291" y="-2043.25" font-family="Ubuntu" font-size="10.00">addr</text>
- <polygon fill="#a6cee3" stroke="none" points="365,-2038.75 365,-2054.75 443,-2054.75 443,-2038.75 365,-2038.75"/>
- <text text-anchor="start" x="414.75" y="-2044.25" font-family="Ubuntu" font-style="italic" font-size="10.00">uint32</text>
- <text text-anchor="start" x="276.75" y="-2027.25" font-family="Ubuntu" font-size="10.00">11</text>
- <text text-anchor="start" x="291" y="-2027.25" font-family="Ubuntu" font-size="10.00">din</text>
- <polygon fill="#a6cee3" stroke="none" points="365,-2022.75 365,-2038.75 443,-2038.75 443,-2022.75 365,-2022.75"/>
- <text text-anchor="start" x="420" y="-2028.25" font-family="Ubuntu" font-style="italic" font-size="10.00">int32</text>
- <polygon fill="none" stroke="black" points="270,-2021.75 270,-2215.75 444,-2215.75 444,-2021.75 270,-2021.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_159->Node_Ja_129 -->
- <g id="edge8" class="edge">
- <title>Node_Ja_159:e->Node_Ja_129:header</title>
- <g id="a_edge8"><a xlink:title="Ja_159 --> Ja_129">
- <path fill="none" stroke="#000000" d="M218,-1251.75C320.32,-1251.75 175.28,-2137.19 259.24,-2202.9"/>
- <polygon fill="#000000" stroke="#000000" points="257.98,-2206.17 268.57,-2206.24 260.34,-2199.58 257.98,-2206.17"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_149->Node_Ja_147 -->
- <g id="edge50" class="edge">
- <title>Node_Ja_149:e->Node_Ja_147</title>
- <g id="a_edge50"><a xlink:title="Ja_149 --> Ja_147">
- <path fill="none" stroke="#008000" d="M617.5,-548.75C640.58,-548.75 665.93,-545.85 687.43,-542.53"/>
- <polygon fill="#008000" stroke="#008000" points="687.82,-546.01 697.12,-540.95 686.69,-539.1 687.82,-546.01"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_124 -->
- <g id="node43" class="node">
- <title>Node_Ja_124</title>
- <g id="a_node43"><a xlink:title="Mode">
- <polygon fill="#b2df8a" stroke="none" points="1173,-1861.75 1173,-1927.75 1232,-1927.75 1232,-1861.75 1173,-1861.75"/>
- <polygon fill="#33a02c" stroke="none" points="1174,-1910.75 1174,-1926.75 1231,-1926.75 1231,-1910.75 1174,-1910.75"/>
- <text text-anchor="start" x="1175.88" y="-1916.25" font-family="Ubuntu" font-size="10.00">enum </text>
- <text text-anchor="start" x="1202.88" y="-1916.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Mode</text>
- <polygon fill="#b2df8a" stroke="none" points="1174,-1894.75 1174,-1910.75 1219,-1910.75 1219,-1894.75 1174,-1894.75"/>
- <text text-anchor="start" x="1176" y="-1899.25" font-family="Ubuntu" font-size="10.00">NOTHING</text>
- <polygon fill="#b2df8a" stroke="none" points="1219,-1894.75 1219,-1910.75 1231,-1910.75 1231,-1894.75 1219,-1894.75"/>
- <text text-anchor="start" x="1221" y="-1899.25" font-family="Ubuntu" font-size="10.00">0</text>
- <polygon fill="#b2df8a" stroke="none" points="1174,-1878.75 1174,-1894.75 1219,-1894.75 1219,-1878.75 1174,-1878.75"/>
- <text text-anchor="start" x="1176" y="-1883.25" font-family="Ubuntu" font-size="10.00">OR</text>
- <polygon fill="#b2df8a" stroke="none" points="1219,-1878.75 1219,-1894.75 1231,-1894.75 1231,-1878.75 1219,-1878.75"/>
- <text text-anchor="start" x="1221" y="-1883.25" font-family="Ubuntu" font-size="10.00">1</text>
- <polygon fill="#b2df8a" stroke="none" points="1174,-1862.75 1174,-1878.75 1219,-1878.75 1219,-1862.75 1174,-1862.75"/>
- <text text-anchor="start" x="1176" y="-1867.25" font-family="Ubuntu" font-size="10.00">AND</text>
- <polygon fill="#b2df8a" stroke="none" points="1219,-1862.75 1219,-1878.75 1231,-1878.75 1231,-1862.75 1219,-1862.75"/>
- <text text-anchor="start" x="1221" y="-1867.25" font-family="Ubuntu" font-size="10.00">2</text>
- <polygon fill="none" stroke="black" points="1173,-1861.75 1173,-1927.75 1232,-1927.75 1232,-1861.75 1173,-1861.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_119->Node_Ja_124 -->
- <g id="edge62" class="edge">
- <title>Node_Ja_119:e->Node_Ja_124</title>
- <g id="a_edge62"><a xlink:title="Ja_119 --> Ja_124">
- <path fill="none" stroke="#008000" d="M1080.5,-1886.75C1104.7,-1886.75 1131.57,-1888.36 1153.83,-1890.14"/>
- <polygon fill="#008000" stroke="#008000" points="1153.24,-1893.6 1163.5,-1890.95 1153.83,-1886.63 1153.24,-1893.6"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_156->Node_Ja_155 -->
- <g id="edge52" class="edge">
- <title>Node_Ja_156:e->Node_Ja_155</title>
- <g id="a_edge52"><a xlink:title="Ja_156 --> Ja_155">
- <path fill="none" stroke="#008000" d="M418,-1051.75C445.34,-1051.75 474.62,-1045.41 499.82,-1037.84"/>
- <polygon fill="#008000" stroke="#008000" points="500.78,-1041.21 509.28,-1034.87 498.69,-1034.53 500.78,-1041.21"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_129->Node_Ja_105 -->
- <g id="edge16" class="edge">
- <title>Node_Ja_129:e->Node_Ja_105:header</title>
- <g id="a_edge16"><a xlink:title="Ja_129 --> Ja_105">
- <path fill="none" stroke="#000000" d="M444,-2126.75C467.67,-2126.75 465.38,-2149.77 488,-2156.75 554.68,-2177.32 594.83,-2205.25 645,-2156.75 729.73,-2074.85 605.71,-1187.41 681,-1096.75 694.29,-1080.74 722.52,-1098.07 734.24,-1093.71"/>
- <polygon fill="#000000" stroke="#000000" points="737.22,-1095.57 738.79,-1085.09 731.03,-1092.29 737.22,-1095.57"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_129->Node_Ja_114 -->
- <g id="edge21" class="edge">
- <title>Node_Ja_129:e->Node_Ja_114:header</title>
- <g id="a_edge21"><a xlink:title="Ja_129 --> Ja_114">
- <path fill="none" stroke="#000000" d="M444,-2094.75C510.51,-2094.75 451.66,-2369.49 503.48,-2401.68"/>
- <polygon fill="#000000" stroke="#000000" points="502.47,-2405.03 513.04,-2404.34 504.35,-2398.29 502.47,-2405.03"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_129->Node_Ja_125 -->
- <g id="edge23" class="edge">
- <title>Node_Ja_129:e->Node_Ja_125</title>
- <g id="a_edge23"><a xlink:title="Ja_129 --> Ja_125">
- <path fill="none" stroke="#008000" d="M444,-2110.75C467.48,-2110.75 491.83,-2102.9 512.52,-2093.55"/>
- <polygon fill="#008000" stroke="#008000" points="513.78,-2096.83 521.3,-2089.37 510.77,-2090.51 513.78,-2096.83"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_129->Node_Ja_126 -->
- <g id="edge22" class="edge">
- <title>Node_Ja_129:e->Node_Ja_126</title>
- <g id="a_edge22"><a xlink:title="Ja_129 --> Ja_126">
- <path fill="none" stroke="#008000" d="M444,-2142.75C472.61,-2142.75 467.37,-2169.92 488,-2189.75 499.04,-2200.36 511.41,-2211.4 522.98,-2221.4"/>
- <polygon fill="#008000" stroke="#008000" points="520.61,-2223.98 530.48,-2227.82 525.16,-2218.66 520.61,-2223.98"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_115 -->
- <g id="node47" class="node">
- <title>Node_Ja_115</title>
- <g id="a_node47"><a xlink:title="sys.dac.control.Set">
- <polygon fill="#fffaf0" stroke="none" points="496,-1905.75 496,-1955.75 637,-1955.75 637,-1905.75 496,-1905.75"/>
- <polygon fill="#e31a1c" stroke="none" points="497,-1938.75 497,-1954.75 636,-1954.75 636,-1938.75 497,-1938.75"/>
- <text text-anchor="start" x="617.5" y="-1944.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Set</text>
- <text text-anchor="start" x="498.75" y="-1927.25" font-family="Ubuntu" font-size="10.00">[...]</text>
- <text text-anchor="start" x="518.88" y="-1927.25" font-family="Ubuntu" font-size="10.00">1</text>
- <text text-anchor="start" x="528" y="-1927.25" font-family="Ubuntu" font-size="10.00">commands</text>
- <polygon fill="#fb9a99" stroke="none" points="586,-1922.75 586,-1938.75 636,-1938.75 636,-1922.75 586,-1922.75"/>
- <text text-anchor="start" x="587.75" y="-1928.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Command</text>
- <text text-anchor="start" x="518.88" y="-1911.25" font-family="Ubuntu" font-size="10.00">2</text>
- <text text-anchor="start" x="527.88" y="-1911.25" font-family="Ubuntu" font-size="10.00">mclk_needed</text>
- <polygon fill="#a6cee3" stroke="none" points="586,-1906.75 586,-1922.75 636,-1922.75 636,-1906.75 586,-1906.75"/>
- <text text-anchor="start" x="616" y="-1912.25" font-family="Ubuntu" font-style="italic" font-size="10.00">bool</text>
- <polygon fill="none" stroke="black" points="496,-1905.75 496,-1955.75 637,-1955.75 637,-1905.75 496,-1905.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_129->Node_Ja_115 -->
- <g id="edge15" class="edge">
- <title>Node_Ja_129:e->Node_Ja_115:header</title>
- <g id="a_edge15"><a xlink:title="Ja_129 --> Ja_115">
- <path fill="none" stroke="#000000" d="M444,-2078.75C502.55,-2078.75 442.32,-1964.66 484.16,-1948.62"/>
- <polygon fill="#000000" stroke="#000000" points="484.71,-1952.07 494.01,-1947 483.57,-1945.17 484.71,-1952.07"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_115->Node_Ja_117 -->
- <g id="edge11" class="edge">
- <title>Node_Ja_115:e->Node_Ja_117:header</title>
- <g id="a_edge11"><a xlink:title="Ja_115 --> Ja_117">
- <path fill="none" stroke="#000000" d="M637.5,-1930.75C660,-1930.75 668.26,-1930.75 686.31,-1930.75"/>
- <polygon fill="#000000" stroke="#000000" points="685.99,-1934.25 695.99,-1930.75 685.99,-1927.25 685.99,-1934.25"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_135->Node_Ja_130 -->
- <g id="edge36" class="edge">
- <title>Node_Ja_135:e->Node_Ja_130:header</title>
- <g id="a_edge36"><a xlink:title="Ja_135 --> Ja_130">
- <path fill="none" stroke="#000000" d="M624.5,-1602.75C658.32,-1602.75 665.23,-1578.95 693.17,-1573.75"/>
- <polygon fill="#000000" stroke="#000000" points="693.34,-1577.25 702.99,-1572.88 692.72,-1570.27 693.34,-1577.25"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_135->Node_Ja_131 -->
- <g id="edge5" class="edge">
- <title>Node_Ja_135:e->Node_Ja_131</title>
- <g id="a_edge5"><a xlink:title="Ja_135 --> Ja_131">
- <path fill="none" stroke="#008000" d="M624.5,-1682.75C643.65,-1682.75 664.03,-1686.76 682.19,-1691.85"/>
- <polygon fill="#008000" stroke="#008000" points="681.14,-1695.18 691.72,-1694.69 683.14,-1688.48 681.14,-1695.18"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_138 -->
- <g id="node50" class="node">
- <title>Node_Ja_138</title>
- <g id="a_node50"><a xlink:title="sys.btns.Action">
- <polygon fill="#fffaf0" stroke="none" points="842,-575.75 842,-625.75 951,-625.75 951,-575.75 842,-575.75"/>
- <polygon fill="#e31a1c" stroke="none" points="843,-608.75 843,-624.75 950,-624.75 950,-608.75 843,-608.75"/>
- <text text-anchor="start" x="916.5" y="-614.25" font-family="Ubuntu" font-weight="bold" font-size="10.00">Action</text>
- <text text-anchor="start" x="848.88" y="-597.25" font-family="Ubuntu" font-size="10.00">1</text>
- <text text-anchor="start" x="858" y="-597.25" font-family="Ubuntu" font-size="10.00">type</text>
- <polygon fill="#b2df8a" stroke="none" points="916,-592.75 916,-608.75 950,-608.75 950,-592.75 916,-592.75"/>
- <text text-anchor="start" x="917.62" y="-598.25" font-family="Ubuntu" text-decoration="underline" font-size="10.00">Actions</text>
- <text text-anchor="start" x="848.88" y="-581.25" font-family="Ubuntu" font-size="10.00">2</text>
- <text text-anchor="start" x="857.88" y="-581.25" font-family="Ubuntu" font-size="10.00">profile_name</text>
- <polygon fill="#a6cee3" stroke="none" points="916,-576.75 916,-592.75 950,-592.75 950,-576.75 916,-576.75"/>
- <text text-anchor="start" x="924" y="-582.25" font-family="Ubuntu" font-style="italic" font-size="10.00">string</text>
- <polygon fill="none" stroke="black" points="842,-575.75 842,-625.75 951,-625.75 951,-575.75 842,-575.75"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_138->Node_Ja_137 -->
- <g id="edge3" class="edge">
- <title>Node_Ja_138:e->Node_Ja_137</title>
- <g id="a_edge3"><a xlink:title="Ja_138 --> Ja_137">
- <path fill="none" stroke="#008000" d="M951.5,-600.75C962.76,-600.75 974.8,-600.75 986.31,-600.75"/>
- <polygon fill="#008000" stroke="#008000" points="986.09,-604.25 996.09,-600.75 986.09,-597.25 986.09,-604.25"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_139->Node_Ja_138 -->
- <g id="edge32" class="edge">
- <title>Node_Ja_139:e->Node_Ja_138:header</title>
- <g id="a_edge32"><a xlink:title="Ja_139 --> Ja_138">
- <path fill="none" stroke="#000000" d="M784.5,-608.75C805.88,-608.75 813.47,-614.34 830.33,-616.17"/>
- <polygon fill="#000000" stroke="#000000" points="829.82,-619.65 839.99,-616.67 830.18,-612.66 829.82,-619.65"/>
- </a>
- </g>
- </g>
- <!-- Node_Ja_139->Node_Ja_138 -->
- <g id="edge45" class="edge">
- <title>Node_Ja_139:e->Node_Ja_138:header</title>
- <g id="a_edge45"><a xlink:title="Ja_139 --> Ja_138">
- <path fill="none" stroke="#000000" d="M784.5,-624.75C805.88,-624.75 813.47,-619.16 830.33,-617.33"/>
- <polygon fill="#000000" stroke="#000000" points="830.18,-620.84 839.99,-616.83 829.82,-613.85 830.18,-620.84"/>
- </a>
- </g>
- </g>
- </g>
- </svg>
|