123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262 |
- <?xml version="1.0"?>
- <TcSmProject xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://www.beckhoff.com/schemas/2012/07/TcSmProject" TcSmVersion="1.0" TcVersion="3.1.4024.54">
- <DataTypes>
- <DataType>
- <Name GUID="{18071995-0000-0000-0000-002000000008}" IecBaseType="true" AutoDeleteType="true" HideSubItems="true">ARRAY [0..0] OF BYTE</Name>
- <BitSize>8</BitSize>
- <BaseType GUID="{18071995-0000-0000-0000-000000000001}">BYTE</BaseType>
- <ArrayInfo>
- <LBound>0</LBound>
- <Elements>1</Elements>
- </ArrayInfo>
- </DataType>
- <DataType>
- <Name GUID="{18071995-0000-0000-0000-002000000004}" IecBaseType="true" AutoDeleteType="true" HideSubItems="true">ARRAY [0..3] OF BIT</Name>
- <BitSize>4</BitSize>
- <BaseType GUID="{18071995-0000-0000-0000-000000000010}">BIT</BaseType>
- <ArrayInfo>
- <LBound>0</LBound>
- <Elements>4</Elements>
- </ArrayInfo>
- </DataType>
- <DataType>
- <Name GUID="{18071995-0000-0000-0000-00200000000C}" IecBaseType="true" AutoDeleteType="true" HideSubItems="true">ARRAY [0..11] OF BIT</Name>
- <BitSize>12</BitSize>
- <BaseType GUID="{18071995-0000-0000-0000-000000000010}">BIT</BaseType>
- <ArrayInfo>
- <LBound>0</LBound>
- <Elements>12</Elements>
- </ArrayInfo>
- </DataType>
- <DataType>
- <Name GUID="{18071995-0000-0000-0000-002000000001}" IecBaseType="true" BitType="true" AutoDeleteType="true" HideSubItems="true">ARRAY [0..0] OF BIT</Name>
- <BitSize>1</BitSize>
- <BaseType GUID="{18071995-0000-0000-0000-000000000010}">BIT</BaseType>
- <ArrayInfo>
- <LBound>0</LBound>
- <Elements>1</Elements>
- </ArrayInfo>
- </DataType>
- <DataType>
- <Name GUID="{18071995-0000-0000-0000-002000000006}" IecBaseType="true" BitType="true" AutoDeleteType="true" HideSubItems="true">ARRAY [0..5] OF BIT</Name>
- <BitSize>6</BitSize>
- <BaseType GUID="{18071995-0000-0000-0000-000000000010}">BIT</BaseType>
- <ArrayInfo>
- <LBound>0</LBound>
- <Elements>6</Elements>
- </ArrayInfo>
- </DataType>
- </DataTypes>
- <ImageDatas>
- <ImageData Id="1000">424dd6020000000000003600000028000000100000000e0000000100180000000000a0020000c40e0000c40e00000000000000000000ff00ffc0c0c0c0c0c0c0c0c0c0c0c0808080808080808080808080808080808080ff00ffff00ffff00ffff00ffff00ffff00ffc0c0c0c0c0c0c0c0c0c0c0c0808080c0c0c0000000c0c0c0000000808080ff00ffff00ffff00ffff00ffff00ffff00ffc0c0c000bfff00bfffc0c0c0808080c0c0c000ffffc0c0c000ffff808080ff00ffff00ffff00ffff00ffff00ffff00ffc0c0c000bfff00bfffc0c0c0808080c0c0c0c0c0c0c0c0c0c0c0c0808080ff00ffff00ffff00ffff00ffff00ffff00ffc0c0c000bfff00bfffc0c0c0808080c0c0c0000000c0c0c0000000808080ff00ffff00ffff00ffff00ffff00ffff00ffc0c0c0c0c0c0c0c0c0c0c0c0808080c0c0c0ff0000c0c0c0ff0000808080ff00ffff00ffff00ffff00ffff00ffff00ffc0c0c0c0c0c0c0c0c0c0c0c0808080c0c0c0c0c0c0c0c0c0c0c0c0808080ff00ffff00ffff00ffff00ffff00ffff00ffc0c0c000bfff00bfffc0c0c0808080c0c0c0000000c0c0c0000000808080ff00ffff00ffff00ffff00ffff00ffff00ffc0c0c000bfff00bfffc0c0c0808080c0c0c00000ffc0c0c00000ff808080ff00ffff00ffff00ffff00ffff00ffff00ffc0c0c000bfff00bfffc0c0c0808080c0c0c0c0c0c0c0c0c0c0c0c0808080ff00ffff00ffff00ffff00ffff00ffff00ffc0c0c0000000000000c0c0c0808080c0c0c0000000c0c0c0000000808080ff00ffff00ffff00ffff00ffff00ffff00ff000000c0c0c0c0c0c0000000808080c0c0c0c0c0c0c0c0c0c0c0c0808080ff00ffff00ffff00ffff00ffff00ffff00ffc0c0c0000000000000c0c0c0808080c0c0c0008000c0c0c0008000808080ff00ffff00ffff00ffff00ffff00ffff00ffc0c0c0c0c0c0c0c0c0c0c0c0808080c0c0c0c0c0c0c0c0c0c0c0c0808080ff00ffff00ffff00ffff00ffff00ff</ImageData>
- <ImageData Id="1001">424dd6020000000000003600000028000000100000000e0000000100180000000000a0020000120b0000120b00000000000000000000ff00ffff00ffff00ffff00ffff00ffff00ff808080808080808080808080808080ff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffc0c0c0000000c0c0c0000000808080ff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffc0c0c000ffffc0c0c000ffff808080ff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffc0c0c0c0c0c0c0c0c0c0c0c0808080ff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffc0c0c0000000c0c0c0000000808080ff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffc0c0c0ff0000c0c0c0ff0000808080ff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffc0c0c0c0c0c0c0c0c0c0c0c0808080ff00ffff00ffff00ffff00ffff00ff0000ff0000ff0000ff0000ff0000ff0000ffc0c0c0000000c0c0c0000000808080ff00ffff00ffff00ffff00ffff00ff0000ff0000ff0000ff0000ff0000ff0000ffc0c0c00000ffc0c0c00000ff808080ff00ffff00ffff00ffff00ffff00ff0000ff0000ff0000ff0000ff0000ff0000ffc0c0c0c0c0c0c0c0c0c0c0c0808080ff00ffff00ffff00ffff00ffff00ff0000ff0000ff0000ff0000ff0000ff0000ffc0c0c0000000c0c0c0000000808080ff00ffff00ffff00ffff00ffff00ff0000ff0000ff0000ff0000ff0000ff0000ffc0c0c0c0c0c0c0c0c0c0c0c0808080ff00ffff00ffff00ffff00ffff00ff0000ff0000ff0000ff0000ff0000ff0000ffc0c0c0008000c0c0c0008000808080ff00ffff00ffff00ffff00ffff00ff0000ff0000ff0000ff0000ff0000ff0000ffc0c0c0c0c0c0c0c0c0c0c0c0808080ff00ffff00ffff00ffff00ffff00ff</ImageData>
- <ImageData Id="1002">424dd6020000000000003600000028000000100000000e0000000100180000000000a0020000c40e0000c40e00000000000000000000ff00ffff00ffff00ffff00ffff00ffff00ff808080808080808080808080808080ff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffc0c0c0000000c0c0c0000000808080ff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffc0c0c000ffffc0c0c000ffff808080ff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffc0c0c0c0c0c0c0c0c0c0c0c0808080ff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffc0c0c0000000c0c0c0000000808080ff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffc0c0c0ff0000c0c0c0ff0000808080ff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffc0c0c0c0c0c0c0c0c0c0c0c0808080ff00ffff00ffff00ffff00ffff00ff00ff0000ff0000ff0000ff0000ff0000ff00c0c0c0000000c0c0c0000000808080ff00ffff00ffff00ffff00ffff00ff00ff0000ff0000ff0000ff0000ff0000ff00c0c0c00000ffc0c0c00000ff808080ff00ffff00ffff00ffff00ffff00ff00ff0000ff0000ff0000ff0000ff0000ff00c0c0c0c0c0c0c0c0c0c0c0c0808080ff00ffff00ffff00ffff00ffff00ff00ff0000ff0000ff0000ff0000ff0000ff00c0c0c0000000c0c0c0000000808080ff00ffff00ffff00ffff00ffff00ff00ff0000ff0000ff0000ff0000ff0000ff00c0c0c0c0c0c0c0c0c0c0c0c0808080ff00ffff00ffff00ffff00ffff00ff00ff0000ff0000ff0000ff0000ff0000ff00c0c0c0008000c0c0c0008000808080ff00ffff00ffff00ffff00ffff00ff00ff0000ff0000ff0000ff0000ff0000ff00c0c0c0c0c0c0c0c0c0c0c0c0808080ff00ffff00ffff00ffff00ffff00ff</ImageData>
- <ImageData Id="1003">424dd6020000000000003600000028000000100000000e0000000100180000000000a0020000c40e0000c40e00000000000000000000ff00ffff00ffff00ffff00ffff00ffff00ff808080808080808080ff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffc0c0c0c0c0c0808080ff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffc0c0c0c0c0c0808080ff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffc0c0c0c0c0c0808080ff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffc0c0c0c0c0c0808080ff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffc0c0c0c0c0c0808080ff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffff00ffc0c0c0c0c0c0808080ff00ffff00ffff00ffff00ffff00ffff00ffff00ff007fff007fff007fff007fff007fff007fffc0c0c0c0c0c0808080ff00ffff00ffff00ffff00ffff00ffff00ffff00ff007fff007fff007fff007fff007fff007fffc0c0c0c0c0c0808080ff00ffff00ffff00ffff00ffff00ffff00ffff00ff007fff007fff007fff007fff007fff007fffc0c0c0c0c0c0808080ff00ffff00ffff00ffff00ffff00ffff00ffff00ff007fff007fff007fff007fff007fff007fffc0c0c0c0c0c0808080ff00ffff00ffff00ffff00ffff00ffff00ffff00ff007fff007fff007fff007fff007fff007fffc0c0c0c0c0c0808080ff00ffff00ffff00ffff00ffff00ffff00ffff00ff007fff007fff007fff007fff007fff007fffc0c0c0c0c0c0808080ff00ffff00ffff00ffff00ffff00ffff00ffff00ff007fff007fff007fff007fff007fff007fffc0c0c0c0c0c0808080ff00ffff00ffff00ffff00ffff00ffff00ffff00ff</ImageData>
- <ImageData Id="1004">424db6030000000000003600000028000000100000000e00000001002000000000008003000000000000000000000000000000000000fffffffffbfbfbfffbfbfbfffbfbfbfffbfbfbfffbfbfbfffbfbfbfffbfbfbfffbfbfbffd2d2d1fffbfbfbfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffbfbfbffc2c0beffc2c0beff827f7bff61615eff61615effadadacff8e8d8affd2d2d1fffffffffffbfbfbfffffffffffffffffffffffffffbfbfbffffffffffd2d2d1ff8e8d8aff8e8d8aff61615eff24221eff1f201cff43413effadadacff737270fffbfbfbfffffffffffbfbfbfffffffffffffffffffffffffffbfbfbfffbfbfbff50504cff737270ff737270ff61615eff50504cff24221eff8e8d8aff31302cff8e8d8afffbfbfbfffffffffffffffffffffffffffffffffffbfbfbfffbfbfbff31302cff24221eff50504cff737270ff43413eff161512ff8e8d8aff43413eff827f7bffc2c0befffbfbfbfffffffffffffffffffffffffffbfbfbffd2d2d1ff43413eff24221eff50504cff43413eff161512ff43413effadadacff43413effadadacff827f7bffd2d2d1ffffffffffffffffffffffffffffffffffd2d2d1ff737270ff161512ff161512ff161512ff43413effadadacff827f7bff31302cff8e8d8aff8e8d8aff8e8d8afffbfbfbffffffffffffffffffffffffffd2d2d1ff827f7bff8e8d8aff737270ff8e8d8aff8e8d8aff61615eff50504cff31302cff43413eff827f7bff8e8d8afffbfbfbfffbfbfbffffffffffffffffffd2d2d1ff8e8d8aff827f7bff50504cff43413eff31302cff31302cff24221eff24221eff31302cff50504cff827f7bfffbfbfbfffffffffffbfbfbfffffffffffffffffffffffffffbfbfbff8e8d8aff43413eff31302cff31302cff24221eff24221eff31302cff31302cff737270fffbfbfbfffbfbfbfffffffffffbfbfbfffbfbfbfffbfbfbfffffffffffbfbfbff8e8d8aff43413eff31302cff24221eff24221eff24221eff43413effc2c0befffbfbfbfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffbfbfbffadadacff50504cff31302cff161512ff161512ff61615efffbfbfbfffbfbfbfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffbfbfbfffbfbfbfffbfbfbfffbfbfbff737270ff31302cffadadacfffbfbfbfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffbfbfbfffbfbfbfffbfbfbfffbfbfbffffffffffffffffff</ImageData>
- </ImageDatas>
- <Project ProjectGUID="{AB01EA5D-06A0-4CE6-B54D-6AA6034088B4}" Target64Bit="true" ShowHideConfigurations="#x6">
- <System>
- <Tasks>
- <Task Id="3" Priority="20" CycleTime="100000" AmsPort="350" AdtTasks="true">
- <Name>PlcTask</Name>
- </Task>
- <Task Id="4" Priority="1" CycleTime="100000" AmsPort="301">
- <Name>Task 2</Name>
- <Vars VarGrpType="1" InsertType="1">
- <Name>Inputs</Name>
- </Vars>
- <Vars VarGrpType="2" InsertType="1">
- <Name>Outputs</Name>
- </Vars>
- <Image Id="3" AddrType="1" ImageType="1">
- <Name>Image</Name>
- </Image>
- </Task>
- </Tasks>
- </System>
- <Plc>
- <Project GUID="{0963B2F1-D4B3-4E8F-8F3D-B9BFEA087552}" Name="PlcTest" PrjFilePath="PlcTest\PlcTest.plcproj" TmcFilePath="PlcTest\PlcTest.tmc" ReloadTmc="true" AmsPort="851" FileArchiveSettings="#x000e" SymbolicMapping="true">
- <Instance Id="#x08502000" TcSmClass="TComPlcObjDef" KeepUnrestoredLinks="2" TmcPath="PlcTest\PlcTest.tmc" TmcHash="{6F6F0822-B0EB-92A5-1B47-FC8B9D4CBC93}">
- <Name>PlcTest Instance</Name>
- <CLSID ClassFactory="TcPlc30">{08500001-0000-0000-F000-000000000064}</CLSID>
- <Vars VarGrpType="1">
- <Name>PlcTask Inputs</Name>
- <Var>
- <Name>MAIN.VPW1RotationStatusWord</Name>
- <Comment><![CDATA[VPW1 Rotation Status word]]></Comment>
- <Type>UINT</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW2RotationStatusWord</Name>
- <Comment><![CDATA[VPW2 Rotation Status word]]></Comment>
- <Type>UINT</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW2RotationDigitalInputs</Name>
- <Comment><![CDATA[VPW2 Rotation digital inputs]]></Comment>
- <Type>UDINT</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW2RotationPositionError</Name>
- <Comment><![CDATA[VPW2 Rotation position error]]></Comment>
- <Type>UDINT</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW_DI_16CHANNEL_EL1819_N100_1</Name>
- <Comment><![CDATA[r_VPW_CHAMBER_CLOSED]]></Comment>
- <Type>BOOL</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW1RotationDigitalInputs</Name>
- <Comment><![CDATA[VPW1 Rotation digital inputs]]></Comment>
- <Type>UDINT</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW2RotationActualVelocity</Name>
- <Comment><![CDATA[VPW2 Rotation actual velocity]]></Comment>
- <Type>UDINT</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW2RotationActualTorque</Name>
- <Comment><![CDATA[VPW2 Rotation actual torque]]></Comment>
- <Type>DINT</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW2RotationMotorPosition</Name>
- <Comment><![CDATA[VPW2 Rotation motor position]]></Comment>
- <Type>DINT</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW_DI_16CHANNEL_EL1819_N100_2</Name>
- <Comment><![CDATA[r_VPW_CHAMBER_OPENED]]></Comment>
- <Type>BOOL</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW_DI_16CHANNEL_EL1819_N100_3</Name>
- <Comment><![CDATA[r_VPW_LEAK_DETECT]]></Comment>
- <Type>BOOL</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW_DI_16CHANNEL_EL1819_N100_9</Name>
- <Comment><![CDATA[r_VPW_BOOSTER_PUMP_STATUS]]></Comment>
- <Type>BOOL</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW_AI_8CHANNEL_4_20mA_EL3058_N102_8</Name>
- <Comment><![CDATA[r_VPW_VAC_PUMP_PRESSURE]]></Comment>
- <Type>DINT</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW_AI_8CHANNEL_4_20mA_EL3058_N102_1</Name>
- <Comment><![CDATA[r_VPW_DIW_TOTAL_FLOW]]></Comment>
- <Type>DINT</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW_AI_8CHANNEL_4_20mA_EL3058_N102_4</Name>
- <Comment><![CDATA[r_VPW_DIW_PRESSURE]]></Comment>
- <Type>DINT</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW_AI_8CHANNEL_4_20mA_EL3058_N102_5</Name>
- <Comment><![CDATA[r_VPW_DEGAS_PUMP_PRESSURE]]></Comment>
- <Type>DINT</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW_AI_8CHANNEL_4_20mA_EL3058_N102_2</Name>
- <Comment><![CDATA[r_VPW_DIW_CELL_1_FLOW ]]></Comment>
- <Type>DINT</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW_AI_8CHANNEL_0_10V_EL3068_N105_1</Name>
- <Comment><![CDATA[r_VPW_CELL_1_VAC_PRESSURE]]></Comment>
- <Type>DINT</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW_AI_8CHANNEL_4_20mA_EL3058_N102_3</Name>
- <Comment><![CDATA[r_VPW_DIW_CELL_2_FLOW ]]></Comment>
- <Type>DINT</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW_AI_8CHANNEL_0_10V_EL3068_N105_2</Name>
- <Comment><![CDATA[r_VPW_CELL_2_VAC_PRESSURE]]></Comment>
- <Type>DINT</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW1RotationPositionError</Name>
- <Comment><![CDATA[VPW1 Rotation position error]]></Comment>
- <Type>UDINT</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW1RotationActualVelocity</Name>
- <Comment><![CDATA[VPW1 Rotation actual velocity]]></Comment>
- <Type>UDINT</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW1RotationActualTorque</Name>
- <Comment><![CDATA[VPW1 Rotation actual torque]]></Comment>
- <Type>DINT</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW1RotationMotorPosition</Name>
- <Comment><![CDATA[VPW1 Rotation motor position]]></Comment>
- <Type>DINT</Type>
- </Var>
- </Vars>
- <Vars VarGrpType="2" AreaNo="1">
- <Name>PlcTask Outputs</Name>
- <Var>
- <Name>MAIN.VPW2RotationControlWord</Name>
- <Comment><![CDATA[VPW2 Rotation control word]]></Comment>
- <Type>UINT</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW1RotationModeOfOperation</Name>
- <Comment><![CDATA[VPW1 Rotation mode of operation]]></Comment>
- <Type>SINT</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW1RotationTargetPosition</Name>
- <Comment><![CDATA[VPW1 Rotation target position]]></Comment>
- <Type>DINT</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW1RotationProfileVelocity</Name>
- <Comment><![CDATA[VPW1 Rotation profile volecity]]></Comment>
- <Type>DINT</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW2RotationModeOfOperation</Name>
- <Comment><![CDATA[VPW2 Rotation mode of operation]]></Comment>
- <Type>SINT</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW1RotationControlWord</Name>
- <Comment><![CDATA[VPW1 Rotation control word]]></Comment>
- <Type>UINT</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW2RotationTargetPosition</Name>
- <Comment><![CDATA[VPW2 Rotation target position]]></Comment>
- <Type>DINT</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW2RotationProfileVelocity</Name>
- <Comment><![CDATA[VPW2 Rotation profile volecity]]></Comment>
- <Type>DINT</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW2RotationProfileAccel</Name>
- <Comment><![CDATA[VPW2 Rotation profile acceleration]]></Comment>
- <Type>UDINT</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW2RotationProfileDecel</Name>
- <Comment><![CDATA[VPW2 Rotation profile deceleration]]></Comment>
- <Type>UDINT</Type>
- </Var>
- <Var>
- <Name>MAIN.MOTION_DO_16CHANNEL_EL2809_N401_15</Name>
- <Comment><![CDATA[c_VPW_CHAMBER_CLOSE]]></Comment>
- <Type>BOOL</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW_DO_16CHANNEL_EL2809_101_5</Name>
- <Comment><![CDATA[c_VPW_VACUUM_PUMP_POWER]]></Comment>
- <Type>BOOL</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW_DO_16CHANNEL_EL2809_101_6</Name>
- <Comment><![CDATA[c_VPW_DEGAS_PUMP_ENABLE]]></Comment>
- <Type>BOOL</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW_DO_16CHANNEL_EL2809_101_7</Name>
- <Comment><![CDATA[c_VPW_BOOSTER_PUMP_ENABLE]]></Comment>
- <Type>BOOL</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW_DO_16CHANNEL_EL2809_101_8</Name>
- <Comment><![CDATA[c_VPW_VACUUM_PUMP_ENABLE]]></Comment>
- <Type>BOOL</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW_DO_16CHANNEL_EL2809_101_9</Name>
- <Comment><![CDATA[c_VPW_VACUUM_PUMP_SPEED_ENABLE]]></Comment>
- <Type>BOOL</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW_PNEU_SMC_EX260_V01_V04</Name>
- <Comment><![CDATA[c_VPW_DIW_EABLE c_VPW_DIW_PROCESS c_VPW_1_FLOW_DRIP c_VPW_1_FLOW_SMALL c_VPW_1_FLOW_LARGE c_VPW_2_FLOW_DRIP c_VPW_2_FLOW_SMALL c_VPW_2_FLOW_LARGE]]></Comment>
- <Type>BYTE</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW_PNEU_SMC_EX260_V05_V08</Name>
- <Comment><![CDATA[c_VPW_DIW_DEGAS c_VPW_DEGAS_ADJUST c_VPW_DEGAS_PURGE c_VPW_1_VACUUM_VALVE c_VPW_1_VENT_VALVE c_VPW_2_VACUUM_VALVE c_VPW_2_VENT_VALVE]]></Comment>
- <Type>BYTE</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW_PNEU_SMC_EX260_V09_V12</Name>
- <Comment><![CDATA[c_VPW_1_DIW_DRAIN c_VPW_2_DIW_DRAIN]]></Comment>
- <Type>BYTE</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW_AO_8CHANNEL_0_10V_EL4008_N104_1</Name>
- <Comment><![CDATA[c_VPW_VACUUM_PUMP_SPEED]]></Comment>
- <Type>DINT</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW_AO_8CHANNEL_0_10V_EL4008_N104_5</Name>
- <Comment><![CDATA[c_VPW_BOOSTER_PUMP_SPPED]]></Comment>
- <Type>DINT</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW1RotationProfileAccel</Name>
- <Comment><![CDATA[VPW1 Rotation profile acceleration]]></Comment>
- <Type>UDINT</Type>
- </Var>
- <Var>
- <Name>MAIN.VPW1RotationProfileDecel</Name>
- <Comment><![CDATA[VPW1 Rotation profile deceleration]]></Comment>
- <Type>UDINT</Type>
- </Var>
- </Vars>
- <Contexts>
- <Context>
- <Id>0</Id>
- <Name>PlcTask</Name>
- <ManualConfig>
- <OTCID>#x02010030</OTCID>
- </ManualConfig>
- <Priority>20</Priority>
- <CycleTime>10000000</CycleTime>
- </Context>
- </Contexts>
- <TaskPouOids>
- <TaskPouOid Prio="20" OTCID="#x08502001"/>
- </TaskPouOids>
- </Instance>
- </Project>
- </Plc>
- <Io>
- <Device Id="2" Disabled="true" DevType="111" DevFlags="#x0003" AmsPort="28674" AmsNetId="192.168.0.200.3.1" RemoteName="Device 2 (EtherCAT)" InfoImageId="2">
- <Name>Device 2 (EtherCAT)</Name>
- <AddressInfo>
- <Pnp>
- <DeviceDesc>? 5 (Realtek USB GbE Family Controller #2)</DeviceDesc>
- <DeviceName>\DEVICE\{1E1521A9-D1B3-4A19-9650-A9E7598FE41D}</DeviceName>
- <DeviceData>bc0ff342d5a5</DeviceData>
- </Pnp>
- </AddressInfo>
- <Image Id="1" AddrType="9" ImageType="3">
- <Name>Image</Name>
- </Image>
- <Box Id="1" BoxType="9099">
- <Name>Term 1 (EK1101)</Name>
- <ImageId>1000</ImageId>
- <EtherCAT SlaveType="1" PdiType="#x0d04" CycleMBoxPollingTime="0" VendorId="#x00000002" ProductCode="#x044d2c52" RevisionNo="#x00120000" PortPhys="305" IdentificationAdo="4096" MaxSlotCount="256" MaxSlotGroupCount="1" SlotPdoIncrement="1" SlotIndexIncrement="16" Type="EK1101 EtherCAT Coupler (2A E-Bus, ID switch)" Desc="EK1101" PortABoxInfo="#x00ffffff">
- <SyncMan>001002000000010004000000000000000000001000000000</SyncMan>
- <Fmmu>0000000000000000001000010100000002000000000000000000000000000000</Fmmu>
- <Pdo Name="ID" Index="#x1a00" Flags="#x0010" SyncMan="0">
- <Entry Name="ID" Index="#x6000" Sub="#x01">
- <Type>UINT</Type>
- </Entry>
- </Pdo>
- </EtherCAT>
- <Box Id="2" BoxType="9099" BoxFlags="#x00000020">
- <Name>Term 2 (EL2904)</Name>
- <ImageId>118</ImageId>
- <EtherCAT SlaveType="2" PdiType="#x0005" MboxDataLinkLayer="true" StateMBoxPolling="true" CycleMBoxPollingTime="0" CoeType="3" FoeType="1" VendorId="#x00000002" ProductCode="#x0b583052" RevisionNo="#x00130000" InfoDataAddr="true" TimeoutMailbox2="2000" CheckRevisionNoType="3" PortPhys="51" MaxSlotCount="2" Type="EL2904, 4 Ch. Safety Output 24V, 0.5A, TwinSAFE" Desc="EL2904" PortABoxInfo="#x01000001">
- <SyncMan>001000012600010001000000400000010001001026010000</SyncMan>
- <SyncMan>001100012200010002000000400000010001001122010000</SyncMan>
- <SyncMan>001208002400010003000000000000000800001224010000</SyncMan>
- <SyncMan>001906002000010004000000000000000600001920010000</SyncMan>
- <Fmmu>0000000000000000001200020100000001000000000000000000000000000000</Fmmu>
- <Fmmu>0000000000000000001900010100000002000000000000000000000000000000</Fmmu>
- <Fmmu>00000000000000000d0800010100000003000000000000000000000000000000</Fmmu>
- <BootStrapData>0018f400f418f400</BootStrapData>
- <Pdo Name="TxPDO" Index="#x1a00" Flags="#x0090" SyncMan="3">
- <Entry Name="FSOE__FSoE Slave CMD" Index="#x6000" Sub="#x01">
- <Type>USINT</Type>
- </Entry>
- <Entry Name="FSOE__">
- <Type GUID="{18071995-0000-0000-0000-002000000008}">ARRAY [0..0] OF BYTE</Type>
- </Entry>
- <Entry Name="FSOE__FSoE Slave CRC_0" Index="#x6000" Sub="#x03">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="FSOE__FSoE Slave ConnID" Index="#x6000" Sub="#x02">
- <Type>UINT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="RxPDO" Index="#x1600" InOut="1" Flags="#x0090" SyncMan="2">
- <Entry Name="FSOE__FSoE Master CMD" Index="#x7000" Sub="#x01">
- <Type>USINT</Type>
- </Entry>
- <Entry Name="FSOE__OutputChannel1" Index="#x7001" Sub="#x01">
- <Type>BIT</Type>
- </Entry>
- <Entry Name="FSOE__OutputChannel2" Index="#x7001" Sub="#x02">
- <Type>BIT</Type>
- </Entry>
- <Entry Name="FSOE__OutputChannel3" Index="#x7001" Sub="#x03">
- <Type>BIT</Type>
- </Entry>
- <Entry Name="FSOE__OutputChannel4" Index="#x7001" Sub="#x04">
- <Type>BIT</Type>
- </Entry>
- <Entry Name="FSOE__">
- <Type GUID="{18071995-0000-0000-0000-002000000004}">ARRAY [0..3] OF BIT</Type>
- </Entry>
- <Entry Name="FSOE__FSoE Master CRC_0" Index="#x7000" Sub="#x03">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="FSOE__FSoE Master ConnID" Index="#x7000" Sub="#x02">
- <Type>UINT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="RxPDO" Index="#x1601" InOut="1" Flags="#x0090" SyncMan="2">
- <Entry Name="Output Channel 1" Index="#x7010" Sub="#x01">
- <Type>BIT</Type>
- </Entry>
- <Entry Name="Output Channel 2" Index="#x7010" Sub="#x02">
- <Type>BIT</Type>
- </Entry>
- <Entry Name="Output Channel 3" Index="#x7010" Sub="#x03">
- <Type>BIT</Type>
- </Entry>
- <Entry Name="Output Channel 4" Index="#x7010" Sub="#x04">
- <Type>BIT</Type>
- </Entry>
- <Entry>
- <Type GUID="{18071995-0000-0000-0000-00200000000C}">ARRAY [0..11] OF BIT</Type>
- </Entry>
- </Pdo>
- <CoeProfile ProfileNo="5001"/>
- <CoeProfile ProfileNo="13112201"/>
- <Slot Name="">
- <SlotData>0000010001000400000000000000000000000000000000000000000000000000</SlotData>
- <ModuleIdent>290</ModuleIdent>
- <Module Id="#x03090001" Type="FSOES" Class="290">
- <Name>Module 1 (FSOES)</Name>
- <ImageId>118</ImageId>
- <ModuleData>020000002201000000000c000000000000000000000000000000000000000000</ModuleData>
- <PdoIndex>6656</PdoIndex>
- <PdoIndex>5632</PdoIndex>
- <CoeProfile ProfileNo="#x00001389"/>
- </Module>
- </Slot>
- <Slot Name="">
- <SlotData>0000010001000400000000000000000000000000000000000000000000000000</SlotData>
- <ModuleIdent>200</ModuleIdent>
- <Module Id="#x03090002" Type="DO" Class="200">
- <Name>Module 2 (DO)</Name>
- <ImageId>118</ImageId>
- <ModuleData>02000000c8000000000004000000000000000000000000000000000000000000</ModuleData>
- <PdoIndex>5633</PdoIndex>
- </Module>
- </Slot>
- </EtherCAT>
- </Box>
- <Box Id="3" BoxType="9099">
- <Name>Term 3 (EL1819)</Name>
- <ImageId>7</ImageId>
- <EtherCAT SlaveType="1" PdiType="#x0104" CycleMBoxPollingTime="0" VendorId="#x00000002" ProductCode="#x071b3052" RevisionNo="#x00120000" RepeatSupport="true" PortPhys="51" MaxSlotCount="256" MaxSlotGroupCount="1" SlotPdoIncrement="1" SlotIndexIncrement="16" Type="EL1819 16Ch. Dig. Input 24V, 10µs" Desc="EL1819" PortABoxInfo="#x01000002">
- <SyncMan>001002000000010004000000000000000200001000010000</SyncMan>
- <Fmmu>0000000000000000001000010100000002000000000000000000000000000000</Fmmu>
- <Pdo Name="Channel 1" Index="#x1a00" Flags="#x0011" SyncMan="0">
- <Entry Name="Input" Index="#x6000" Sub="#x01">
- <Type>BIT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Channel 2" Index="#x1a01" Flags="#x0011" SyncMan="0">
- <Entry Name="Input" Index="#x6010" Sub="#x01">
- <Type>BIT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Channel 3" Index="#x1a02" Flags="#x0011" SyncMan="0">
- <Entry Name="Input" Index="#x6020" Sub="#x01">
- <Type>BIT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Channel 4" Index="#x1a03" Flags="#x0011" SyncMan="0">
- <Entry Name="Input" Index="#x6030" Sub="#x01">
- <Type>BIT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Channel 5" Index="#x1a04" Flags="#x0011" SyncMan="0">
- <Entry Name="Input" Index="#x6040" Sub="#x01">
- <Type>BIT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Channel 6" Index="#x1a05" Flags="#x0011" SyncMan="0">
- <Entry Name="Input" Index="#x6050" Sub="#x01">
- <Type>BIT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Channel 7" Index="#x1a06" Flags="#x0011" SyncMan="0">
- <Entry Name="Input" Index="#x6060" Sub="#x01">
- <Type>BIT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Channel 8" Index="#x1a07" Flags="#x0011" SyncMan="0">
- <Entry Name="Input" Index="#x6070" Sub="#x01">
- <Type>BIT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Channel 9" Index="#x1a08" Flags="#x0011" SyncMan="0">
- <Entry Name="Input" Index="#x6080" Sub="#x01">
- <Type>BIT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Channel 10" Index="#x1a09" Flags="#x0011" SyncMan="0">
- <Entry Name="Input" Index="#x6090" Sub="#x01">
- <Type>BIT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Channel 11" Index="#x1a0a" Flags="#x0011" SyncMan="0">
- <Entry Name="Input" Index="#x60a0" Sub="#x01">
- <Type>BIT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Channel 12" Index="#x1a0b" Flags="#x0011" SyncMan="0">
- <Entry Name="Input" Index="#x60b0" Sub="#x01">
- <Type>BIT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Channel 13" Index="#x1a0c" Flags="#x0011" SyncMan="0">
- <Entry Name="Input" Index="#x60c0" Sub="#x01">
- <Type>BIT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Channel 14" Index="#x1a0d" Flags="#x0011" SyncMan="0">
- <Entry Name="Input" Index="#x60d0" Sub="#x01">
- <Type>BIT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Channel 15" Index="#x1a0e" Flags="#x0011" SyncMan="0">
- <Entry Name="Input" Index="#x60e0" Sub="#x01">
- <Type>BIT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Channel 16" Index="#x1a0f" Flags="#x0011" SyncMan="0">
- <Entry Name="Input" Index="#x60f0" Sub="#x01">
- <Type>BIT</Type>
- </Entry>
- </Pdo>
- </EtherCAT>
- </Box>
- <Box Id="4" BoxType="9099">
- <Name>Term 4 (EL2809)</Name>
- <ImageId>1001</ImageId>
- <EtherCAT SlaveType="1" PdiType="#x0104" CycleMBoxPollingTime="0" VendorId="#x00000002" ProductCode="#x0af93052" RevisionNo="#x00120000" RepeatSupport="true" PortPhys="51" MaxSlotCount="256" MaxSlotGroupCount="1" SlotPdoIncrement="1" SlotIndexIncrement="16" Type="EL2809 16Ch. Dig. Output 24V, 0.5A" Desc="EL2809" PortABoxInfo="#x01000003">
- <SyncMan>000f01004400010003000000000000000100000f44090000</SyncMan>
- <SyncMan>010f01004400010003000000000000000100010f44090000</SyncMan>
- <Fmmu>0000000000000000000f00020100000001000000000000000000000000000000</Fmmu>
- <Pdo Name="Channel 1" Index="#x1600" InOut="1" Flags="#x0011" SyncMan="0">
- <Entry Name="Output" Index="#x7000" Sub="#x01">
- <Type>BIT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Channel 2" Index="#x1601" InOut="1" Flags="#x0011" SyncMan="0">
- <Entry Name="Output" Index="#x7010" Sub="#x01">
- <Type>BIT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Channel 3" Index="#x1602" InOut="1" Flags="#x0011" SyncMan="0">
- <Entry Name="Output" Index="#x7020" Sub="#x01">
- <Type>BIT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Channel 4" Index="#x1603" InOut="1" Flags="#x0011" SyncMan="0">
- <Entry Name="Output" Index="#x7030" Sub="#x01">
- <Type>BIT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Channel 5" Index="#x1604" InOut="1" Flags="#x0011" SyncMan="0">
- <Entry Name="Output" Index="#x7040" Sub="#x01">
- <Type>BIT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Channel 6" Index="#x1605" InOut="1" Flags="#x0011" SyncMan="0">
- <Entry Name="Output" Index="#x7050" Sub="#x01">
- <Type>BIT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Channel 7" Index="#x1606" InOut="1" Flags="#x0011" SyncMan="0">
- <Entry Name="Output" Index="#x7060" Sub="#x01">
- <Type>BIT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Channel 8" Index="#x1607" InOut="1" Flags="#x0011" SyncMan="0">
- <Entry Name="Output" Index="#x7070" Sub="#x01">
- <Type>BIT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Channel 9" Index="#x1608" InOut="1" Flags="#x0011" SyncMan="1">
- <Entry Name="Output" Index="#x7080" Sub="#x01">
- <Type>BIT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Channel 10" Index="#x1609" InOut="1" Flags="#x0011" SyncMan="1">
- <Entry Name="Output" Index="#x7090" Sub="#x01">
- <Type>BIT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Channel 11" Index="#x160a" InOut="1" Flags="#x0011" SyncMan="1">
- <Entry Name="Output" Index="#x70a0" Sub="#x01">
- <Type>BIT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Channel 12" Index="#x160b" InOut="1" Flags="#x0011" SyncMan="1">
- <Entry Name="Output" Index="#x70b0" Sub="#x01">
- <Type>BIT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Channel 13" Index="#x160c" InOut="1" Flags="#x0011" SyncMan="1">
- <Entry Name="Output" Index="#x70c0" Sub="#x01">
- <Type>BIT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Channel 14" Index="#x160d" InOut="1" Flags="#x0011" SyncMan="1">
- <Entry Name="Output" Index="#x70d0" Sub="#x01">
- <Type>BIT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Channel 15" Index="#x160e" InOut="1" Flags="#x0011" SyncMan="1">
- <Entry Name="Output" Index="#x70e0" Sub="#x01">
- <Type>BIT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Channel 16" Index="#x160f" InOut="1" Flags="#x0011" SyncMan="1">
- <Entry Name="Output" Index="#x70f0" Sub="#x01">
- <Type>BIT</Type>
- </Entry>
- </Pdo>
- </EtherCAT>
- </Box>
- <Box Id="5" BoxType="9099" BoxFlags="#x00000020">
- <Name>Term 5 (EL3068)</Name>
- <ImageId>1002</ImageId>
- <EtherCAT SlaveType="2" PdiType="#x0405" MboxDataLinkLayer="true" StateMBoxPolling="true" CycleMBoxPollingTime="0" CoeType="7" FoeType="1" VendorId="#x00000002" ProductCode="#x0bfc3052" RevisionNo="#x00150000" InfoDataAddr="true" TimeoutMailbox2="2000" CheckRevisionNoType="3" PortPhys="51" SdoUploadWithMaxLength="true" MaxSlotCount="256" MaxSlotGroupCount="1" SlotPdoIncrement="1" SlotIndexIncrement="16" Type="EL3068 8Ch. Ana. Input 0-10V" Desc="EL3068" PortABoxInfo="#x01000004">
- <SyncMan>001080002600010001000000800080008000001026010000</SyncMan>
- <SyncMan>801080002200010002000000800080008000801022010000</SyncMan>
- <SyncMan>001100000400000003000000000000000000001104000000</SyncMan>
- <SyncMan>801120002000010004000000000000002000801120010000</SyncMan>
- <Fmmu>0000000000000000801100010100000002000000000000000000000000000000</Fmmu>
- <Fmmu>00000000000000000d0800010100000003000000000000000000000000000000</Fmmu>
- <BootStrapData>0010f400f410f400</BootStrapData>
- <Pdo Name="AI Standard Channel 1" Index="#x1a00" Flags="#x0010" SyncMan="3">
- <ExcludePdo>#x1a01</ExcludePdo>
- <Entry Name="Status__Underrange" Index="#x6000" Sub="#x01">
- <Type>BIT</Type>
- <Comment><![CDATA[Underrange event active]]></Comment>
- </Entry>
- <Entry Name="Status__Overrange" Index="#x6000" Sub="#x02">
- <Type>BIT</Type>
- <Comment><![CDATA[Overrange event active]]></Comment>
- </Entry>
- <Entry Name="Status__Limit 1" Index="#x6000" Sub="#x03">
- <Type>BIT2</Type>
- <Comment><![CDATA[Bit0: Value smaller/equal Limit1
- Bit1: Value bigger/equal Limit1]]></Comment>
- </Entry>
- <Entry Name="Status__Limit 2" Index="#x6000" Sub="#x05">
- <Type>BIT2</Type>
- <Comment><![CDATA[Bit0: Value smaller/equal Limit2
- Bit1: Value bigger/equal Limit2]]></Comment>
- </Entry>
- <Entry Name="Status__Error" Index="#x6000" Sub="#x07">
- <Type>BIT</Type>
- <Comment><![CDATA[Bit set when Over- or Underrange]]></Comment>
- </Entry>
- <Entry Name="Status__">
- <Type GUID="{18071995-0000-0000-0000-002000000001}">ARRAY [0..0] OF BIT</Type>
- </Entry>
- <Entry Name="Status__">
- <Type GUID="{18071995-0000-0000-0000-002000000006}">ARRAY [0..5] OF BIT</Type>
- </Entry>
- <Entry Name="Status__TxPDO State" Index="#x6000" Sub="#x0f">
- <Type>BIT</Type>
- <Comment><![CDATA[TRUE when this TxPDO is not valid]]></Comment>
- </Entry>
- <Entry Name="Status__TxPDO Toggle" Index="#x6000" Sub="#x10">
- <Type>BIT</Type>
- <Comment><![CDATA[Bit toggles everytime when new value available]]></Comment>
- </Entry>
- <Entry Name="Value" Index="#x6000" Sub="#x11" Flags="#x00020000">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="AI Compact Channel 1" Index="#x1a01" Flags="#x0010">
- <ExcludePdo>#x1a00</ExcludePdo>
- <Entry Name="Value" Index="#x6000" Sub="#x11" Flags="#x00020000">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="AI Standard Channel 2" Index="#x1a02" Flags="#x0010" SyncMan="3">
- <ExcludePdo>#x1a03</ExcludePdo>
- <Entry Name="Status__Underrange" Index="#x6010" Sub="#x01">
- <Type>BIT</Type>
- <Comment><![CDATA[Underrange event active]]></Comment>
- </Entry>
- <Entry Name="Status__Overrange" Index="#x6010" Sub="#x02">
- <Type>BIT</Type>
- <Comment><![CDATA[Overrange event active]]></Comment>
- </Entry>
- <Entry Name="Status__Limit 1" Index="#x6010" Sub="#x03">
- <Type>BIT2</Type>
- <Comment><![CDATA[Bit0: Value smaller/equal Limit1
- Bit1: Value bigger/equal Limit1]]></Comment>
- </Entry>
- <Entry Name="Status__Limit 2" Index="#x6010" Sub="#x05">
- <Type>BIT2</Type>
- <Comment><![CDATA[Bit0: Value smaller/equal Limit2
- Bit1: Value bigger/equal Limit2]]></Comment>
- </Entry>
- <Entry Name="Status__Error" Index="#x6010" Sub="#x07">
- <Type>BIT</Type>
- <Comment><![CDATA[Bit set when Over- or Underrange]]></Comment>
- </Entry>
- <Entry Name="Status__">
- <Type GUID="{18071995-0000-0000-0000-002000000001}">ARRAY [0..0] OF BIT</Type>
- </Entry>
- <Entry Name="Status__">
- <Type GUID="{18071995-0000-0000-0000-002000000006}">ARRAY [0..5] OF BIT</Type>
- </Entry>
- <Entry Name="Status__TxPDO State" Index="#x6010" Sub="#x0f">
- <Type>BIT</Type>
- <Comment><![CDATA[TRUE when this TxPDO is not valid]]></Comment>
- </Entry>
- <Entry Name="Status__TxPDO Toggle" Index="#x6010" Sub="#x10">
- <Type>BIT</Type>
- <Comment><![CDATA[Bit toggles everytime when new value available]]></Comment>
- </Entry>
- <Entry Name="Value" Index="#x6010" Sub="#x11" Flags="#x00020000">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="AI Compact Channel 2" Index="#x1a03" Flags="#x0010">
- <ExcludePdo>#x1a02</ExcludePdo>
- <Entry Name="Value" Index="#x6010" Sub="#x11" Flags="#x00020000">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="AI Standard Channel 3" Index="#x1a04" Flags="#x0010" SyncMan="3">
- <ExcludePdo>#x1a05</ExcludePdo>
- <Entry Name="Status__Underrange" Index="#x6020" Sub="#x01">
- <Type>BIT</Type>
- <Comment><![CDATA[Underrange event active]]></Comment>
- </Entry>
- <Entry Name="Status__Overrange" Index="#x6020" Sub="#x02">
- <Type>BIT</Type>
- <Comment><![CDATA[Overrange event active]]></Comment>
- </Entry>
- <Entry Name="Status__Limit 1" Index="#x6020" Sub="#x03">
- <Type>BIT2</Type>
- <Comment><![CDATA[Bit0: Value smaller/equal Limit1
- Bit1: Value bigger/equal Limit1]]></Comment>
- </Entry>
- <Entry Name="Status__Limit 2" Index="#x6020" Sub="#x05">
- <Type>BIT2</Type>
- <Comment><![CDATA[Bit0: Value smaller/equal Limit2
- Bit1: Value bigger/equal Limit2]]></Comment>
- </Entry>
- <Entry Name="Status__Error" Index="#x6020" Sub="#x07">
- <Type>BIT</Type>
- <Comment><![CDATA[Bit set when Over- or Underrange]]></Comment>
- </Entry>
- <Entry Name="Status__">
- <Type GUID="{18071995-0000-0000-0000-002000000001}">ARRAY [0..0] OF BIT</Type>
- </Entry>
- <Entry Name="Status__">
- <Type GUID="{18071995-0000-0000-0000-002000000006}">ARRAY [0..5] OF BIT</Type>
- </Entry>
- <Entry Name="Status__TxPDO State" Index="#x6020" Sub="#x0f">
- <Type>BIT</Type>
- <Comment><![CDATA[TRUE when this TxPDO is not valid]]></Comment>
- </Entry>
- <Entry Name="Status__TxPDO Toggle" Index="#x6020" Sub="#x10">
- <Type>BIT</Type>
- <Comment><![CDATA[Bit toggles everytime when new value available]]></Comment>
- </Entry>
- <Entry Name="Value" Index="#x6020" Sub="#x11" Flags="#x00020000">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="AI Compact Channel 3" Index="#x1a05" Flags="#x0010">
- <ExcludePdo>#x1a04</ExcludePdo>
- <Entry Name="Value" Index="#x6020" Sub="#x11" Flags="#x00020000">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="AI Standard Channel 4" Index="#x1a06" Flags="#x0010" SyncMan="3">
- <ExcludePdo>#x1a07</ExcludePdo>
- <Entry Name="Status__Underrange" Index="#x6030" Sub="#x01">
- <Type>BIT</Type>
- <Comment><![CDATA[Underrange event active]]></Comment>
- </Entry>
- <Entry Name="Status__Overrange" Index="#x6030" Sub="#x02">
- <Type>BIT</Type>
- <Comment><![CDATA[Overrange event active]]></Comment>
- </Entry>
- <Entry Name="Status__Limit 1" Index="#x6030" Sub="#x03">
- <Type>BIT2</Type>
- <Comment><![CDATA[Bit0: Value smaller/equal Limit1
- Bit1: Value bigger/equal Limit1]]></Comment>
- </Entry>
- <Entry Name="Status__Limit 2" Index="#x6030" Sub="#x05">
- <Type>BIT2</Type>
- <Comment><![CDATA[Bit0: Value smaller/equal Limit2
- Bit1: Value bigger/equal Limit2]]></Comment>
- </Entry>
- <Entry Name="Status__Error" Index="#x6030" Sub="#x07">
- <Type>BIT</Type>
- <Comment><![CDATA[Bit set when Over- or Underrange]]></Comment>
- </Entry>
- <Entry Name="Status__">
- <Type GUID="{18071995-0000-0000-0000-002000000001}">ARRAY [0..0] OF BIT</Type>
- </Entry>
- <Entry Name="Status__">
- <Type GUID="{18071995-0000-0000-0000-002000000006}">ARRAY [0..5] OF BIT</Type>
- </Entry>
- <Entry Name="Status__TxPDO State" Index="#x6030" Sub="#x0f">
- <Type>BIT</Type>
- <Comment><![CDATA[TRUE when this TxPDO is not valid]]></Comment>
- </Entry>
- <Entry Name="Status__TxPDO Toggle" Index="#x6030" Sub="#x10">
- <Type>BIT</Type>
- <Comment><![CDATA[Bit toggles everytime when new value available]]></Comment>
- </Entry>
- <Entry Name="Value" Index="#x6030" Sub="#x11" Flags="#x00020000">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="AI Compact Channel 4" Index="#x1a07" Flags="#x0010">
- <ExcludePdo>#x1a06</ExcludePdo>
- <Entry Name="Value" Index="#x6030" Sub="#x11" Flags="#x00020000">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="AI Standard Channel 5" Index="#x1a08" Flags="#x0010" SyncMan="3">
- <ExcludePdo>#x1a09</ExcludePdo>
- <Entry Name="Status__Underrange" Index="#x6040" Sub="#x01">
- <Type>BIT</Type>
- <Comment><![CDATA[Underrange event active]]></Comment>
- </Entry>
- <Entry Name="Status__Overrange" Index="#x6040" Sub="#x02">
- <Type>BIT</Type>
- <Comment><![CDATA[Overrange event active]]></Comment>
- </Entry>
- <Entry Name="Status__Limit 1" Index="#x6040" Sub="#x03">
- <Type>BIT2</Type>
- <Comment><![CDATA[Bit0: Value smaller/equal Limit1
- Bit1: Value bigger/equal Limit1]]></Comment>
- </Entry>
- <Entry Name="Status__Limit 2" Index="#x6040" Sub="#x05">
- <Type>BIT2</Type>
- <Comment><![CDATA[Bit0: Value smaller/equal Limit2
- Bit1: Value bigger/equal Limit2]]></Comment>
- </Entry>
- <Entry Name="Status__Error" Index="#x6040" Sub="#x07">
- <Type>BIT</Type>
- <Comment><![CDATA[Bit set when Over- or Underrange]]></Comment>
- </Entry>
- <Entry Name="Status__">
- <Type GUID="{18071995-0000-0000-0000-002000000001}">ARRAY [0..0] OF BIT</Type>
- </Entry>
- <Entry Name="Status__">
- <Type GUID="{18071995-0000-0000-0000-002000000006}">ARRAY [0..5] OF BIT</Type>
- </Entry>
- <Entry Name="Status__TxPDO State" Index="#x6040" Sub="#x0f">
- <Type>BIT</Type>
- <Comment><![CDATA[TRUE when this TxPDO is not valid]]></Comment>
- </Entry>
- <Entry Name="Status__TxPDO Toggle" Index="#x6040" Sub="#x10">
- <Type>BIT</Type>
- <Comment><![CDATA[Bit toggles everytime when new value available]]></Comment>
- </Entry>
- <Entry Name="Value" Index="#x6040" Sub="#x11" Flags="#x00020000">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="AI Compact Channel 5" Index="#x1a09" Flags="#x0010">
- <ExcludePdo>#x1a08</ExcludePdo>
- <Entry Name="Value" Index="#x6040" Sub="#x11" Flags="#x00020000">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="AI Standard Channel 6" Index="#x1a0a" Flags="#x0010" SyncMan="3">
- <ExcludePdo>#x1a0b</ExcludePdo>
- <Entry Name="Status__Underrange" Index="#x6050" Sub="#x01">
- <Type>BIT</Type>
- <Comment><![CDATA[Underrange event active]]></Comment>
- </Entry>
- <Entry Name="Status__Overrange" Index="#x6050" Sub="#x02">
- <Type>BIT</Type>
- <Comment><![CDATA[Overrange event active]]></Comment>
- </Entry>
- <Entry Name="Status__Limit 1" Index="#x6050" Sub="#x03">
- <Type>BIT2</Type>
- <Comment><![CDATA[Bit0: Value smaller/equal Limit1
- Bit1: Value bigger/equal Limit1]]></Comment>
- </Entry>
- <Entry Name="Status__Limit 2" Index="#x6050" Sub="#x05">
- <Type>BIT2</Type>
- <Comment><![CDATA[Bit0: Value smaller/equal Limit2
- Bit1: Value bigger/equal Limit2]]></Comment>
- </Entry>
- <Entry Name="Status__Error" Index="#x6050" Sub="#x07">
- <Type>BIT</Type>
- <Comment><![CDATA[Bit set when Over- or Underrange]]></Comment>
- </Entry>
- <Entry Name="Status__">
- <Type GUID="{18071995-0000-0000-0000-002000000001}">ARRAY [0..0] OF BIT</Type>
- </Entry>
- <Entry Name="Status__">
- <Type GUID="{18071995-0000-0000-0000-002000000006}">ARRAY [0..5] OF BIT</Type>
- </Entry>
- <Entry Name="Status__TxPDO State" Index="#x6050" Sub="#x0f">
- <Type>BIT</Type>
- <Comment><![CDATA[TRUE when this TxPDO is not valid]]></Comment>
- </Entry>
- <Entry Name="Status__TxPDO Toggle" Index="#x6050" Sub="#x10">
- <Type>BIT</Type>
- <Comment><![CDATA[Bit toggles everytime when new value available]]></Comment>
- </Entry>
- <Entry Name="Value" Index="#x6050" Sub="#x11" Flags="#x00020000">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="AI Compact Channel 6" Index="#x1a0b" Flags="#x0010">
- <ExcludePdo>#x1a0a</ExcludePdo>
- <Entry Name="Value" Index="#x6050" Sub="#x11" Flags="#x00020000">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="AI Standard Channel 7" Index="#x1a0c" Flags="#x0010" SyncMan="3">
- <ExcludePdo>#x1a0d</ExcludePdo>
- <Entry Name="Status__Underrange" Index="#x6060" Sub="#x01">
- <Type>BIT</Type>
- <Comment><![CDATA[Underrange event active]]></Comment>
- </Entry>
- <Entry Name="Status__Overrange" Index="#x6060" Sub="#x02">
- <Type>BIT</Type>
- <Comment><![CDATA[Overrange event active]]></Comment>
- </Entry>
- <Entry Name="Status__Limit 1" Index="#x6060" Sub="#x03">
- <Type>BIT2</Type>
- <Comment><![CDATA[Bit0: Value smaller/equal Limit1
- Bit1: Value bigger/equal Limit1]]></Comment>
- </Entry>
- <Entry Name="Status__Limit 2" Index="#x6060" Sub="#x05">
- <Type>BIT2</Type>
- <Comment><![CDATA[Bit0: Value smaller/equal Limit2
- Bit1: Value bigger/equal Limit2]]></Comment>
- </Entry>
- <Entry Name="Status__Error" Index="#x6060" Sub="#x07">
- <Type>BIT</Type>
- <Comment><![CDATA[Bit set when Over- or Underrange]]></Comment>
- </Entry>
- <Entry Name="Status__">
- <Type GUID="{18071995-0000-0000-0000-002000000001}">ARRAY [0..0] OF BIT</Type>
- </Entry>
- <Entry Name="Status__">
- <Type GUID="{18071995-0000-0000-0000-002000000006}">ARRAY [0..5] OF BIT</Type>
- </Entry>
- <Entry Name="Status__TxPDO State" Index="#x6060" Sub="#x0f">
- <Type>BIT</Type>
- <Comment><![CDATA[TRUE when this TxPDO is not valid]]></Comment>
- </Entry>
- <Entry Name="Status__TxPDO Toggle" Index="#x6060" Sub="#x10">
- <Type>BIT</Type>
- <Comment><![CDATA[Bit toggles everytime when new value available]]></Comment>
- </Entry>
- <Entry Name="Value" Index="#x6060" Sub="#x11" Flags="#x00020000">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="AI Compact Channel 7" Index="#x1a0d" Flags="#x0010">
- <ExcludePdo>#x1a0c</ExcludePdo>
- <Entry Name="Value" Index="#x6060" Sub="#x11" Flags="#x00020000">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="AI Standard Channel 8" Index="#x1a0e" Flags="#x0010" SyncMan="3">
- <ExcludePdo>#x1a0f</ExcludePdo>
- <Entry Name="Status__Underrange" Index="#x6070" Sub="#x01">
- <Type>BIT</Type>
- <Comment><![CDATA[Underrange event active]]></Comment>
- </Entry>
- <Entry Name="Status__Overrange" Index="#x6070" Sub="#x02">
- <Type>BIT</Type>
- <Comment><![CDATA[Overrange event active]]></Comment>
- </Entry>
- <Entry Name="Status__Limit 1" Index="#x6070" Sub="#x03">
- <Type>BIT2</Type>
- <Comment><![CDATA[Bit0: Value smaller/equal Limit1
- Bit1: Value bigger/equal Limit1]]></Comment>
- </Entry>
- <Entry Name="Status__Limit 2" Index="#x6070" Sub="#x05">
- <Type>BIT2</Type>
- <Comment><![CDATA[Bit0: Value smaller/equal Limit2
- Bit1: Value bigger/equal Limit2]]></Comment>
- </Entry>
- <Entry Name="Status__Error" Index="#x6070" Sub="#x07">
- <Type>BIT</Type>
- <Comment><![CDATA[Bit set when Over- or Underrange]]></Comment>
- </Entry>
- <Entry Name="Status__">
- <Type GUID="{18071995-0000-0000-0000-002000000001}">ARRAY [0..0] OF BIT</Type>
- </Entry>
- <Entry Name="Status__">
- <Type GUID="{18071995-0000-0000-0000-002000000006}">ARRAY [0..5] OF BIT</Type>
- </Entry>
- <Entry Name="Status__TxPDO State" Index="#x6070" Sub="#x0f">
- <Type>BIT</Type>
- <Comment><![CDATA[TRUE when this TxPDO is not valid]]></Comment>
- </Entry>
- <Entry Name="Status__TxPDO Toggle" Index="#x6070" Sub="#x10">
- <Type>BIT</Type>
- <Comment><![CDATA[Bit toggles everytime when new value available]]></Comment>
- </Entry>
- <Entry Name="Value" Index="#x6070" Sub="#x11" Flags="#x00020000">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="AI Compact Channel 8" Index="#x1a0f" Flags="#x0010">
- <ExcludePdo>#x1a0e</ExcludePdo>
- <Entry Name="Value" Index="#x6070" Sub="#x11" Flags="#x00020000">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <CoeProfile ProfileNo="19665801"/>
- <CoeProfile ProfileNo="19665801"/>
- <CoeProfile ProfileNo="19665801"/>
- <CoeProfile ProfileNo="19665801"/>
- <CoeProfile ProfileNo="19665801"/>
- <CoeProfile ProfileNo="19665801"/>
- <CoeProfile ProfileNo="19665801"/>
- <CoeProfile ProfileNo="19665801"/>
- </EtherCAT>
- </Box>
- <Box Id="6" BoxType="9099" BoxFlags="#x00000020">
- <Name>Term 6 (EL3058)</Name>
- <ImageId>1002</ImageId>
- <EtherCAT SlaveType="2" PdiType="#x0405" MboxDataLinkLayer="true" StateMBoxPolling="true" CycleMBoxPollingTime="0" CoeType="7" FoeType="1" VendorId="#x00000002" ProductCode="#x0bf23052" RevisionNo="#x00150000" InfoDataAddr="true" TimeoutMailbox2="2000" CheckRevisionNoType="3" PortPhys="51" SdoUploadWithMaxLength="true" MaxSlotCount="256" MaxSlotGroupCount="1" SlotPdoIncrement="1" SlotIndexIncrement="16" Type="EL3058 8Ch. Ana. Input 4-20mA" Desc="EL3058" PortABoxInfo="#x01000005">
- <SyncMan>001080002600010001000000800080008000001026010000</SyncMan>
- <SyncMan>801080002200010002000000800080008000801022010000</SyncMan>
- <SyncMan>001100000400000003000000000000000000001104000000</SyncMan>
- <SyncMan>801120002000010004000000000000002000801120010000</SyncMan>
- <Fmmu>0000000000000000801100010100000002000000000000000000000000000000</Fmmu>
- <Fmmu>00000000000000000d0800010100000003000000000000000000000000000000</Fmmu>
- <BootStrapData>0010f400f410f400</BootStrapData>
- <Pdo Name="AI Standard Channel 1" Index="#x1a00" Flags="#x0010" SyncMan="3">
- <ExcludePdo>#x1a01</ExcludePdo>
- <Entry Name="Status__Underrange" Index="#x6000" Sub="#x01">
- <Type>BIT</Type>
- <Comment><![CDATA[Underrange event active]]></Comment>
- </Entry>
- <Entry Name="Status__Overrange" Index="#x6000" Sub="#x02">
- <Type>BIT</Type>
- <Comment><![CDATA[Overrange event active]]></Comment>
- </Entry>
- <Entry Name="Status__Limit 1" Index="#x6000" Sub="#x03">
- <Type>BIT2</Type>
- <Comment><![CDATA[Bit0: Value smaller/equal Limit1
- Bit1: Value bigger/equal Limit1]]></Comment>
- </Entry>
- <Entry Name="Status__Limit 2" Index="#x6000" Sub="#x05">
- <Type>BIT2</Type>
- <Comment><![CDATA[Bit0: Value smaller/equal Limit2
- Bit1: Value bigger/equal Limit2]]></Comment>
- </Entry>
- <Entry Name="Status__Error" Index="#x6000" Sub="#x07">
- <Type>BIT</Type>
- <Comment><![CDATA[Bit set when Over- or Underrange]]></Comment>
- </Entry>
- <Entry Name="Status__">
- <Type GUID="{18071995-0000-0000-0000-002000000001}">ARRAY [0..0] OF BIT</Type>
- </Entry>
- <Entry Name="Status__">
- <Type GUID="{18071995-0000-0000-0000-002000000006}">ARRAY [0..5] OF BIT</Type>
- </Entry>
- <Entry Name="Status__TxPDO State" Index="#x6000" Sub="#x0f">
- <Type>BIT</Type>
- <Comment><![CDATA[TRUE when this TxPDO is not valid]]></Comment>
- </Entry>
- <Entry Name="Status__TxPDO Toggle" Index="#x6000" Sub="#x10">
- <Type>BIT</Type>
- <Comment><![CDATA[Bit toggles everytime when new value available]]></Comment>
- </Entry>
- <Entry Name="Value" Index="#x6000" Sub="#x11" Flags="#x00040000">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="AI Compact Channel 1" Index="#x1a01" Flags="#x0010">
- <ExcludePdo>#x1a00</ExcludePdo>
- <Entry Name="Value" Index="#x6000" Sub="#x11" Flags="#x00040000">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="AI Standard Channel 2" Index="#x1a02" Flags="#x0010" SyncMan="3">
- <ExcludePdo>#x1a03</ExcludePdo>
- <Entry Name="Status__Underrange" Index="#x6010" Sub="#x01">
- <Type>BIT</Type>
- <Comment><![CDATA[Underrange event active]]></Comment>
- </Entry>
- <Entry Name="Status__Overrange" Index="#x6010" Sub="#x02">
- <Type>BIT</Type>
- <Comment><![CDATA[Overrange event active]]></Comment>
- </Entry>
- <Entry Name="Status__Limit 1" Index="#x6010" Sub="#x03">
- <Type>BIT2</Type>
- <Comment><![CDATA[Bit0: Value smaller/equal Limit1
- Bit1: Value bigger/equal Limit1]]></Comment>
- </Entry>
- <Entry Name="Status__Limit 2" Index="#x6010" Sub="#x05">
- <Type>BIT2</Type>
- <Comment><![CDATA[Bit0: Value smaller/equal Limit2
- Bit1: Value bigger/equal Limit2]]></Comment>
- </Entry>
- <Entry Name="Status__Error" Index="#x6010" Sub="#x07">
- <Type>BIT</Type>
- <Comment><![CDATA[Bit set when Over- or Underrange]]></Comment>
- </Entry>
- <Entry Name="Status__">
- <Type GUID="{18071995-0000-0000-0000-002000000001}">ARRAY [0..0] OF BIT</Type>
- </Entry>
- <Entry Name="Status__">
- <Type GUID="{18071995-0000-0000-0000-002000000006}">ARRAY [0..5] OF BIT</Type>
- </Entry>
- <Entry Name="Status__TxPDO State" Index="#x6010" Sub="#x0f">
- <Type>BIT</Type>
- <Comment><![CDATA[TRUE when this TxPDO is not valid]]></Comment>
- </Entry>
- <Entry Name="Status__TxPDO Toggle" Index="#x6010" Sub="#x10">
- <Type>BIT</Type>
- <Comment><![CDATA[Bit toggles everytime when new value available]]></Comment>
- </Entry>
- <Entry Name="Value" Index="#x6010" Sub="#x11" Flags="#x00040000">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="AI Compact Channel 2" Index="#x1a03" Flags="#x0010">
- <ExcludePdo>#x1a02</ExcludePdo>
- <Entry Name="Value" Index="#x6010" Sub="#x11" Flags="#x00040000">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="AI Standard Channel 3" Index="#x1a04" Flags="#x0010" SyncMan="3">
- <ExcludePdo>#x1a05</ExcludePdo>
- <Entry Name="Status__Underrange" Index="#x6020" Sub="#x01">
- <Type>BIT</Type>
- <Comment><![CDATA[Underrange event active]]></Comment>
- </Entry>
- <Entry Name="Status__Overrange" Index="#x6020" Sub="#x02">
- <Type>BIT</Type>
- <Comment><![CDATA[Overrange event active]]></Comment>
- </Entry>
- <Entry Name="Status__Limit 1" Index="#x6020" Sub="#x03">
- <Type>BIT2</Type>
- <Comment><![CDATA[Bit0: Value smaller/equal Limit1
- Bit1: Value bigger/equal Limit1]]></Comment>
- </Entry>
- <Entry Name="Status__Limit 2" Index="#x6020" Sub="#x05">
- <Type>BIT2</Type>
- <Comment><![CDATA[Bit0: Value smaller/equal Limit2
- Bit1: Value bigger/equal Limit2]]></Comment>
- </Entry>
- <Entry Name="Status__Error" Index="#x6020" Sub="#x07">
- <Type>BIT</Type>
- <Comment><![CDATA[Bit set when Over- or Underrange]]></Comment>
- </Entry>
- <Entry Name="Status__">
- <Type GUID="{18071995-0000-0000-0000-002000000001}">ARRAY [0..0] OF BIT</Type>
- </Entry>
- <Entry Name="Status__">
- <Type GUID="{18071995-0000-0000-0000-002000000006}">ARRAY [0..5] OF BIT</Type>
- </Entry>
- <Entry Name="Status__TxPDO State" Index="#x6020" Sub="#x0f">
- <Type>BIT</Type>
- <Comment><![CDATA[TRUE when this TxPDO is not valid]]></Comment>
- </Entry>
- <Entry Name="Status__TxPDO Toggle" Index="#x6020" Sub="#x10">
- <Type>BIT</Type>
- <Comment><![CDATA[Bit toggles everytime when new value available]]></Comment>
- </Entry>
- <Entry Name="Value" Index="#x6020" Sub="#x11" Flags="#x00040000">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="AI Compact Channel 3" Index="#x1a05" Flags="#x0010">
- <ExcludePdo>#x1a04</ExcludePdo>
- <Entry Name="Value" Index="#x6020" Sub="#x11" Flags="#x00040000">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="AI Standard Channel 4" Index="#x1a06" Flags="#x0010" SyncMan="3">
- <ExcludePdo>#x1a07</ExcludePdo>
- <Entry Name="Status__Underrange" Index="#x6030" Sub="#x01">
- <Type>BIT</Type>
- <Comment><![CDATA[Underrange event active]]></Comment>
- </Entry>
- <Entry Name="Status__Overrange" Index="#x6030" Sub="#x02">
- <Type>BIT</Type>
- <Comment><![CDATA[Overrange event active]]></Comment>
- </Entry>
- <Entry Name="Status__Limit 1" Index="#x6030" Sub="#x03">
- <Type>BIT2</Type>
- <Comment><![CDATA[Bit0: Value smaller/equal Limit1
- Bit1: Value bigger/equal Limit1]]></Comment>
- </Entry>
- <Entry Name="Status__Limit 2" Index="#x6030" Sub="#x05">
- <Type>BIT2</Type>
- <Comment><![CDATA[Bit0: Value smaller/equal Limit2
- Bit1: Value bigger/equal Limit2]]></Comment>
- </Entry>
- <Entry Name="Status__Error" Index="#x6030" Sub="#x07">
- <Type>BIT</Type>
- <Comment><![CDATA[Bit set when Over- or Underrange]]></Comment>
- </Entry>
- <Entry Name="Status__">
- <Type GUID="{18071995-0000-0000-0000-002000000001}">ARRAY [0..0] OF BIT</Type>
- </Entry>
- <Entry Name="Status__">
- <Type GUID="{18071995-0000-0000-0000-002000000006}">ARRAY [0..5] OF BIT</Type>
- </Entry>
- <Entry Name="Status__TxPDO State" Index="#x6030" Sub="#x0f">
- <Type>BIT</Type>
- <Comment><![CDATA[TRUE when this TxPDO is not valid]]></Comment>
- </Entry>
- <Entry Name="Status__TxPDO Toggle" Index="#x6030" Sub="#x10">
- <Type>BIT</Type>
- <Comment><![CDATA[Bit toggles everytime when new value available]]></Comment>
- </Entry>
- <Entry Name="Value" Index="#x6030" Sub="#x11" Flags="#x00040000">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="AI Compact Channel 4" Index="#x1a07" Flags="#x0010">
- <ExcludePdo>#x1a06</ExcludePdo>
- <Entry Name="Value" Index="#x6030" Sub="#x11" Flags="#x00040000">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="AI Standard Channel 5" Index="#x1a08" Flags="#x0010" SyncMan="3">
- <ExcludePdo>#x1a09</ExcludePdo>
- <Entry Name="Status__Underrange" Index="#x6040" Sub="#x01">
- <Type>BIT</Type>
- <Comment><![CDATA[Underrange event active]]></Comment>
- </Entry>
- <Entry Name="Status__Overrange" Index="#x6040" Sub="#x02">
- <Type>BIT</Type>
- <Comment><![CDATA[Overrange event active]]></Comment>
- </Entry>
- <Entry Name="Status__Limit 1" Index="#x6040" Sub="#x03">
- <Type>BIT2</Type>
- <Comment><![CDATA[Bit0: Value smaller/equal Limit1
- Bit1: Value bigger/equal Limit1]]></Comment>
- </Entry>
- <Entry Name="Status__Limit 2" Index="#x6040" Sub="#x05">
- <Type>BIT2</Type>
- <Comment><![CDATA[Bit0: Value smaller/equal Limit2
- Bit1: Value bigger/equal Limit2]]></Comment>
- </Entry>
- <Entry Name="Status__Error" Index="#x6040" Sub="#x07">
- <Type>BIT</Type>
- <Comment><![CDATA[Bit set when Over- or Underrange]]></Comment>
- </Entry>
- <Entry Name="Status__">
- <Type GUID="{18071995-0000-0000-0000-002000000001}">ARRAY [0..0] OF BIT</Type>
- </Entry>
- <Entry Name="Status__">
- <Type GUID="{18071995-0000-0000-0000-002000000006}">ARRAY [0..5] OF BIT</Type>
- </Entry>
- <Entry Name="Status__TxPDO State" Index="#x6040" Sub="#x0f">
- <Type>BIT</Type>
- <Comment><![CDATA[TRUE when this TxPDO is not valid]]></Comment>
- </Entry>
- <Entry Name="Status__TxPDO Toggle" Index="#x6040" Sub="#x10">
- <Type>BIT</Type>
- <Comment><![CDATA[Bit toggles everytime when new value available]]></Comment>
- </Entry>
- <Entry Name="Value" Index="#x6040" Sub="#x11" Flags="#x00040000">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="AI Compact Channel 5" Index="#x1a09" Flags="#x0010">
- <ExcludePdo>#x1a08</ExcludePdo>
- <Entry Name="Value" Index="#x6040" Sub="#x11" Flags="#x00040000">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="AI Standard Channel 6" Index="#x1a0a" Flags="#x0010" SyncMan="3">
- <ExcludePdo>#x1a0b</ExcludePdo>
- <Entry Name="Status__Underrange" Index="#x6050" Sub="#x01">
- <Type>BIT</Type>
- <Comment><![CDATA[Underrange event active]]></Comment>
- </Entry>
- <Entry Name="Status__Overrange" Index="#x6050" Sub="#x02">
- <Type>BIT</Type>
- <Comment><![CDATA[Overrange event active]]></Comment>
- </Entry>
- <Entry Name="Status__Limit 1" Index="#x6050" Sub="#x03">
- <Type>BIT2</Type>
- <Comment><![CDATA[Bit0: Value smaller/equal Limit1
- Bit1: Value bigger/equal Limit1]]></Comment>
- </Entry>
- <Entry Name="Status__Limit 2" Index="#x6050" Sub="#x05">
- <Type>BIT2</Type>
- <Comment><![CDATA[Bit0: Value smaller/equal Limit2
- Bit1: Value bigger/equal Limit2]]></Comment>
- </Entry>
- <Entry Name="Status__Error" Index="#x6050" Sub="#x07">
- <Type>BIT</Type>
- <Comment><![CDATA[Bit set when Over- or Underrange]]></Comment>
- </Entry>
- <Entry Name="Status__">
- <Type GUID="{18071995-0000-0000-0000-002000000001}">ARRAY [0..0] OF BIT</Type>
- </Entry>
- <Entry Name="Status__">
- <Type GUID="{18071995-0000-0000-0000-002000000006}">ARRAY [0..5] OF BIT</Type>
- </Entry>
- <Entry Name="Status__TxPDO State" Index="#x6050" Sub="#x0f">
- <Type>BIT</Type>
- <Comment><![CDATA[TRUE when this TxPDO is not valid]]></Comment>
- </Entry>
- <Entry Name="Status__TxPDO Toggle" Index="#x6050" Sub="#x10">
- <Type>BIT</Type>
- <Comment><![CDATA[Bit toggles everytime when new value available]]></Comment>
- </Entry>
- <Entry Name="Value" Index="#x6050" Sub="#x11" Flags="#x00040000">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="AI Compact Channel 6" Index="#x1a0b" Flags="#x0010">
- <ExcludePdo>#x1a0a</ExcludePdo>
- <Entry Name="Value" Index="#x6050" Sub="#x11" Flags="#x00040000">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="AI Standard Channel 7" Index="#x1a0c" Flags="#x0010" SyncMan="3">
- <ExcludePdo>#x1a0d</ExcludePdo>
- <Entry Name="Status__Underrange" Index="#x6060" Sub="#x01">
- <Type>BIT</Type>
- <Comment><![CDATA[Underrange event active]]></Comment>
- </Entry>
- <Entry Name="Status__Overrange" Index="#x6060" Sub="#x02">
- <Type>BIT</Type>
- <Comment><![CDATA[Overrange event active]]></Comment>
- </Entry>
- <Entry Name="Status__Limit 1" Index="#x6060" Sub="#x03">
- <Type>BIT2</Type>
- <Comment><![CDATA[Bit0: Value smaller/equal Limit1
- Bit1: Value bigger/equal Limit1]]></Comment>
- </Entry>
- <Entry Name="Status__Limit 2" Index="#x6060" Sub="#x05">
- <Type>BIT2</Type>
- <Comment><![CDATA[Bit0: Value smaller/equal Limit2
- Bit1: Value bigger/equal Limit2]]></Comment>
- </Entry>
- <Entry Name="Status__Error" Index="#x6060" Sub="#x07">
- <Type>BIT</Type>
- <Comment><![CDATA[Bit set when Over- or Underrange]]></Comment>
- </Entry>
- <Entry Name="Status__">
- <Type GUID="{18071995-0000-0000-0000-002000000001}">ARRAY [0..0] OF BIT</Type>
- </Entry>
- <Entry Name="Status__">
- <Type GUID="{18071995-0000-0000-0000-002000000006}">ARRAY [0..5] OF BIT</Type>
- </Entry>
- <Entry Name="Status__TxPDO State" Index="#x6060" Sub="#x0f">
- <Type>BIT</Type>
- <Comment><![CDATA[TRUE when this TxPDO is not valid]]></Comment>
- </Entry>
- <Entry Name="Status__TxPDO Toggle" Index="#x6060" Sub="#x10">
- <Type>BIT</Type>
- <Comment><![CDATA[Bit toggles everytime when new value available]]></Comment>
- </Entry>
- <Entry Name="Value" Index="#x6060" Sub="#x11" Flags="#x00040000">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="AI Compact Channel 7" Index="#x1a0d" Flags="#x0010">
- <ExcludePdo>#x1a0c</ExcludePdo>
- <Entry Name="Value" Index="#x6060" Sub="#x11" Flags="#x00040000">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="AI Standard Channel 8" Index="#x1a0e" Flags="#x0010" SyncMan="3">
- <ExcludePdo>#x1a0f</ExcludePdo>
- <Entry Name="Status__Underrange" Index="#x6070" Sub="#x01">
- <Type>BIT</Type>
- <Comment><![CDATA[Underrange event active]]></Comment>
- </Entry>
- <Entry Name="Status__Overrange" Index="#x6070" Sub="#x02">
- <Type>BIT</Type>
- <Comment><![CDATA[Overrange event active]]></Comment>
- </Entry>
- <Entry Name="Status__Limit 1" Index="#x6070" Sub="#x03">
- <Type>BIT2</Type>
- <Comment><![CDATA[Bit0: Value smaller/equal Limit1
- Bit1: Value bigger/equal Limit1]]></Comment>
- </Entry>
- <Entry Name="Status__Limit 2" Index="#x6070" Sub="#x05">
- <Type>BIT2</Type>
- <Comment><![CDATA[Bit0: Value smaller/equal Limit2
- Bit1: Value bigger/equal Limit2]]></Comment>
- </Entry>
- <Entry Name="Status__Error" Index="#x6070" Sub="#x07">
- <Type>BIT</Type>
- <Comment><![CDATA[Bit set when Over- or Underrange]]></Comment>
- </Entry>
- <Entry Name="Status__">
- <Type GUID="{18071995-0000-0000-0000-002000000001}">ARRAY [0..0] OF BIT</Type>
- </Entry>
- <Entry Name="Status__">
- <Type GUID="{18071995-0000-0000-0000-002000000006}">ARRAY [0..5] OF BIT</Type>
- </Entry>
- <Entry Name="Status__TxPDO State" Index="#x6070" Sub="#x0f">
- <Type>BIT</Type>
- <Comment><![CDATA[TRUE when this TxPDO is not valid]]></Comment>
- </Entry>
- <Entry Name="Status__TxPDO Toggle" Index="#x6070" Sub="#x10">
- <Type>BIT</Type>
- <Comment><![CDATA[Bit toggles everytime when new value available]]></Comment>
- </Entry>
- <Entry Name="Value" Index="#x6070" Sub="#x11" Flags="#x00040000">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="AI Compact Channel 8" Index="#x1a0f" Flags="#x0010">
- <ExcludePdo>#x1a0e</ExcludePdo>
- <Entry Name="Value" Index="#x6070" Sub="#x11" Flags="#x00040000">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <CoeProfile ProfileNo="19665801"/>
- <CoeProfile ProfileNo="19665801"/>
- <CoeProfile ProfileNo="19665801"/>
- <CoeProfile ProfileNo="19665801"/>
- <CoeProfile ProfileNo="19665801"/>
- <CoeProfile ProfileNo="19665801"/>
- <CoeProfile ProfileNo="19665801"/>
- <CoeProfile ProfileNo="19665801"/>
- </EtherCAT>
- </Box>
- <Box Id="10" BoxType="9099">
- <Name>Term 10 (EL9011)</Name>
- <ImageId>1003</ImageId>
- <EtherCAT CycleMBoxPollingTime="0" VendorId="#x00000002" ProductCode="#x23333050" InfoDataState="false" MaxSlotCount="256" MaxSlotGroupCount="1" SlotPdoIncrement="1" SlotIndexIncrement="16" Type="EL9011 End Terminal" Desc="EL9011" PortABoxInfo="#x01000006"/>
- </Box>
- </Box>
- <Box Id="7" BoxType="9099">
- <Name>Drive 7 (SGDXS-xxxxA0x CoE Drive)</Name>
- <ImageId>1004</ImageId>
- <EtherCAT SlaveType="2" PdiType="#x0c8d" MboxDataLinkLayer="true" StateMBoxPolling="true" CfgModeSafeOp="true" CycleMBoxPollingTime="0" CoeType="45" EoeType="1" FoeType="1" VendorId="#x00000539" ProductCode="#x02200901" RevisionNo="#x00010006" InfoDataAddr="true" InfoDataSoeDS401="true" InfoDataDcTimes="true" PortPhys="17" IdentificationAdo="308" MaxSlotCount="256" MaxSlotGroupCount="1" SlotPdoIncrement="1" SlotIndexIncrement="16" Type="SGDXS-xxxxA0x EtherCAT(CoE) SERVOPACK Rev01.06" Desc="SGDXS-xxxxA0x CoE Drive" PortABoxInfo="#x02000001">
- <SyncMan>001080002600010001000000000000008000001026010000</SyncMan>
- <SyncMan>801080002200010002000000000000008000801022010000</SyncMan>
- <SyncMan>001106007400010003000000000000000600001174010000</SyncMan>
- <SyncMan>001406003000010004000000000000000600001430010000</SyncMan>
- <Fmmu>0000000000000000001100020100000001000000000000000000000000000000</Fmmu>
- <Fmmu>0000000000000000001400010100000002000000000000000000000000000000</Fmmu>
- <Fmmu>00000000000000000d0800010100000003000000000000000000000000000000</Fmmu>
- <SwitchPortData>00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000</SwitchPortData>
- <BootStrapData>0010800000118000</BootStrapData>
- <DcData>0003000000000000000000000000000001000000000000000000000000000000</DcData>
- <DcMode>44432053796e6330000000000000000044432053796e6330000000000000000000000000000000000000000000000000000000000000000000000000000000030100000000000000000000000000000000000000000000000000000000000000</DcMode>
- <DcMode>467265652d72756e0000000000000000467265652d72756e000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000</DcMode>
- <Pdo Name="1st Transmit PDO mapping" Index="#x1a00" Flags="#x0000">
- <Entry Name="Status word" Index="#x6041">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="Position actual value" Index="#x6064">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Torque actual value" Index="#x6077">
- <Type>INT</Type>
- </Entry>
- <Entry Name="Following error actual value" Index="#x60f4">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Modes of operation display" Index="#x6061">
- <Type>SINT</Type>
- </Entry>
- <Entry Name="E0000:00">
- <Type>USINT</Type>
- </Entry>
- <Entry Name="Touch probe status" Index="#x60b9">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="Touch probe 1 position value" Index="#x60ba">
- <Type>DINT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="2nd Transmit PDO mapping" Index="#x1a01" Flags="#x0000" SyncMan="3">
- <Entry Name="Status word" Index="#x6041">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="Position actual value" Index="#x6064">
- <Type>DINT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="3rd Transmit PDO mapping" Index="#x1a02" Flags="#x0000">
- <Entry Name="Status word" Index="#x6041">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="Position actual value" Index="#x6064">
- <Type>DINT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="4th Transmit PDO mapping" Index="#x1a03" Flags="#x0000">
- <Entry Name="Status word" Index="#x6041">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="Position actual value" Index="#x6064">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Torque actual value" Index="#x6077">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="1st Receive PDO mapping" Index="#x1600" InOut="1" Flags="#x0000">
- <Entry Name="Control word" Index="#x6040">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="Target position" Index="#x607a">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Target velocity" Index="#x60ff">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Target torque" Index="#x6071">
- <Type>INT</Type>
- </Entry>
- <Entry Name="Max torque" Index="#x6072">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="Modes of operation" Index="#x6060">
- <Type>SINT</Type>
- </Entry>
- <Entry Name="E0000:00">
- <Type>USINT</Type>
- </Entry>
- <Entry Name="Touch probe function" Index="#x60b8">
- <Type>UINT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="2nd Receive PDO mapping" Index="#x1601" InOut="1" Flags="#x0000" SyncMan="2">
- <Entry Name="Control word" Index="#x6040">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="Target position" Index="#x607a">
- <Type>DINT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="3rd Receive PDO mapping" Index="#x1602" InOut="1" Flags="#x0000">
- <Entry Name="Control word" Index="#x6040">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="Target velocity" Index="#x60ff">
- <Type>DINT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="4th Receive PDO mapping" Index="#x1603" InOut="1" Flags="#x0000">
- <Entry Name="Control word" Index="#x6040">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="Target torque" Index="#x6071">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <CoeProfile ProfileNo="402"/>
- </EtherCAT>
- </Box>
- <Box Id="8" BoxType="9099">
- <Name>Drive 8 (AKD)</Name>
- <ImageId>38</ImageId>
- <EtherCAT SlaveType="2" PdiType="#x0009" MboxDataLinkLayer="true" StateMBoxPolling="true" CfgModeSafeOp="true" CycleMBoxPollingTime="0" CoeType="13" EoeType="3" FoeType="1" VendorId="#x0000006a" ProductCode="#x00414b44" RevisionNo="#x00000002" SerialNo="#xa80180fb" InfoDataAddr="true" InfoDataSoeDS401="true" InfoDataDcTimes="true" PortPhys="17" MaxSlotCount="256" MaxSlotGroupCount="1" SlotPdoIncrement="1" SlotIndexIncrement="16" Type="AKD EtherCAT Drive (CoE)" Desc="AKD" PortABoxInfo="#x01000007">
- <SyncMan>001800042600010001000000000000000004001826010000</SyncMan>
- <SyncMan>001c00042200010002000000000000000004001c22010000</SyncMan>
- <SyncMan>001114002400010003000000000000000000001124010000</SyncMan>
- <SyncMan>401110002000010004000000000000000000401120010000</SyncMan>
- <Fmmu>0000000000000000001100020100000001000000000000000000000000000000</Fmmu>
- <Fmmu>0000000000000000401100010100000002000000000000000000000000000000</Fmmu>
- <Fmmu>00000000000000000d0800010100000003000000000000000000000000000000</Fmmu>
- <SwitchPortData>010000000000a8c000ffffffc800a8c00000000044726976655f385f5f414b445f00000000000000000000000000000000000000000000000000000000000000</SwitchPortData>
- <BootStrapData>00180004001c0004</BootStrapData>
- <DcData>0003000000000000000000000000000001000000000000000000000000000000</DcData>
- <DcMode>446353796e6300000000000000000000446353796e630000000000000000000000000000000000000000000000000000000000000000000000000000000000030100000000000000000000000000000000000000000000000000000000000000</DcMode>
- <DcMode>44634f6666000000000000000000000044634f6666000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000</DcMode>
- <Pdo Name="Inputs" Index="#x1a00" Flags="#x0000" SyncMan="3">
- <Entry Name="Statusword" Index="#x6041">
- <Type>UINT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Inputs" Index="#x1a01" Flags="#x0000" SyncMan="3">
- <Entry Name="motor position" Index="#x6063">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="position1" Index="#x6064">
- <Type>DINT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Inputs" Index="#x1a02" Flags="#x0000" SyncMan="3">
- <Entry Name="Mode of operation display" Index="#x6061">
- <Type>SINT</Type>
- </Entry>
- <Entry Name="DigitalInputs" Index="#x60f4">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="System fault" Index="#x2001">
- <Type>SINT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Inputs" Index="#x1a03" Flags="#x0000"/>
- <Pdo Name="Inputs" Index="#x1b01" Flags="#x0010">
- <Entry Name="Position actual internal value" Index="#x6063">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Statusword" Index="#x6041">
- <Type>UINT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Inputs" Index="#x1b20" Flags="#x0010">
- <Entry Name="Position actual internal value" Index="#x6063">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Second position feedback" Index="#x2050">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Velocity actual value" Index="#x606c">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Digital inputs" Index="#x60fd">
- <Type>UDINT</Type>
- </Entry>
- <Entry Name="Following error actual value" Index="#x60f4">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Latch 1p" Index="#x20a0">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Statusword" Index="#x6041">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="Torque actual value" Index="#x6077">
- <Type>INT</Type>
- </Entry>
- <Entry Name="Latch statusword" Index="#x20a5">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="AIN.VALUE" Index="#x3470" Sub="#x04">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Inputs" Index="#x1b21" Flags="#x0010">
- <Entry Name="Position actual internal value" Index="#x6063">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Statusword" Index="#x6041">
- <Type>UINT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Inputs" Index="#x1b22" Flags="#x0010">
- <Entry Name="Position actual internal value" Index="#x6063">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Second position feedback" Index="#x2050">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Velocity actual value" Index="#x606c">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Digital inputs" Index="#x60fd">
- <Type>UDINT</Type>
- </Entry>
- <Entry Name="Following error actual value" Index="#x60f4">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Latch 1n" Index="#x20a1">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Statusword" Index="#x6041">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="Torque actual value" Index="#x6077">
- <Type>INT</Type>
- </Entry>
- <Entry Name="Latch statusword" Index="#x20a5">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="AIN.VALUE" Index="#x3470" Sub="#x04">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Inputs" Index="#x1b23" Flags="#x0010">
- <Entry Name="Position actual internal value" Index="#x6063">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Second position feedback" Index="#x2050">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Velocity actual value" Index="#x606c">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Digital inputs" Index="#x60fd">
- <Type>UDINT</Type>
- </Entry>
- <Entry Name="Following error actual value" Index="#x60f4">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Latch 1 pn" Index="#x20a6">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Statusword" Index="#x6041">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="Torque actual value" Index="#x6077">
- <Type>INT</Type>
- </Entry>
- <Entry Name="Latch statusword" Index="#x20a5">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="AIN.VALUE" Index="#x3470" Sub="#x04">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Inputs" Index="#x1b24" Flags="#x0010">
- <Entry Name="Position actual value" Index="#x6064">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Statusword" Index="#x6041">
- <Type>UINT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Inputs" Index="#x1b25" Flags="#x0010">
- <Entry Name="Position actual internal value" Index="#x6063">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Second position feedback" Index="#x2050">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Latch 2 pn" Index="#x20a7">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Digital inputs" Index="#x60fd">
- <Type>UDINT</Type>
- </Entry>
- <Entry Name="Following error actual value" Index="#x60f4">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Latch 1 pn" Index="#x20a6">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Statusword" Index="#x6041">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="Torque actual value" Index="#x6077">
- <Type>INT</Type>
- </Entry>
- <Entry Name="Latch statusword" Index="#x20a5">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="AIN.VALUE" Index="#x3470" Sub="#x04">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Inputs" Index="#x1b26" Flags="#x0010">
- <Entry Name="Statusword" Index="#x6041">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="Position actual value" Index="#x6064">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Torque actual value" Index="#x6077">
- <Type>INT</Type>
- </Entry>
- <Entry Name="Digital inputs" Index="#x60fd">
- <Type>UDINT</Type>
- </Entry>
- <Entry Name="AIN.VALUE" Index="#x3470" Sub="#x04">
- <Type>INT</Type>
- </Entry>
- <Entry Name="Following error actual value" Index="#x60f4">
- <Type>DINT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Outputs" Index="#x1600" InOut="1" Flags="#x0000" SyncMan="2">
- <Entry Name="Controlword" Index="#x6040">
- <Type>UINT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Outputs" Index="#x1601" InOut="1" Flags="#x0000" SyncMan="2">
- <Entry Name="profile acceleration" Index="#x6083">
- <Type>UDINT</Type>
- </Entry>
- <Entry Name="profile deceleration" Index="#x6084">
- <Type>UDINT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Outputs" Index="#x1602" InOut="1" Flags="#x0000" SyncMan="2">
- <Entry Name="profile velocity" Index="#x6081">
- <Type>UDINT</Type>
- </Entry>
- <Entry Name="target position" Index="#x607a">
- <Type>DINT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Outputs" Index="#x1603" InOut="1" Flags="#x0000" SyncMan="2">
- <Entry Name="Mode of operation" Index="#x6060">
- <Type>SINT</Type>
- </Entry>
- <Entry Name="Homing method" Index="#x6098">
- <Type>SINT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Outputs" Index="#x1701" InOut="1" Flags="#x0010">
- <Entry Name="1st set-point" Index="#x60c1" Sub="#x01">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Controlword" Index="#x6040">
- <Type>UINT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Outputs" Index="#x1702" InOut="1" Flags="#x0010">
- <Entry Name="Target velocity" Index="#x60ff">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Controlword" Index="#x6040">
- <Type>UINT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Outputs" Index="#x1720" InOut="1" Flags="#x0010">
- <Entry Name="Controlword" Index="#x6040">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="1st set-point" Index="#x60c1" Sub="#x01">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Latch controlword" Index="#x20a4">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="Torque offset" Index="#x60b2">
- <Type>INT</Type>
- </Entry>
- <Entry Name="Physical outputs" Index="#x60fe" Sub="#x01">
- <Type>UDINT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Outputs" Index="#x1721" InOut="1" Flags="#x0010">
- <Entry Name="1st set-point" Index="#x60c1" Sub="#x01">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Controlword" Index="#x6040">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="Torque offset" Index="#x60b2">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Outputs" Index="#x1722" InOut="1" Flags="#x0010">
- <Entry Name="Controlword" Index="#x6040">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="1st set-point" Index="#x60c1" Sub="#x01">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Latch controlword" Index="#x20a4">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="Torque offset" Index="#x60b2">
- <Type>INT</Type>
- </Entry>
- <Entry Name="Physical outputs" Index="#x60fe" Sub="#x01">
- <Type>UDINT</Type>
- </Entry>
- <Entry Name="Max torque" Index="#x6072">
- <Type>UINT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Outputs" Index="#x1723" InOut="1" Flags="#x0010">
- <Entry Name="Controlword" Index="#x6040">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="1st set-point" Index="#x60c1" Sub="#x01">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Latch controlword" Index="#x20a4">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="Torque offset" Index="#x60b2">
- <Type>INT</Type>
- </Entry>
- <Entry Name="Physical outputs" Index="#x60fe" Sub="#x01">
- <Type>UDINT</Type>
- </Entry>
- <Entry Name="ClearDigInputChangedBit" Index="#x20b8">
- <Type>UINT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Outputs" Index="#x1724" InOut="1" Flags="#x0010">
- <Entry Name="Target position" Index="#x607a">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Controlword" Index="#x6040">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="Torque offset" Index="#x60b2">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Outputs" Index="#x1725" InOut="1" Flags="#x0010">
- <Entry Name="Controlword" Index="#x6040">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="Target position" Index="#x607a">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Physical outputs" Index="#x60fe" Sub="#x01">
- <Type>UDINT</Type>
- </Entry>
- <Entry Name="Torque offset" Index="#x60b2">
- <Type>INT</Type>
- </Entry>
- <Entry Name="AOUT.VALUE write" Index="#x3470" Sub="#x03">
- <Type>INT</Type>
- </Entry>
- <Entry Name="Max torque" Index="#x6072">
- <Type>UINT</Type>
- </Entry>
- </Pdo>
- <CoeProfile ProfileNo="402"/>
- </EtherCAT>
- </Box>
- <Box Id="9" BoxType="9099">
- <Name>Drive 9 (AKD)</Name>
- <ImageId>38</ImageId>
- <EtherCAT SlaveType="2" PdiType="#x0009" MboxDataLinkLayer="true" StateMBoxPolling="true" CfgModeSafeOp="true" CycleMBoxPollingTime="0" CoeType="13" EoeType="3" FoeType="1" VendorId="#x0000006a" ProductCode="#x00414b44" RevisionNo="#x00000002" SerialNo="#xa80180fb" InfoDataAddr="true" InfoDataSoeDS401="true" InfoDataDcTimes="true" PortPhys="17" MaxSlotCount="256" MaxSlotGroupCount="1" SlotPdoIncrement="1" SlotIndexIncrement="16" Type="AKD EtherCAT Drive (CoE)" Desc="AKD" PortABoxInfo="#x01000008">
- <SyncMan>001800042600010001000000000000000004001826010000</SyncMan>
- <SyncMan>001c00042200010002000000000000000004001c22010000</SyncMan>
- <SyncMan>001106002400010003000000000000000000001124010000</SyncMan>
- <SyncMan>401106002000010004000000000000000000401120010000</SyncMan>
- <Fmmu>0000000000000000001100020100000001000000000000000000000000000000</Fmmu>
- <Fmmu>0000000000000000401100010100000002000000000000000000000000000000</Fmmu>
- <Fmmu>00000000000000000d0800010100000003000000000000000000000000000000</Fmmu>
- <SwitchPortData>010000000000a8c000ffffffc800a8c00000000044726976655f395f5f414b445f00000000000000000000000000000000000000000000000000000000000000</SwitchPortData>
- <BootStrapData>00180004001c0004</BootStrapData>
- <DcData>0003000000000000000000000000000001000000000000000000000000000000</DcData>
- <DcMode>446353796e6300000000000000000000446353796e630000000000000000000000000000000000000000000000000000000000000000000000000000000000030100000000000000000000000000000000000000000000000000000000000000</DcMode>
- <DcMode>44634f6666000000000000000000000044634f6666000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000</DcMode>
- <Pdo Name="Inputs" Index="#x1a00" Flags="#x0000">
- <Entry Name="Statusword" Index="#x6041">
- <Type>UINT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Inputs" Index="#x1a01" Flags="#x0000"/>
- <Pdo Name="Inputs" Index="#x1a02" Flags="#x0000"/>
- <Pdo Name="Inputs" Index="#x1a03" Flags="#x0000"/>
- <Pdo Name="Inputs" Index="#x1b01" Flags="#x0010" SyncMan="3">
- <Entry Name="Position actual internal value" Index="#x6063">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Statusword" Index="#x6041">
- <Type>UINT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Inputs" Index="#x1b20" Flags="#x0010">
- <Entry Name="Position actual internal value" Index="#x6063">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Second position feedback" Index="#x2050">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Velocity actual value" Index="#x606c">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Digital inputs" Index="#x60fd">
- <Type>UDINT</Type>
- </Entry>
- <Entry Name="Following error actual value" Index="#x60f4">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Latch 1p" Index="#x20a0">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Statusword" Index="#x6041">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="Torque actual value" Index="#x6077">
- <Type>INT</Type>
- </Entry>
- <Entry Name="Latch statusword" Index="#x20a5">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="AIN.VALUE" Index="#x3470" Sub="#x04">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Inputs" Index="#x1b21" Flags="#x0010">
- <Entry Name="Position actual internal value" Index="#x6063">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Statusword" Index="#x6041">
- <Type>UINT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Inputs" Index="#x1b22" Flags="#x0010">
- <Entry Name="Position actual internal value" Index="#x6063">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Second position feedback" Index="#x2050">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Velocity actual value" Index="#x606c">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Digital inputs" Index="#x60fd">
- <Type>UDINT</Type>
- </Entry>
- <Entry Name="Following error actual value" Index="#x60f4">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Latch 1n" Index="#x20a1">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Statusword" Index="#x6041">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="Torque actual value" Index="#x6077">
- <Type>INT</Type>
- </Entry>
- <Entry Name="Latch statusword" Index="#x20a5">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="AIN.VALUE" Index="#x3470" Sub="#x04">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Inputs" Index="#x1b23" Flags="#x0010">
- <Entry Name="Position actual internal value" Index="#x6063">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Second position feedback" Index="#x2050">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Velocity actual value" Index="#x606c">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Digital inputs" Index="#x60fd">
- <Type>UDINT</Type>
- </Entry>
- <Entry Name="Following error actual value" Index="#x60f4">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Latch 1 pn" Index="#x20a6">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Statusword" Index="#x6041">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="Torque actual value" Index="#x6077">
- <Type>INT</Type>
- </Entry>
- <Entry Name="Latch statusword" Index="#x20a5">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="AIN.VALUE" Index="#x3470" Sub="#x04">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Inputs" Index="#x1b24" Flags="#x0010">
- <Entry Name="Position actual value" Index="#x6064">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Statusword" Index="#x6041">
- <Type>UINT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Inputs" Index="#x1b25" Flags="#x0010">
- <Entry Name="Position actual internal value" Index="#x6063">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Second position feedback" Index="#x2050">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Latch 2 pn" Index="#x20a7">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Digital inputs" Index="#x60fd">
- <Type>UDINT</Type>
- </Entry>
- <Entry Name="Following error actual value" Index="#x60f4">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Latch 1 pn" Index="#x20a6">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Statusword" Index="#x6041">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="Torque actual value" Index="#x6077">
- <Type>INT</Type>
- </Entry>
- <Entry Name="Latch statusword" Index="#x20a5">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="AIN.VALUE" Index="#x3470" Sub="#x04">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Inputs" Index="#x1b26" Flags="#x0010">
- <Entry Name="Statusword" Index="#x6041">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="Position actual value" Index="#x6064">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Torque actual value" Index="#x6077">
- <Type>INT</Type>
- </Entry>
- <Entry Name="Digital inputs" Index="#x60fd">
- <Type>UDINT</Type>
- </Entry>
- <Entry Name="AIN.VALUE" Index="#x3470" Sub="#x04">
- <Type>INT</Type>
- </Entry>
- <Entry Name="Following error actual value" Index="#x60f4">
- <Type>DINT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Outputs" Index="#x1600" InOut="1" Flags="#x0000">
- <Entry Name="Controlword" Index="#x6040">
- <Type>UINT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Outputs" Index="#x1601" InOut="1" Flags="#x0000"/>
- <Pdo Name="Outputs" Index="#x1602" InOut="1" Flags="#x0000"/>
- <Pdo Name="Outputs" Index="#x1603" InOut="1" Flags="#x0000"/>
- <Pdo Name="Outputs" Index="#x1701" InOut="1" Flags="#x0010" SyncMan="2">
- <Entry Name="1st set-point" Index="#x60c1" Sub="#x01">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Controlword" Index="#x6040">
- <Type>UINT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Outputs" Index="#x1702" InOut="1" Flags="#x0010">
- <Entry Name="Target velocity" Index="#x60ff">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Controlword" Index="#x6040">
- <Type>UINT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Outputs" Index="#x1720" InOut="1" Flags="#x0010">
- <Entry Name="Controlword" Index="#x6040">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="1st set-point" Index="#x60c1" Sub="#x01">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Latch controlword" Index="#x20a4">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="Torque offset" Index="#x60b2">
- <Type>INT</Type>
- </Entry>
- <Entry Name="Physical outputs" Index="#x60fe" Sub="#x01">
- <Type>UDINT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Outputs" Index="#x1721" InOut="1" Flags="#x0010">
- <Entry Name="1st set-point" Index="#x60c1" Sub="#x01">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Controlword" Index="#x6040">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="Torque offset" Index="#x60b2">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Outputs" Index="#x1722" InOut="1" Flags="#x0010">
- <Entry Name="Controlword" Index="#x6040">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="1st set-point" Index="#x60c1" Sub="#x01">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Latch controlword" Index="#x20a4">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="Torque offset" Index="#x60b2">
- <Type>INT</Type>
- </Entry>
- <Entry Name="Physical outputs" Index="#x60fe" Sub="#x01">
- <Type>UDINT</Type>
- </Entry>
- <Entry Name="Max torque" Index="#x6072">
- <Type>UINT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Outputs" Index="#x1723" InOut="1" Flags="#x0010">
- <Entry Name="Controlword" Index="#x6040">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="1st set-point" Index="#x60c1" Sub="#x01">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Latch controlword" Index="#x20a4">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="Torque offset" Index="#x60b2">
- <Type>INT</Type>
- </Entry>
- <Entry Name="Physical outputs" Index="#x60fe" Sub="#x01">
- <Type>UDINT</Type>
- </Entry>
- <Entry Name="ClearDigInputChangedBit" Index="#x20b8">
- <Type>UINT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Outputs" Index="#x1724" InOut="1" Flags="#x0010">
- <Entry Name="Target position" Index="#x607a">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Controlword" Index="#x6040">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="Torque offset" Index="#x60b2">
- <Type>INT</Type>
- </Entry>
- </Pdo>
- <Pdo Name="Outputs" Index="#x1725" InOut="1" Flags="#x0010">
- <Entry Name="Controlword" Index="#x6040">
- <Type>UINT</Type>
- </Entry>
- <Entry Name="Target position" Index="#x607a">
- <Type>DINT</Type>
- </Entry>
- <Entry Name="Physical outputs" Index="#x60fe" Sub="#x01">
- <Type>UDINT</Type>
- </Entry>
- <Entry Name="Torque offset" Index="#x60b2">
- <Type>INT</Type>
- </Entry>
- <Entry Name="AOUT.VALUE write" Index="#x3470" Sub="#x03">
- <Type>INT</Type>
- </Entry>
- <Entry Name="Max torque" Index="#x6072">
- <Type>UINT</Type>
- </Entry>
- </Pdo>
- <CoeProfile ProfileNo="402"/>
- </EtherCAT>
- </Box>
- <EtherCAT DcSyncMode="3" EnableVirtualSwitch="true" MaxSwitchPorts="4" MaxSwitchFrames="160"/>
- </Device>
- </Io>
- </Project>
- </TcSmProject>
|