fpga.lvproj 283 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733
  1. <?xml version='1.0' encoding='UTF-8'?>
  2. <Project Type="Project" LVVersion="20008000">
  3. <Item Name="我的电脑" Type="My Computer">
  4. <Property Name="server.app.propertiesEnabled" Type="Bool">true</Property>
  5. <Property Name="server.control.propertiesEnabled" Type="Bool">true</Property>
  6. <Property Name="server.tcp.enabled" Type="Bool">false</Property>
  7. <Property Name="server.tcp.port" Type="Int">0</Property>
  8. <Property Name="server.tcp.serviceName" Type="Str">我的电脑/VI服务器</Property>
  9. <Property Name="server.tcp.serviceName.default" Type="Str">我的电脑/VI服务器</Property>
  10. <Property Name="server.vi.callsEnabled" Type="Bool">true</Property>
  11. <Property Name="server.vi.propertiesEnabled" Type="Bool">true</Property>
  12. <Property Name="specify.custom.address" Type="Bool">false</Property>
  13. <Item Name="三角波.vi" Type="VI" URL="../三角波.vi"/>
  14. <Item Name="依赖关系" Type="Dependencies"/>
  15. <Item Name="程序生成规范" Type="Build"/>
  16. </Item>
  17. <Item Name="RT CompactRIO终端" Type="RT CompactRIO">
  18. <Property Name="alias.name" Type="Str">RT CompactRIO终端</Property>
  19. <Property Name="alias.value" Type="Str">0.0.0.0</Property>
  20. <Property Name="CCSymbols" Type="Str">TARGET_TYPE,RT;OS,Linux;CPU,x64;DeviceCode,78EA;</Property>
  21. <Property Name="crio.ControllerPID" Type="Str">78EA</Property>
  22. <Property Name="host.ResponsivenessCheckEnabled" Type="Bool">true</Property>
  23. <Property Name="host.ResponsivenessCheckPingDelay" Type="UInt">5000</Property>
  24. <Property Name="host.ResponsivenessCheckPingTimeout" Type="UInt">1000</Property>
  25. <Property Name="host.TargetCPUID" Type="UInt">9</Property>
  26. <Property Name="host.TargetOSID" Type="UInt">19</Property>
  27. <Property Name="host.TargetUIEnabled" Type="Bool">false</Property>
  28. <Property Name="target.cleanupVisa" Type="Bool">false</Property>
  29. <Property Name="target.FPProtocolGlobals_ControlTimeLimit" Type="Int">300</Property>
  30. <Property Name="target.getDefault-&gt;WebServer.Port" Type="Int">80</Property>
  31. <Property Name="target.getDefault-&gt;WebServer.Timeout" Type="Int">60</Property>
  32. <Property Name="target.IOScan.Faults" Type="Str"></Property>
  33. <Property Name="target.IOScan.NetVarPeriod" Type="UInt">100</Property>
  34. <Property Name="target.IOScan.NetWatchdogEnabled" Type="Bool">false</Property>
  35. <Property Name="target.IOScan.Period" Type="UInt">10000</Property>
  36. <Property Name="target.IOScan.PowerupMode" Type="UInt">0</Property>
  37. <Property Name="target.IOScan.Priority" Type="UInt">0</Property>
  38. <Property Name="target.IOScan.ReportModeConflict" Type="Bool">true</Property>
  39. <Property Name="target.IsRemotePanelSupported" Type="Bool">true</Property>
  40. <Property Name="target.RTCPULoadMonitoringEnabled" Type="Bool">true</Property>
  41. <Property Name="target.RTDebugWebServerHTTPPort" Type="Int">8001</Property>
  42. <Property Name="target.RTTarget.ApplicationPath" Type="Path">/c/ni-rt/startup/startup.rtexe</Property>
  43. <Property Name="target.RTTarget.EnableFileSharing" Type="Bool">true</Property>
  44. <Property Name="target.RTTarget.IPAccess" Type="Str">+*</Property>
  45. <Property Name="target.RTTarget.LaunchAppAtBoot" Type="Bool">false</Property>
  46. <Property Name="target.RTTarget.VIPath" Type="Path">/home/lvuser/natinst/bin</Property>
  47. <Property Name="target.server.app.propertiesEnabled" Type="Bool">true</Property>
  48. <Property Name="target.server.control.propertiesEnabled" Type="Bool">true</Property>
  49. <Property Name="target.server.tcp.access" Type="Str">+*</Property>
  50. <Property Name="target.server.tcp.enabled" Type="Bool">false</Property>
  51. <Property Name="target.server.tcp.paranoid" Type="Bool">true</Property>
  52. <Property Name="target.server.tcp.port" Type="Int">3363</Property>
  53. <Property Name="target.server.tcp.serviceName" Type="Str">Main Application Instance/VI Server</Property>
  54. <Property Name="target.server.tcp.serviceName.default" Type="Str">Main Application Instance/VI Server</Property>
  55. <Property Name="target.server.vi.access" Type="Str">+*</Property>
  56. <Property Name="target.server.vi.callsEnabled" Type="Bool">true</Property>
  57. <Property Name="target.server.vi.propertiesEnabled" Type="Bool">true</Property>
  58. <Property Name="target.WebServer.Enabled" Type="Bool">false</Property>
  59. <Property Name="target.WebServer.LogEnabled" Type="Bool">false</Property>
  60. <Property Name="target.WebServer.LogPath" Type="Path">/c/ni-rt/system/www/www.log</Property>
  61. <Property Name="target.WebServer.Port" Type="Int">80</Property>
  62. <Property Name="target.WebServer.RootPath" Type="Path">/c/ni-rt/system/www</Property>
  63. <Property Name="target.WebServer.TcpAccess" Type="Str">c+*</Property>
  64. <Property Name="target.WebServer.Timeout" Type="Int">60</Property>
  65. <Property Name="target.WebServer.ViAccess" Type="Str">+*</Property>
  66. <Property Name="target.webservices.SecurityAPIKey" Type="Str">PqVr/ifkAQh+lVrdPIykXlFvg12GhhQFR8H9cUhphgg=:pTe9HRlQuMfJxAG6QCGq7UvoUpJzAzWGKy5SbZ+roSU=</Property>
  67. <Property Name="target.webservices.ValidTimestampWindow" Type="Int">15</Property>
  68. <Item Name="机箱" Type="cRIO Chassis">
  69. <Property Name="crio.ProgrammingMode" Type="Str">fpga</Property>
  70. <Property Name="crio.ResourceID" Type="Str">RIO0</Property>
  71. <Property Name="crio.Type" Type="Str">cRIO-9049</Property>
  72. <Property Name="NI.SortType" Type="Int">3</Property>
  73. <Item Name="实时扫描资源" Type="Module Container">
  74. <Property Name="crio.ModuleContainerType" Type="Str">crio.RSIModuleContainer</Property>
  75. </Item>
  76. <Item Name="实时资源" Type="Module Container">
  77. <Property Name="crio.ModuleContainerType" Type="Str">crio.DAQModuleContainer</Property>
  78. </Item>
  79. <Item Name="FPGA终端" Type="FPGA Target">
  80. <Property Name="AutoRun" Type="Bool">false</Property>
  81. <Property Name="configString.guid" Type="Str">{002C79C4-A079-49E8-91F8-CBB1C558F59F}resource=/crio_9375/DI15:8;0;ReadMethodType=u8{02A99BF1-40E2-4ABF-8FF9-16C645C60ACB}resource=/crio_9375/DI13;0;ReadMethodType=bool{0369D1FF-E63F-4EA7-B6F8-0F35CD1A66DB}Actual Number of Elements=8;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A000000080001000100000008FFFFFFFFFFFFFFFF00000019000000070000000001FFFFFF00000001FFFFFFEF000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2{064A8809-E826-4237-9DBB-5BEFA14ACEE8}Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2{0661AD87-FDF9-45E1-9041-A9B2CB845C00}"DataType=1000800000000001003C005F03110018000000100000001800000010000000000000000000000018000000100000000000FFFFFF00000001FFFFFFF9000000000000000100010000000000000000000000000000;InitDataHash=;Name=LX0;WriteArb=2"{081160F7-9B2E-49FC-A8F4-18B7AC4F4CEE}Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A000100010000000AFFFFFFFFFFFFFFFF00000019000000090000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2{081FE536-A846-408D-9213-E92506B35F28}Actual Number of Elements=6;ReadArbs=2;WriteArbs=2;Implementation=2;DataType=1000800000000001003C005F031100100000000A000000100000000A0000000000000000000000100000000A000000000000FFFF00000001FFFFFFFB000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2{0A826EDD-92CE-4102-A277-81601A5222FE}Actual Number of Elements=4;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F03510014000000050001001400000005FFFFFFFFFFF800000001001400000005000000000007FFFF00000001FFFFFFF2000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2{0C67F601-EE96-4E42-8605-0440FF49BB64}Actual Number of Elements=6;ReadArbs=2;WriteArbs=2;Implementation=2;DataType=1000800000000001003C005F03110018000000020000001800000002000000000000000000000018000000020000000000FFFFFF00000001FFFFFFEB000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2{0E8A4CD8-E673-4BC9-933A-D8AC9761A147}resource=/crio_9264/AO13;0;WriteMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_20_5.ctl{0EE9E482-EB22-4255-A882-2B0873CE0B54}"DataType=1000800000000001000940070003553332000100000000000000000000;InitDataHash=;Name=零位改最大计数;WriteArb=2"{108B3098-BB6B-40BF-A880-4F0D199A9F9B}NumberOfSyncRegistersForReadInProject=Auto;resource=/cRIO_Trig/cRIO_Trig6;0;ReadMethodType=bool{118537D6-4DD6-4CC9-9A77-2508B7CE8582}resource=/crio_9264/AO4;0;WriteMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_20_5.ctl{11C7D20E-6A09-47A7-A3E1-D7DB756D14E6}resource=/crio_9375/DI4;0;ReadMethodType=bool{11DBACE8-A79A-48DE-8F7F-476DD9EC47B2}"DataType=1000800000000001000940070003553332000100000000000000000000;InitDataHash=;Name=零位改最大计数;WriteArb=2"{13004F2A-1B63-4A37-AC34-66729D8E95BC}"DataType=1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000;InitDataHash=;Name=X向比值;WriteArb=2"{130184E4-5C3E-44DD-9772-E9BB6C19A5F9}resource=/crio_9205/AI19;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl{13C316C2-7D71-4F5E-BA80-92DA5F2B6B66}NumberOfSyncRegistersForReadInProject=Auto;resource=/cRIO_Trig/cRIO_Trig7;0;ReadMethodType=bool{1555DD2A-E64B-4D30-991E-76E833683188}"DataType=1000800000000001003C005F03110018000000100000000100000001000000000000000000000018000000100000000000FFFFFF00000001FFFFFFF9000000000000000100010000000000000000000000000000;InitDataHash=;Name=Y边长;WriteArb=2"{1615E4C1-0502-4682-BCEF-C536020B3E57}resource=/USER FPGA LED;0;ReadMethodType=u8;WriteMethodType=u8{1628C48D-B609-4E52-8030-595D4909DE45}[crioConfig.Begin]crio.Calibration=1,crio.Location=Slot 2,crio.Type=NI 9264,cRIOModule.EnableDECoM=false,cRIOModule.EnableInputFifo=false,cRIOModule.EnableOutputFifo=false,cRIOModule.HotSwapMode=0,cRIOModule.RsiAttributes=[crioConfig.End]{171A7CDD-9137-4ADC-80D2-F80654F0CD59}"DataType=1000800000000001000940070003553332000100000000000000000000;InitDataHash=;Name=零位改计数;WriteArb=1"{17596357-D2C4-4226-9AE6-155B4F268C38}"DataType=1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000;InitDataHash=;Name=零位改当前时间;WriteArb=2"{17F7B8CC-BE1B-455C-9884-DAFDA1BD1D81}"DataType=1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000;InitDataHash=;Name=零位改计数间隔;WriteArb=2"{185856EF-F534-4340-8C09-2760DFE356C0}[crioConfig.Begin]crio.Calibration=1,crio.Location=Slot 3,crio.Type=NI 9375,cRIOModule.EnableDECoM=false,cRIOModule.EnableInputFifo=false,cRIOModule.EnableOutputFifo=false,cRIOModule.RsiAttributes=[crioConfig.End]{18681244-4ED7-4FEF-BF67-1E8D58DBDF0D}Actual Number of Elements=3;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A000000080001001A00000008FFFFFFFFFE0000000001001A000000080000000001FFFFFF00000001FFFFFFEF000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2{19FB96B0-5E7F-490C-96C9-C0B7C561FEAD}resource=/System Reset;0;ReadMethodType=bool;WriteMethodType=bool{1BC86BE3-2C2C-4A49-962D-51A3E01DA175}resource=/crio_9375/DI5;0;ReadMethodType=bool{1FD85ADC-C3E6-42B2-A6FE-B8A6DC30F5B1}"DataType=1000800000000001000A402104426F6F6C00000100000000000000;InitDataHash=;Name=零位改;WriteArb=2"{205B7E53-ADAF-4C8A-B224-A9693BA1DCFF}Actual Number of Elements=8;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F03510002000000020001000200000002FFFFFFFFFFFFFFFE000100020000000200000000000000010000000100000001000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2{21D7A21E-78CA-4433-B698-EBB3264B3125}Actual Number of Elements=6;ReadArbs=2;WriteArbs=2;Implementation=2;DataType=1000800000000001003C005F0311001200000009000000120000000900000000000000000000001200000009000000000003FFFF00000001FFFFFFF8000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2{222085F2-CE88-4EDF-8477-F49C74AA0BCB}NumberOfSyncRegistersForReadInProject=0;resource=/Time Synchronization/Offset from Time Reference Valid;0;ReadMethodType=bool{222980EC-C7D1-4585-8816-816E44A30618}Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2{2290E0EF-0E70-45AE-A41C-B7B034D9547F}resource=/crio_9264/AO9;0;WriteMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_20_5.ctl{255D397B-B005-44F8-872C-7B3B00300A35}NumberOfSyncRegistersForReadInProject=Auto;resource=/cRIO_Trig/cRIO_Trig5;0;ReadMethodType=bool{261B83C0-E214-410C-B5B4-2FCD17884345}resource=/crio_9205/AI9;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl{2684A700-1547-48FE-A4A6-3224AEFFBE8A}resource=/crio_9264/AO12;0;WriteMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_20_5.ctl{2746C53C-7F83-48C5-BFF8-F4EACF435475}resource=/crio_9205/AI1;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl{2772F607-5743-4222-AC52-89F619F90E93}NumberOfSyncRegistersForReadInProject=0;resource=/Time Synchronization/Time Synchronization Fault;0;ReadMethodType=bool{284031ED-9EF6-44A6-A91C-D5561E8D8DA0}resource=/crio_9375/DI9;0;ReadMethodType=bool{29B83A53-7030-47B9-9DB1-27DF6EA29A0C}resource=/crio_9375/DI15;0;ReadMethodType=bool{2A5BA141-9105-4BDB-8EFD-53E77308EFE4}Actual Number of Elements=6;ReadArbs=2;WriteArbs=2;Implementation=2;DataType=100080000000000100094008000355363400010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2{2AF29747-C916-4C32-8F0B-512A3779B3E3}resource=/crio_9375/DO12;0;ReadMethodType=bool;WriteMethodType=bool{2CAE1F04-2B52-418D-840F-1D514000B467}resource=/crio_9205/AI23;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl{2F8222CD-06F4-417C-B92F-B099B2EEDA9C}resource=/crio_9264/AO11;0;WriteMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_20_5.ctl{31FE12BB-7CF9-4D7C-ADE4-AE9ACFA65E82}"DataType=1000800000000001000A402104426F6F6C00000100000000000000;InitDataHash=;Name=升台面;WriteArb=1"{3410F25C-3F99-4121-890B-DE4AAF4AD5DE}"ControlLogic=0;NumberOfElements=131071;Type=2;ReadArbs=Never Arbitrate;ElementsPerRead=1;WriteArbs=Never Arbitrate;ElementsPerWrite=16;Implementation=2;波形数据;DataType=1000800000000001003C005F0351001C0000000A000100010000000AFFFFFFFFFFFFFFFF0000001B000000090000000007FFFFFF00000001FFFFFFEF000000000000000100010000000000000000000000000000;DisableOnOverflowUnderflow=FALSE"{3457EBE2-D6BC-415B-A26F-A1E4239FBD39}resource=/crio_9375/DO15;0;ReadMethodType=bool;WriteMethodType=bool{36107CE1-9FFB-479E-B879-CC7F21D6154C}"DataType=1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000;InitDataHash=;Name=零位改当前时间;WriteArb=2"{3617111B-1228-4910-AE90-90F5C63F11F0}resource=/crio_9264/AO5;0;WriteMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_20_5.ctl{36EC117B-5265-4D68-97BF-30E3A7DD933B}resource=/crio_9375/DI8;0;ReadMethodType=bool{3869AB57-F537-4EDB-96E9-088362E14C6F}"DataType=1000800000000001003C005F03110018000000100000001800000010000000000000000000000018000000100000000000FFFFFF00000001FFFFFFF9000000000000000100010000000000000000000000000000;InitDataHash=;Name=Z向距离;WriteArb=2"{390BCE89-FBA6-419F-8C23-6D96C2BA7860}Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2{391A754D-4E2C-49C8-85E9-32AB3913748E}ResourceName=40 MHz Onboard Clock;TopSignalConnect=Clk40;ClockSignalName=Clk40;MinFreq=40000000.000000;MaxFreq=40000000.000000;VariableFreq=0;NomFreq=40000000.000000;PeakPeriodJitter=250.000000;MinDutyCycle=50.000000;MaxDutyCycle=50.000000;Accuracy=100.000000;RunTime=0;SpreadSpectrum=0;GenericDataHash=D41D8CD98F00B204E9800998ECF8427E;{39F39ECA-EA21-4D1C-BE05-9C9E8105AED3}"DataType=1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000;InitDataHash=;Name=零位改计数间隔;WriteArb=2"{3B503D5B-97F4-480F-978B-BB9FB4D56CEE}resource=/crio_9205/AI20;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl{3D0DFAD3-F91B-4A19-920B-32F0020C272E}resource=/crio_9264/AO0;0;WriteMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_20_5.ctl{4427F534-2373-4C04-BDC1-F221E7D8B2F9}resource=/crio_9264/AO15;0;WriteMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_20_5.ctl{4A382024-325F-45F0-BAF8-974BC9F00124}Actual Number of Elements=8;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0311001A0000000A000000010000000100000000000000000000001A0000000A0000000003FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2{4B874E82-DE9E-47E2-9014-469C3A66EEBB}resource=/crio_9205/AI16;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl{4E3A6D4A-5696-428B-9DE6-21CC8583AE70}Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2{4FA255C8-6627-404E-932D-714D98F49D45}resource=/crio_9205/AI11;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl{50F7D0E3-22D2-4E03-A94C-8F99230DD819}Actual Number of Elements=6;ReadArbs=2;WriteArbs=2;Implementation=2;DataType=1000800000000001000A402104426F6F6C00000100000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2{52127762-5EE2-4FC1-BE71-93F5B96B33D3}resource=/crio_9205/DI0;0;ReadMethodType=bool{528F1209-3DEB-4119-87C0-91833BE436A9}Actual Number of Elements=8;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A000000080001001A00000008FFFFFFFFFE0000000001001A000000080000000001FFFFFF00000001FFFFFFEF000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2{537D628E-0CDA-4549-B962-CE8A3E50D791}[crioConfig.Begin]crio.Calibration=1,crio.Location=Slot 1,crio.Type=NI 9205,cRIOModule.AI0.TerminalMode=0,cRIOModule.AI0.VoltageRange=0,cRIOModule.AI1.TerminalMode=0,cRIOModule.AI1.VoltageRange=0,cRIOModule.AI10.TerminalMode=0,cRIOModule.AI10.VoltageRange=0,cRIOModule.AI11.TerminalMode=0,cRIOModule.AI11.VoltageRange=0,cRIOModule.AI12.TerminalMode=0,cRIOModule.AI12.VoltageRange=0,cRIOModule.AI13.TerminalMode=0,cRIOModule.AI13.VoltageRange=0,cRIOModule.AI14.TerminalMode=0,cRIOModule.AI14.VoltageRange=0,cRIOModule.AI15.TerminalMode=0,cRIOModule.AI15.VoltageRange=0,cRIOModule.AI16.TerminalMode=0,cRIOModule.AI16.VoltageRange=0,cRIOModule.AI17.TerminalMode=0,cRIOModule.AI17.VoltageRange=0,cRIOModule.AI18.TerminalMode=0,cRIOModule.AI18.VoltageRange=0,cRIOModule.AI19.TerminalMode=0,cRIOModule.AI19.VoltageRange=0,cRIOModule.AI2.TerminalMode=0,cRIOModule.AI2.VoltageRange=0,cRIOModule.AI20.TerminalMode=0,cRIOModule.AI20.VoltageRange=0,cRIOModule.AI21.TerminalMode=0,cRIOModule.AI21.VoltageRange=0,cRIOModule.AI22.TerminalMode=0,cRIOModule.AI22.VoltageRange=0,cRIOModule.AI23.TerminalMode=0,cRIOModule.AI23.VoltageRange=0,cRIOModule.AI24.TerminalMode=0,cRIOModule.AI24.VoltageRange=0,cRIOModule.AI25.TerminalMode=0,cRIOModule.AI25.VoltageRange=0,cRIOModule.AI26.TerminalMode=0,cRIOModule.AI26.VoltageRange=0,cRIOModule.AI27.TerminalMode=0,cRIOModule.AI27.VoltageRange=0,cRIOModule.AI28.TerminalMode=0,cRIOModule.AI28.VoltageRange=0,cRIOModule.AI29.TerminalMode=0,cRIOModule.AI29.VoltageRange=0,cRIOModule.AI3.TerminalMode=0,cRIOModule.AI3.VoltageRange=0,cRIOModule.AI30.TerminalMode=0,cRIOModule.AI30.VoltageRange=0,cRIOModule.AI31.TerminalMode=0,cRIOModule.AI31.VoltageRange=0,cRIOModule.AI4.TerminalMode=0,cRIOModule.AI4.VoltageRange=0,cRIOModule.AI5.TerminalMode=0,cRIOModule.AI5.VoltageRange=0,cRIOModule.AI6.TerminalMode=0,cRIOModule.AI6.VoltageRange=0,cRIOModule.AI7.TerminalMode=0,cRIOModule.AI7.VoltageRange=0,cRIOModule.AI8.TerminalMode=0,cRIOModule.AI8.VoltageRange=0,cRIOModule.AI9.TerminalMode=0,cRIOModule.AI9.VoltageRange=0,cRIOModule.EnableCalProperties=false,cRIOModule.EnableDECoM=false,cRIOModule.EnableInputFifo=false,cRIOModule.EnableOutputFifo=false,cRIOModule.MinConvTime=8.000000E+0,cRIOModule.RsiAttributes=[crioConfig.End]{5739D2D4-564D-4E6D-8A7B-2399384B45DC}ArbitrationForOutputData=NeverArbitrate;NumberOfSyncRegistersForOutputData=1;NumberOfSyncRegistersForReadInProject=Auto;resource=/cRIO_Trig/cRIO_Trig3;0;ReadMethodType=bool;WriteMethodType=bool{5854705C-72F1-4022-B3EE-D7A8AF5F764D}resource=/crio_9375/DI3;0;ReadMethodType=bool{59EE8DB2-FEC2-4393-810B-1CA01E4322F6}NumberOfSyncRegistersForReadInProject=0;resource=/USER Push Button;0;ReadMethodType=bool{5A3FED17-639D-4863-B524-A0A7788F0753}resource=/crio_9375/DI11;0;ReadMethodType=bool{5FD2D554-8D26-4712-9F2A-7170D49EB1BB}resource=/crio_9264/AO6;0;WriteMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_20_5.ctl{60620B05-12A4-43D2-80A7-2A217FAD572F}resource=/crio_9205/AI10;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl{62980234-D868-4CE0-9E35-4CE35A486389}resource=/crio_9375/DO6;0;ReadMethodType=bool;WriteMethodType=bool{62D817C7-A167-474F-BCA8-824EA248A30B}resource=/crio_9205/AI21;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl{6568F6DE-5608-413D-ABE1-0C4D7912E3A4}resource=/crio_9205/AI12;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl{657072B4-20D7-4B08-A1F1-12FF5B4E4D48}resource=/crio_9375/DO7;0;ReadMethodType=bool;WriteMethodType=bool{65FC7E86-2227-4DDB-8239-FCDCDF451CE1}resource=/crio_9375/DO1;0;ReadMethodType=bool;WriteMethodType=bool{6629FB36-711F-4102-A602-431FE92872DC}"DataType=1000800000000001003C005F0351001A000000080001001A00000008FFFFFFFFFE0000000001001A000000080000000001FFFFFF00000001FFFFFFEF000000000000000100010000000000000000000000000000;InitDataHash=;Name=DOF_Gain;WriteArb=1"{698C557E-9A4B-44C5-B58E-2917134A63E2}resource=/crio_9205/AI31;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl{69CA9E36-CC84-4152-9892-B3AB4F83D38C}resource=/crio_9375/DI14;0;ReadMethodType=bool{6A9107C0-57D9-4B8F-8F42-2225D71D0241}"ControlLogic=0;NumberOfElements=32773;Type=1;ReadArbs=Arbitrate if Multiple Requestors Only;ElementsPerRead=1;WriteArbs=Arbitrate if Multiple Requestors Only;ElementsPerWrite=1;Implementation=2;自定义波;DataType=1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;DisableOnOverflowUnderflow=FALSE"{6AACC68A-4689-4396-900C-E415C5B8C306}"DataType=1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000;InitDataHash=;Name=零位改当前时间;WriteArb=2"{6B809E6A-482F-4DA9-9A03-C2E5EF80A7D1}resource=/crio_9205/AI8;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl{6FA28F41-7D53-4E40-A916-F87FD6C8691F}"DataType=1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000;InitDataHash=;Name=零位改计数间隔;WriteArb=2"{70151A50-8673-4BEF-AA0D-179CA37152FB}resource=/crio_9375/DO3;0;ReadMethodType=bool;WriteMethodType=bool{704CE97B-B697-45C6-A529-3E8E508D9240}"DataType=1000800000000001003C005F03110018000000100000001800000010000000000000000000000018000000100000000000FFFFFF00000001FFFFFFF9000000000000000100010000000000000000000000000000;InitDataHash=;Name=X边长;WriteArb=2"{719B009C-0952-4C3B-B98E-441D3A0D3D90}"DataType=1000800000000001000940070003553332000100000000000000000000;InitDataHash=;Name=零位改最大计数;WriteArb=2"{74C4102A-3B22-4E94-921D-C320FEEE889E}Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2{77D64A1B-1C26-4379-A085-83538B448606}"DataType=1000800000000001003C005F0311001000000000000000010000000100000000000000000000001000000000000000000000FFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;Name=采样间隔;WriteArb=2"{7AE82845-5169-414D-BE08-396AC9693728}Actual Number of Elements=4;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A000000080001000100000008FFFFFFFFFFFFFFFF00000019000000070000000001FFFFFF00000001FFFFFFEF000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2{7B04381E-F348-479A-8FF2-323E59DEED7B}"DataType=1000800000000001000A402104426F6F6C00000100000000000000;InitDataHash=;Name=升台面完成;WriteArb=1"{7B0AB59C-3CA0-438E-A251-0B4A874E5683}Actual Number of Elements=6;ReadArbs=2;WriteArbs=2;Implementation=2;DataType=100080000000000100354015000506D5FDCFD2B2A806C8FDBDC7B2A804B7BDB2A808D5FDCFD2C5C4B2A806D7D4B6A8D2E5000008D0C5BAC5C0E0D0CD00000100000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2{7B64D1C8-5C3F-4FB6-AB2D-3D0F8508E523}resource=/crio_9205/AI2;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl{7BB41FEC-D60B-46E3-B1EF-7ACDFABF1485}resource=/Sleep;0;ReadMethodType=bool;WriteMethodType=bool{7CE662D4-7665-4227-B58F-ECCD21022B1B}resource=/crio_9375/DI6;0;ReadMethodType=bool{7F0FCC69-4979-461D-91D8-F2E1058FA298}"DataType=1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000;InitDataHash=;Name=X向比值;WriteArb=2"{82BBE050-9EC7-4637-A499-B665CE6CACB1}resource=/crio_9375/DO7:0;0;ReadMethodType=u8;WriteMethodType=u8{8315251A-6CA0-45CE-9D46-FB4208C86EE2}resource=/crio_9375/DI7:0;0;ReadMethodType=u8{83B32F50-BC4B-47E8-B927-798F3B285D54}resource=/crio_9205/AI6;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl{84EFEE8A-C048-4F98-B284-299C0C19C0D7}Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001000A402104426F6F6C00000100000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2{84FE0652-7ACA-4EEC-9463-553B46A5ED8A}Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A000100010000000AFFFFFFFFFFFFFFFF00000019000000090000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2{87BF93E6-4A24-4AA4-9BD4-87FD6691200B}Actual Number of Elements=8;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2{886AFD33-17F1-4EEF-8A6C-A38CB0937BF8}"DataType=1000800000000001000A402104426F6F6C00000100000000000000;InitDataHash=;Name=降台面;WriteArb=1"{88FAB56B-8096-4096-944E-4E75D9665A7B}"DataType=1000800000000001003C005F03110018000000020000001800000002000000000000000000000018000000020000000000FFFFFF00000001FFFFFFEB000000000000000100010000000000000000000000000000;InitDataHash=;Name=颤振信号相位;WriteArb=2"{895E118D-F235-49CB-9262-D3409F13DDCE}Actual Number of Elements=6;ReadArbs=2;WriteArbs=2;Implementation=2;DataType=100080000000000100094008000355363400010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2{8ACBA7A2-1C73-4481-9813-DCA19E0E61BC}Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2{8D0D255A-6090-418C-A984-68FE017E582B}"DataType=1000800000000001003C005F03110018000000100000001800000010000000000000000000000018000000100000000000FFFFFF00000001FFFFFFF9000000000000000100010000000000000000000000000000;InitDataHash=;Name=X向距离;WriteArb=2"{8E384769-BE13-4452-AAB1-6FD039522B53}"DataType=1000800000000001007F4015000804496E69741057616974696E67526973655461626C6509526973655461626C651757616974696E675369676E616C47656E65726174696F6E105369676E616C47656E65726174696F6E0F576176655265706C69636174696F6E0944726F705461626C650A5A65726F4368616E67650008525453746174757300000100000000000000;InitDataHash=;Name=RTStatus;WriteArb=1"{9204CCEB-EDFE-4828-9B6B-82747309C44F}resource=/crio_9205/AI22;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl{961110D2-3126-4C6B-BF67-6471C282C074}"DataType=1000800000000001000A402104426F6F6C00000100000000000000;InitDataHash=;Name=信号发生中;WriteArb=1"{96AEF78E-CC94-4B84-99E2-8486D67E6B24}NumberOfSyncRegistersForReadInProject=Auto;resource=/System Watchdog Expired;0;ReadMethodType=bool{98E7B825-6AC6-4525-8B37-0CA5C8743E26}Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0311000C000000000000000C0000000000000000000000000000000C000000000000000000000FFF00000001FFFFFFF5000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2{A0E986E1-153A-44CD-8B65-A5B1EB6FF45A}"DataType=1000800000000001000A402104426F6F6C00000100000000000000;InitDataHash=;Name=降台面完成;WriteArb=1"{A19AF1FE-DF7C-401A-BA7D-052E27699B72}resource=/crio_9205/AI27;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl{A1FBD906-E15E-4973-BF83-3FD1B097A43B}resource=/crio_9375/DI12;0;ReadMethodType=bool{A322AA16-26B8-4945-AADB-94823A22F280}Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001000940070003553332000100000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2{A50B7956-938A-447C-B4B3-11BD34FE711A}Actual Number of Elements=4;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F03510014000000050001000100000005FFFFFFFFFFFFFFFF0000001300000004000000000007FFFF00000001FFFFFFF2000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2{A576ED01-9DA5-4BEF-9E77-BC719DFE74B5}Actual Number of Elements=8;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A000000080001001A00000008FFFFFFFFFE0000000001001A000000080000000001FFFFFF00000001FFFFFFEF000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2{A616FE95-2543-4CEA-AE16-E7A0665E7B84}resource=/crio_9264/AO7;0;WriteMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_20_5.ctl{A65858E3-FB05-4F5E-B096-870B17546F8D}Actual Number of Elements=4;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F03510014000000050001001400000005FFFFFFFFFFF800000001001400000005000000000007FFFF00000001FFFFFFF2000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2{A6E933C3-0BB9-4B5A-90CB-38C88561E14F}resource=/crio_9205/AI17;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl{AAE8E01B-54C7-4983-8031-084B4090875C}resource=/crio_9375/DO13;0;ReadMethodType=bool;WriteMethodType=bool{ABB8DB4C-0E33-4720-9CDC-AC556C8BBD15}resource=/crio_9205/AI0;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl{AC022F4C-54A6-4522-AB74-5C5837BC54A6}resource=/crio_9205/AI15;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl{AC83C225-7B8F-4383-A8AE-DAD89AC1B048}NumberOfSyncRegistersForReadInProject=0;resource=/Time Synchronization/Offset from Time Reference;0;ReadMethodType=i32{AD1CB858-C60C-4314-B06A-2057C618659A}"DataType=1000800000000001003C005F03110018000000100000001800000010000000000000000000000018000000100000000000FFFFFF00000001FFFFFFF9000000000000000100010000000000000000000000000000;InitDataHash=;Name=X向距离;WriteArb=2"{AD1EC923-ACA7-4885-B514-43A653FD658D}NumberOfSyncRegistersForReadInProject=Auto;resource=/cRIO_Trig/cRIO_Trig4;0;ReadMethodType=bool{AD9F9C55-353E-4B45-A841-26D39C7226FB}NumberOfSyncRegistersForReadInProject=Auto;resource=/13.1072 MHz Timebase;0;ReadMethodType=bool{AFD2F86B-4622-4970-9E8C-D31C730CDAD0}Actual Number of Elements=8;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A000000080001001A00000008FFFFFFFFFE0000000001001A000000080000000001FFFFFF00000001FFFFFFEF000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2{B07B9008-57C4-4D60-BE6A-3032350F06A1}resource=/crio_9375/DI7;0;ReadMethodType=bool{B1084763-13D9-4398-89C8-62FADD69BB82}NumberOfSyncRegistersForReadInProject=0;resource=/Time Synchronization/Time;0;ReadMethodType=u64{B10F3FDA-9E81-4A33-A371-4C13482D5CB7}resource=/crio_9205/AI28;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl{B1E33784-2464-4FB7-A2AE-69C7033AC2E1}resource=/Reset RT App;0;WriteMethodType=bool{B33306AD-E5F7-4DB1-B29C-5255A5BBC58D}"DataType=1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000;InitDataHash=;Name=零位改计数间隔;WriteArb=2"{B51FBB35-28B7-4A50-8B62-A23A9B6626D1}ArbitrationForOutputData=NeverArbitrate;NumberOfSyncRegistersForOutputData=1;NumberOfSyncRegistersForReadInProject=Auto;resource=/cRIO_Trig/cRIO_Trig1;0;ReadMethodType=bool;WriteMethodType=bool{B642FEE0-B4D7-4B87-8473-64289E1AD2EE}"DataType=1000800000000001000940070003553332000100000000000000000000;InitDataHash=;Name=零位改最大计数;WriteArb=2"{B83ED54F-0F42-4B9A-AAE5-E73C503B0594}resource=/crio_9205/DO0;0;WriteMethodType=bool{B9275241-0FB6-4916-942B-55AEEBD008C2}resource=/crio_9375/DO10;0;ReadMethodType=bool;WriteMethodType=bool{BA38EA78-2917-4104-8844-BBC47267C721}Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2{BCC7B7B8-87B2-42CD-A9E8-140BBA6C120E}resource=/crio_9264/AO8;0;WriteMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_20_5.ctl{BD2D83A8-247F-4A5D-B291-6D1F4069BB68}"DataType=1000800000000001000A402104426F6F6C00000100000000000000;InitDataHash=;Name=零位改已完成;WriteArb=2"{BD6E6C17-2F66-497C-B01E-E88977CE2A05}resource=/crio_9375/DO15:0;0;ReadMethodType=u16;WriteMethodType=u16{BE3650EC-53BB-4F1E-BD1C-C12D60006FD2}Actual Number of Elements=4;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F03510014000000050001000100000005FFFFFFFFFFFFFFFF0000001300000004000000000007FFFF00000001FFFFFFF2000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2{BF009984-07A3-4BDD-B5E9-4EE7C08C4C33}"DataType=1000800000000001000A402104426F6F6C00000100000000000000;InitDataHash=;Name=信号发生;WriteArb=1"{BF01CE4D-F592-4B3E-B0B1-1C17308BA6FC}resource=/crio_9205/AI13;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl{BFB5D6FF-456C-48D9-B8FA-0AA0D9A45214}resource=/Chassis Temperature;0;ReadMethodType=i16{BFCD6BF6-3D57-4CF1-B765-99CA38DFB50D}resource=/Scan Clock;0;ReadMethodType=bool{C1CCFDBB-C1EE-416B-8C1B-FB39301B628C}"DataType=1000800000000001000A402104426F6F6C00000100000000000000;InitDataHash=;Name=急停;WriteArb=1"{C58978FE-83FA-417B-A457-29C0B2EDA4DC}resource=/crio_9375/DO4;0;ReadMethodType=bool;WriteMethodType=bool{C78FCCCE-10CD-46F9-B260-7A8E97C58758}resource=/crio_9205/AI5;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl{C9C39633-55E3-4E27-9D3F-F6CECB3DAFE1}resource=/crio_9375/DO11;0;ReadMethodType=bool;WriteMethodType=bool{C9CE4DE5-3405-45FE-966A-E34861F33C16}resource=/crio_9205/AI25;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl{CA601863-5D20-43CA-AD52-5042ED06994A}"DataType=1000800000000001000940070003553332000100000000000000000000;InitDataHash=;Name=零位改计数;WriteArb=1"{CBA79F5B-37C2-41C3-958E-3058592DFD42}resource=/crio_9375/DI10;0;ReadMethodType=bool{CD86CA13-96F4-4407-B66C-7B139FC4618F}resource=/crio_9264/AO1;0;WriteMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_20_5.ctl{D0239C0E-1807-4376-87B9-6C1215FFA639}resource=/crio_9375/DI2;0;ReadMethodType=bool{D02FDE63-58D4-49CA-AAA8-34F7085A1E74}resource=/crio_9375/DI0;0;ReadMethodType=bool{D394E68D-0F36-4400-9217-BBD84356E958}ArbitrationForOutputData=NeverArbitrate;NumberOfSyncRegistersForOutputData=1;NumberOfSyncRegistersForReadInProject=Auto;resource=/cRIO_Trig/cRIO_Trig2;0;ReadMethodType=bool;WriteMethodType=bool{D4C5CDF4-CCFE-416E-A1CB-3398B566F104}resource=/crio_9264/AO10;0;WriteMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_20_5.ctl{D728731D-1368-4397-8BD7-63EAF6D27311}resource=/crio_9205/AI24;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl{D7BA12BE-2C01-42F4-BF84-1B9BA36CD6DC}resource=/crio_9205/AI26;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl{D817812D-E2FD-43A3-B89F-950370F5E1D5}resource=/crio_9375/DI1;0;ReadMethodType=bool{E0547409-73D8-4E09-81E2-1655E94479E6}"DataType=1000800000000001003C005F03110018000000100000001800000010000000000000000000000018000000100000000000FFFFFF00000001FFFFFFF9000000000000000100010000000000000000000000000000;InitDataHash=;Name=LX0;WriteArb=2"{E1BB5DDB-6CA4-4001-846C-CE9728F30CE7}resource=/crio_9205/AI30;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl{E1E55A56-1ED9-4779-913A-463F8AE73BE5}NumberOfSyncRegistersForReadInProject=0;resource=/Time Synchronization/Time Source;0;ReadMethodType=Targets\NI\FPGA\RIO\CompactRIO\Sync\SyncSource.ctl{E3B1A9BE-B3E1-4AC1-B3FB-CB456208AD1E}Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F03510010000000060001001000000006FFFFFFFFFFFF800000010010000000060000000000007FFF00000001FFFFFFF7000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2{E3EACA00-5362-4FFE-911A-98B2EE562045}ArbitrationForOutputData=NeverArbitrate;NumberOfSyncRegistersForOutputData=1;NumberOfSyncRegistersForReadInProject=Auto;resource=/cRIO_Trig/cRIO_Trig0;0;ReadMethodType=bool;WriteMethodType=bool{E648E6AB-D66E-43AE-9154-BF037A0DCB79}resource=/crio_9205/AI3;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl{E666497B-DC55-498A-B9B8-96991B502432}resource=/crio_9375/DO15:8;0;ReadMethodType=u8;WriteMethodType=u8{E76E51F5-0A12-4078-9F03-C925E41F1154}resource=/crio_9205/AI18;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl{E7C7B68B-464F-425E-836A-3A567283EFBB}resource=/crio_9264/AO14;0;WriteMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_20_5.ctl{EB9FDF15-33D1-4E72-894F-2A508028F111}"DataType=1000800000000001003C005F03110018000000100000001800000010000000000000000000000018000000100000000000FFFFFF00000001FFFFFFF9000000000000000100010000000000000000000000000000;InitDataHash=;Name=LX0;WriteArb=2"{EBE989F7-5D10-4A55-8B20-503E0AEA0C41}Actual Number of Elements=4;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F03510014000000050001000100000005FFFFFFFFFFFFFFFF0000001300000004000000000007FFFF00000001FFFFFFF2000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2{ECCE95C8-EE77-4C51-8C44-6A61E06F9AE6}resource=/crio_9205/AI7;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl{EE85E93B-D59D-4476-AFDF-9C308780FDB1}resource=/crio_9375/DO14;0;ReadMethodType=bool;WriteMethodType=bool{EFAE2229-89A1-4DAA-9132-67F349E3EC7C}"DataType=1000800000000001000940070003553332000100000000000000000000;InitDataHash=;Name=零位改计数;WriteArb=1"{F14C3F15-3794-4437-B070-4FB693499E85}"DataType=1000800000000001003C005F0311001000000010000000100000001000000000000000000000001000000010000000000000FFFF0000000100000001000000000000000100010000000000000000000000000000;InitDataHash=;Name=采样率;WriteArb=2"{F1C9E4C6-951A-410B-BE67-98A024EEEF86}resource=/crio_9375/DI15:0;0;ReadMethodType=u16{F24D99A9-5B77-486A-9D58-F89F686ED848}Actual Number of Elements=3;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A000100010000000AFFFFFFFFFFFFFFFF00000019000000090000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2{F3179F8C-1426-4C19-8BBB-9052660F20F4}resource=/crio_9375/DO2;0;ReadMethodType=bool;WriteMethodType=bool{F378AF15-5F91-4900-ADB5-82924469413F}resource=/crio_9264/AO3;0;WriteMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_20_5.ctl{F3BBD079-A8FD-4088-A394-70FC77986DE6}resource=/crio_9375/DO8;0;ReadMethodType=bool;WriteMethodType=bool{F499AA52-398A-4FE3-BEF5-8DC9FF8032ED}resource=/crio_9205/AI29;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl{F5AA5548-890D-48AD-A1DD-8B2C29E09FD7}resource=/crio_9205/AI14;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl{F6E6E451-00A2-4E4E-B085-2006ACBAFFD4}resource=/crio_9264/AO2;0;WriteMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_20_5.ctl{F875597B-30CB-4677-B12D-9CE75653AF8A}resource=/crio_9375/DO9;0;ReadMethodType=bool;WriteMethodType=bool{F97976E9-510C-4C7D-84C0-29A175CD6F16}resource=/crio_9205/AI4;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl{FA57583E-2455-4437-9452-8D29BC902D7E}resource=/crio_9205/Trig;0;ReadMethodType=bool{FB2BDDE1-C84E-413C-BBD8-7E10C85D7A37}resource=/crio_9375/DO5;0;ReadMethodType=bool;WriteMethodType=bool{FD1CC428-FA01-4DC7-A2C8-DB7BB3AB0FB7}NumberOfSyncRegistersForReadInProject=Auto;resource=/12.8 MHz Timebase;0;ReadMethodType=bool{FD930866-8896-46EE-BA8B-9F48EEC2E599}NumberOfSyncRegistersForReadInProject=Auto;resource=/10 MHz Timebase;0;ReadMethodType=bool{FE94E425-9A22-4CB3-92AD-E2DE7589BB98}resource=/crio_9375/DO0;0;ReadMethodType=bool;WriteMethodType=boolcRIO-9049/Clk40/falsefalseFPGA_EXECUTION_MODEFPGA_TARGETFPGA_TARGET_CLASSCRIO_9049FPGA_TARGET_FAMILYKINTEX7TARGET_TYPEFPGA/[rSeriesConfig.Begin][rSeriesConfig.End]</Property>
  82. <Property Name="configString.name" Type="Str">10 MHz TimebaseNumberOfSyncRegistersForReadInProject=Auto;resource=/10 MHz Timebase;0;ReadMethodType=bool12.8 MHz TimebaseNumberOfSyncRegistersForReadInProject=Auto;resource=/12.8 MHz Timebase;0;ReadMethodType=bool13.1072 MHz TimebaseNumberOfSyncRegistersForReadInProject=Auto;resource=/13.1072 MHz Timebase;0;ReadMethodType=bool40 MHz Onboard ClockResourceName=40 MHz Onboard Clock;TopSignalConnect=Clk40;ClockSignalName=Clk40;MinFreq=40000000.000000;MaxFreq=40000000.000000;VariableFreq=0;NomFreq=40000000.000000;PeakPeriodJitter=250.000000;MinDutyCycle=50.000000;MaxDutyCycle=50.000000;Accuracy=100.000000;RunTime=0;SpreadSpectrum=0;GenericDataHash=D41D8CD98F00B204E9800998ECF8427E;9205[crioConfig.Begin]crio.Calibration=1,crio.Location=Slot 1,crio.Type=NI 9205,cRIOModule.AI0.TerminalMode=0,cRIOModule.AI0.VoltageRange=0,cRIOModule.AI1.TerminalMode=0,cRIOModule.AI1.VoltageRange=0,cRIOModule.AI10.TerminalMode=0,cRIOModule.AI10.VoltageRange=0,cRIOModule.AI11.TerminalMode=0,cRIOModule.AI11.VoltageRange=0,cRIOModule.AI12.TerminalMode=0,cRIOModule.AI12.VoltageRange=0,cRIOModule.AI13.TerminalMode=0,cRIOModule.AI13.VoltageRange=0,cRIOModule.AI14.TerminalMode=0,cRIOModule.AI14.VoltageRange=0,cRIOModule.AI15.TerminalMode=0,cRIOModule.AI15.VoltageRange=0,cRIOModule.AI16.TerminalMode=0,cRIOModule.AI16.VoltageRange=0,cRIOModule.AI17.TerminalMode=0,cRIOModule.AI17.VoltageRange=0,cRIOModule.AI18.TerminalMode=0,cRIOModule.AI18.VoltageRange=0,cRIOModule.AI19.TerminalMode=0,cRIOModule.AI19.VoltageRange=0,cRIOModule.AI2.TerminalMode=0,cRIOModule.AI2.VoltageRange=0,cRIOModule.AI20.TerminalMode=0,cRIOModule.AI20.VoltageRange=0,cRIOModule.AI21.TerminalMode=0,cRIOModule.AI21.VoltageRange=0,cRIOModule.AI22.TerminalMode=0,cRIOModule.AI22.VoltageRange=0,cRIOModule.AI23.TerminalMode=0,cRIOModule.AI23.VoltageRange=0,cRIOModule.AI24.TerminalMode=0,cRIOModule.AI24.VoltageRange=0,cRIOModule.AI25.TerminalMode=0,cRIOModule.AI25.VoltageRange=0,cRIOModule.AI26.TerminalMode=0,cRIOModule.AI26.VoltageRange=0,cRIOModule.AI27.TerminalMode=0,cRIOModule.AI27.VoltageRange=0,cRIOModule.AI28.TerminalMode=0,cRIOModule.AI28.VoltageRange=0,cRIOModule.AI29.TerminalMode=0,cRIOModule.AI29.VoltageRange=0,cRIOModule.AI3.TerminalMode=0,cRIOModule.AI3.VoltageRange=0,cRIOModule.AI30.TerminalMode=0,cRIOModule.AI30.VoltageRange=0,cRIOModule.AI31.TerminalMode=0,cRIOModule.AI31.VoltageRange=0,cRIOModule.AI4.TerminalMode=0,cRIOModule.AI4.VoltageRange=0,cRIOModule.AI5.TerminalMode=0,cRIOModule.AI5.VoltageRange=0,cRIOModule.AI6.TerminalMode=0,cRIOModule.AI6.VoltageRange=0,cRIOModule.AI7.TerminalMode=0,cRIOModule.AI7.VoltageRange=0,cRIOModule.AI8.TerminalMode=0,cRIOModule.AI8.VoltageRange=0,cRIOModule.AI9.TerminalMode=0,cRIOModule.AI9.VoltageRange=0,cRIOModule.EnableCalProperties=false,cRIOModule.EnableDECoM=false,cRIOModule.EnableInputFifo=false,cRIOModule.EnableOutputFifo=false,cRIOModule.MinConvTime=8.000000E+0,cRIOModule.RsiAttributes=[crioConfig.End]9264/AO0resource=/crio_9264/AO0;0;WriteMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_20_5.ctl9264/AO10resource=/crio_9264/AO10;0;WriteMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_20_5.ctl9264/AO11resource=/crio_9264/AO11;0;WriteMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_20_5.ctl9264/AO12resource=/crio_9264/AO12;0;WriteMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_20_5.ctl9264/AO13resource=/crio_9264/AO13;0;WriteMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_20_5.ctl9264/AO14resource=/crio_9264/AO14;0;WriteMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_20_5.ctl9264/AO15resource=/crio_9264/AO15;0;WriteMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_20_5.ctl9264/AO1resource=/crio_9264/AO1;0;WriteMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_20_5.ctl9264/AO2resource=/crio_9264/AO2;0;WriteMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_20_5.ctl9264/AO3resource=/crio_9264/AO3;0;WriteMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_20_5.ctl9264/AO4resource=/crio_9264/AO4;0;WriteMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_20_5.ctl9264/AO5resource=/crio_9264/AO5;0;WriteMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_20_5.ctl9264/AO6resource=/crio_9264/AO6;0;WriteMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_20_5.ctl9264/AO7resource=/crio_9264/AO7;0;WriteMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_20_5.ctl9264/AO8resource=/crio_9264/AO8;0;WriteMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_20_5.ctl9264/AO9resource=/crio_9264/AO9;0;WriteMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_20_5.ctl9264[crioConfig.Begin]crio.Calibration=1,crio.Location=Slot 2,crio.Type=NI 9264,cRIOModule.EnableDECoM=false,cRIOModule.EnableInputFifo=false,cRIOModule.EnableOutputFifo=false,cRIOModule.HotSwapMode=0,cRIOModule.RsiAttributes=[crioConfig.End]9375/DI0resource=/crio_9375/DI0;0;ReadMethodType=bool9375/DI10resource=/crio_9375/DI10;0;ReadMethodType=bool9375/DI11resource=/crio_9375/DI11;0;ReadMethodType=bool9375/DI12resource=/crio_9375/DI12;0;ReadMethodType=bool9375/DI13resource=/crio_9375/DI13;0;ReadMethodType=bool9375/DI14resource=/crio_9375/DI14;0;ReadMethodType=bool9375/DI15:0resource=/crio_9375/DI15:0;0;ReadMethodType=u169375/DI15:8resource=/crio_9375/DI15:8;0;ReadMethodType=u89375/DI15resource=/crio_9375/DI15;0;ReadMethodType=bool9375/DI1resource=/crio_9375/DI1;0;ReadMethodType=bool9375/DI2resource=/crio_9375/DI2;0;ReadMethodType=bool9375/DI3resource=/crio_9375/DI3;0;ReadMethodType=bool9375/DI4resource=/crio_9375/DI4;0;ReadMethodType=bool9375/DI5resource=/crio_9375/DI5;0;ReadMethodType=bool9375/DI6resource=/crio_9375/DI6;0;ReadMethodType=bool9375/DI7:0resource=/crio_9375/DI7:0;0;ReadMethodType=u89375/DI7resource=/crio_9375/DI7;0;ReadMethodType=bool9375/DI8resource=/crio_9375/DI8;0;ReadMethodType=bool9375/DI9resource=/crio_9375/DI9;0;ReadMethodType=bool9375/DO0resource=/crio_9375/DO0;0;ReadMethodType=bool;WriteMethodType=bool9375/DO10resource=/crio_9375/DO10;0;ReadMethodType=bool;WriteMethodType=bool9375/DO11resource=/crio_9375/DO11;0;ReadMethodType=bool;WriteMethodType=bool9375/DO12resource=/crio_9375/DO12;0;ReadMethodType=bool;WriteMethodType=bool9375/DO13resource=/crio_9375/DO13;0;ReadMethodType=bool;WriteMethodType=bool9375/DO14resource=/crio_9375/DO14;0;ReadMethodType=bool;WriteMethodType=bool9375/DO15:0resource=/crio_9375/DO15:0;0;ReadMethodType=u16;WriteMethodType=u169375/DO15:8resource=/crio_9375/DO15:8;0;ReadMethodType=u8;WriteMethodType=u89375/DO15resource=/crio_9375/DO15;0;ReadMethodType=bool;WriteMethodType=bool9375/DO1resource=/crio_9375/DO1;0;ReadMethodType=bool;WriteMethodType=bool9375/DO2resource=/crio_9375/DO2;0;ReadMethodType=bool;WriteMethodType=bool9375/DO3resource=/crio_9375/DO3;0;ReadMethodType=bool;WriteMethodType=bool9375/DO4resource=/crio_9375/DO4;0;ReadMethodType=bool;WriteMethodType=bool9375/DO5resource=/crio_9375/DO5;0;ReadMethodType=bool;WriteMethodType=bool9375/DO6resource=/crio_9375/DO6;0;ReadMethodType=bool;WriteMethodType=bool9375/DO7:0resource=/crio_9375/DO7:0;0;ReadMethodType=u8;WriteMethodType=u89375/DO7resource=/crio_9375/DO7;0;ReadMethodType=bool;WriteMethodType=bool9375/DO8resource=/crio_9375/DO8;0;ReadMethodType=bool;WriteMethodType=bool9375/DO9resource=/crio_9375/DO9;0;ReadMethodType=bool;WriteMethodType=bool9375[crioConfig.Begin]crio.Calibration=1,crio.Location=Slot 3,crio.Type=NI 9375,cRIOModule.EnableDECoM=false,cRIOModule.EnableInputFifo=false,cRIOModule.EnableOutputFifo=false,cRIOModule.RsiAttributes=[crioConfig.End]Chassis Temperatureresource=/Chassis Temperature;0;ReadMethodType=i16cRIO_Trig0ArbitrationForOutputData=NeverArbitrate;NumberOfSyncRegistersForOutputData=1;NumberOfSyncRegistersForReadInProject=Auto;resource=/cRIO_Trig/cRIO_Trig0;0;ReadMethodType=bool;WriteMethodType=boolcRIO_Trig1ArbitrationForOutputData=NeverArbitrate;NumberOfSyncRegistersForOutputData=1;NumberOfSyncRegistersForReadInProject=Auto;resource=/cRIO_Trig/cRIO_Trig1;0;ReadMethodType=bool;WriteMethodType=boolcRIO_Trig2ArbitrationForOutputData=NeverArbitrate;NumberOfSyncRegistersForOutputData=1;NumberOfSyncRegistersForReadInProject=Auto;resource=/cRIO_Trig/cRIO_Trig2;0;ReadMethodType=bool;WriteMethodType=boolcRIO_Trig3ArbitrationForOutputData=NeverArbitrate;NumberOfSyncRegistersForOutputData=1;NumberOfSyncRegistersForReadInProject=Auto;resource=/cRIO_Trig/cRIO_Trig3;0;ReadMethodType=bool;WriteMethodType=boolcRIO_Trig4NumberOfSyncRegistersForReadInProject=Auto;resource=/cRIO_Trig/cRIO_Trig4;0;ReadMethodType=boolcRIO_Trig5NumberOfSyncRegistersForReadInProject=Auto;resource=/cRIO_Trig/cRIO_Trig5;0;ReadMethodType=boolcRIO_Trig6NumberOfSyncRegistersForReadInProject=Auto;resource=/cRIO_Trig/cRIO_Trig6;0;ReadMethodType=boolcRIO_Trig7NumberOfSyncRegistersForReadInProject=Auto;resource=/cRIO_Trig/cRIO_Trig7;0;ReadMethodType=boolcRIO-9049/Clk40/falsefalseFPGA_EXECUTION_MODEFPGA_TARGETFPGA_TARGET_CLASSCRIO_9049FPGA_TARGET_FAMILYKINTEX7TARGET_TYPEFPGA/[rSeriesConfig.Begin][rSeriesConfig.End]DOF_Gain"DataType=1000800000000001003C005F0351001A000000080001001A00000008FFFFFFFFFE0000000001001A000000080000000001FFFFFF00000001FFFFFFEF000000000000000100010000000000000000000000000000;InitDataHash=;Name=DOF_Gain;WriteArb=1"I参数Actual Number of Elements=8;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A000000080001001A00000008FFFFFFFFFE0000000001001A000000080000000001FFFFFF00000001FFFFFFEF000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2LX0"DataType=1000800000000001003C005F03110018000000100000001800000010000000000000000000000018000000100000000000FFFFFF00000001FFFFFFF9000000000000000100010000000000000000000000000000;InitDataHash=;Name=LX0;WriteArb=2"LY0"DataType=1000800000000001003C005F03110018000000100000001800000010000000000000000000000018000000100000000000FFFFFF00000001FFFFFFF9000000000000000100010000000000000000000000000000;InitDataHash=;Name=LX0;WriteArb=2"LZ0"DataType=1000800000000001003C005F03110018000000100000001800000010000000000000000000000018000000100000000000FFFFFF00000001FFFFFFF9000000000000000100010000000000000000000000000000;InitDataHash=;Name=LX0;WriteArb=2"Offset from Time Reference ValidNumberOfSyncRegistersForReadInProject=0;resource=/Time Synchronization/Offset from Time Reference Valid;0;ReadMethodType=boolOffset from Time ReferenceNumberOfSyncRegistersForReadInProject=0;resource=/Time Synchronization/Offset from Time Reference;0;ReadMethodType=i32P参数Actual Number of Elements=8;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A000000080001001A00000008FFFFFFFFFE0000000001001A000000080000000001FFFFFF00000001FFFFFFEF000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2Reset RT Appresource=/Reset RT App;0;WriteMethodType=boolRTStatus"DataType=1000800000000001007F4015000804496E69741057616974696E67526973655461626C6509526973655461626C651757616974696E675369676E616C47656E65726174696F6E105369676E616C47656E65726174696F6E0F576176655265706C69636174696F6E0944726F705461626C650A5A65726F4368616E67650008525453746174757300000100000000000000;InitDataHash=;Name=RTStatus;WriteArb=1"Scan Clockresource=/Scan Clock;0;ReadMethodType=boolSleepresource=/Sleep;0;ReadMethodType=bool;WriteMethodType=boolSystem Resetresource=/System Reset;0;ReadMethodType=bool;WriteMethodType=boolSystem Watchdog ExpiredNumberOfSyncRegistersForReadInProject=Auto;resource=/System Watchdog Expired;0;ReadMethodType=boolTime SourceNumberOfSyncRegistersForReadInProject=0;resource=/Time Synchronization/Time Source;0;ReadMethodType=Targets\NI\FPGA\RIO\CompactRIO\Sync\SyncSource.ctlTime Synchronization FaultNumberOfSyncRegistersForReadInProject=0;resource=/Time Synchronization/Time Synchronization Fault;0;ReadMethodType=boolTimeNumberOfSyncRegistersForReadInProject=0;resource=/Time Synchronization/Time;0;ReadMethodType=u64USER FPGA LEDresource=/USER FPGA LED;0;ReadMethodType=u8;WriteMethodType=u8USER Push ButtonNumberOfSyncRegistersForReadInProject=0;resource=/USER Push Button;0;ReadMethodType=boolX边长"DataType=1000800000000001003C005F03110018000000100000001800000010000000000000000000000018000000100000000000FFFFFF00000001FFFFFFF9000000000000000100010000000000000000000000000000;InitDataHash=;Name=X边长;WriteArb=2"X向比值"DataType=1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000;InitDataHash=;Name=X向比值;WriteArb=2"X向距离"DataType=1000800000000001003C005F03110018000000100000001800000010000000000000000000000018000000100000000000FFFFFF00000001FFFFFFF9000000000000000100010000000000000000000000000000;InitDataHash=;Name=X向距离;WriteArb=2"Y边长"DataType=1000800000000001003C005F03110018000000100000000100000001000000000000000000000018000000100000000000FFFFFF00000001FFFFFFF9000000000000000100010000000000000000000000000000;InitDataHash=;Name=Y边长;WriteArb=2"Y向比值"DataType=1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000;InitDataHash=;Name=X向比值;WriteArb=2"Y向距离"DataType=1000800000000001003C005F03110018000000100000001800000010000000000000000000000018000000100000000000FFFFFF00000001FFFFFFF9000000000000000100010000000000000000000000000000;InitDataHash=;Name=X向距离;WriteArb=2"Z向距离"DataType=1000800000000001003C005F03110018000000100000001800000010000000000000000000000018000000100000000000FFFFFF00000001FFFFFFF9000000000000000100010000000000000000000000000000;InitDataHash=;Name=Z向距离;WriteArb=2"波形数据"ControlLogic=0;NumberOfElements=131071;Type=2;ReadArbs=Never Arbitrate;ElementsPerRead=1;WriteArbs=Never Arbitrate;ElementsPerWrite=16;Implementation=2;波形数据;DataType=1000800000000001003C005F0351001C0000000A000100010000000AFFFFFFFFFFFFFFFF0000001B000000090000000007FFFFFF00000001FFFFFFEF000000000000000100010000000000000000000000000000;DisableOnOverflowUnderflow=FALSE"采样间隔"DataType=1000800000000001003C005F0311001000000000000000010000000100000000000000000000001000000000000000000000FFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;Name=采样间隔;WriteArb=2"采样率"DataType=1000800000000001003C005F0311001000000010000000100000001000000000000000000000001000000010000000000000FFFF0000000100000001000000000000000100010000000000000000000000000000;InitDataHash=;Name=采样率;WriteArb=2"颤振信号相位"DataType=1000800000000001003C005F03110018000000020000001800000002000000000000000000000018000000020000000000FFFFFF00000001FFFFFFEB000000000000000100010000000000000000000000000000;InitDataHash=;Name=颤振信号相位;WriteArb=2"垂直缸Actual Number of Elements=4;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F03510014000000050001000100000005FFFFFFFFFFFFFFFF0000001300000004000000000007FFFF00000001FFFFFFF2000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2伺服缸极性Actual Number of Elements=8;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F03510002000000020001000200000002FFFFFFFFFFFFFFFE000100020000000200000000000000010000000100000001000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2当前位置Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2给定位移Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A000100010000000AFFFFFFFFFFFFFFFF00000019000000090000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2急停"DataType=1000800000000001000A402104426F6F6C00000100000000000000;InitDataHash=;Name=急停;WriteArb=1"加速度输入Actual Number of Elements=3;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A000000080001001A00000008FFFFFFFFFE0000000001001A000000080000000001FFFFFF00000001FFFFFFEF000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2降台面"DataType=1000800000000001000A402104426F6F6C00000100000000000000;InitDataHash=;Name=降台面;WriteArb=1"降台面当前时间"DataType=1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000;InitDataHash=;Name=零位改当前时间;WriteArb=2"降台面计数"DataType=1000800000000001000940070003553332000100000000000000000000;InitDataHash=;Name=零位改计数;WriteArb=1"降台面计数间隔"DataType=1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000;InitDataHash=;Name=零位改计数间隔;WriteArb=2"降台面完成"DataType=1000800000000001000A402104426F6F6C00000100000000000000;InitDataHash=;Name=降台面完成;WriteArb=1"降台面最大计数"DataType=1000800000000001000940070003553332000100000000000000000000;InitDataHash=;Name=零位改最大计数;WriteArb=2"静支撑直偏Actual Number of Elements=4;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F03510014000000050001001400000005FFFFFFFFFFF800000001001400000005000000000007FFFF00000001FFFFFFF2000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2零位差Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2零位改"DataType=1000800000000001000A402104426F6F6C00000100000000000000;InitDataHash=;Name=零位改;WriteArb=2"零位改当前时间"DataType=1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000;InitDataHash=;Name=零位改当前时间;WriteArb=2"零位改计数"DataType=1000800000000001000940070003553332000100000000000000000000;InitDataHash=;Name=零位改计数;WriteArb=1"零位改计数间隔"DataType=1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000;InitDataHash=;Name=零位改计数间隔;WriteArb=2"零位改已完成"DataType=1000800000000001000A402104426F6F6C00000100000000000000;InitDataHash=;Name=零位改已完成;WriteArb=2"零位改最大计数"DataType=1000800000000001000940070003553332000100000000000000000000;InitDataHash=;Name=零位改最大计数;WriteArb=2"模块1/AI0resource=/crio_9205/AI0;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl模块1/AI10resource=/crio_9205/AI10;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl模块1/AI11resource=/crio_9205/AI11;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl模块1/AI12resource=/crio_9205/AI12;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl模块1/AI13resource=/crio_9205/AI13;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl模块1/AI14resource=/crio_9205/AI14;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl模块1/AI15resource=/crio_9205/AI15;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl模块1/AI16resource=/crio_9205/AI16;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl模块1/AI17resource=/crio_9205/AI17;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl模块1/AI18resource=/crio_9205/AI18;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl模块1/AI19resource=/crio_9205/AI19;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl模块1/AI1resource=/crio_9205/AI1;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl模块1/AI20resource=/crio_9205/AI20;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl模块1/AI21resource=/crio_9205/AI21;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl模块1/AI22resource=/crio_9205/AI22;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl模块1/AI23resource=/crio_9205/AI23;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl模块1/AI24resource=/crio_9205/AI24;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl模块1/AI25resource=/crio_9205/AI25;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl模块1/AI26resource=/crio_9205/AI26;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl模块1/AI27resource=/crio_9205/AI27;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl模块1/AI28resource=/crio_9205/AI28;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl模块1/AI29resource=/crio_9205/AI29;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl模块1/AI2resource=/crio_9205/AI2;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl模块1/AI30resource=/crio_9205/AI30;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl模块1/AI31resource=/crio_9205/AI31;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl模块1/AI3resource=/crio_9205/AI3;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl模块1/AI4resource=/crio_9205/AI4;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl模块1/AI5resource=/crio_9205/AI5;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl模块1/AI6resource=/crio_9205/AI6;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl模块1/AI7resource=/crio_9205/AI7;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl模块1/AI8resource=/crio_9205/AI8;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl模块1/AI9resource=/crio_9205/AI9;0;ReadMethodType=vi.lib\LabVIEW Targets\FPGA\cRIO\shared\nicrio_FXP_Controls\nicrio_FXP_S_26_5.ctl模块1/DI0resource=/crio_9205/DI0;0;ReadMethodType=bool模块1/DO0resource=/crio_9205/DO0;0;WriteMethodType=bool模块1/Trigresource=/crio_9205/Trig;0;ReadMethodType=bool平衡缸Actual Number of Elements=4;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F03510014000000050001000100000005FFFFFFFFFFFFFFFF0000001300000004000000000007FFFF00000001FFFFFFF2000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2平衡缸历史驱动Actual Number of Elements=4;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F03510014000000050001001400000005FFFFFFFFFFF800000001001400000005000000000007FFFF00000001FFFFFFF2000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2启用状态Actual Number of Elements=6;ReadArbs=2;WriteArbs=2;Implementation=2;DataType=1000800000000001000A402104426F6F6C00000100000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2上时刻零位Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A000100010000000AFFFFFFFFFFFFFFFF00000019000000090000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2升台面"DataType=1000800000000001000A402104426F6F6C00000100000000000000;InitDataHash=;Name=升台面;WriteArb=1"升台面当前时间"DataType=1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000;InitDataHash=;Name=零位改当前时间;WriteArb=2"升台面计数"DataType=1000800000000001000940070003553332000100000000000000000000;InitDataHash=;Name=零位改计数;WriteArb=1"升台面计数间隔"DataType=1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000;InitDataHash=;Name=零位改计数间隔;WriteArb=2"升台面完成"DataType=1000800000000001000A402104426F6F6C00000100000000000000;InitDataHash=;Name=升台面完成;WriteArb=1"升台面最大计数"DataType=1000800000000001000940070003553332000100000000000000000000;InitDataHash=;Name=零位改最大计数;WriteArb=2"水平缸Actual Number of Elements=4;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F03510014000000050001000100000005FFFFFFFFFFFFFFFF0000001300000004000000000007FFFF00000001FFFFFFF2000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2台初始位置Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2台给定工作位Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2台工作零位Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2台实时位置Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2外部输入Actual Number of Elements=3;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A000100010000000AFFFFFFFFFFFFFFFF00000019000000090000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2位移灵敏度Actual Number of Elements=8;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0311001A0000000A000000010000000100000000000000000000001A0000000A0000000003FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2位移输入Actual Number of Elements=8;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2误差和Actual Number of Elements=8;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A000000080001001A00000008FFFFFFFFFE0000000001001A000000080000000001FFFFFF00000001FFFFFFEF000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2信号发生"DataType=1000800000000001000A402104426F6F6C00000100000000000000;InitDataHash=;Name=信号发生;WriteArb=1"信号发生上次相位Actual Number of Elements=6;ReadArbs=2;WriteArbs=2;Implementation=2;DataType=1000800000000001003C005F03110018000000020000001800000002000000000000000000000018000000020000000000FFFFFF00000001FFFFFFEB000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2信号发生时长Actual Number of Elements=6;ReadArbs=2;WriteArbs=2;Implementation=2;DataType=100080000000000100094008000355363400010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2信号发生完成Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001000A402104426F6F6C00000100000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2信号发生中"DataType=1000800000000001000A402104426F6F6C00000100000000000000;InitDataHash=;Name=信号发生中;WriteArb=1"信号幅值Actual Number of Elements=6;ReadArbs=2;WriteArbs=2;Implementation=2;DataType=1000800000000001003C005F0311001200000009000000120000000900000000000000000000001200000009000000000003FFFF00000001FFFFFFF8000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2信号类型Actual Number of Elements=6;ReadArbs=2;WriteArbs=2;Implementation=2;DataType=100080000000000100354015000506D5FDCFD2B2A806C8FDBDC7B2A804B7BDB2A808D5FDCFD2C5C4B2A806D7D4B6A8D2E5000008D0C5BAC5C0E0D0CD00000100000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2信号频率Actual Number of Elements=6;ReadArbs=2;WriteArbs=2;Implementation=2;DataType=1000800000000001003C005F031100100000000A000000100000000A0000000000000000000000100000000A000000000000FFFF00000001FFFFFFFB000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2信号停止当前时间Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2信号停止计数Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001000940070003553332000100000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2信号停止计数间隔"DataType=1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000;InitDataHash=;Name=零位改计数间隔;WriteArb=2"信号停止最大计数"DataType=1000800000000001000940070003553332000100000000000000000000;InitDataHash=;Name=零位改最大计数;WriteArb=2"信号已发生时长Actual Number of Elements=6;ReadArbs=2;WriteArbs=2;Implementation=2;DataType=100080000000000100094008000355363400010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2信号占空比Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0311000C000000000000000C0000000000000000000000000000000C000000000000000000000FFF00000001FFFFFFF5000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2压差输入Actual Number of Elements=8;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A000000080001000100000008FFFFFFFFFFFFFFFF00000019000000070000000001FFFFFF00000001FFFFFFEF000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2支撑压力输入Actual Number of Elements=4;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A000000080001000100000008FFFFFFFFFFFFFFFF00000019000000070000000001FFFFFF00000001FFFFFFEF000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2自定义波"ControlLogic=0;NumberOfElements=32773;Type=1;ReadArbs=Arbitrate if Multiple Requestors Only;ElementsPerRead=1;WriteArbs=Arbitrate if Multiple Requestors Only;ElementsPerWrite=1;Implementation=2;自定义波;DataType=1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;DisableOnOverflowUnderflow=FALSE"自由度控制误差Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F03510010000000060001001000000006FFFFFFFFFFFF800000010010000000060000000000007FFF00000001FFFFFFF7000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2</Property>
  83. <Property Name="NI.LV.FPGA.CompileConfigString" Type="Str">cRIO-9049/Clk40/falsefalseFPGA_EXECUTION_MODEFPGA_TARGETFPGA_TARGET_CLASSCRIO_9049FPGA_TARGET_FAMILYKINTEX7TARGET_TYPEFPGA</Property>
  84. <Property Name="NI.LV.FPGA.Version" Type="Int">6</Property>
  85. <Property Name="Resource Name" Type="Str">RIO0</Property>
  86. <Property Name="Target Class" Type="Str">cRIO-9049</Property>
  87. <Property Name="Top-Level Timing Source" Type="Str">40 MHz Onboard Clock</Property>
  88. <Property Name="Top-Level Timing Source Is Default" Type="Bool">true</Property>
  89. <Item Name="Chassis I/O" Type="Folder">
  90. <Item Name="Chassis Temperature" Type="Elemental IO">
  91. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  92. <Attribute name="resource">
  93. <Value>/Chassis Temperature</Value>
  94. </Attribute>
  95. </AttributeSet>
  96. </Property>
  97. <Property Name="FPGA.PersistentID" Type="Str">{BFB5D6FF-456C-48D9-B8FA-0AA0D9A45214}</Property>
  98. </Item>
  99. <Item Name="Sleep" Type="Elemental IO">
  100. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  101. <Attribute name="resource">
  102. <Value>/Sleep</Value>
  103. </Attribute>
  104. </AttributeSet>
  105. </Property>
  106. <Property Name="FPGA.PersistentID" Type="Str">{7BB41FEC-D60B-46E3-B1EF-7ACDFABF1485}</Property>
  107. </Item>
  108. <Item Name="System Reset" Type="Elemental IO">
  109. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  110. <Attribute name="resource">
  111. <Value>/System Reset</Value>
  112. </Attribute>
  113. </AttributeSet>
  114. </Property>
  115. <Property Name="FPGA.PersistentID" Type="Str">{19FB96B0-5E7F-490C-96C9-C0B7C561FEAD}</Property>
  116. </Item>
  117. <Item Name="USER FPGA LED" Type="Elemental IO">
  118. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  119. <Attribute name="resource">
  120. <Value>/USER FPGA LED</Value>
  121. </Attribute>
  122. </AttributeSet>
  123. </Property>
  124. <Property Name="FPGA.PersistentID" Type="Str">{1615E4C1-0502-4682-BCEF-C536020B3E57}</Property>
  125. </Item>
  126. <Item Name="USER Push Button" Type="Elemental IO">
  127. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  128. <Attribute name="NumberOfSyncRegistersForReadInProject">
  129. <Value>0</Value>
  130. </Attribute>
  131. <Attribute name="resource">
  132. <Value>/USER Push Button</Value>
  133. </Attribute>
  134. </AttributeSet>
  135. </Property>
  136. <Property Name="FPGA.PersistentID" Type="Str">{59EE8DB2-FEC2-4393-810B-1CA01E4322F6}</Property>
  137. </Item>
  138. <Item Name="Scan Clock" Type="Elemental IO">
  139. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  140. <Attribute name="resource">
  141. <Value>/Scan Clock</Value>
  142. </Attribute>
  143. </AttributeSet>
  144. </Property>
  145. <Property Name="FPGA.PersistentID" Type="Str">{BFCD6BF6-3D57-4CF1-B765-99CA38DFB50D}</Property>
  146. </Item>
  147. <Item Name="Reset RT App" Type="Elemental IO">
  148. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  149. <Attribute name="resource">
  150. <Value>/Reset RT App</Value>
  151. </Attribute>
  152. </AttributeSet>
  153. </Property>
  154. <Property Name="FPGA.PersistentID" Type="Str">{B1E33784-2464-4FB7-A2AE-69C7033AC2E1}</Property>
  155. </Item>
  156. <Item Name="System Watchdog Expired" Type="Elemental IO">
  157. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  158. <Attribute name="NumberOfSyncRegistersForReadInProject">
  159. <Value>Auto</Value>
  160. </Attribute>
  161. <Attribute name="resource">
  162. <Value>/System Watchdog Expired</Value>
  163. </Attribute>
  164. </AttributeSet>
  165. </Property>
  166. <Property Name="FPGA.PersistentID" Type="Str">{96AEF78E-CC94-4B84-99E2-8486D67E6B24}</Property>
  167. </Item>
  168. <Item Name="12.8 MHz Timebase" Type="Elemental IO">
  169. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  170. <Attribute name="NumberOfSyncRegistersForReadInProject">
  171. <Value>Auto</Value>
  172. </Attribute>
  173. <Attribute name="resource">
  174. <Value>/12.8 MHz Timebase</Value>
  175. </Attribute>
  176. </AttributeSet>
  177. </Property>
  178. <Property Name="FPGA.PersistentID" Type="Str">{FD1CC428-FA01-4DC7-A2C8-DB7BB3AB0FB7}</Property>
  179. </Item>
  180. <Item Name="13.1072 MHz Timebase" Type="Elemental IO">
  181. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  182. <Attribute name="NumberOfSyncRegistersForReadInProject">
  183. <Value>Auto</Value>
  184. </Attribute>
  185. <Attribute name="resource">
  186. <Value>/13.1072 MHz Timebase</Value>
  187. </Attribute>
  188. </AttributeSet>
  189. </Property>
  190. <Property Name="FPGA.PersistentID" Type="Str">{AD9F9C55-353E-4B45-A841-26D39C7226FB}</Property>
  191. </Item>
  192. <Item Name="10 MHz Timebase" Type="Elemental IO">
  193. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  194. <Attribute name="NumberOfSyncRegistersForReadInProject">
  195. <Value>Auto</Value>
  196. </Attribute>
  197. <Attribute name="resource">
  198. <Value>/10 MHz Timebase</Value>
  199. </Attribute>
  200. </AttributeSet>
  201. </Property>
  202. <Property Name="FPGA.PersistentID" Type="Str">{FD930866-8896-46EE-BA8B-9F48EEC2E599}</Property>
  203. </Item>
  204. </Item>
  205. <Item Name="cRIO_Trig" Type="Folder">
  206. <Item Name="cRIO_Trig0" Type="Elemental IO">
  207. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  208. <Attribute name="ArbitrationForOutputData">
  209. <Value>NeverArbitrate</Value>
  210. </Attribute>
  211. <Attribute name="NumberOfSyncRegistersForOutputData">
  212. <Value>1</Value>
  213. </Attribute>
  214. <Attribute name="NumberOfSyncRegistersForReadInProject">
  215. <Value>Auto</Value>
  216. </Attribute>
  217. <Attribute name="resource">
  218. <Value>/cRIO_Trig/cRIO_Trig0</Value>
  219. </Attribute>
  220. </AttributeSet>
  221. </Property>
  222. <Property Name="FPGA.PersistentID" Type="Str">{E3EACA00-5362-4FFE-911A-98B2EE562045}</Property>
  223. </Item>
  224. <Item Name="cRIO_Trig1" Type="Elemental IO">
  225. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  226. <Attribute name="ArbitrationForOutputData">
  227. <Value>NeverArbitrate</Value>
  228. </Attribute>
  229. <Attribute name="NumberOfSyncRegistersForOutputData">
  230. <Value>1</Value>
  231. </Attribute>
  232. <Attribute name="NumberOfSyncRegistersForReadInProject">
  233. <Value>Auto</Value>
  234. </Attribute>
  235. <Attribute name="resource">
  236. <Value>/cRIO_Trig/cRIO_Trig1</Value>
  237. </Attribute>
  238. </AttributeSet>
  239. </Property>
  240. <Property Name="FPGA.PersistentID" Type="Str">{B51FBB35-28B7-4A50-8B62-A23A9B6626D1}</Property>
  241. </Item>
  242. <Item Name="cRIO_Trig2" Type="Elemental IO">
  243. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  244. <Attribute name="ArbitrationForOutputData">
  245. <Value>NeverArbitrate</Value>
  246. </Attribute>
  247. <Attribute name="NumberOfSyncRegistersForOutputData">
  248. <Value>1</Value>
  249. </Attribute>
  250. <Attribute name="NumberOfSyncRegistersForReadInProject">
  251. <Value>Auto</Value>
  252. </Attribute>
  253. <Attribute name="resource">
  254. <Value>/cRIO_Trig/cRIO_Trig2</Value>
  255. </Attribute>
  256. </AttributeSet>
  257. </Property>
  258. <Property Name="FPGA.PersistentID" Type="Str">{D394E68D-0F36-4400-9217-BBD84356E958}</Property>
  259. </Item>
  260. <Item Name="cRIO_Trig3" Type="Elemental IO">
  261. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  262. <Attribute name="ArbitrationForOutputData">
  263. <Value>NeverArbitrate</Value>
  264. </Attribute>
  265. <Attribute name="NumberOfSyncRegistersForOutputData">
  266. <Value>1</Value>
  267. </Attribute>
  268. <Attribute name="NumberOfSyncRegistersForReadInProject">
  269. <Value>Auto</Value>
  270. </Attribute>
  271. <Attribute name="resource">
  272. <Value>/cRIO_Trig/cRIO_Trig3</Value>
  273. </Attribute>
  274. </AttributeSet>
  275. </Property>
  276. <Property Name="FPGA.PersistentID" Type="Str">{5739D2D4-564D-4E6D-8A7B-2399384B45DC}</Property>
  277. </Item>
  278. <Item Name="cRIO_Trig4" Type="Elemental IO">
  279. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  280. <Attribute name="NumberOfSyncRegistersForReadInProject">
  281. <Value>Auto</Value>
  282. </Attribute>
  283. <Attribute name="resource">
  284. <Value>/cRIO_Trig/cRIO_Trig4</Value>
  285. </Attribute>
  286. </AttributeSet>
  287. </Property>
  288. <Property Name="FPGA.PersistentID" Type="Str">{AD1EC923-ACA7-4885-B514-43A653FD658D}</Property>
  289. </Item>
  290. <Item Name="cRIO_Trig5" Type="Elemental IO">
  291. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  292. <Attribute name="NumberOfSyncRegistersForReadInProject">
  293. <Value>Auto</Value>
  294. </Attribute>
  295. <Attribute name="resource">
  296. <Value>/cRIO_Trig/cRIO_Trig5</Value>
  297. </Attribute>
  298. </AttributeSet>
  299. </Property>
  300. <Property Name="FPGA.PersistentID" Type="Str">{255D397B-B005-44F8-872C-7B3B00300A35}</Property>
  301. </Item>
  302. <Item Name="cRIO_Trig6" Type="Elemental IO">
  303. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  304. <Attribute name="NumberOfSyncRegistersForReadInProject">
  305. <Value>Auto</Value>
  306. </Attribute>
  307. <Attribute name="resource">
  308. <Value>/cRIO_Trig/cRIO_Trig6</Value>
  309. </Attribute>
  310. </AttributeSet>
  311. </Property>
  312. <Property Name="FPGA.PersistentID" Type="Str">{108B3098-BB6B-40BF-A880-4F0D199A9F9B}</Property>
  313. </Item>
  314. <Item Name="cRIO_Trig7" Type="Elemental IO">
  315. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  316. <Attribute name="NumberOfSyncRegistersForReadInProject">
  317. <Value>Auto</Value>
  318. </Attribute>
  319. <Attribute name="resource">
  320. <Value>/cRIO_Trig/cRIO_Trig7</Value>
  321. </Attribute>
  322. </AttributeSet>
  323. </Property>
  324. <Property Name="FPGA.PersistentID" Type="Str">{13C316C2-7D71-4F5E-BA80-92DA5F2B6B66}</Property>
  325. </Item>
  326. </Item>
  327. <Item Name="Time Synchronization" Type="Folder">
  328. <Item Name="Time" Type="Elemental IO">
  329. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  330. <Attribute name="NumberOfSyncRegistersForReadInProject">
  331. <Value>0</Value>
  332. </Attribute>
  333. <Attribute name="resource">
  334. <Value>/Time Synchronization/Time</Value>
  335. </Attribute>
  336. </AttributeSet>
  337. </Property>
  338. <Property Name="FPGA.PersistentID" Type="Str">{B1084763-13D9-4398-89C8-62FADD69BB82}</Property>
  339. </Item>
  340. <Item Name="Time Source" Type="Elemental IO">
  341. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  342. <Attribute name="NumberOfSyncRegistersForReadInProject">
  343. <Value>0</Value>
  344. </Attribute>
  345. <Attribute name="resource">
  346. <Value>/Time Synchronization/Time Source</Value>
  347. </Attribute>
  348. </AttributeSet>
  349. </Property>
  350. <Property Name="FPGA.PersistentID" Type="Str">{E1E55A56-1ED9-4779-913A-463F8AE73BE5}</Property>
  351. </Item>
  352. <Item Name="Time Synchronization Fault" Type="Elemental IO">
  353. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  354. <Attribute name="NumberOfSyncRegistersForReadInProject">
  355. <Value>0</Value>
  356. </Attribute>
  357. <Attribute name="resource">
  358. <Value>/Time Synchronization/Time Synchronization Fault</Value>
  359. </Attribute>
  360. </AttributeSet>
  361. </Property>
  362. <Property Name="FPGA.PersistentID" Type="Str">{2772F607-5743-4222-AC52-89F619F90E93}</Property>
  363. </Item>
  364. <Item Name="Offset from Time Reference" Type="Elemental IO">
  365. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  366. <Attribute name="NumberOfSyncRegistersForReadInProject">
  367. <Value>0</Value>
  368. </Attribute>
  369. <Attribute name="resource">
  370. <Value>/Time Synchronization/Offset from Time Reference</Value>
  371. </Attribute>
  372. </AttributeSet>
  373. </Property>
  374. <Property Name="FPGA.PersistentID" Type="Str">{AC83C225-7B8F-4383-A8AE-DAD89AC1B048}</Property>
  375. </Item>
  376. <Item Name="Offset from Time Reference Valid" Type="Elemental IO">
  377. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  378. <Attribute name="NumberOfSyncRegistersForReadInProject">
  379. <Value>0</Value>
  380. </Attribute>
  381. <Attribute name="resource">
  382. <Value>/Time Synchronization/Offset from Time Reference Valid</Value>
  383. </Attribute>
  384. </AttributeSet>
  385. </Property>
  386. <Property Name="FPGA.PersistentID" Type="Str">{222085F2-CE88-4EDF-8477-F49C74AA0BCB}</Property>
  387. </Item>
  388. </Item>
  389. <Item Name="9205" Type="Folder">
  390. <Item Name="模块1/AI0" Type="Elemental IO">
  391. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  392. <Attribute name="resource">
  393. <Value>/crio_9205/AI0</Value>
  394. </Attribute>
  395. </AttributeSet>
  396. </Property>
  397. <Property Name="FPGA.PersistentID" Type="Str">{ABB8DB4C-0E33-4720-9CDC-AC556C8BBD15}</Property>
  398. </Item>
  399. <Item Name="模块1/AI1" Type="Elemental IO">
  400. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  401. <Attribute name="resource">
  402. <Value>/crio_9205/AI1</Value>
  403. </Attribute>
  404. </AttributeSet>
  405. </Property>
  406. <Property Name="FPGA.PersistentID" Type="Str">{2746C53C-7F83-48C5-BFF8-F4EACF435475}</Property>
  407. </Item>
  408. <Item Name="模块1/AI2" Type="Elemental IO">
  409. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  410. <Attribute name="resource">
  411. <Value>/crio_9205/AI2</Value>
  412. </Attribute>
  413. </AttributeSet>
  414. </Property>
  415. <Property Name="FPGA.PersistentID" Type="Str">{7B64D1C8-5C3F-4FB6-AB2D-3D0F8508E523}</Property>
  416. </Item>
  417. <Item Name="模块1/AI3" Type="Elemental IO">
  418. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  419. <Attribute name="resource">
  420. <Value>/crio_9205/AI3</Value>
  421. </Attribute>
  422. </AttributeSet>
  423. </Property>
  424. <Property Name="FPGA.PersistentID" Type="Str">{E648E6AB-D66E-43AE-9154-BF037A0DCB79}</Property>
  425. </Item>
  426. <Item Name="模块1/AI4" Type="Elemental IO">
  427. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  428. <Attribute name="resource">
  429. <Value>/crio_9205/AI4</Value>
  430. </Attribute>
  431. </AttributeSet>
  432. </Property>
  433. <Property Name="FPGA.PersistentID" Type="Str">{F97976E9-510C-4C7D-84C0-29A175CD6F16}</Property>
  434. </Item>
  435. <Item Name="模块1/AI5" Type="Elemental IO">
  436. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  437. <Attribute name="resource">
  438. <Value>/crio_9205/AI5</Value>
  439. </Attribute>
  440. </AttributeSet>
  441. </Property>
  442. <Property Name="FPGA.PersistentID" Type="Str">{C78FCCCE-10CD-46F9-B260-7A8E97C58758}</Property>
  443. </Item>
  444. <Item Name="模块1/AI6" Type="Elemental IO">
  445. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  446. <Attribute name="resource">
  447. <Value>/crio_9205/AI6</Value>
  448. </Attribute>
  449. </AttributeSet>
  450. </Property>
  451. <Property Name="FPGA.PersistentID" Type="Str">{83B32F50-BC4B-47E8-B927-798F3B285D54}</Property>
  452. </Item>
  453. <Item Name="模块1/AI7" Type="Elemental IO">
  454. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  455. <Attribute name="resource">
  456. <Value>/crio_9205/AI7</Value>
  457. </Attribute>
  458. </AttributeSet>
  459. </Property>
  460. <Property Name="FPGA.PersistentID" Type="Str">{ECCE95C8-EE77-4C51-8C44-6A61E06F9AE6}</Property>
  461. </Item>
  462. <Item Name="模块1/AI8" Type="Elemental IO">
  463. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  464. <Attribute name="resource">
  465. <Value>/crio_9205/AI8</Value>
  466. </Attribute>
  467. </AttributeSet>
  468. </Property>
  469. <Property Name="FPGA.PersistentID" Type="Str">{6B809E6A-482F-4DA9-9A03-C2E5EF80A7D1}</Property>
  470. </Item>
  471. <Item Name="模块1/AI9" Type="Elemental IO">
  472. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  473. <Attribute name="resource">
  474. <Value>/crio_9205/AI9</Value>
  475. </Attribute>
  476. </AttributeSet>
  477. </Property>
  478. <Property Name="FPGA.PersistentID" Type="Str">{261B83C0-E214-410C-B5B4-2FCD17884345}</Property>
  479. </Item>
  480. <Item Name="模块1/AI10" Type="Elemental IO">
  481. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  482. <Attribute name="resource">
  483. <Value>/crio_9205/AI10</Value>
  484. </Attribute>
  485. </AttributeSet>
  486. </Property>
  487. <Property Name="FPGA.PersistentID" Type="Str">{60620B05-12A4-43D2-80A7-2A217FAD572F}</Property>
  488. </Item>
  489. <Item Name="模块1/AI11" Type="Elemental IO">
  490. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  491. <Attribute name="resource">
  492. <Value>/crio_9205/AI11</Value>
  493. </Attribute>
  494. </AttributeSet>
  495. </Property>
  496. <Property Name="FPGA.PersistentID" Type="Str">{4FA255C8-6627-404E-932D-714D98F49D45}</Property>
  497. </Item>
  498. <Item Name="模块1/AI12" Type="Elemental IO">
  499. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  500. <Attribute name="resource">
  501. <Value>/crio_9205/AI12</Value>
  502. </Attribute>
  503. </AttributeSet>
  504. </Property>
  505. <Property Name="FPGA.PersistentID" Type="Str">{6568F6DE-5608-413D-ABE1-0C4D7912E3A4}</Property>
  506. </Item>
  507. <Item Name="模块1/AI13" Type="Elemental IO">
  508. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  509. <Attribute name="resource">
  510. <Value>/crio_9205/AI13</Value>
  511. </Attribute>
  512. </AttributeSet>
  513. </Property>
  514. <Property Name="FPGA.PersistentID" Type="Str">{BF01CE4D-F592-4B3E-B0B1-1C17308BA6FC}</Property>
  515. </Item>
  516. <Item Name="模块1/AI14" Type="Elemental IO">
  517. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  518. <Attribute name="resource">
  519. <Value>/crio_9205/AI14</Value>
  520. </Attribute>
  521. </AttributeSet>
  522. </Property>
  523. <Property Name="FPGA.PersistentID" Type="Str">{F5AA5548-890D-48AD-A1DD-8B2C29E09FD7}</Property>
  524. </Item>
  525. <Item Name="模块1/AI15" Type="Elemental IO">
  526. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  527. <Attribute name="resource">
  528. <Value>/crio_9205/AI15</Value>
  529. </Attribute>
  530. </AttributeSet>
  531. </Property>
  532. <Property Name="FPGA.PersistentID" Type="Str">{AC022F4C-54A6-4522-AB74-5C5837BC54A6}</Property>
  533. </Item>
  534. <Item Name="模块1/AI16" Type="Elemental IO">
  535. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  536. <Attribute name="resource">
  537. <Value>/crio_9205/AI16</Value>
  538. </Attribute>
  539. </AttributeSet>
  540. </Property>
  541. <Property Name="FPGA.PersistentID" Type="Str">{4B874E82-DE9E-47E2-9014-469C3A66EEBB}</Property>
  542. </Item>
  543. <Item Name="模块1/AI17" Type="Elemental IO">
  544. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  545. <Attribute name="resource">
  546. <Value>/crio_9205/AI17</Value>
  547. </Attribute>
  548. </AttributeSet>
  549. </Property>
  550. <Property Name="FPGA.PersistentID" Type="Str">{A6E933C3-0BB9-4B5A-90CB-38C88561E14F}</Property>
  551. </Item>
  552. <Item Name="模块1/AI18" Type="Elemental IO">
  553. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  554. <Attribute name="resource">
  555. <Value>/crio_9205/AI18</Value>
  556. </Attribute>
  557. </AttributeSet>
  558. </Property>
  559. <Property Name="FPGA.PersistentID" Type="Str">{E76E51F5-0A12-4078-9F03-C925E41F1154}</Property>
  560. </Item>
  561. <Item Name="模块1/AI19" Type="Elemental IO">
  562. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  563. <Attribute name="resource">
  564. <Value>/crio_9205/AI19</Value>
  565. </Attribute>
  566. </AttributeSet>
  567. </Property>
  568. <Property Name="FPGA.PersistentID" Type="Str">{130184E4-5C3E-44DD-9772-E9BB6C19A5F9}</Property>
  569. </Item>
  570. <Item Name="模块1/AI20" Type="Elemental IO">
  571. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  572. <Attribute name="resource">
  573. <Value>/crio_9205/AI20</Value>
  574. </Attribute>
  575. </AttributeSet>
  576. </Property>
  577. <Property Name="FPGA.PersistentID" Type="Str">{3B503D5B-97F4-480F-978B-BB9FB4D56CEE}</Property>
  578. </Item>
  579. <Item Name="模块1/AI21" Type="Elemental IO">
  580. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  581. <Attribute name="resource">
  582. <Value>/crio_9205/AI21</Value>
  583. </Attribute>
  584. </AttributeSet>
  585. </Property>
  586. <Property Name="FPGA.PersistentID" Type="Str">{62D817C7-A167-474F-BCA8-824EA248A30B}</Property>
  587. </Item>
  588. <Item Name="模块1/AI22" Type="Elemental IO">
  589. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  590. <Attribute name="resource">
  591. <Value>/crio_9205/AI22</Value>
  592. </Attribute>
  593. </AttributeSet>
  594. </Property>
  595. <Property Name="FPGA.PersistentID" Type="Str">{9204CCEB-EDFE-4828-9B6B-82747309C44F}</Property>
  596. </Item>
  597. <Item Name="模块1/AI23" Type="Elemental IO">
  598. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  599. <Attribute name="resource">
  600. <Value>/crio_9205/AI23</Value>
  601. </Attribute>
  602. </AttributeSet>
  603. </Property>
  604. <Property Name="FPGA.PersistentID" Type="Str">{2CAE1F04-2B52-418D-840F-1D514000B467}</Property>
  605. </Item>
  606. <Item Name="模块1/AI24" Type="Elemental IO">
  607. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  608. <Attribute name="resource">
  609. <Value>/crio_9205/AI24</Value>
  610. </Attribute>
  611. </AttributeSet>
  612. </Property>
  613. <Property Name="FPGA.PersistentID" Type="Str">{D728731D-1368-4397-8BD7-63EAF6D27311}</Property>
  614. </Item>
  615. <Item Name="模块1/AI25" Type="Elemental IO">
  616. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  617. <Attribute name="resource">
  618. <Value>/crio_9205/AI25</Value>
  619. </Attribute>
  620. </AttributeSet>
  621. </Property>
  622. <Property Name="FPGA.PersistentID" Type="Str">{C9CE4DE5-3405-45FE-966A-E34861F33C16}</Property>
  623. </Item>
  624. <Item Name="模块1/AI26" Type="Elemental IO">
  625. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  626. <Attribute name="resource">
  627. <Value>/crio_9205/AI26</Value>
  628. </Attribute>
  629. </AttributeSet>
  630. </Property>
  631. <Property Name="FPGA.PersistentID" Type="Str">{D7BA12BE-2C01-42F4-BF84-1B9BA36CD6DC}</Property>
  632. </Item>
  633. <Item Name="模块1/AI27" Type="Elemental IO">
  634. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  635. <Attribute name="resource">
  636. <Value>/crio_9205/AI27</Value>
  637. </Attribute>
  638. </AttributeSet>
  639. </Property>
  640. <Property Name="FPGA.PersistentID" Type="Str">{A19AF1FE-DF7C-401A-BA7D-052E27699B72}</Property>
  641. </Item>
  642. <Item Name="模块1/AI28" Type="Elemental IO">
  643. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  644. <Attribute name="resource">
  645. <Value>/crio_9205/AI28</Value>
  646. </Attribute>
  647. </AttributeSet>
  648. </Property>
  649. <Property Name="FPGA.PersistentID" Type="Str">{B10F3FDA-9E81-4A33-A371-4C13482D5CB7}</Property>
  650. </Item>
  651. <Item Name="模块1/AI29" Type="Elemental IO">
  652. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  653. <Attribute name="resource">
  654. <Value>/crio_9205/AI29</Value>
  655. </Attribute>
  656. </AttributeSet>
  657. </Property>
  658. <Property Name="FPGA.PersistentID" Type="Str">{F499AA52-398A-4FE3-BEF5-8DC9FF8032ED}</Property>
  659. </Item>
  660. <Item Name="模块1/AI30" Type="Elemental IO">
  661. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  662. <Attribute name="resource">
  663. <Value>/crio_9205/AI30</Value>
  664. </Attribute>
  665. </AttributeSet>
  666. </Property>
  667. <Property Name="FPGA.PersistentID" Type="Str">{E1BB5DDB-6CA4-4001-846C-CE9728F30CE7}</Property>
  668. </Item>
  669. <Item Name="模块1/AI31" Type="Elemental IO">
  670. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  671. <Attribute name="resource">
  672. <Value>/crio_9205/AI31</Value>
  673. </Attribute>
  674. </AttributeSet>
  675. </Property>
  676. <Property Name="FPGA.PersistentID" Type="Str">{698C557E-9A4B-44C5-B58E-2917134A63E2}</Property>
  677. </Item>
  678. <Item Name="模块1/Trig" Type="Elemental IO">
  679. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  680. <Attribute name="resource">
  681. <Value>/crio_9205/Trig</Value>
  682. </Attribute>
  683. </AttributeSet>
  684. </Property>
  685. <Property Name="FPGA.PersistentID" Type="Str">{FA57583E-2455-4437-9452-8D29BC902D7E}</Property>
  686. </Item>
  687. <Item Name="模块1/DI0" Type="Elemental IO">
  688. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  689. <Attribute name="resource">
  690. <Value>/crio_9205/DI0</Value>
  691. </Attribute>
  692. </AttributeSet>
  693. </Property>
  694. <Property Name="FPGA.PersistentID" Type="Str">{52127762-5EE2-4FC1-BE71-93F5B96B33D3}</Property>
  695. </Item>
  696. <Item Name="模块1/DO0" Type="Elemental IO">
  697. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  698. <Attribute name="resource">
  699. <Value>/crio_9205/DO0</Value>
  700. </Attribute>
  701. </AttributeSet>
  702. </Property>
  703. <Property Name="FPGA.PersistentID" Type="Str">{B83ED54F-0F42-4B9A-AAE5-E73C503B0594}</Property>
  704. </Item>
  705. </Item>
  706. <Item Name="9264" Type="Folder">
  707. <Item Name="9264/AO0" Type="Elemental IO">
  708. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  709. <Attribute name="resource">
  710. <Value>/crio_9264/AO0</Value>
  711. </Attribute>
  712. </AttributeSet>
  713. </Property>
  714. <Property Name="FPGA.PersistentID" Type="Str">{3D0DFAD3-F91B-4A19-920B-32F0020C272E}</Property>
  715. </Item>
  716. <Item Name="9264/AO2" Type="Elemental IO">
  717. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  718. <Attribute name="resource">
  719. <Value>/crio_9264/AO2</Value>
  720. </Attribute>
  721. </AttributeSet>
  722. </Property>
  723. <Property Name="FPGA.PersistentID" Type="Str">{F6E6E451-00A2-4E4E-B085-2006ACBAFFD4}</Property>
  724. </Item>
  725. <Item Name="9264/AO3" Type="Elemental IO">
  726. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  727. <Attribute name="resource">
  728. <Value>/crio_9264/AO3</Value>
  729. </Attribute>
  730. </AttributeSet>
  731. </Property>
  732. <Property Name="FPGA.PersistentID" Type="Str">{F378AF15-5F91-4900-ADB5-82924469413F}</Property>
  733. </Item>
  734. <Item Name="9264/AO4" Type="Elemental IO">
  735. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  736. <Attribute name="resource">
  737. <Value>/crio_9264/AO4</Value>
  738. </Attribute>
  739. </AttributeSet>
  740. </Property>
  741. <Property Name="FPGA.PersistentID" Type="Str">{118537D6-4DD6-4CC9-9A77-2508B7CE8582}</Property>
  742. </Item>
  743. <Item Name="9264/AO5" Type="Elemental IO">
  744. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  745. <Attribute name="resource">
  746. <Value>/crio_9264/AO5</Value>
  747. </Attribute>
  748. </AttributeSet>
  749. </Property>
  750. <Property Name="FPGA.PersistentID" Type="Str">{3617111B-1228-4910-AE90-90F5C63F11F0}</Property>
  751. </Item>
  752. <Item Name="9264/AO6" Type="Elemental IO">
  753. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  754. <Attribute name="resource">
  755. <Value>/crio_9264/AO6</Value>
  756. </Attribute>
  757. </AttributeSet>
  758. </Property>
  759. <Property Name="FPGA.PersistentID" Type="Str">{5FD2D554-8D26-4712-9F2A-7170D49EB1BB}</Property>
  760. </Item>
  761. <Item Name="9264/AO7" Type="Elemental IO">
  762. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  763. <Attribute name="resource">
  764. <Value>/crio_9264/AO7</Value>
  765. </Attribute>
  766. </AttributeSet>
  767. </Property>
  768. <Property Name="FPGA.PersistentID" Type="Str">{A616FE95-2543-4CEA-AE16-E7A0665E7B84}</Property>
  769. </Item>
  770. <Item Name="9264/AO8" Type="Elemental IO">
  771. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  772. <Attribute name="resource">
  773. <Value>/crio_9264/AO8</Value>
  774. </Attribute>
  775. </AttributeSet>
  776. </Property>
  777. <Property Name="FPGA.PersistentID" Type="Str">{BCC7B7B8-87B2-42CD-A9E8-140BBA6C120E}</Property>
  778. </Item>
  779. <Item Name="9264/AO9" Type="Elemental IO">
  780. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  781. <Attribute name="resource">
  782. <Value>/crio_9264/AO9</Value>
  783. </Attribute>
  784. </AttributeSet>
  785. </Property>
  786. <Property Name="FPGA.PersistentID" Type="Str">{2290E0EF-0E70-45AE-A41C-B7B034D9547F}</Property>
  787. </Item>
  788. <Item Name="9264/AO10" Type="Elemental IO">
  789. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  790. <Attribute name="resource">
  791. <Value>/crio_9264/AO10</Value>
  792. </Attribute>
  793. </AttributeSet>
  794. </Property>
  795. <Property Name="FPGA.PersistentID" Type="Str">{D4C5CDF4-CCFE-416E-A1CB-3398B566F104}</Property>
  796. </Item>
  797. <Item Name="9264/AO11" Type="Elemental IO">
  798. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  799. <Attribute name="resource">
  800. <Value>/crio_9264/AO11</Value>
  801. </Attribute>
  802. </AttributeSet>
  803. </Property>
  804. <Property Name="FPGA.PersistentID" Type="Str">{2F8222CD-06F4-417C-B92F-B099B2EEDA9C}</Property>
  805. </Item>
  806. <Item Name="9264/AO12" Type="Elemental IO">
  807. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  808. <Attribute name="resource">
  809. <Value>/crio_9264/AO12</Value>
  810. </Attribute>
  811. </AttributeSet>
  812. </Property>
  813. <Property Name="FPGA.PersistentID" Type="Str">{2684A700-1547-48FE-A4A6-3224AEFFBE8A}</Property>
  814. </Item>
  815. <Item Name="9264/AO13" Type="Elemental IO">
  816. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  817. <Attribute name="resource">
  818. <Value>/crio_9264/AO13</Value>
  819. </Attribute>
  820. </AttributeSet>
  821. </Property>
  822. <Property Name="FPGA.PersistentID" Type="Str">{0E8A4CD8-E673-4BC9-933A-D8AC9761A147}</Property>
  823. </Item>
  824. <Item Name="9264/AO14" Type="Elemental IO">
  825. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  826. <Attribute name="resource">
  827. <Value>/crio_9264/AO14</Value>
  828. </Attribute>
  829. </AttributeSet>
  830. </Property>
  831. <Property Name="FPGA.PersistentID" Type="Str">{E7C7B68B-464F-425E-836A-3A567283EFBB}</Property>
  832. </Item>
  833. <Item Name="9264/AO15" Type="Elemental IO">
  834. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  835. <Attribute name="resource">
  836. <Value>/crio_9264/AO15</Value>
  837. </Attribute>
  838. </AttributeSet>
  839. </Property>
  840. <Property Name="FPGA.PersistentID" Type="Str">{4427F534-2373-4C04-BDC1-F221E7D8B2F9}</Property>
  841. </Item>
  842. <Item Name="9264/AO1" Type="Elemental IO">
  843. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  844. <Attribute name="resource">
  845. <Value>/crio_9264/AO1</Value>
  846. </Attribute>
  847. </AttributeSet>
  848. </Property>
  849. <Property Name="FPGA.PersistentID" Type="Str">{CD86CA13-96F4-4407-B66C-7B139FC4618F}</Property>
  850. </Item>
  851. </Item>
  852. <Item Name="9375" Type="Folder">
  853. <Item Name="9375/DI0" Type="Elemental IO">
  854. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  855. <Attribute name="resource">
  856. <Value>/crio_9375/DI0</Value>
  857. </Attribute>
  858. </AttributeSet>
  859. </Property>
  860. <Property Name="FPGA.PersistentID" Type="Str">{D02FDE63-58D4-49CA-AAA8-34F7085A1E74}</Property>
  861. </Item>
  862. <Item Name="9375/DI1" Type="Elemental IO">
  863. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  864. <Attribute name="resource">
  865. <Value>/crio_9375/DI1</Value>
  866. </Attribute>
  867. </AttributeSet>
  868. </Property>
  869. <Property Name="FPGA.PersistentID" Type="Str">{D817812D-E2FD-43A3-B89F-950370F5E1D5}</Property>
  870. </Item>
  871. <Item Name="9375/DI2" Type="Elemental IO">
  872. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  873. <Attribute name="resource">
  874. <Value>/crio_9375/DI2</Value>
  875. </Attribute>
  876. </AttributeSet>
  877. </Property>
  878. <Property Name="FPGA.PersistentID" Type="Str">{D0239C0E-1807-4376-87B9-6C1215FFA639}</Property>
  879. </Item>
  880. <Item Name="9375/DI3" Type="Elemental IO">
  881. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  882. <Attribute name="resource">
  883. <Value>/crio_9375/DI3</Value>
  884. </Attribute>
  885. </AttributeSet>
  886. </Property>
  887. <Property Name="FPGA.PersistentID" Type="Str">{5854705C-72F1-4022-B3EE-D7A8AF5F764D}</Property>
  888. </Item>
  889. <Item Name="9375/DI4" Type="Elemental IO">
  890. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  891. <Attribute name="resource">
  892. <Value>/crio_9375/DI4</Value>
  893. </Attribute>
  894. </AttributeSet>
  895. </Property>
  896. <Property Name="FPGA.PersistentID" Type="Str">{11C7D20E-6A09-47A7-A3E1-D7DB756D14E6}</Property>
  897. </Item>
  898. <Item Name="9375/DI5" Type="Elemental IO">
  899. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  900. <Attribute name="resource">
  901. <Value>/crio_9375/DI5</Value>
  902. </Attribute>
  903. </AttributeSet>
  904. </Property>
  905. <Property Name="FPGA.PersistentID" Type="Str">{1BC86BE3-2C2C-4A49-962D-51A3E01DA175}</Property>
  906. </Item>
  907. <Item Name="9375/DI6" Type="Elemental IO">
  908. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  909. <Attribute name="resource">
  910. <Value>/crio_9375/DI6</Value>
  911. </Attribute>
  912. </AttributeSet>
  913. </Property>
  914. <Property Name="FPGA.PersistentID" Type="Str">{7CE662D4-7665-4227-B58F-ECCD21022B1B}</Property>
  915. </Item>
  916. <Item Name="9375/DI7" Type="Elemental IO">
  917. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  918. <Attribute name="resource">
  919. <Value>/crio_9375/DI7</Value>
  920. </Attribute>
  921. </AttributeSet>
  922. </Property>
  923. <Property Name="FPGA.PersistentID" Type="Str">{B07B9008-57C4-4D60-BE6A-3032350F06A1}</Property>
  924. </Item>
  925. <Item Name="9375/DI8" Type="Elemental IO">
  926. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  927. <Attribute name="resource">
  928. <Value>/crio_9375/DI8</Value>
  929. </Attribute>
  930. </AttributeSet>
  931. </Property>
  932. <Property Name="FPGA.PersistentID" Type="Str">{36EC117B-5265-4D68-97BF-30E3A7DD933B}</Property>
  933. </Item>
  934. <Item Name="9375/DI9" Type="Elemental IO">
  935. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  936. <Attribute name="resource">
  937. <Value>/crio_9375/DI9</Value>
  938. </Attribute>
  939. </AttributeSet>
  940. </Property>
  941. <Property Name="FPGA.PersistentID" Type="Str">{284031ED-9EF6-44A6-A91C-D5561E8D8DA0}</Property>
  942. </Item>
  943. <Item Name="9375/DI10" Type="Elemental IO">
  944. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  945. <Attribute name="resource">
  946. <Value>/crio_9375/DI10</Value>
  947. </Attribute>
  948. </AttributeSet>
  949. </Property>
  950. <Property Name="FPGA.PersistentID" Type="Str">{CBA79F5B-37C2-41C3-958E-3058592DFD42}</Property>
  951. </Item>
  952. <Item Name="9375/DI11" Type="Elemental IO">
  953. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  954. <Attribute name="resource">
  955. <Value>/crio_9375/DI11</Value>
  956. </Attribute>
  957. </AttributeSet>
  958. </Property>
  959. <Property Name="FPGA.PersistentID" Type="Str">{5A3FED17-639D-4863-B524-A0A7788F0753}</Property>
  960. </Item>
  961. <Item Name="9375/DI12" Type="Elemental IO">
  962. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  963. <Attribute name="resource">
  964. <Value>/crio_9375/DI12</Value>
  965. </Attribute>
  966. </AttributeSet>
  967. </Property>
  968. <Property Name="FPGA.PersistentID" Type="Str">{A1FBD906-E15E-4973-BF83-3FD1B097A43B}</Property>
  969. </Item>
  970. <Item Name="9375/DI13" Type="Elemental IO">
  971. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  972. <Attribute name="resource">
  973. <Value>/crio_9375/DI13</Value>
  974. </Attribute>
  975. </AttributeSet>
  976. </Property>
  977. <Property Name="FPGA.PersistentID" Type="Str">{02A99BF1-40E2-4ABF-8FF9-16C645C60ACB}</Property>
  978. </Item>
  979. <Item Name="9375/DI14" Type="Elemental IO">
  980. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  981. <Attribute name="resource">
  982. <Value>/crio_9375/DI14</Value>
  983. </Attribute>
  984. </AttributeSet>
  985. </Property>
  986. <Property Name="FPGA.PersistentID" Type="Str">{69CA9E36-CC84-4152-9892-B3AB4F83D38C}</Property>
  987. </Item>
  988. <Item Name="9375/DI15" Type="Elemental IO">
  989. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  990. <Attribute name="resource">
  991. <Value>/crio_9375/DI15</Value>
  992. </Attribute>
  993. </AttributeSet>
  994. </Property>
  995. <Property Name="FPGA.PersistentID" Type="Str">{29B83A53-7030-47B9-9DB1-27DF6EA29A0C}</Property>
  996. </Item>
  997. <Item Name="9375/DI7:0" Type="Elemental IO">
  998. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  999. <Attribute name="resource">
  1000. <Value>/crio_9375/DI7:0</Value>
  1001. </Attribute>
  1002. </AttributeSet>
  1003. </Property>
  1004. <Property Name="FPGA.PersistentID" Type="Str">{8315251A-6CA0-45CE-9D46-FB4208C86EE2}</Property>
  1005. </Item>
  1006. <Item Name="9375/DI15:8" Type="Elemental IO">
  1007. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  1008. <Attribute name="resource">
  1009. <Value>/crio_9375/DI15:8</Value>
  1010. </Attribute>
  1011. </AttributeSet>
  1012. </Property>
  1013. <Property Name="FPGA.PersistentID" Type="Str">{002C79C4-A079-49E8-91F8-CBB1C558F59F}</Property>
  1014. </Item>
  1015. <Item Name="9375/DI15:0" Type="Elemental IO">
  1016. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  1017. <Attribute name="resource">
  1018. <Value>/crio_9375/DI15:0</Value>
  1019. </Attribute>
  1020. </AttributeSet>
  1021. </Property>
  1022. <Property Name="FPGA.PersistentID" Type="Str">{F1C9E4C6-951A-410B-BE67-98A024EEEF86}</Property>
  1023. </Item>
  1024. <Item Name="9375/DO0" Type="Elemental IO">
  1025. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  1026. <Attribute name="resource">
  1027. <Value>/crio_9375/DO0</Value>
  1028. </Attribute>
  1029. </AttributeSet>
  1030. </Property>
  1031. <Property Name="FPGA.PersistentID" Type="Str">{FE94E425-9A22-4CB3-92AD-E2DE7589BB98}</Property>
  1032. </Item>
  1033. <Item Name="9375/DO1" Type="Elemental IO">
  1034. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  1035. <Attribute name="resource">
  1036. <Value>/crio_9375/DO1</Value>
  1037. </Attribute>
  1038. </AttributeSet>
  1039. </Property>
  1040. <Property Name="FPGA.PersistentID" Type="Str">{65FC7E86-2227-4DDB-8239-FCDCDF451CE1}</Property>
  1041. </Item>
  1042. <Item Name="9375/DO2" Type="Elemental IO">
  1043. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  1044. <Attribute name="resource">
  1045. <Value>/crio_9375/DO2</Value>
  1046. </Attribute>
  1047. </AttributeSet>
  1048. </Property>
  1049. <Property Name="FPGA.PersistentID" Type="Str">{F3179F8C-1426-4C19-8BBB-9052660F20F4}</Property>
  1050. </Item>
  1051. <Item Name="9375/DO3" Type="Elemental IO">
  1052. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  1053. <Attribute name="resource">
  1054. <Value>/crio_9375/DO3</Value>
  1055. </Attribute>
  1056. </AttributeSet>
  1057. </Property>
  1058. <Property Name="FPGA.PersistentID" Type="Str">{70151A50-8673-4BEF-AA0D-179CA37152FB}</Property>
  1059. </Item>
  1060. <Item Name="9375/DO4" Type="Elemental IO">
  1061. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  1062. <Attribute name="resource">
  1063. <Value>/crio_9375/DO4</Value>
  1064. </Attribute>
  1065. </AttributeSet>
  1066. </Property>
  1067. <Property Name="FPGA.PersistentID" Type="Str">{C58978FE-83FA-417B-A457-29C0B2EDA4DC}</Property>
  1068. </Item>
  1069. <Item Name="9375/DO5" Type="Elemental IO">
  1070. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  1071. <Attribute name="resource">
  1072. <Value>/crio_9375/DO5</Value>
  1073. </Attribute>
  1074. </AttributeSet>
  1075. </Property>
  1076. <Property Name="FPGA.PersistentID" Type="Str">{FB2BDDE1-C84E-413C-BBD8-7E10C85D7A37}</Property>
  1077. </Item>
  1078. <Item Name="9375/DO6" Type="Elemental IO">
  1079. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  1080. <Attribute name="resource">
  1081. <Value>/crio_9375/DO6</Value>
  1082. </Attribute>
  1083. </AttributeSet>
  1084. </Property>
  1085. <Property Name="FPGA.PersistentID" Type="Str">{62980234-D868-4CE0-9E35-4CE35A486389}</Property>
  1086. </Item>
  1087. <Item Name="9375/DO7" Type="Elemental IO">
  1088. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  1089. <Attribute name="resource">
  1090. <Value>/crio_9375/DO7</Value>
  1091. </Attribute>
  1092. </AttributeSet>
  1093. </Property>
  1094. <Property Name="FPGA.PersistentID" Type="Str">{657072B4-20D7-4B08-A1F1-12FF5B4E4D48}</Property>
  1095. </Item>
  1096. <Item Name="9375/DO8" Type="Elemental IO">
  1097. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  1098. <Attribute name="resource">
  1099. <Value>/crio_9375/DO8</Value>
  1100. </Attribute>
  1101. </AttributeSet>
  1102. </Property>
  1103. <Property Name="FPGA.PersistentID" Type="Str">{F3BBD079-A8FD-4088-A394-70FC77986DE6}</Property>
  1104. </Item>
  1105. <Item Name="9375/DO9" Type="Elemental IO">
  1106. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  1107. <Attribute name="resource">
  1108. <Value>/crio_9375/DO9</Value>
  1109. </Attribute>
  1110. </AttributeSet>
  1111. </Property>
  1112. <Property Name="FPGA.PersistentID" Type="Str">{F875597B-30CB-4677-B12D-9CE75653AF8A}</Property>
  1113. </Item>
  1114. <Item Name="9375/DO10" Type="Elemental IO">
  1115. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  1116. <Attribute name="resource">
  1117. <Value>/crio_9375/DO10</Value>
  1118. </Attribute>
  1119. </AttributeSet>
  1120. </Property>
  1121. <Property Name="FPGA.PersistentID" Type="Str">{B9275241-0FB6-4916-942B-55AEEBD008C2}</Property>
  1122. </Item>
  1123. <Item Name="9375/DO11" Type="Elemental IO">
  1124. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  1125. <Attribute name="resource">
  1126. <Value>/crio_9375/DO11</Value>
  1127. </Attribute>
  1128. </AttributeSet>
  1129. </Property>
  1130. <Property Name="FPGA.PersistentID" Type="Str">{C9C39633-55E3-4E27-9D3F-F6CECB3DAFE1}</Property>
  1131. </Item>
  1132. <Item Name="9375/DO12" Type="Elemental IO">
  1133. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  1134. <Attribute name="resource">
  1135. <Value>/crio_9375/DO12</Value>
  1136. </Attribute>
  1137. </AttributeSet>
  1138. </Property>
  1139. <Property Name="FPGA.PersistentID" Type="Str">{2AF29747-C916-4C32-8F0B-512A3779B3E3}</Property>
  1140. </Item>
  1141. <Item Name="9375/DO13" Type="Elemental IO">
  1142. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  1143. <Attribute name="resource">
  1144. <Value>/crio_9375/DO13</Value>
  1145. </Attribute>
  1146. </AttributeSet>
  1147. </Property>
  1148. <Property Name="FPGA.PersistentID" Type="Str">{AAE8E01B-54C7-4983-8031-084B4090875C}</Property>
  1149. </Item>
  1150. <Item Name="9375/DO14" Type="Elemental IO">
  1151. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  1152. <Attribute name="resource">
  1153. <Value>/crio_9375/DO14</Value>
  1154. </Attribute>
  1155. </AttributeSet>
  1156. </Property>
  1157. <Property Name="FPGA.PersistentID" Type="Str">{EE85E93B-D59D-4476-AFDF-9C308780FDB1}</Property>
  1158. </Item>
  1159. <Item Name="9375/DO15" Type="Elemental IO">
  1160. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  1161. <Attribute name="resource">
  1162. <Value>/crio_9375/DO15</Value>
  1163. </Attribute>
  1164. </AttributeSet>
  1165. </Property>
  1166. <Property Name="FPGA.PersistentID" Type="Str">{3457EBE2-D6BC-415B-A26F-A1E4239FBD39}</Property>
  1167. </Item>
  1168. <Item Name="9375/DO7:0" Type="Elemental IO">
  1169. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  1170. <Attribute name="resource">
  1171. <Value>/crio_9375/DO7:0</Value>
  1172. </Attribute>
  1173. </AttributeSet>
  1174. </Property>
  1175. <Property Name="FPGA.PersistentID" Type="Str">{82BBE050-9EC7-4637-A499-B665CE6CACB1}</Property>
  1176. </Item>
  1177. <Item Name="9375/DO15:8" Type="Elemental IO">
  1178. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  1179. <Attribute name="resource">
  1180. <Value>/crio_9375/DO15:8</Value>
  1181. </Attribute>
  1182. </AttributeSet>
  1183. </Property>
  1184. <Property Name="FPGA.PersistentID" Type="Str">{E666497B-DC55-498A-B9B8-96991B502432}</Property>
  1185. </Item>
  1186. <Item Name="9375/DO15:0" Type="Elemental IO">
  1187. <Property Name="eioAttrBag" Type="Xml"><AttributeSet name="">
  1188. <Attribute name="resource">
  1189. <Value>/crio_9375/DO15:0</Value>
  1190. </Attribute>
  1191. </AttributeSet>
  1192. </Property>
  1193. <Property Name="FPGA.PersistentID" Type="Str">{BD6E6C17-2F66-497C-B01E-E88977CE2A05}</Property>
  1194. </Item>
  1195. </Item>
  1196. <Item Name="寄存器" Type="Folder">
  1197. <Item Name="通道" Type="Folder">
  1198. <Item Name="位移输入" Type="FPGA Memory Block">
  1199. <Property Name="FPGA.PersistentID" Type="Str">{87BF93E6-4A24-4AA4-9BD4-87FD6691200B}</Property>
  1200. <Property Name="fullEmulation" Type="Bool">false</Property>
  1201. <Property Name="Memory Latency" Type="UInt">2</Property>
  1202. <Property Name="Multiple Clock Domains" Type="Bool">false</Property>
  1203. <Property Name="NI.LV.FPGA.CompileConfigString" Type="Str">Actual Number of Elements=8;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2</Property>
  1204. <Property Name="NI.LV.FPGA.MEMORY.ActualNumberOfElements" Type="UInt">8</Property>
  1205. <Property Name="NI.LV.FPGA.MEMORY.DataWidth" Type="UInt">9</Property>
  1206. <Property Name="NI.LV.FPGA.MEMORY.DramIncludeByteEnables" Type="Bool">false</Property>
  1207. <Property Name="NI.LV.FPGA.MEMORY.DramMaxOutstandingRequests" Type="Int">64</Property>
  1208. <Property Name="NI.LV.FPGA.MEMORY.DramSelection" Type="Str">DramBank0</Property>
  1209. <Property Name="NI.LV.FPGA.MEMORY.Init" Type="Bool">false</Property>
  1210. <Property Name="NI.LV.FPGA.MEMORY.InitData" Type="Str"></Property>
  1211. <Property Name="NI.LV.FPGA.MEMORY.InitVIPath" Type="Str"></Property>
  1212. <Property Name="NI.LV.FPGA.MEMORY.InterfaceAArbitration" Type="UInt">1</Property>
  1213. <Property Name="NI.LV.FPGA.MEMORY.InterfaceBArbitration" Type="UInt">1</Property>
  1214. <Property Name="NI.LV.FPGA.MEMORY.InterfaceConfig" Type="UInt">0</Property>
  1215. <Property Name="NI.LV.FPGA.MEMORY.RequestedNumberOfElements" Type="UInt">8</Property>
  1216. <Property Name="NI.LV.FPGA.MEMORY.Type" Type="UInt">2</Property>
  1217. <Property Name="NI.LV.FPGA.ScriptConfigString" Type="Str">Actual Number of Elements=8;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2Persist Memory ValuesFALSE;</Property>
  1218. <Property Name="NI.LV.FPGA.Valid" Type="Bool">true</Property>
  1219. <Property Name="NI.LV.FPGA.Version" Type="Int">10</Property>
  1220. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000</Property>
  1221. </Item>
  1222. <Item Name="加速度输入" Type="FPGA Memory Block">
  1223. <Property Name="FPGA.PersistentID" Type="Str">{18681244-4ED7-4FEF-BF67-1E8D58DBDF0D}</Property>
  1224. <Property Name="fullEmulation" Type="Bool">false</Property>
  1225. <Property Name="Memory Latency" Type="UInt">2</Property>
  1226. <Property Name="Multiple Clock Domains" Type="Bool">false</Property>
  1227. <Property Name="NI.LV.FPGA.CompileConfigString" Type="Str">Actual Number of Elements=3;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A000000080001001A00000008FFFFFFFFFE0000000001001A000000080000000001FFFFFF00000001FFFFFFEF000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2</Property>
  1228. <Property Name="NI.LV.FPGA.MEMORY.ActualNumberOfElements" Type="UInt">3</Property>
  1229. <Property Name="NI.LV.FPGA.MEMORY.DataWidth" Type="UInt">9</Property>
  1230. <Property Name="NI.LV.FPGA.MEMORY.DramIncludeByteEnables" Type="Bool">false</Property>
  1231. <Property Name="NI.LV.FPGA.MEMORY.DramMaxOutstandingRequests" Type="Int">64</Property>
  1232. <Property Name="NI.LV.FPGA.MEMORY.DramSelection" Type="Str">DramBank0</Property>
  1233. <Property Name="NI.LV.FPGA.MEMORY.Init" Type="Bool">false</Property>
  1234. <Property Name="NI.LV.FPGA.MEMORY.InitData" Type="Str"></Property>
  1235. <Property Name="NI.LV.FPGA.MEMORY.InitVIPath" Type="Str"></Property>
  1236. <Property Name="NI.LV.FPGA.MEMORY.InterfaceAArbitration" Type="UInt">1</Property>
  1237. <Property Name="NI.LV.FPGA.MEMORY.InterfaceBArbitration" Type="UInt">1</Property>
  1238. <Property Name="NI.LV.FPGA.MEMORY.InterfaceConfig" Type="UInt">0</Property>
  1239. <Property Name="NI.LV.FPGA.MEMORY.RequestedNumberOfElements" Type="UInt">3</Property>
  1240. <Property Name="NI.LV.FPGA.MEMORY.Type" Type="UInt">2</Property>
  1241. <Property Name="NI.LV.FPGA.ScriptConfigString" Type="Str">Actual Number of Elements=3;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A000000080001001A00000008FFFFFFFFFE0000000001001A000000080000000001FFFFFF00000001FFFFFFEF000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2Persist Memory ValuesFALSE;</Property>
  1242. <Property Name="NI.LV.FPGA.Valid" Type="Bool">true</Property>
  1243. <Property Name="NI.LV.FPGA.Version" Type="Int">10</Property>
  1244. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F0351001A000000080001001A00000008FFFFFFFFFE0000000001001A000000080000000001FFFFFF00000001FFFFFFEF000000000000000100010000000000000000000000000000</Property>
  1245. </Item>
  1246. <Item Name="压差输入" Type="FPGA Memory Block">
  1247. <Property Name="FPGA.PersistentID" Type="Str">{0369D1FF-E63F-4EA7-B6F8-0F35CD1A66DB}</Property>
  1248. <Property Name="fullEmulation" Type="Bool">false</Property>
  1249. <Property Name="Memory Latency" Type="UInt">2</Property>
  1250. <Property Name="Multiple Clock Domains" Type="Bool">false</Property>
  1251. <Property Name="NI.LV.FPGA.CompileConfigString" Type="Str">Actual Number of Elements=8;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A000000080001000100000008FFFFFFFFFFFFFFFF00000019000000070000000001FFFFFF00000001FFFFFFEF000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2</Property>
  1252. <Property Name="NI.LV.FPGA.MEMORY.ActualNumberOfElements" Type="UInt">8</Property>
  1253. <Property Name="NI.LV.FPGA.MEMORY.DataWidth" Type="UInt">9</Property>
  1254. <Property Name="NI.LV.FPGA.MEMORY.DramIncludeByteEnables" Type="Bool">false</Property>
  1255. <Property Name="NI.LV.FPGA.MEMORY.DramMaxOutstandingRequests" Type="Int">64</Property>
  1256. <Property Name="NI.LV.FPGA.MEMORY.DramSelection" Type="Str">DramBank0</Property>
  1257. <Property Name="NI.LV.FPGA.MEMORY.Init" Type="Bool">false</Property>
  1258. <Property Name="NI.LV.FPGA.MEMORY.InitData" Type="Str"></Property>
  1259. <Property Name="NI.LV.FPGA.MEMORY.InitVIPath" Type="Str"></Property>
  1260. <Property Name="NI.LV.FPGA.MEMORY.InterfaceAArbitration" Type="UInt">1</Property>
  1261. <Property Name="NI.LV.FPGA.MEMORY.InterfaceBArbitration" Type="UInt">1</Property>
  1262. <Property Name="NI.LV.FPGA.MEMORY.InterfaceConfig" Type="UInt">0</Property>
  1263. <Property Name="NI.LV.FPGA.MEMORY.RequestedNumberOfElements" Type="UInt">8</Property>
  1264. <Property Name="NI.LV.FPGA.MEMORY.Type" Type="UInt">2</Property>
  1265. <Property Name="NI.LV.FPGA.ScriptConfigString" Type="Str">Actual Number of Elements=8;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A000000080001000100000008FFFFFFFFFFFFFFFF00000019000000070000000001FFFFFF00000001FFFFFFEF000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2Persist Memory ValuesFALSE;</Property>
  1266. <Property Name="NI.LV.FPGA.Valid" Type="Bool">true</Property>
  1267. <Property Name="NI.LV.FPGA.Version" Type="Int">10</Property>
  1268. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F0351001A000000080001000100000008FFFFFFFFFFFFFFFF00000019000000070000000001FFFFFF00000001FFFFFFEF000000000000000100010000000000000000000000000000</Property>
  1269. </Item>
  1270. <Item Name="支撑压力输入" Type="FPGA Memory Block">
  1271. <Property Name="FPGA.PersistentID" Type="Str">{7AE82845-5169-414D-BE08-396AC9693728}</Property>
  1272. <Property Name="fullEmulation" Type="Bool">false</Property>
  1273. <Property Name="Memory Latency" Type="UInt">2</Property>
  1274. <Property Name="Multiple Clock Domains" Type="Bool">false</Property>
  1275. <Property Name="NI.LV.FPGA.CompileConfigString" Type="Str">Actual Number of Elements=4;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A000000080001000100000008FFFFFFFFFFFFFFFF00000019000000070000000001FFFFFF00000001FFFFFFEF000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2</Property>
  1276. <Property Name="NI.LV.FPGA.MEMORY.ActualNumberOfElements" Type="UInt">4</Property>
  1277. <Property Name="NI.LV.FPGA.MEMORY.DataWidth" Type="UInt">9</Property>
  1278. <Property Name="NI.LV.FPGA.MEMORY.DramIncludeByteEnables" Type="Bool">false</Property>
  1279. <Property Name="NI.LV.FPGA.MEMORY.DramMaxOutstandingRequests" Type="Int">64</Property>
  1280. <Property Name="NI.LV.FPGA.MEMORY.DramSelection" Type="Str">DramBank0</Property>
  1281. <Property Name="NI.LV.FPGA.MEMORY.Init" Type="Bool">false</Property>
  1282. <Property Name="NI.LV.FPGA.MEMORY.InitData" Type="Str"></Property>
  1283. <Property Name="NI.LV.FPGA.MEMORY.InitVIPath" Type="Str"></Property>
  1284. <Property Name="NI.LV.FPGA.MEMORY.InterfaceAArbitration" Type="UInt">1</Property>
  1285. <Property Name="NI.LV.FPGA.MEMORY.InterfaceBArbitration" Type="UInt">1</Property>
  1286. <Property Name="NI.LV.FPGA.MEMORY.InterfaceConfig" Type="UInt">0</Property>
  1287. <Property Name="NI.LV.FPGA.MEMORY.RequestedNumberOfElements" Type="UInt">4</Property>
  1288. <Property Name="NI.LV.FPGA.MEMORY.Type" Type="UInt">2</Property>
  1289. <Property Name="NI.LV.FPGA.ScriptConfigString" Type="Str">Actual Number of Elements=4;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A000000080001000100000008FFFFFFFFFFFFFFFF00000019000000070000000001FFFFFF00000001FFFFFFEF000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2Persist Memory ValuesFALSE;</Property>
  1290. <Property Name="NI.LV.FPGA.Valid" Type="Bool">true</Property>
  1291. <Property Name="NI.LV.FPGA.Version" Type="Int">10</Property>
  1292. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F0351001A000000080001000100000008FFFFFFFFFFFFFFFF00000019000000070000000001FFFFFF00000001FFFFFFEF000000000000000100010000000000000000000000000000</Property>
  1293. </Item>
  1294. <Item Name="平衡缸" Type="FPGA Memory Block">
  1295. <Property Name="FPGA.PersistentID" Type="Str">{EBE989F7-5D10-4A55-8B20-503E0AEA0C41}</Property>
  1296. <Property Name="fullEmulation" Type="Bool">false</Property>
  1297. <Property Name="Memory Latency" Type="UInt">2</Property>
  1298. <Property Name="Multiple Clock Domains" Type="Bool">false</Property>
  1299. <Property Name="NI.LV.FPGA.CompileConfigString" Type="Str">Actual Number of Elements=4;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F03510014000000050001000100000005FFFFFFFFFFFFFFFF0000001300000004000000000007FFFF00000001FFFFFFF2000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2</Property>
  1300. <Property Name="NI.LV.FPGA.MEMORY.ActualNumberOfElements" Type="UInt">4</Property>
  1301. <Property Name="NI.LV.FPGA.MEMORY.DataWidth" Type="UInt">9</Property>
  1302. <Property Name="NI.LV.FPGA.MEMORY.DramIncludeByteEnables" Type="Bool">false</Property>
  1303. <Property Name="NI.LV.FPGA.MEMORY.DramMaxOutstandingRequests" Type="Int">64</Property>
  1304. <Property Name="NI.LV.FPGA.MEMORY.DramSelection" Type="Str">DramBank0</Property>
  1305. <Property Name="NI.LV.FPGA.MEMORY.Init" Type="Bool">false</Property>
  1306. <Property Name="NI.LV.FPGA.MEMORY.InitData" Type="Str"></Property>
  1307. <Property Name="NI.LV.FPGA.MEMORY.InitVIPath" Type="Str"></Property>
  1308. <Property Name="NI.LV.FPGA.MEMORY.InterfaceAArbitration" Type="UInt">1</Property>
  1309. <Property Name="NI.LV.FPGA.MEMORY.InterfaceBArbitration" Type="UInt">1</Property>
  1310. <Property Name="NI.LV.FPGA.MEMORY.InterfaceConfig" Type="UInt">0</Property>
  1311. <Property Name="NI.LV.FPGA.MEMORY.RequestedNumberOfElements" Type="UInt">4</Property>
  1312. <Property Name="NI.LV.FPGA.MEMORY.Type" Type="UInt">2</Property>
  1313. <Property Name="NI.LV.FPGA.ScriptConfigString" Type="Str">Actual Number of Elements=4;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F03510014000000050001000100000005FFFFFFFFFFFFFFFF0000001300000004000000000007FFFF00000001FFFFFFF2000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2Persist Memory ValuesFALSE;</Property>
  1314. <Property Name="NI.LV.FPGA.Valid" Type="Bool">true</Property>
  1315. <Property Name="NI.LV.FPGA.Version" Type="Int">10</Property>
  1316. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F03510014000000050001000100000005FFFFFFFFFFFFFFFF0000001300000004000000000007FFFF00000001FFFFFFF2000000000000000100010000000000000000000000000000</Property>
  1317. </Item>
  1318. <Item Name="水平缸" Type="FPGA Memory Block">
  1319. <Property Name="FPGA.PersistentID" Type="Str">{A50B7956-938A-447C-B4B3-11BD34FE711A}</Property>
  1320. <Property Name="fullEmulation" Type="Bool">false</Property>
  1321. <Property Name="Memory Latency" Type="UInt">2</Property>
  1322. <Property Name="Multiple Clock Domains" Type="Bool">false</Property>
  1323. <Property Name="NI.LV.FPGA.CompileConfigString" Type="Str">Actual Number of Elements=4;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F03510014000000050001000100000005FFFFFFFFFFFFFFFF0000001300000004000000000007FFFF00000001FFFFFFF2000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2</Property>
  1324. <Property Name="NI.LV.FPGA.MEMORY.ActualNumberOfElements" Type="UInt">4</Property>
  1325. <Property Name="NI.LV.FPGA.MEMORY.DataWidth" Type="UInt">9</Property>
  1326. <Property Name="NI.LV.FPGA.MEMORY.DramIncludeByteEnables" Type="Bool">false</Property>
  1327. <Property Name="NI.LV.FPGA.MEMORY.DramMaxOutstandingRequests" Type="Int">64</Property>
  1328. <Property Name="NI.LV.FPGA.MEMORY.DramSelection" Type="Str">DramBank0</Property>
  1329. <Property Name="NI.LV.FPGA.MEMORY.Init" Type="Bool">false</Property>
  1330. <Property Name="NI.LV.FPGA.MEMORY.InitData" Type="Str"></Property>
  1331. <Property Name="NI.LV.FPGA.MEMORY.InitVIPath" Type="Str"></Property>
  1332. <Property Name="NI.LV.FPGA.MEMORY.InterfaceAArbitration" Type="UInt">1</Property>
  1333. <Property Name="NI.LV.FPGA.MEMORY.InterfaceBArbitration" Type="UInt">1</Property>
  1334. <Property Name="NI.LV.FPGA.MEMORY.InterfaceConfig" Type="UInt">0</Property>
  1335. <Property Name="NI.LV.FPGA.MEMORY.RequestedNumberOfElements" Type="UInt">4</Property>
  1336. <Property Name="NI.LV.FPGA.MEMORY.Type" Type="UInt">2</Property>
  1337. <Property Name="NI.LV.FPGA.ScriptConfigString" Type="Str">Actual Number of Elements=4;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F03510014000000050001000100000005FFFFFFFFFFFFFFFF0000001300000004000000000007FFFF00000001FFFFFFF2000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2Persist Memory ValuesFALSE;</Property>
  1338. <Property Name="NI.LV.FPGA.Valid" Type="Bool">true</Property>
  1339. <Property Name="NI.LV.FPGA.Version" Type="Int">10</Property>
  1340. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F03510014000000050001000100000005FFFFFFFFFFFFFFFF0000001300000004000000000007FFFF00000001FFFFFFF2000000000000000100010000000000000000000000000000</Property>
  1341. </Item>
  1342. <Item Name="垂直缸" Type="FPGA Memory Block">
  1343. <Property Name="FPGA.PersistentID" Type="Str">{BE3650EC-53BB-4F1E-BD1C-C12D60006FD2}</Property>
  1344. <Property Name="fullEmulation" Type="Bool">false</Property>
  1345. <Property Name="Memory Latency" Type="UInt">2</Property>
  1346. <Property Name="Multiple Clock Domains" Type="Bool">false</Property>
  1347. <Property Name="NI.LV.FPGA.CompileConfigString" Type="Str">Actual Number of Elements=4;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F03510014000000050001000100000005FFFFFFFFFFFFFFFF0000001300000004000000000007FFFF00000001FFFFFFF2000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2</Property>
  1348. <Property Name="NI.LV.FPGA.MEMORY.ActualNumberOfElements" Type="UInt">4</Property>
  1349. <Property Name="NI.LV.FPGA.MEMORY.DataWidth" Type="UInt">9</Property>
  1350. <Property Name="NI.LV.FPGA.MEMORY.DramIncludeByteEnables" Type="Bool">false</Property>
  1351. <Property Name="NI.LV.FPGA.MEMORY.DramMaxOutstandingRequests" Type="Int">64</Property>
  1352. <Property Name="NI.LV.FPGA.MEMORY.DramSelection" Type="Str">DramBank0</Property>
  1353. <Property Name="NI.LV.FPGA.MEMORY.Init" Type="Bool">false</Property>
  1354. <Property Name="NI.LV.FPGA.MEMORY.InitData" Type="Str"></Property>
  1355. <Property Name="NI.LV.FPGA.MEMORY.InitVIPath" Type="Str"></Property>
  1356. <Property Name="NI.LV.FPGA.MEMORY.InterfaceAArbitration" Type="UInt">1</Property>
  1357. <Property Name="NI.LV.FPGA.MEMORY.InterfaceBArbitration" Type="UInt">1</Property>
  1358. <Property Name="NI.LV.FPGA.MEMORY.InterfaceConfig" Type="UInt">0</Property>
  1359. <Property Name="NI.LV.FPGA.MEMORY.RequestedNumberOfElements" Type="UInt">4</Property>
  1360. <Property Name="NI.LV.FPGA.MEMORY.Type" Type="UInt">2</Property>
  1361. <Property Name="NI.LV.FPGA.ScriptConfigString" Type="Str">Actual Number of Elements=4;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F03510014000000050001000100000005FFFFFFFFFFFFFFFF0000001300000004000000000007FFFF00000001FFFFFFF2000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2Persist Memory ValuesFALSE;</Property>
  1362. <Property Name="NI.LV.FPGA.Valid" Type="Bool">true</Property>
  1363. <Property Name="NI.LV.FPGA.Version" Type="Int">10</Property>
  1364. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F03510014000000050001000100000005FFFFFFFFFFFFFFFF0000001300000004000000000007FFFF00000001FFFFFFF2000000000000000100010000000000000000000000000000</Property>
  1365. </Item>
  1366. <Item Name="外部输入" Type="FPGA Memory Block">
  1367. <Property Name="FPGA.PersistentID" Type="Str">{F24D99A9-5B77-486A-9D58-F89F686ED848}</Property>
  1368. <Property Name="fullEmulation" Type="Bool">false</Property>
  1369. <Property Name="Memory Latency" Type="UInt">2</Property>
  1370. <Property Name="Multiple Clock Domains" Type="Bool">false</Property>
  1371. <Property Name="NI.LV.FPGA.CompileConfigString" Type="Str">Actual Number of Elements=3;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A000100010000000AFFFFFFFFFFFFFFFF00000019000000090000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2</Property>
  1372. <Property Name="NI.LV.FPGA.MEMORY.ActualNumberOfElements" Type="UInt">3</Property>
  1373. <Property Name="NI.LV.FPGA.MEMORY.DataWidth" Type="UInt">9</Property>
  1374. <Property Name="NI.LV.FPGA.MEMORY.DramIncludeByteEnables" Type="Bool">false</Property>
  1375. <Property Name="NI.LV.FPGA.MEMORY.DramMaxOutstandingRequests" Type="Int">64</Property>
  1376. <Property Name="NI.LV.FPGA.MEMORY.DramSelection" Type="Str">DramBank0</Property>
  1377. <Property Name="NI.LV.FPGA.MEMORY.Init" Type="Bool">false</Property>
  1378. <Property Name="NI.LV.FPGA.MEMORY.InitData" Type="Str"></Property>
  1379. <Property Name="NI.LV.FPGA.MEMORY.InitVIPath" Type="Str"></Property>
  1380. <Property Name="NI.LV.FPGA.MEMORY.InterfaceAArbitration" Type="UInt">1</Property>
  1381. <Property Name="NI.LV.FPGA.MEMORY.InterfaceBArbitration" Type="UInt">1</Property>
  1382. <Property Name="NI.LV.FPGA.MEMORY.InterfaceConfig" Type="UInt">0</Property>
  1383. <Property Name="NI.LV.FPGA.MEMORY.RequestedNumberOfElements" Type="UInt">3</Property>
  1384. <Property Name="NI.LV.FPGA.MEMORY.Type" Type="UInt">2</Property>
  1385. <Property Name="NI.LV.FPGA.ScriptConfigString" Type="Str">Actual Number of Elements=3;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A000100010000000AFFFFFFFFFFFFFFFF00000019000000090000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2Persist Memory ValuesFALSE;</Property>
  1386. <Property Name="NI.LV.FPGA.Valid" Type="Bool">true</Property>
  1387. <Property Name="NI.LV.FPGA.Version" Type="Int">10</Property>
  1388. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F0351001A0000000A000100010000000AFFFFFFFFFFFFFFFF00000019000000090000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000</Property>
  1389. </Item>
  1390. <Item Name="位移灵敏度" Type="FPGA Memory Block">
  1391. <Property Name="FPGA.PersistentID" Type="Str">{4A382024-325F-45F0-BAF8-974BC9F00124}</Property>
  1392. <Property Name="fullEmulation" Type="Bool">false</Property>
  1393. <Property Name="Memory Latency" Type="UInt">2</Property>
  1394. <Property Name="Multiple Clock Domains" Type="Bool">false</Property>
  1395. <Property Name="NI.LV.FPGA.CompileConfigString" Type="Str">Actual Number of Elements=8;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0311001A0000000A000000010000000100000000000000000000001A0000000A0000000003FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2</Property>
  1396. <Property Name="NI.LV.FPGA.MEMORY.ActualNumberOfElements" Type="UInt">8</Property>
  1397. <Property Name="NI.LV.FPGA.MEMORY.DataWidth" Type="UInt">9</Property>
  1398. <Property Name="NI.LV.FPGA.MEMORY.DramIncludeByteEnables" Type="Bool">false</Property>
  1399. <Property Name="NI.LV.FPGA.MEMORY.DramMaxOutstandingRequests" Type="Int">64</Property>
  1400. <Property Name="NI.LV.FPGA.MEMORY.DramSelection" Type="Str">DramBank0</Property>
  1401. <Property Name="NI.LV.FPGA.MEMORY.Init" Type="Bool">false</Property>
  1402. <Property Name="NI.LV.FPGA.MEMORY.InitData" Type="Str"></Property>
  1403. <Property Name="NI.LV.FPGA.MEMORY.InitVIPath" Type="Str"></Property>
  1404. <Property Name="NI.LV.FPGA.MEMORY.InterfaceAArbitration" Type="UInt">1</Property>
  1405. <Property Name="NI.LV.FPGA.MEMORY.InterfaceBArbitration" Type="UInt">1</Property>
  1406. <Property Name="NI.LV.FPGA.MEMORY.InterfaceConfig" Type="UInt">0</Property>
  1407. <Property Name="NI.LV.FPGA.MEMORY.RequestedNumberOfElements" Type="UInt">8</Property>
  1408. <Property Name="NI.LV.FPGA.MEMORY.Type" Type="UInt">2</Property>
  1409. <Property Name="NI.LV.FPGA.ScriptConfigString" Type="Str">Actual Number of Elements=8;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0311001A0000000A000000010000000100000000000000000000001A0000000A0000000003FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2Persist Memory ValuesFALSE;</Property>
  1410. <Property Name="NI.LV.FPGA.Valid" Type="Bool">true</Property>
  1411. <Property Name="NI.LV.FPGA.Version" Type="Int">10</Property>
  1412. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F0311001A0000000A000000010000000100000000000000000000001A0000000A0000000003FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000</Property>
  1413. </Item>
  1414. </Item>
  1415. <Item Name="伺服控制" Type="Folder">
  1416. <Item Name="RTStatus" Type="FPGA Register">
  1417. <Property Name="Arbitration For Write" Type="UInt">1</Property>
  1418. <Property Name="Compile Config String" Type="Str">"DataType=1000800000000001007F4015000804496E69741057616974696E67526973655461626C6509526973655461626C651757616974696E675369676E616C47656E65726174696F6E105369676E616C47656E65726174696F6E0F576176655265706C69636174696F6E0944726F705461626C650A5A65726F4368616E67650008525453746174757300000100000000000000;InitDataHash=;Name=RTStatus;WriteArb=1"</Property>
  1419. <Property Name="Data Type" Type="UInt">10</Property>
  1420. <Property Name="FPGA.PersistentID" Type="Str">{8E384769-BE13-4452-AAB1-6FD039522B53}</Property>
  1421. <Property Name="Initial Data" Type="Str"></Property>
  1422. <Property Name="Initialized" Type="Bool">false</Property>
  1423. <Property Name="InitVIPath" Type="Str"></Property>
  1424. <Property Name="Type Descriptor" Type="Str">1000800000000001007F4015000804496E69741057616974696E67526973655461626C6509526973655461626C651757616974696E675369676E616C47656E65726174696F6E105369676E616C47656E65726174696F6E0F576176655265706C69636174696F6E0944726F705461626C650A5A65726F4368616E67650008525453746174757300000100000000000000</Property>
  1425. <Property Name="Valid" Type="Bool">true</Property>
  1426. <Property Name="Version" Type="Int">1</Property>
  1427. </Item>
  1428. <Item Name="台工作零位" Type="FPGA Memory Block">
  1429. <Property Name="FPGA.PersistentID" Type="Str">{8ACBA7A2-1C73-4481-9813-DCA19E0E61BC}</Property>
  1430. <Property Name="fullEmulation" Type="Bool">false</Property>
  1431. <Property Name="Memory Latency" Type="UInt">2</Property>
  1432. <Property Name="Multiple Clock Domains" Type="Bool">false</Property>
  1433. <Property Name="NI.LV.FPGA.CompileConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2</Property>
  1434. <Property Name="NI.LV.FPGA.MEMORY.ActualNumberOfElements" Type="UInt">6</Property>
  1435. <Property Name="NI.LV.FPGA.MEMORY.DataWidth" Type="UInt">9</Property>
  1436. <Property Name="NI.LV.FPGA.MEMORY.DramIncludeByteEnables" Type="Bool">false</Property>
  1437. <Property Name="NI.LV.FPGA.MEMORY.DramMaxOutstandingRequests" Type="Int">64</Property>
  1438. <Property Name="NI.LV.FPGA.MEMORY.DramSelection" Type="Str">DramBank0</Property>
  1439. <Property Name="NI.LV.FPGA.MEMORY.Init" Type="Bool">false</Property>
  1440. <Property Name="NI.LV.FPGA.MEMORY.InitData" Type="Str"></Property>
  1441. <Property Name="NI.LV.FPGA.MEMORY.InitVIPath" Type="Str"></Property>
  1442. <Property Name="NI.LV.FPGA.MEMORY.InterfaceAArbitration" Type="UInt">1</Property>
  1443. <Property Name="NI.LV.FPGA.MEMORY.InterfaceBArbitration" Type="UInt">1</Property>
  1444. <Property Name="NI.LV.FPGA.MEMORY.InterfaceConfig" Type="UInt">0</Property>
  1445. <Property Name="NI.LV.FPGA.MEMORY.RequestedNumberOfElements" Type="UInt">6</Property>
  1446. <Property Name="NI.LV.FPGA.MEMORY.Type" Type="UInt">2</Property>
  1447. <Property Name="NI.LV.FPGA.ScriptConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2Persist Memory ValuesFALSE;</Property>
  1448. <Property Name="NI.LV.FPGA.Valid" Type="Bool">true</Property>
  1449. <Property Name="NI.LV.FPGA.Version" Type="Int">10</Property>
  1450. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000</Property>
  1451. </Item>
  1452. <Item Name="零位差" Type="FPGA Memory Block">
  1453. <Property Name="FPGA.PersistentID" Type="Str">{390BCE89-FBA6-419F-8C23-6D96C2BA7860}</Property>
  1454. <Property Name="fullEmulation" Type="Bool">false</Property>
  1455. <Property Name="Memory Latency" Type="UInt">2</Property>
  1456. <Property Name="Multiple Clock Domains" Type="Bool">false</Property>
  1457. <Property Name="NI.LV.FPGA.CompileConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2</Property>
  1458. <Property Name="NI.LV.FPGA.MEMORY.ActualNumberOfElements" Type="UInt">6</Property>
  1459. <Property Name="NI.LV.FPGA.MEMORY.DataWidth" Type="UInt">9</Property>
  1460. <Property Name="NI.LV.FPGA.MEMORY.DramIncludeByteEnables" Type="Bool">false</Property>
  1461. <Property Name="NI.LV.FPGA.MEMORY.DramMaxOutstandingRequests" Type="Int">64</Property>
  1462. <Property Name="NI.LV.FPGA.MEMORY.DramSelection" Type="Str">DramBank0</Property>
  1463. <Property Name="NI.LV.FPGA.MEMORY.Init" Type="Bool">false</Property>
  1464. <Property Name="NI.LV.FPGA.MEMORY.InitData" Type="Str"></Property>
  1465. <Property Name="NI.LV.FPGA.MEMORY.InitVIPath" Type="Str"></Property>
  1466. <Property Name="NI.LV.FPGA.MEMORY.InterfaceAArbitration" Type="UInt">1</Property>
  1467. <Property Name="NI.LV.FPGA.MEMORY.InterfaceBArbitration" Type="UInt">1</Property>
  1468. <Property Name="NI.LV.FPGA.MEMORY.InterfaceConfig" Type="UInt">0</Property>
  1469. <Property Name="NI.LV.FPGA.MEMORY.RequestedNumberOfElements" Type="UInt">6</Property>
  1470. <Property Name="NI.LV.FPGA.MEMORY.Type" Type="UInt">2</Property>
  1471. <Property Name="NI.LV.FPGA.ScriptConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2Persist Memory ValuesFALSE;</Property>
  1472. <Property Name="NI.LV.FPGA.Valid" Type="Bool">true</Property>
  1473. <Property Name="NI.LV.FPGA.Version" Type="Int">10</Property>
  1474. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000</Property>
  1475. </Item>
  1476. <Item Name="上时刻零位" Type="FPGA Memory Block">
  1477. <Property Name="FPGA.PersistentID" Type="Str">{081160F7-9B2E-49FC-A8F4-18B7AC4F4CEE}</Property>
  1478. <Property Name="fullEmulation" Type="Bool">false</Property>
  1479. <Property Name="Memory Latency" Type="UInt">2</Property>
  1480. <Property Name="Multiple Clock Domains" Type="Bool">false</Property>
  1481. <Property Name="NI.LV.FPGA.CompileConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A000100010000000AFFFFFFFFFFFFFFFF00000019000000090000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2</Property>
  1482. <Property Name="NI.LV.FPGA.MEMORY.ActualNumberOfElements" Type="UInt">6</Property>
  1483. <Property Name="NI.LV.FPGA.MEMORY.DataWidth" Type="UInt">9</Property>
  1484. <Property Name="NI.LV.FPGA.MEMORY.DramIncludeByteEnables" Type="Bool">false</Property>
  1485. <Property Name="NI.LV.FPGA.MEMORY.DramMaxOutstandingRequests" Type="Int">64</Property>
  1486. <Property Name="NI.LV.FPGA.MEMORY.DramSelection" Type="Str">DramBank0</Property>
  1487. <Property Name="NI.LV.FPGA.MEMORY.Init" Type="Bool">false</Property>
  1488. <Property Name="NI.LV.FPGA.MEMORY.InitData" Type="Str"></Property>
  1489. <Property Name="NI.LV.FPGA.MEMORY.InitVIPath" Type="Str"></Property>
  1490. <Property Name="NI.LV.FPGA.MEMORY.InterfaceAArbitration" Type="UInt">1</Property>
  1491. <Property Name="NI.LV.FPGA.MEMORY.InterfaceBArbitration" Type="UInt">1</Property>
  1492. <Property Name="NI.LV.FPGA.MEMORY.InterfaceConfig" Type="UInt">0</Property>
  1493. <Property Name="NI.LV.FPGA.MEMORY.RequestedNumberOfElements" Type="UInt">6</Property>
  1494. <Property Name="NI.LV.FPGA.MEMORY.Type" Type="UInt">2</Property>
  1495. <Property Name="NI.LV.FPGA.ScriptConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A000100010000000AFFFFFFFFFFFFFFFF00000019000000090000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2Persist Memory ValuesFALSE;</Property>
  1496. <Property Name="NI.LV.FPGA.Valid" Type="Bool">true</Property>
  1497. <Property Name="NI.LV.FPGA.Version" Type="Int">10</Property>
  1498. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F0351001A0000000A000100010000000AFFFFFFFFFFFFFFFF00000019000000090000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000</Property>
  1499. </Item>
  1500. <Item Name="台初始位置" Type="FPGA Memory Block">
  1501. <Property Name="FPGA.PersistentID" Type="Str">{222980EC-C7D1-4585-8816-816E44A30618}</Property>
  1502. <Property Name="fullEmulation" Type="Bool">false</Property>
  1503. <Property Name="Memory Latency" Type="UInt">2</Property>
  1504. <Property Name="Multiple Clock Domains" Type="Bool">false</Property>
  1505. <Property Name="NI.LV.FPGA.CompileConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2</Property>
  1506. <Property Name="NI.LV.FPGA.MEMORY.ActualNumberOfElements" Type="UInt">6</Property>
  1507. <Property Name="NI.LV.FPGA.MEMORY.DataWidth" Type="UInt">9</Property>
  1508. <Property Name="NI.LV.FPGA.MEMORY.DramIncludeByteEnables" Type="Bool">false</Property>
  1509. <Property Name="NI.LV.FPGA.MEMORY.DramMaxOutstandingRequests" Type="Int">64</Property>
  1510. <Property Name="NI.LV.FPGA.MEMORY.DramSelection" Type="Str">DramBank0</Property>
  1511. <Property Name="NI.LV.FPGA.MEMORY.Init" Type="Bool">false</Property>
  1512. <Property Name="NI.LV.FPGA.MEMORY.InitData" Type="Str"></Property>
  1513. <Property Name="NI.LV.FPGA.MEMORY.InitVIPath" Type="Str"></Property>
  1514. <Property Name="NI.LV.FPGA.MEMORY.InterfaceAArbitration" Type="UInt">1</Property>
  1515. <Property Name="NI.LV.FPGA.MEMORY.InterfaceBArbitration" Type="UInt">1</Property>
  1516. <Property Name="NI.LV.FPGA.MEMORY.InterfaceConfig" Type="UInt">0</Property>
  1517. <Property Name="NI.LV.FPGA.MEMORY.RequestedNumberOfElements" Type="UInt">6</Property>
  1518. <Property Name="NI.LV.FPGA.MEMORY.Type" Type="UInt">2</Property>
  1519. <Property Name="NI.LV.FPGA.ScriptConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2Persist Memory ValuesFALSE;</Property>
  1520. <Property Name="NI.LV.FPGA.Valid" Type="Bool">true</Property>
  1521. <Property Name="NI.LV.FPGA.Version" Type="Int">10</Property>
  1522. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000</Property>
  1523. </Item>
  1524. <Item Name="台实时位置" Type="FPGA Memory Block">
  1525. <Property Name="FPGA.PersistentID" Type="Str">{74C4102A-3B22-4E94-921D-C320FEEE889E}</Property>
  1526. <Property Name="fullEmulation" Type="Bool">false</Property>
  1527. <Property Name="Memory Latency" Type="UInt">2</Property>
  1528. <Property Name="Multiple Clock Domains" Type="Bool">false</Property>
  1529. <Property Name="NI.LV.FPGA.CompileConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2</Property>
  1530. <Property Name="NI.LV.FPGA.MEMORY.ActualNumberOfElements" Type="UInt">6</Property>
  1531. <Property Name="NI.LV.FPGA.MEMORY.DataWidth" Type="UInt">9</Property>
  1532. <Property Name="NI.LV.FPGA.MEMORY.DramIncludeByteEnables" Type="Bool">false</Property>
  1533. <Property Name="NI.LV.FPGA.MEMORY.DramMaxOutstandingRequests" Type="Int">64</Property>
  1534. <Property Name="NI.LV.FPGA.MEMORY.DramSelection" Type="Str">DramBank0</Property>
  1535. <Property Name="NI.LV.FPGA.MEMORY.Init" Type="Bool">false</Property>
  1536. <Property Name="NI.LV.FPGA.MEMORY.InitData" Type="Str"></Property>
  1537. <Property Name="NI.LV.FPGA.MEMORY.InitVIPath" Type="Str"></Property>
  1538. <Property Name="NI.LV.FPGA.MEMORY.InterfaceAArbitration" Type="UInt">1</Property>
  1539. <Property Name="NI.LV.FPGA.MEMORY.InterfaceBArbitration" Type="UInt">1</Property>
  1540. <Property Name="NI.LV.FPGA.MEMORY.InterfaceConfig" Type="UInt">0</Property>
  1541. <Property Name="NI.LV.FPGA.MEMORY.RequestedNumberOfElements" Type="UInt">6</Property>
  1542. <Property Name="NI.LV.FPGA.MEMORY.Type" Type="UInt">2</Property>
  1543. <Property Name="NI.LV.FPGA.ScriptConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2Persist Memory ValuesFALSE;</Property>
  1544. <Property Name="NI.LV.FPGA.Valid" Type="Bool">true</Property>
  1545. <Property Name="NI.LV.FPGA.Version" Type="Int">10</Property>
  1546. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000</Property>
  1547. </Item>
  1548. <Item Name="台给定工作位" Type="FPGA Memory Block">
  1549. <Property Name="FPGA.PersistentID" Type="Str">{064A8809-E826-4237-9DBB-5BEFA14ACEE8}</Property>
  1550. <Property Name="fullEmulation" Type="Bool">false</Property>
  1551. <Property Name="Memory Latency" Type="UInt">2</Property>
  1552. <Property Name="Multiple Clock Domains" Type="Bool">false</Property>
  1553. <Property Name="NI.LV.FPGA.CompileConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2</Property>
  1554. <Property Name="NI.LV.FPGA.MEMORY.ActualNumberOfElements" Type="UInt">6</Property>
  1555. <Property Name="NI.LV.FPGA.MEMORY.DataWidth" Type="UInt">9</Property>
  1556. <Property Name="NI.LV.FPGA.MEMORY.DramIncludeByteEnables" Type="Bool">false</Property>
  1557. <Property Name="NI.LV.FPGA.MEMORY.DramMaxOutstandingRequests" Type="Int">64</Property>
  1558. <Property Name="NI.LV.FPGA.MEMORY.DramSelection" Type="Str">DramBank0</Property>
  1559. <Property Name="NI.LV.FPGA.MEMORY.Init" Type="Bool">false</Property>
  1560. <Property Name="NI.LV.FPGA.MEMORY.InitData" Type="Str"></Property>
  1561. <Property Name="NI.LV.FPGA.MEMORY.InitVIPath" Type="Str"></Property>
  1562. <Property Name="NI.LV.FPGA.MEMORY.InterfaceAArbitration" Type="UInt">1</Property>
  1563. <Property Name="NI.LV.FPGA.MEMORY.InterfaceBArbitration" Type="UInt">1</Property>
  1564. <Property Name="NI.LV.FPGA.MEMORY.InterfaceConfig" Type="UInt">0</Property>
  1565. <Property Name="NI.LV.FPGA.MEMORY.RequestedNumberOfElements" Type="UInt">6</Property>
  1566. <Property Name="NI.LV.FPGA.MEMORY.Type" Type="UInt">2</Property>
  1567. <Property Name="NI.LV.FPGA.ScriptConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2Persist Memory ValuesFALSE;</Property>
  1568. <Property Name="NI.LV.FPGA.Valid" Type="Bool">true</Property>
  1569. <Property Name="NI.LV.FPGA.Version" Type="Int">10</Property>
  1570. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000</Property>
  1571. </Item>
  1572. <Item Name="信号发生上次相位" Type="FPGA Memory Block">
  1573. <Property Name="FPGA.PersistentID" Type="Str">{0C67F601-EE96-4E42-8605-0440FF49BB64}</Property>
  1574. <Property Name="fullEmulation" Type="Bool">false</Property>
  1575. <Property Name="Memory Latency" Type="UInt">2</Property>
  1576. <Property Name="Multiple Clock Domains" Type="Bool">false</Property>
  1577. <Property Name="NI.LV.FPGA.CompileConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=2;WriteArbs=2;Implementation=2;DataType=1000800000000001003C005F03110018000000020000001800000002000000000000000000000018000000020000000000FFFFFF00000001FFFFFFEB000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2</Property>
  1578. <Property Name="NI.LV.FPGA.MEMORY.ActualNumberOfElements" Type="UInt">6</Property>
  1579. <Property Name="NI.LV.FPGA.MEMORY.DataWidth" Type="UInt">9</Property>
  1580. <Property Name="NI.LV.FPGA.MEMORY.DramIncludeByteEnables" Type="Bool">false</Property>
  1581. <Property Name="NI.LV.FPGA.MEMORY.DramMaxOutstandingRequests" Type="Int">64</Property>
  1582. <Property Name="NI.LV.FPGA.MEMORY.DramSelection" Type="Str">DramBank0</Property>
  1583. <Property Name="NI.LV.FPGA.MEMORY.Init" Type="Bool">false</Property>
  1584. <Property Name="NI.LV.FPGA.MEMORY.InitData" Type="Str"></Property>
  1585. <Property Name="NI.LV.FPGA.MEMORY.InitVIPath" Type="Str"></Property>
  1586. <Property Name="NI.LV.FPGA.MEMORY.InterfaceAArbitration" Type="UInt">2</Property>
  1587. <Property Name="NI.LV.FPGA.MEMORY.InterfaceBArbitration" Type="UInt">2</Property>
  1588. <Property Name="NI.LV.FPGA.MEMORY.InterfaceConfig" Type="UInt">0</Property>
  1589. <Property Name="NI.LV.FPGA.MEMORY.RequestedNumberOfElements" Type="UInt">6</Property>
  1590. <Property Name="NI.LV.FPGA.MEMORY.Type" Type="UInt">2</Property>
  1591. <Property Name="NI.LV.FPGA.ScriptConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=2;WriteArbs=2;Implementation=2;DataType=1000800000000001003C005F03110018000000020000001800000002000000000000000000000018000000020000000000FFFFFF00000001FFFFFFEB000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2Persist Memory ValuesFALSE;</Property>
  1592. <Property Name="NI.LV.FPGA.Valid" Type="Bool">true</Property>
  1593. <Property Name="NI.LV.FPGA.Version" Type="Int">10</Property>
  1594. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F03110018000000020000001800000002000000000000000000000018000000020000000000FFFFFF00000001FFFFFFEB000000000000000100010000000000000000000000000000</Property>
  1595. </Item>
  1596. <Item Name="信号频率" Type="FPGA Memory Block">
  1597. <Property Name="FPGA.PersistentID" Type="Str">{081FE536-A846-408D-9213-E92506B35F28}</Property>
  1598. <Property Name="fullEmulation" Type="Bool">false</Property>
  1599. <Property Name="Memory Latency" Type="UInt">2</Property>
  1600. <Property Name="Multiple Clock Domains" Type="Bool">false</Property>
  1601. <Property Name="NI.LV.FPGA.CompileConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=2;WriteArbs=2;Implementation=2;DataType=1000800000000001003C005F031100100000000A000000100000000A0000000000000000000000100000000A000000000000FFFF00000001FFFFFFFB000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2</Property>
  1602. <Property Name="NI.LV.FPGA.MEMORY.ActualNumberOfElements" Type="UInt">6</Property>
  1603. <Property Name="NI.LV.FPGA.MEMORY.DataWidth" Type="UInt">9</Property>
  1604. <Property Name="NI.LV.FPGA.MEMORY.DramIncludeByteEnables" Type="Bool">false</Property>
  1605. <Property Name="NI.LV.FPGA.MEMORY.DramMaxOutstandingRequests" Type="Int">64</Property>
  1606. <Property Name="NI.LV.FPGA.MEMORY.DramSelection" Type="Str">DramBank0</Property>
  1607. <Property Name="NI.LV.FPGA.MEMORY.Init" Type="Bool">false</Property>
  1608. <Property Name="NI.LV.FPGA.MEMORY.InitData" Type="Str"></Property>
  1609. <Property Name="NI.LV.FPGA.MEMORY.InitVIPath" Type="Str"></Property>
  1610. <Property Name="NI.LV.FPGA.MEMORY.InterfaceAArbitration" Type="UInt">2</Property>
  1611. <Property Name="NI.LV.FPGA.MEMORY.InterfaceBArbitration" Type="UInt">2</Property>
  1612. <Property Name="NI.LV.FPGA.MEMORY.InterfaceConfig" Type="UInt">0</Property>
  1613. <Property Name="NI.LV.FPGA.MEMORY.RequestedNumberOfElements" Type="UInt">6</Property>
  1614. <Property Name="NI.LV.FPGA.MEMORY.Type" Type="UInt">2</Property>
  1615. <Property Name="NI.LV.FPGA.ScriptConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=2;WriteArbs=2;Implementation=2;DataType=1000800000000001003C005F031100100000000A000000100000000A0000000000000000000000100000000A000000000000FFFF00000001FFFFFFFB000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2Persist Memory ValuesFALSE;</Property>
  1616. <Property Name="NI.LV.FPGA.Valid" Type="Bool">true</Property>
  1617. <Property Name="NI.LV.FPGA.Version" Type="Int">10</Property>
  1618. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F031100100000000A000000100000000A0000000000000000000000100000000A000000000000FFFF00000001FFFFFFFB000000000000000100010000000000000000000000000000</Property>
  1619. </Item>
  1620. <Item Name="信号幅值" Type="FPGA Memory Block">
  1621. <Property Name="FPGA.PersistentID" Type="Str">{21D7A21E-78CA-4433-B698-EBB3264B3125}</Property>
  1622. <Property Name="fullEmulation" Type="Bool">false</Property>
  1623. <Property Name="Memory Latency" Type="UInt">2</Property>
  1624. <Property Name="Multiple Clock Domains" Type="Bool">false</Property>
  1625. <Property Name="NI.LV.FPGA.CompileConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=2;WriteArbs=2;Implementation=2;DataType=1000800000000001003C005F0311001200000009000000120000000900000000000000000000001200000009000000000003FFFF00000001FFFFFFF8000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2</Property>
  1626. <Property Name="NI.LV.FPGA.MEMORY.ActualNumberOfElements" Type="UInt">6</Property>
  1627. <Property Name="NI.LV.FPGA.MEMORY.DataWidth" Type="UInt">9</Property>
  1628. <Property Name="NI.LV.FPGA.MEMORY.DramIncludeByteEnables" Type="Bool">false</Property>
  1629. <Property Name="NI.LV.FPGA.MEMORY.DramMaxOutstandingRequests" Type="Int">64</Property>
  1630. <Property Name="NI.LV.FPGA.MEMORY.DramSelection" Type="Str">DramBank0</Property>
  1631. <Property Name="NI.LV.FPGA.MEMORY.Init" Type="Bool">false</Property>
  1632. <Property Name="NI.LV.FPGA.MEMORY.InitData" Type="Str"></Property>
  1633. <Property Name="NI.LV.FPGA.MEMORY.InitVIPath" Type="Str"></Property>
  1634. <Property Name="NI.LV.FPGA.MEMORY.InterfaceAArbitration" Type="UInt">2</Property>
  1635. <Property Name="NI.LV.FPGA.MEMORY.InterfaceBArbitration" Type="UInt">2</Property>
  1636. <Property Name="NI.LV.FPGA.MEMORY.InterfaceConfig" Type="UInt">0</Property>
  1637. <Property Name="NI.LV.FPGA.MEMORY.RequestedNumberOfElements" Type="UInt">6</Property>
  1638. <Property Name="NI.LV.FPGA.MEMORY.Type" Type="UInt">2</Property>
  1639. <Property Name="NI.LV.FPGA.ScriptConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=2;WriteArbs=2;Implementation=2;DataType=1000800000000001003C005F0311001200000009000000120000000900000000000000000000001200000009000000000003FFFF00000001FFFFFFF8000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2Persist Memory ValuesFALSE;</Property>
  1640. <Property Name="NI.LV.FPGA.Valid" Type="Bool">true</Property>
  1641. <Property Name="NI.LV.FPGA.Version" Type="Int">10</Property>
  1642. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F0311001200000009000000120000000900000000000000000000001200000009000000000003FFFF00000001FFFFFFF8000000000000000100010000000000000000000000000000</Property>
  1643. </Item>
  1644. <Item Name="信号类型" Type="FPGA Memory Block">
  1645. <Property Name="FPGA.PersistentID" Type="Str">{7B0AB59C-3CA0-438E-A251-0B4A874E5683}</Property>
  1646. <Property Name="fullEmulation" Type="Bool">false</Property>
  1647. <Property Name="Memory Latency" Type="UInt">2</Property>
  1648. <Property Name="Multiple Clock Domains" Type="Bool">false</Property>
  1649. <Property Name="NI.LV.FPGA.CompileConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=2;WriteArbs=2;Implementation=2;DataType=100080000000000100354015000506D5FDCFD2B2A806C8FDBDC7B2A804B7BDB2A808D5FDCFD2C5C4B2A806D7D4B6A8D2E5000008D0C5BAC5C0E0D0CD00000100000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2</Property>
  1650. <Property Name="NI.LV.FPGA.MEMORY.ActualNumberOfElements" Type="UInt">6</Property>
  1651. <Property Name="NI.LV.FPGA.MEMORY.DataWidth" Type="UInt">10</Property>
  1652. <Property Name="NI.LV.FPGA.MEMORY.DramIncludeByteEnables" Type="Bool">false</Property>
  1653. <Property Name="NI.LV.FPGA.MEMORY.DramMaxOutstandingRequests" Type="Int">64</Property>
  1654. <Property Name="NI.LV.FPGA.MEMORY.DramSelection" Type="Str">DramBank0</Property>
  1655. <Property Name="NI.LV.FPGA.MEMORY.Init" Type="Bool">false</Property>
  1656. <Property Name="NI.LV.FPGA.MEMORY.InitData" Type="Str"></Property>
  1657. <Property Name="NI.LV.FPGA.MEMORY.InitVIPath" Type="Str"></Property>
  1658. <Property Name="NI.LV.FPGA.MEMORY.InterfaceAArbitration" Type="UInt">2</Property>
  1659. <Property Name="NI.LV.FPGA.MEMORY.InterfaceBArbitration" Type="UInt">2</Property>
  1660. <Property Name="NI.LV.FPGA.MEMORY.InterfaceConfig" Type="UInt">0</Property>
  1661. <Property Name="NI.LV.FPGA.MEMORY.RequestedNumberOfElements" Type="UInt">6</Property>
  1662. <Property Name="NI.LV.FPGA.MEMORY.Type" Type="UInt">2</Property>
  1663. <Property Name="NI.LV.FPGA.ScriptConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=2;WriteArbs=2;Implementation=2;DataType=100080000000000100354015000506D5FDCFD2B2A806C8FDBDC7B2A804B7BDB2A808D5FDCFD2C5C4B2A806D7D4B6A8D2E5000008D0C5BAC5C0E0D0CD00000100000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2Persist Memory ValuesFALSE;</Property>
  1664. <Property Name="NI.LV.FPGA.Valid" Type="Bool">true</Property>
  1665. <Property Name="NI.LV.FPGA.Version" Type="Int">10</Property>
  1666. <Property Name="Type Descriptor" Type="Str">100080000000000100354015000506D5FDCFD2B2A806C8FDBDC7B2A804B7BDB2A808D5FDCFD2C5C4B2A806D7D4B6A8D2E5000008D0C5BAC5C0E0D0CD00000100000000000000</Property>
  1667. </Item>
  1668. <Item Name="信号占空比" Type="FPGA Memory Block">
  1669. <Property Name="FPGA.PersistentID" Type="Str">{98E7B825-6AC6-4525-8B37-0CA5C8743E26}</Property>
  1670. <Property Name="fullEmulation" Type="Bool">false</Property>
  1671. <Property Name="Memory Latency" Type="UInt">2</Property>
  1672. <Property Name="Multiple Clock Domains" Type="Bool">false</Property>
  1673. <Property Name="NI.LV.FPGA.CompileConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0311000C000000000000000C0000000000000000000000000000000C000000000000000000000FFF00000001FFFFFFF5000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2</Property>
  1674. <Property Name="NI.LV.FPGA.MEMORY.ActualNumberOfElements" Type="UInt">6</Property>
  1675. <Property Name="NI.LV.FPGA.MEMORY.DataWidth" Type="UInt">9</Property>
  1676. <Property Name="NI.LV.FPGA.MEMORY.DramIncludeByteEnables" Type="Bool">false</Property>
  1677. <Property Name="NI.LV.FPGA.MEMORY.DramMaxOutstandingRequests" Type="Int">64</Property>
  1678. <Property Name="NI.LV.FPGA.MEMORY.DramSelection" Type="Str">DramBank0</Property>
  1679. <Property Name="NI.LV.FPGA.MEMORY.Init" Type="Bool">false</Property>
  1680. <Property Name="NI.LV.FPGA.MEMORY.InitData" Type="Str"></Property>
  1681. <Property Name="NI.LV.FPGA.MEMORY.InitVIPath" Type="Str"></Property>
  1682. <Property Name="NI.LV.FPGA.MEMORY.InterfaceAArbitration" Type="UInt">1</Property>
  1683. <Property Name="NI.LV.FPGA.MEMORY.InterfaceBArbitration" Type="UInt">1</Property>
  1684. <Property Name="NI.LV.FPGA.MEMORY.InterfaceConfig" Type="UInt">0</Property>
  1685. <Property Name="NI.LV.FPGA.MEMORY.RequestedNumberOfElements" Type="UInt">6</Property>
  1686. <Property Name="NI.LV.FPGA.MEMORY.Type" Type="UInt">2</Property>
  1687. <Property Name="NI.LV.FPGA.ScriptConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0311000C000000000000000C0000000000000000000000000000000C000000000000000000000FFF00000001FFFFFFF5000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2Persist Memory ValuesFALSE;</Property>
  1688. <Property Name="NI.LV.FPGA.Valid" Type="Bool">true</Property>
  1689. <Property Name="NI.LV.FPGA.Version" Type="Int">10</Property>
  1690. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F0311000C000000000000000C0000000000000000000000000000000C000000000000000000000FFF00000001FFFFFFF5000000000000000100010000000000000000000000000000</Property>
  1691. </Item>
  1692. <Item Name="信号发生时长" Type="FPGA Memory Block">
  1693. <Property Name="FPGA.PersistentID" Type="Str">{2A5BA141-9105-4BDB-8EFD-53E77308EFE4}</Property>
  1694. <Property Name="fullEmulation" Type="Bool">false</Property>
  1695. <Property Name="Memory Latency" Type="UInt">2</Property>
  1696. <Property Name="Multiple Clock Domains" Type="Bool">false</Property>
  1697. <Property Name="NI.LV.FPGA.CompileConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=2;WriteArbs=2;Implementation=2;DataType=100080000000000100094008000355363400010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2</Property>
  1698. <Property Name="NI.LV.FPGA.MEMORY.ActualNumberOfElements" Type="UInt">6</Property>
  1699. <Property Name="NI.LV.FPGA.MEMORY.DataWidth" Type="UInt">8</Property>
  1700. <Property Name="NI.LV.FPGA.MEMORY.DramIncludeByteEnables" Type="Bool">false</Property>
  1701. <Property Name="NI.LV.FPGA.MEMORY.DramMaxOutstandingRequests" Type="Int">64</Property>
  1702. <Property Name="NI.LV.FPGA.MEMORY.DramSelection" Type="Str">DramBank0</Property>
  1703. <Property Name="NI.LV.FPGA.MEMORY.Init" Type="Bool">false</Property>
  1704. <Property Name="NI.LV.FPGA.MEMORY.InitData" Type="Str"></Property>
  1705. <Property Name="NI.LV.FPGA.MEMORY.InitVIPath" Type="Str"></Property>
  1706. <Property Name="NI.LV.FPGA.MEMORY.InterfaceAArbitration" Type="UInt">2</Property>
  1707. <Property Name="NI.LV.FPGA.MEMORY.InterfaceBArbitration" Type="UInt">2</Property>
  1708. <Property Name="NI.LV.FPGA.MEMORY.InterfaceConfig" Type="UInt">0</Property>
  1709. <Property Name="NI.LV.FPGA.MEMORY.RequestedNumberOfElements" Type="UInt">6</Property>
  1710. <Property Name="NI.LV.FPGA.MEMORY.Type" Type="UInt">2</Property>
  1711. <Property Name="NI.LV.FPGA.ScriptConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=2;WriteArbs=2;Implementation=2;DataType=100080000000000100094008000355363400010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2Persist Memory ValuesFALSE;</Property>
  1712. <Property Name="NI.LV.FPGA.Valid" Type="Bool">true</Property>
  1713. <Property Name="NI.LV.FPGA.Version" Type="Int">10</Property>
  1714. <Property Name="Type Descriptor" Type="Str">100080000000000100094008000355363400010000000000000000000000000000</Property>
  1715. </Item>
  1716. <Item Name="信号已发生时长" Type="FPGA Memory Block">
  1717. <Property Name="FPGA.PersistentID" Type="Str">{895E118D-F235-49CB-9262-D3409F13DDCE}</Property>
  1718. <Property Name="fullEmulation" Type="Bool">false</Property>
  1719. <Property Name="Memory Latency" Type="UInt">2</Property>
  1720. <Property Name="Multiple Clock Domains" Type="Bool">false</Property>
  1721. <Property Name="NI.LV.FPGA.CompileConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=2;WriteArbs=2;Implementation=2;DataType=100080000000000100094008000355363400010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2</Property>
  1722. <Property Name="NI.LV.FPGA.MEMORY.ActualNumberOfElements" Type="UInt">6</Property>
  1723. <Property Name="NI.LV.FPGA.MEMORY.DataWidth" Type="UInt">8</Property>
  1724. <Property Name="NI.LV.FPGA.MEMORY.DramIncludeByteEnables" Type="Bool">false</Property>
  1725. <Property Name="NI.LV.FPGA.MEMORY.DramMaxOutstandingRequests" Type="Int">64</Property>
  1726. <Property Name="NI.LV.FPGA.MEMORY.DramSelection" Type="Str">DramBank0</Property>
  1727. <Property Name="NI.LV.FPGA.MEMORY.Init" Type="Bool">false</Property>
  1728. <Property Name="NI.LV.FPGA.MEMORY.InitData" Type="Str"></Property>
  1729. <Property Name="NI.LV.FPGA.MEMORY.InitVIPath" Type="Str"></Property>
  1730. <Property Name="NI.LV.FPGA.MEMORY.InterfaceAArbitration" Type="UInt">2</Property>
  1731. <Property Name="NI.LV.FPGA.MEMORY.InterfaceBArbitration" Type="UInt">2</Property>
  1732. <Property Name="NI.LV.FPGA.MEMORY.InterfaceConfig" Type="UInt">0</Property>
  1733. <Property Name="NI.LV.FPGA.MEMORY.RequestedNumberOfElements" Type="UInt">6</Property>
  1734. <Property Name="NI.LV.FPGA.MEMORY.Type" Type="UInt">2</Property>
  1735. <Property Name="NI.LV.FPGA.ScriptConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=2;WriteArbs=2;Implementation=2;DataType=100080000000000100094008000355363400010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2Persist Memory ValuesFALSE;</Property>
  1736. <Property Name="NI.LV.FPGA.Valid" Type="Bool">true</Property>
  1737. <Property Name="NI.LV.FPGA.Version" Type="Int">10</Property>
  1738. <Property Name="Type Descriptor" Type="Str">100080000000000100094008000355363400010000000000000000000000000000</Property>
  1739. </Item>
  1740. <Item Name="零位改" Type="FPGA Register">
  1741. <Property Name="Arbitration For Write" Type="UInt">2</Property>
  1742. <Property Name="Compile Config String" Type="Str">"DataType=1000800000000001000A402104426F6F6C00000100000000000000;InitDataHash=;Name=零位改;WriteArb=2"</Property>
  1743. <Property Name="Data Type" Type="UInt">0</Property>
  1744. <Property Name="FPGA.PersistentID" Type="Str">{1FD85ADC-C3E6-42B2-A6FE-B8A6DC30F5B1}</Property>
  1745. <Property Name="Initial Data" Type="Str"></Property>
  1746. <Property Name="Initialized" Type="Bool">false</Property>
  1747. <Property Name="InitVIPath" Type="Str"></Property>
  1748. <Property Name="Type Descriptor" Type="Str">1000800000000001000A402104426F6F6C00000100000000000000</Property>
  1749. <Property Name="Valid" Type="Bool">true</Property>
  1750. <Property Name="Version" Type="Int">1</Property>
  1751. </Item>
  1752. <Item Name="零位改已完成" Type="FPGA Register">
  1753. <Property Name="Arbitration For Write" Type="UInt">2</Property>
  1754. <Property Name="Compile Config String" Type="Str">"DataType=1000800000000001000A402104426F6F6C00000100000000000000;InitDataHash=;Name=零位改已完成;WriteArb=2"</Property>
  1755. <Property Name="Data Type" Type="UInt">0</Property>
  1756. <Property Name="FPGA.PersistentID" Type="Str">{BD2D83A8-247F-4A5D-B291-6D1F4069BB68}</Property>
  1757. <Property Name="Initial Data" Type="Str"></Property>
  1758. <Property Name="Initialized" Type="Bool">false</Property>
  1759. <Property Name="InitVIPath" Type="Str"></Property>
  1760. <Property Name="Type Descriptor" Type="Str">1000800000000001000A402104426F6F6C00000100000000000000</Property>
  1761. <Property Name="Valid" Type="Bool">true</Property>
  1762. <Property Name="Version" Type="Int">1</Property>
  1763. </Item>
  1764. <Item Name="零位改计数" Type="FPGA Register">
  1765. <Property Name="Arbitration For Write" Type="UInt">1</Property>
  1766. <Property Name="Compile Config String" Type="Str">"DataType=1000800000000001000940070003553332000100000000000000000000;InitDataHash=;Name=零位改计数;WriteArb=1"</Property>
  1767. <Property Name="Data Type" Type="UInt">7</Property>
  1768. <Property Name="FPGA.PersistentID" Type="Str">{171A7CDD-9137-4ADC-80D2-F80654F0CD59}</Property>
  1769. <Property Name="Initial Data" Type="Str"></Property>
  1770. <Property Name="Initialized" Type="Bool">false</Property>
  1771. <Property Name="InitVIPath" Type="Str"></Property>
  1772. <Property Name="Type Descriptor" Type="Str">1000800000000001000940070003553332000100000000000000000000</Property>
  1773. <Property Name="Valid" Type="Bool">true</Property>
  1774. <Property Name="Version" Type="Int">1</Property>
  1775. </Item>
  1776. <Item Name="零位改最大计数" Type="FPGA Register">
  1777. <Property Name="Arbitration For Write" Type="UInt">2</Property>
  1778. <Property Name="Compile Config String" Type="Str">"DataType=1000800000000001000940070003553332000100000000000000000000;InitDataHash=;Name=零位改最大计数;WriteArb=2"</Property>
  1779. <Property Name="Data Type" Type="UInt">7</Property>
  1780. <Property Name="FPGA.PersistentID" Type="Str">{0EE9E482-EB22-4255-A882-2B0873CE0B54}</Property>
  1781. <Property Name="Initial Data" Type="Str"></Property>
  1782. <Property Name="Initialized" Type="Bool">false</Property>
  1783. <Property Name="InitVIPath" Type="Str"></Property>
  1784. <Property Name="Type Descriptor" Type="Str">1000800000000001000940070003553332000100000000000000000000</Property>
  1785. <Property Name="Valid" Type="Bool">true</Property>
  1786. <Property Name="Version" Type="Int">1</Property>
  1787. </Item>
  1788. <Item Name="零位改计数间隔" Type="FPGA Register">
  1789. <Property Name="Arbitration For Write" Type="UInt">2</Property>
  1790. <Property Name="Compile Config String" Type="Str">"DataType=1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000;InitDataHash=;Name=零位改计数间隔;WriteArb=2"</Property>
  1791. <Property Name="Data Type" Type="UInt">9</Property>
  1792. <Property Name="FPGA.PersistentID" Type="Str">{39F39ECA-EA21-4D1C-BE05-9C9E8105AED3}</Property>
  1793. <Property Name="Initial Data" Type="Str"></Property>
  1794. <Property Name="Initialized" Type="Bool">false</Property>
  1795. <Property Name="InitVIPath" Type="Str"></Property>
  1796. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000</Property>
  1797. <Property Name="Valid" Type="Bool">true</Property>
  1798. <Property Name="Version" Type="Int">1</Property>
  1799. </Item>
  1800. <Item Name="零位改当前时间" Type="FPGA Register">
  1801. <Property Name="Arbitration For Write" Type="UInt">2</Property>
  1802. <Property Name="Compile Config String" Type="Str">"DataType=1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000;InitDataHash=;Name=零位改当前时间;WriteArb=2"</Property>
  1803. <Property Name="Data Type" Type="UInt">9</Property>
  1804. <Property Name="FPGA.PersistentID" Type="Str">{36107CE1-9FFB-479E-B879-CC7F21D6154C}</Property>
  1805. <Property Name="Initial Data" Type="Str"></Property>
  1806. <Property Name="Initialized" Type="Bool">false</Property>
  1807. <Property Name="InitVIPath" Type="Str"></Property>
  1808. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000</Property>
  1809. <Property Name="Valid" Type="Bool">true</Property>
  1810. <Property Name="Version" Type="Int">1</Property>
  1811. </Item>
  1812. <Item Name="升台面计数" Type="FPGA Register">
  1813. <Property Name="Arbitration For Write" Type="UInt">1</Property>
  1814. <Property Name="Compile Config String" Type="Str">"DataType=1000800000000001000940070003553332000100000000000000000000;InitDataHash=;Name=零位改计数;WriteArb=1"</Property>
  1815. <Property Name="Data Type" Type="UInt">7</Property>
  1816. <Property Name="FPGA.PersistentID" Type="Str">{CA601863-5D20-43CA-AD52-5042ED06994A}</Property>
  1817. <Property Name="Initial Data" Type="Str"></Property>
  1818. <Property Name="Initialized" Type="Bool">false</Property>
  1819. <Property Name="InitVIPath" Type="Str"></Property>
  1820. <Property Name="Type Descriptor" Type="Str">1000800000000001000940070003553332000100000000000000000000</Property>
  1821. <Property Name="Valid" Type="Bool">true</Property>
  1822. <Property Name="Version" Type="Int">1</Property>
  1823. </Item>
  1824. <Item Name="升台面最大计数" Type="FPGA Register">
  1825. <Property Name="Arbitration For Write" Type="UInt">2</Property>
  1826. <Property Name="Compile Config String" Type="Str">"DataType=1000800000000001000940070003553332000100000000000000000000;InitDataHash=;Name=零位改最大计数;WriteArb=2"</Property>
  1827. <Property Name="Data Type" Type="UInt">7</Property>
  1828. <Property Name="FPGA.PersistentID" Type="Str">{B642FEE0-B4D7-4B87-8473-64289E1AD2EE}</Property>
  1829. <Property Name="Initial Data" Type="Str"></Property>
  1830. <Property Name="Initialized" Type="Bool">false</Property>
  1831. <Property Name="InitVIPath" Type="Str"></Property>
  1832. <Property Name="Type Descriptor" Type="Str">1000800000000001000940070003553332000100000000000000000000</Property>
  1833. <Property Name="Valid" Type="Bool">true</Property>
  1834. <Property Name="Version" Type="Int">1</Property>
  1835. </Item>
  1836. <Item Name="升台面计数间隔" Type="FPGA Register">
  1837. <Property Name="Arbitration For Write" Type="UInt">2</Property>
  1838. <Property Name="Compile Config String" Type="Str">"DataType=1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000;InitDataHash=;Name=零位改计数间隔;WriteArb=2"</Property>
  1839. <Property Name="Data Type" Type="UInt">9</Property>
  1840. <Property Name="FPGA.PersistentID" Type="Str">{6FA28F41-7D53-4E40-A916-F87FD6C8691F}</Property>
  1841. <Property Name="Initial Data" Type="Str"></Property>
  1842. <Property Name="Initialized" Type="Bool">false</Property>
  1843. <Property Name="InitVIPath" Type="Str"></Property>
  1844. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000</Property>
  1845. <Property Name="Valid" Type="Bool">true</Property>
  1846. <Property Name="Version" Type="Int">1</Property>
  1847. </Item>
  1848. <Item Name="升台面当前时间" Type="FPGA Register">
  1849. <Property Name="Arbitration For Write" Type="UInt">2</Property>
  1850. <Property Name="Compile Config String" Type="Str">"DataType=1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000;InitDataHash=;Name=零位改当前时间;WriteArb=2"</Property>
  1851. <Property Name="Data Type" Type="UInt">9</Property>
  1852. <Property Name="FPGA.PersistentID" Type="Str">{17596357-D2C4-4226-9AE6-155B4F268C38}</Property>
  1853. <Property Name="Initial Data" Type="Str"></Property>
  1854. <Property Name="Initialized" Type="Bool">false</Property>
  1855. <Property Name="InitVIPath" Type="Str"></Property>
  1856. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000</Property>
  1857. <Property Name="Valid" Type="Bool">true</Property>
  1858. <Property Name="Version" Type="Int">1</Property>
  1859. </Item>
  1860. <Item Name="降台面当前时间" Type="FPGA Register">
  1861. <Property Name="Arbitration For Write" Type="UInt">2</Property>
  1862. <Property Name="Compile Config String" Type="Str">"DataType=1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000;InitDataHash=;Name=零位改当前时间;WriteArb=2"</Property>
  1863. <Property Name="Data Type" Type="UInt">9</Property>
  1864. <Property Name="FPGA.PersistentID" Type="Str">{6AACC68A-4689-4396-900C-E415C5B8C306}</Property>
  1865. <Property Name="Initial Data" Type="Str"></Property>
  1866. <Property Name="Initialized" Type="Bool">false</Property>
  1867. <Property Name="InitVIPath" Type="Str"></Property>
  1868. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000</Property>
  1869. <Property Name="Valid" Type="Bool">true</Property>
  1870. <Property Name="Version" Type="Int">1</Property>
  1871. </Item>
  1872. <Item Name="降台面计数间隔" Type="FPGA Register">
  1873. <Property Name="Arbitration For Write" Type="UInt">2</Property>
  1874. <Property Name="Compile Config String" Type="Str">"DataType=1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000;InitDataHash=;Name=零位改计数间隔;WriteArb=2"</Property>
  1875. <Property Name="Data Type" Type="UInt">9</Property>
  1876. <Property Name="FPGA.PersistentID" Type="Str">{B33306AD-E5F7-4DB1-B29C-5255A5BBC58D}</Property>
  1877. <Property Name="Initial Data" Type="Str"></Property>
  1878. <Property Name="Initialized" Type="Bool">false</Property>
  1879. <Property Name="InitVIPath" Type="Str"></Property>
  1880. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000</Property>
  1881. <Property Name="Valid" Type="Bool">true</Property>
  1882. <Property Name="Version" Type="Int">1</Property>
  1883. </Item>
  1884. <Item Name="降台面最大计数" Type="FPGA Register">
  1885. <Property Name="Arbitration For Write" Type="UInt">2</Property>
  1886. <Property Name="Compile Config String" Type="Str">"DataType=1000800000000001000940070003553332000100000000000000000000;InitDataHash=;Name=零位改最大计数;WriteArb=2"</Property>
  1887. <Property Name="Data Type" Type="UInt">7</Property>
  1888. <Property Name="FPGA.PersistentID" Type="Str">{719B009C-0952-4C3B-B98E-441D3A0D3D90}</Property>
  1889. <Property Name="Initial Data" Type="Str"></Property>
  1890. <Property Name="Initialized" Type="Bool">false</Property>
  1891. <Property Name="InitVIPath" Type="Str"></Property>
  1892. <Property Name="Type Descriptor" Type="Str">1000800000000001000940070003553332000100000000000000000000</Property>
  1893. <Property Name="Valid" Type="Bool">true</Property>
  1894. <Property Name="Version" Type="Int">1</Property>
  1895. </Item>
  1896. <Item Name="信号停止最大计数" Type="FPGA Register">
  1897. <Property Name="Arbitration For Write" Type="UInt">2</Property>
  1898. <Property Name="Compile Config String" Type="Str">"DataType=1000800000000001000940070003553332000100000000000000000000;InitDataHash=;Name=零位改最大计数;WriteArb=2"</Property>
  1899. <Property Name="Data Type" Type="UInt">7</Property>
  1900. <Property Name="FPGA.PersistentID" Type="Str">{11DBACE8-A79A-48DE-8F7F-476DD9EC47B2}</Property>
  1901. <Property Name="Initial Data" Type="Str"></Property>
  1902. <Property Name="Initialized" Type="Bool">false</Property>
  1903. <Property Name="InitVIPath" Type="Str"></Property>
  1904. <Property Name="Type Descriptor" Type="Str">1000800000000001000940070003553332000100000000000000000000</Property>
  1905. <Property Name="Valid" Type="Bool">true</Property>
  1906. <Property Name="Version" Type="Int">1</Property>
  1907. </Item>
  1908. <Item Name="信号停止计数间隔" Type="FPGA Register">
  1909. <Property Name="Arbitration For Write" Type="UInt">2</Property>
  1910. <Property Name="Compile Config String" Type="Str">"DataType=1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000;InitDataHash=;Name=零位改计数间隔;WriteArb=2"</Property>
  1911. <Property Name="Data Type" Type="UInt">9</Property>
  1912. <Property Name="FPGA.PersistentID" Type="Str">{17F7B8CC-BE1B-455C-9884-DAFDA1BD1D81}</Property>
  1913. <Property Name="Initial Data" Type="Str"></Property>
  1914. <Property Name="Initialized" Type="Bool">false</Property>
  1915. <Property Name="InitVIPath" Type="Str"></Property>
  1916. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000</Property>
  1917. <Property Name="Valid" Type="Bool">true</Property>
  1918. <Property Name="Version" Type="Int">1</Property>
  1919. </Item>
  1920. <Item Name="降台面计数" Type="FPGA Register">
  1921. <Property Name="Arbitration For Write" Type="UInt">1</Property>
  1922. <Property Name="Compile Config String" Type="Str">"DataType=1000800000000001000940070003553332000100000000000000000000;InitDataHash=;Name=零位改计数;WriteArb=1"</Property>
  1923. <Property Name="Data Type" Type="UInt">7</Property>
  1924. <Property Name="FPGA.PersistentID" Type="Str">{EFAE2229-89A1-4DAA-9132-67F349E3EC7C}</Property>
  1925. <Property Name="Initial Data" Type="Str"></Property>
  1926. <Property Name="Initialized" Type="Bool">false</Property>
  1927. <Property Name="InitVIPath" Type="Str"></Property>
  1928. <Property Name="Type Descriptor" Type="Str">1000800000000001000940070003553332000100000000000000000000</Property>
  1929. <Property Name="Valid" Type="Bool">true</Property>
  1930. <Property Name="Version" Type="Int">1</Property>
  1931. </Item>
  1932. <Item Name="升台面" Type="FPGA Register">
  1933. <Property Name="Arbitration For Write" Type="UInt">1</Property>
  1934. <Property Name="Compile Config String" Type="Str">"DataType=1000800000000001000A402104426F6F6C00000100000000000000;InitDataHash=;Name=升台面;WriteArb=1"</Property>
  1935. <Property Name="Data Type" Type="UInt">0</Property>
  1936. <Property Name="FPGA.PersistentID" Type="Str">{31FE12BB-7CF9-4D7C-ADE4-AE9ACFA65E82}</Property>
  1937. <Property Name="Initial Data" Type="Str"></Property>
  1938. <Property Name="Initialized" Type="Bool">false</Property>
  1939. <Property Name="InitVIPath" Type="Str"></Property>
  1940. <Property Name="Type Descriptor" Type="Str">1000800000000001000A402104426F6F6C00000100000000000000</Property>
  1941. <Property Name="Valid" Type="Bool">true</Property>
  1942. <Property Name="Version" Type="Int">1</Property>
  1943. </Item>
  1944. <Item Name="升台面完成" Type="FPGA Register">
  1945. <Property Name="Arbitration For Write" Type="UInt">1</Property>
  1946. <Property Name="Compile Config String" Type="Str">"DataType=1000800000000001000A402104426F6F6C00000100000000000000;InitDataHash=;Name=升台面完成;WriteArb=1"</Property>
  1947. <Property Name="Data Type" Type="UInt">0</Property>
  1948. <Property Name="FPGA.PersistentID" Type="Str">{7B04381E-F348-479A-8FF2-323E59DEED7B}</Property>
  1949. <Property Name="Initial Data" Type="Str"></Property>
  1950. <Property Name="Initialized" Type="Bool">false</Property>
  1951. <Property Name="InitVIPath" Type="Str"></Property>
  1952. <Property Name="Type Descriptor" Type="Str">1000800000000001000A402104426F6F6C00000100000000000000</Property>
  1953. <Property Name="Valid" Type="Bool">true</Property>
  1954. <Property Name="Version" Type="Int">1</Property>
  1955. </Item>
  1956. <Item Name="降台面" Type="FPGA Register">
  1957. <Property Name="Arbitration For Write" Type="UInt">1</Property>
  1958. <Property Name="Compile Config String" Type="Str">"DataType=1000800000000001000A402104426F6F6C00000100000000000000;InitDataHash=;Name=降台面;WriteArb=1"</Property>
  1959. <Property Name="Data Type" Type="UInt">0</Property>
  1960. <Property Name="FPGA.PersistentID" Type="Str">{886AFD33-17F1-4EEF-8A6C-A38CB0937BF8}</Property>
  1961. <Property Name="Initial Data" Type="Str"></Property>
  1962. <Property Name="Initialized" Type="Bool">false</Property>
  1963. <Property Name="InitVIPath" Type="Str"></Property>
  1964. <Property Name="Type Descriptor" Type="Str">1000800000000001000A402104426F6F6C00000100000000000000</Property>
  1965. <Property Name="Valid" Type="Bool">true</Property>
  1966. <Property Name="Version" Type="Int">1</Property>
  1967. </Item>
  1968. <Item Name="降台面完成" Type="FPGA Register">
  1969. <Property Name="Arbitration For Write" Type="UInt">1</Property>
  1970. <Property Name="Compile Config String" Type="Str">"DataType=1000800000000001000A402104426F6F6C00000100000000000000;InitDataHash=;Name=降台面完成;WriteArb=1"</Property>
  1971. <Property Name="Data Type" Type="UInt">0</Property>
  1972. <Property Name="FPGA.PersistentID" Type="Str">{A0E986E1-153A-44CD-8B65-A5B1EB6FF45A}</Property>
  1973. <Property Name="Initial Data" Type="Str"></Property>
  1974. <Property Name="Initialized" Type="Bool">false</Property>
  1975. <Property Name="InitVIPath" Type="Str"></Property>
  1976. <Property Name="Type Descriptor" Type="Str">1000800000000001000A402104426F6F6C00000100000000000000</Property>
  1977. <Property Name="Valid" Type="Bool">true</Property>
  1978. <Property Name="Version" Type="Int">1</Property>
  1979. </Item>
  1980. <Item Name="信号发生" Type="FPGA Register">
  1981. <Property Name="Arbitration For Write" Type="UInt">1</Property>
  1982. <Property Name="Compile Config String" Type="Str">"DataType=1000800000000001000A402104426F6F6C00000100000000000000;InitDataHash=;Name=信号发生;WriteArb=1"</Property>
  1983. <Property Name="Data Type" Type="UInt">0</Property>
  1984. <Property Name="FPGA.PersistentID" Type="Str">{BF009984-07A3-4BDD-B5E9-4EE7C08C4C33}</Property>
  1985. <Property Name="Initial Data" Type="Str"></Property>
  1986. <Property Name="Initialized" Type="Bool">false</Property>
  1987. <Property Name="InitVIPath" Type="Str"></Property>
  1988. <Property Name="Type Descriptor" Type="Str">1000800000000001000A402104426F6F6C00000100000000000000</Property>
  1989. <Property Name="Valid" Type="Bool">true</Property>
  1990. <Property Name="Version" Type="Int">1</Property>
  1991. </Item>
  1992. <Item Name="信号发生完成" Type="FPGA Memory Block">
  1993. <Property Name="FPGA.PersistentID" Type="Str">{84EFEE8A-C048-4F98-B284-299C0C19C0D7}</Property>
  1994. <Property Name="fullEmulation" Type="Bool">false</Property>
  1995. <Property Name="Memory Latency" Type="UInt">2</Property>
  1996. <Property Name="Multiple Clock Domains" Type="Bool">false</Property>
  1997. <Property Name="NI.LV.FPGA.CompileConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001000A402104426F6F6C00000100000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2</Property>
  1998. <Property Name="NI.LV.FPGA.MEMORY.ActualNumberOfElements" Type="UInt">6</Property>
  1999. <Property Name="NI.LV.FPGA.MEMORY.DataWidth" Type="UInt">0</Property>
  2000. <Property Name="NI.LV.FPGA.MEMORY.DramIncludeByteEnables" Type="Bool">false</Property>
  2001. <Property Name="NI.LV.FPGA.MEMORY.DramMaxOutstandingRequests" Type="Int">64</Property>
  2002. <Property Name="NI.LV.FPGA.MEMORY.DramSelection" Type="Str">DramBank0</Property>
  2003. <Property Name="NI.LV.FPGA.MEMORY.Init" Type="Bool">false</Property>
  2004. <Property Name="NI.LV.FPGA.MEMORY.InitData" Type="Str"></Property>
  2005. <Property Name="NI.LV.FPGA.MEMORY.InitVIPath" Type="Str"></Property>
  2006. <Property Name="NI.LV.FPGA.MEMORY.InterfaceAArbitration" Type="UInt">1</Property>
  2007. <Property Name="NI.LV.FPGA.MEMORY.InterfaceBArbitration" Type="UInt">1</Property>
  2008. <Property Name="NI.LV.FPGA.MEMORY.InterfaceConfig" Type="UInt">0</Property>
  2009. <Property Name="NI.LV.FPGA.MEMORY.RequestedNumberOfElements" Type="UInt">6</Property>
  2010. <Property Name="NI.LV.FPGA.MEMORY.Type" Type="UInt">2</Property>
  2011. <Property Name="NI.LV.FPGA.ScriptConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001000A402104426F6F6C00000100000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2Persist Memory ValuesFALSE;</Property>
  2012. <Property Name="NI.LV.FPGA.Valid" Type="Bool">true</Property>
  2013. <Property Name="NI.LV.FPGA.Version" Type="Int">10</Property>
  2014. <Property Name="Type Descriptor" Type="Str">1000800000000001000A402104426F6F6C00000100000000000000</Property>
  2015. </Item>
  2016. <Item Name="信号停止计数" Type="FPGA Memory Block">
  2017. <Property Name="FPGA.PersistentID" Type="Str">{A322AA16-26B8-4945-AADB-94823A22F280}</Property>
  2018. <Property Name="fullEmulation" Type="Bool">false</Property>
  2019. <Property Name="Memory Latency" Type="UInt">2</Property>
  2020. <Property Name="Multiple Clock Domains" Type="Bool">false</Property>
  2021. <Property Name="NI.LV.FPGA.CompileConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001000940070003553332000100000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2</Property>
  2022. <Property Name="NI.LV.FPGA.MEMORY.ActualNumberOfElements" Type="UInt">6</Property>
  2023. <Property Name="NI.LV.FPGA.MEMORY.DataWidth" Type="UInt">7</Property>
  2024. <Property Name="NI.LV.FPGA.MEMORY.DramIncludeByteEnables" Type="Bool">false</Property>
  2025. <Property Name="NI.LV.FPGA.MEMORY.DramMaxOutstandingRequests" Type="Int">64</Property>
  2026. <Property Name="NI.LV.FPGA.MEMORY.DramSelection" Type="Str">DramBank0</Property>
  2027. <Property Name="NI.LV.FPGA.MEMORY.Init" Type="Bool">false</Property>
  2028. <Property Name="NI.LV.FPGA.MEMORY.InitData" Type="Str"></Property>
  2029. <Property Name="NI.LV.FPGA.MEMORY.InitVIPath" Type="Str"></Property>
  2030. <Property Name="NI.LV.FPGA.MEMORY.InterfaceAArbitration" Type="UInt">1</Property>
  2031. <Property Name="NI.LV.FPGA.MEMORY.InterfaceBArbitration" Type="UInt">1</Property>
  2032. <Property Name="NI.LV.FPGA.MEMORY.InterfaceConfig" Type="UInt">0</Property>
  2033. <Property Name="NI.LV.FPGA.MEMORY.RequestedNumberOfElements" Type="UInt">6</Property>
  2034. <Property Name="NI.LV.FPGA.MEMORY.Type" Type="UInt">2</Property>
  2035. <Property Name="NI.LV.FPGA.ScriptConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001000940070003553332000100000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2Persist Memory ValuesFALSE;</Property>
  2036. <Property Name="NI.LV.FPGA.Valid" Type="Bool">true</Property>
  2037. <Property Name="NI.LV.FPGA.Version" Type="Int">10</Property>
  2038. <Property Name="Type Descriptor" Type="Str">1000800000000001000940070003553332000100000000000000000000</Property>
  2039. </Item>
  2040. <Item Name="信号停止当前时间" Type="FPGA Memory Block">
  2041. <Property Name="FPGA.PersistentID" Type="Str">{4E3A6D4A-5696-428B-9DE6-21CC8583AE70}</Property>
  2042. <Property Name="fullEmulation" Type="Bool">false</Property>
  2043. <Property Name="Memory Latency" Type="UInt">2</Property>
  2044. <Property Name="Multiple Clock Domains" Type="Bool">false</Property>
  2045. <Property Name="NI.LV.FPGA.CompileConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2</Property>
  2046. <Property Name="NI.LV.FPGA.MEMORY.ActualNumberOfElements" Type="UInt">6</Property>
  2047. <Property Name="NI.LV.FPGA.MEMORY.DataWidth" Type="UInt">9</Property>
  2048. <Property Name="NI.LV.FPGA.MEMORY.DramIncludeByteEnables" Type="Bool">false</Property>
  2049. <Property Name="NI.LV.FPGA.MEMORY.DramMaxOutstandingRequests" Type="Int">64</Property>
  2050. <Property Name="NI.LV.FPGA.MEMORY.DramSelection" Type="Str">DramBank0</Property>
  2051. <Property Name="NI.LV.FPGA.MEMORY.Init" Type="Bool">false</Property>
  2052. <Property Name="NI.LV.FPGA.MEMORY.InitData" Type="Str"></Property>
  2053. <Property Name="NI.LV.FPGA.MEMORY.InitVIPath" Type="Str"></Property>
  2054. <Property Name="NI.LV.FPGA.MEMORY.InterfaceAArbitration" Type="UInt">1</Property>
  2055. <Property Name="NI.LV.FPGA.MEMORY.InterfaceBArbitration" Type="UInt">1</Property>
  2056. <Property Name="NI.LV.FPGA.MEMORY.InterfaceConfig" Type="UInt">0</Property>
  2057. <Property Name="NI.LV.FPGA.MEMORY.RequestedNumberOfElements" Type="UInt">6</Property>
  2058. <Property Name="NI.LV.FPGA.MEMORY.Type" Type="UInt">2</Property>
  2059. <Property Name="NI.LV.FPGA.ScriptConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2Persist Memory ValuesFALSE;</Property>
  2060. <Property Name="NI.LV.FPGA.Valid" Type="Bool">true</Property>
  2061. <Property Name="NI.LV.FPGA.Version" Type="Int">10</Property>
  2062. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000</Property>
  2063. </Item>
  2064. <Item Name="信号发生中" Type="FPGA Register">
  2065. <Property Name="Arbitration For Write" Type="UInt">1</Property>
  2066. <Property Name="Compile Config String" Type="Str">"DataType=1000800000000001000A402104426F6F6C00000100000000000000;InitDataHash=;Name=信号发生中;WriteArb=1"</Property>
  2067. <Property Name="Data Type" Type="UInt">0</Property>
  2068. <Property Name="FPGA.PersistentID" Type="Str">{961110D2-3126-4C6B-BF67-6471C282C074}</Property>
  2069. <Property Name="Initial Data" Type="Str"></Property>
  2070. <Property Name="Initialized" Type="Bool">false</Property>
  2071. <Property Name="InitVIPath" Type="Str"></Property>
  2072. <Property Name="Type Descriptor" Type="Str">1000800000000001000A402104426F6F6C00000100000000000000</Property>
  2073. <Property Name="Valid" Type="Bool">true</Property>
  2074. <Property Name="Version" Type="Int">1</Property>
  2075. </Item>
  2076. <Item Name="启用状态" Type="FPGA Memory Block">
  2077. <Property Name="FPGA.PersistentID" Type="Str">{50F7D0E3-22D2-4E03-A94C-8F99230DD819}</Property>
  2078. <Property Name="fullEmulation" Type="Bool">false</Property>
  2079. <Property Name="Memory Latency" Type="UInt">2</Property>
  2080. <Property Name="Multiple Clock Domains" Type="Bool">false</Property>
  2081. <Property Name="NI.LV.FPGA.CompileConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=2;WriteArbs=2;Implementation=2;DataType=1000800000000001000A402104426F6F6C00000100000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2</Property>
  2082. <Property Name="NI.LV.FPGA.MEMORY.ActualNumberOfElements" Type="UInt">6</Property>
  2083. <Property Name="NI.LV.FPGA.MEMORY.DataWidth" Type="UInt">0</Property>
  2084. <Property Name="NI.LV.FPGA.MEMORY.DramIncludeByteEnables" Type="Bool">false</Property>
  2085. <Property Name="NI.LV.FPGA.MEMORY.DramMaxOutstandingRequests" Type="Int">64</Property>
  2086. <Property Name="NI.LV.FPGA.MEMORY.DramSelection" Type="Str">DramBank0</Property>
  2087. <Property Name="NI.LV.FPGA.MEMORY.Init" Type="Bool">false</Property>
  2088. <Property Name="NI.LV.FPGA.MEMORY.InitData" Type="Str"></Property>
  2089. <Property Name="NI.LV.FPGA.MEMORY.InitVIPath" Type="Str"></Property>
  2090. <Property Name="NI.LV.FPGA.MEMORY.InterfaceAArbitration" Type="UInt">2</Property>
  2091. <Property Name="NI.LV.FPGA.MEMORY.InterfaceBArbitration" Type="UInt">2</Property>
  2092. <Property Name="NI.LV.FPGA.MEMORY.InterfaceConfig" Type="UInt">0</Property>
  2093. <Property Name="NI.LV.FPGA.MEMORY.RequestedNumberOfElements" Type="UInt">6</Property>
  2094. <Property Name="NI.LV.FPGA.MEMORY.Type" Type="UInt">2</Property>
  2095. <Property Name="NI.LV.FPGA.ScriptConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=2;WriteArbs=2;Implementation=2;DataType=1000800000000001000A402104426F6F6C00000100000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2Persist Memory ValuesFALSE;</Property>
  2096. <Property Name="NI.LV.FPGA.Valid" Type="Bool">true</Property>
  2097. <Property Name="NI.LV.FPGA.Version" Type="Int">10</Property>
  2098. <Property Name="Type Descriptor" Type="Str">1000800000000001000A402104426F6F6C00000100000000000000</Property>
  2099. </Item>
  2100. <Item Name="P参数" Type="FPGA Memory Block">
  2101. <Property Name="FPGA.PersistentID" Type="Str">{528F1209-3DEB-4119-87C0-91833BE436A9}</Property>
  2102. <Property Name="fullEmulation" Type="Bool">false</Property>
  2103. <Property Name="Memory Latency" Type="UInt">2</Property>
  2104. <Property Name="Multiple Clock Domains" Type="Bool">false</Property>
  2105. <Property Name="NI.LV.FPGA.CompileConfigString" Type="Str">Actual Number of Elements=8;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A000000080001001A00000008FFFFFFFFFE0000000001001A000000080000000001FFFFFF00000001FFFFFFEF000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2</Property>
  2106. <Property Name="NI.LV.FPGA.MEMORY.ActualNumberOfElements" Type="UInt">8</Property>
  2107. <Property Name="NI.LV.FPGA.MEMORY.DataWidth" Type="UInt">9</Property>
  2108. <Property Name="NI.LV.FPGA.MEMORY.DramIncludeByteEnables" Type="Bool">false</Property>
  2109. <Property Name="NI.LV.FPGA.MEMORY.DramMaxOutstandingRequests" Type="Int">64</Property>
  2110. <Property Name="NI.LV.FPGA.MEMORY.DramSelection" Type="Str">DramBank0</Property>
  2111. <Property Name="NI.LV.FPGA.MEMORY.Init" Type="Bool">false</Property>
  2112. <Property Name="NI.LV.FPGA.MEMORY.InitData" Type="Str"></Property>
  2113. <Property Name="NI.LV.FPGA.MEMORY.InitVIPath" Type="Str"></Property>
  2114. <Property Name="NI.LV.FPGA.MEMORY.InterfaceAArbitration" Type="UInt">1</Property>
  2115. <Property Name="NI.LV.FPGA.MEMORY.InterfaceBArbitration" Type="UInt">1</Property>
  2116. <Property Name="NI.LV.FPGA.MEMORY.InterfaceConfig" Type="UInt">0</Property>
  2117. <Property Name="NI.LV.FPGA.MEMORY.RequestedNumberOfElements" Type="UInt">8</Property>
  2118. <Property Name="NI.LV.FPGA.MEMORY.Type" Type="UInt">2</Property>
  2119. <Property Name="NI.LV.FPGA.ScriptConfigString" Type="Str">Actual Number of Elements=8;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A000000080001001A00000008FFFFFFFFFE0000000001001A000000080000000001FFFFFF00000001FFFFFFEF000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2Persist Memory ValuesFALSE;</Property>
  2120. <Property Name="NI.LV.FPGA.Valid" Type="Bool">true</Property>
  2121. <Property Name="NI.LV.FPGA.Version" Type="Int">10</Property>
  2122. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F0351001A000000080001001A00000008FFFFFFFFFE0000000001001A000000080000000001FFFFFF00000001FFFFFFEF000000000000000100010000000000000000000000000000</Property>
  2123. </Item>
  2124. <Item Name="I参数" Type="FPGA Memory Block">
  2125. <Property Name="FPGA.PersistentID" Type="Str">{A576ED01-9DA5-4BEF-9E77-BC719DFE74B5}</Property>
  2126. <Property Name="fullEmulation" Type="Bool">false</Property>
  2127. <Property Name="Memory Latency" Type="UInt">2</Property>
  2128. <Property Name="Multiple Clock Domains" Type="Bool">false</Property>
  2129. <Property Name="NI.LV.FPGA.CompileConfigString" Type="Str">Actual Number of Elements=8;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A000000080001001A00000008FFFFFFFFFE0000000001001A000000080000000001FFFFFF00000001FFFFFFEF000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2</Property>
  2130. <Property Name="NI.LV.FPGA.MEMORY.ActualNumberOfElements" Type="UInt">8</Property>
  2131. <Property Name="NI.LV.FPGA.MEMORY.DataWidth" Type="UInt">9</Property>
  2132. <Property Name="NI.LV.FPGA.MEMORY.DramIncludeByteEnables" Type="Bool">false</Property>
  2133. <Property Name="NI.LV.FPGA.MEMORY.DramMaxOutstandingRequests" Type="Int">64</Property>
  2134. <Property Name="NI.LV.FPGA.MEMORY.DramSelection" Type="Str">DramBank0</Property>
  2135. <Property Name="NI.LV.FPGA.MEMORY.Init" Type="Bool">false</Property>
  2136. <Property Name="NI.LV.FPGA.MEMORY.InitData" Type="Str"></Property>
  2137. <Property Name="NI.LV.FPGA.MEMORY.InitVIPath" Type="Str"></Property>
  2138. <Property Name="NI.LV.FPGA.MEMORY.InterfaceAArbitration" Type="UInt">1</Property>
  2139. <Property Name="NI.LV.FPGA.MEMORY.InterfaceBArbitration" Type="UInt">1</Property>
  2140. <Property Name="NI.LV.FPGA.MEMORY.InterfaceConfig" Type="UInt">0</Property>
  2141. <Property Name="NI.LV.FPGA.MEMORY.RequestedNumberOfElements" Type="UInt">8</Property>
  2142. <Property Name="NI.LV.FPGA.MEMORY.Type" Type="UInt">2</Property>
  2143. <Property Name="NI.LV.FPGA.ScriptConfigString" Type="Str">Actual Number of Elements=8;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A000000080001001A00000008FFFFFFFFFE0000000001001A000000080000000001FFFFFF00000001FFFFFFEF000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2Persist Memory ValuesFALSE;</Property>
  2144. <Property Name="NI.LV.FPGA.Valid" Type="Bool">true</Property>
  2145. <Property Name="NI.LV.FPGA.Version" Type="Int">10</Property>
  2146. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F0351001A000000080001001A00000008FFFFFFFFFE0000000001001A000000080000000001FFFFFF00000001FFFFFFEF000000000000000100010000000000000000000000000000</Property>
  2147. </Item>
  2148. <Item Name="误差和" Type="FPGA Memory Block">
  2149. <Property Name="FPGA.PersistentID" Type="Str">{AFD2F86B-4622-4970-9E8C-D31C730CDAD0}</Property>
  2150. <Property Name="fullEmulation" Type="Bool">false</Property>
  2151. <Property Name="Memory Latency" Type="UInt">2</Property>
  2152. <Property Name="Multiple Clock Domains" Type="Bool">false</Property>
  2153. <Property Name="NI.LV.FPGA.CompileConfigString" Type="Str">Actual Number of Elements=8;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A000000080001001A00000008FFFFFFFFFE0000000001001A000000080000000001FFFFFF00000001FFFFFFEF000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2</Property>
  2154. <Property Name="NI.LV.FPGA.MEMORY.ActualNumberOfElements" Type="UInt">8</Property>
  2155. <Property Name="NI.LV.FPGA.MEMORY.DataWidth" Type="UInt">9</Property>
  2156. <Property Name="NI.LV.FPGA.MEMORY.DramIncludeByteEnables" Type="Bool">false</Property>
  2157. <Property Name="NI.LV.FPGA.MEMORY.DramMaxOutstandingRequests" Type="Int">64</Property>
  2158. <Property Name="NI.LV.FPGA.MEMORY.DramSelection" Type="Str">DramBank0</Property>
  2159. <Property Name="NI.LV.FPGA.MEMORY.Init" Type="Bool">false</Property>
  2160. <Property Name="NI.LV.FPGA.MEMORY.InitData" Type="Str"></Property>
  2161. <Property Name="NI.LV.FPGA.MEMORY.InitVIPath" Type="Str"></Property>
  2162. <Property Name="NI.LV.FPGA.MEMORY.InterfaceAArbitration" Type="UInt">1</Property>
  2163. <Property Name="NI.LV.FPGA.MEMORY.InterfaceBArbitration" Type="UInt">1</Property>
  2164. <Property Name="NI.LV.FPGA.MEMORY.InterfaceConfig" Type="UInt">0</Property>
  2165. <Property Name="NI.LV.FPGA.MEMORY.RequestedNumberOfElements" Type="UInt">8</Property>
  2166. <Property Name="NI.LV.FPGA.MEMORY.Type" Type="UInt">2</Property>
  2167. <Property Name="NI.LV.FPGA.ScriptConfigString" Type="Str">Actual Number of Elements=8;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A000000080001001A00000008FFFFFFFFFE0000000001001A000000080000000001FFFFFF00000001FFFFFFEF000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2Persist Memory ValuesFALSE;</Property>
  2168. <Property Name="NI.LV.FPGA.Valid" Type="Bool">true</Property>
  2169. <Property Name="NI.LV.FPGA.Version" Type="Int">10</Property>
  2170. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F0351001A000000080001001A00000008FFFFFFFFFE0000000001001A000000080000000001FFFFFF00000001FFFFFFEF000000000000000100010000000000000000000000000000</Property>
  2171. </Item>
  2172. <Item Name="伺服缸极性" Type="FPGA Memory Block">
  2173. <Property Name="FPGA.PersistentID" Type="Str">{205B7E53-ADAF-4C8A-B224-A9693BA1DCFF}</Property>
  2174. <Property Name="fullEmulation" Type="Bool">false</Property>
  2175. <Property Name="Memory Latency" Type="UInt">2</Property>
  2176. <Property Name="Multiple Clock Domains" Type="Bool">false</Property>
  2177. <Property Name="NI.LV.FPGA.CompileConfigString" Type="Str">Actual Number of Elements=8;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F03510002000000020001000200000002FFFFFFFFFFFFFFFE000100020000000200000000000000010000000100000001000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2</Property>
  2178. <Property Name="NI.LV.FPGA.MEMORY.ActualNumberOfElements" Type="UInt">8</Property>
  2179. <Property Name="NI.LV.FPGA.MEMORY.DataWidth" Type="UInt">9</Property>
  2180. <Property Name="NI.LV.FPGA.MEMORY.DramIncludeByteEnables" Type="Bool">false</Property>
  2181. <Property Name="NI.LV.FPGA.MEMORY.DramMaxOutstandingRequests" Type="Int">64</Property>
  2182. <Property Name="NI.LV.FPGA.MEMORY.DramSelection" Type="Str">DramBank0</Property>
  2183. <Property Name="NI.LV.FPGA.MEMORY.Init" Type="Bool">false</Property>
  2184. <Property Name="NI.LV.FPGA.MEMORY.InitData" Type="Str"></Property>
  2185. <Property Name="NI.LV.FPGA.MEMORY.InitVIPath" Type="Str"></Property>
  2186. <Property Name="NI.LV.FPGA.MEMORY.InterfaceAArbitration" Type="UInt">1</Property>
  2187. <Property Name="NI.LV.FPGA.MEMORY.InterfaceBArbitration" Type="UInt">1</Property>
  2188. <Property Name="NI.LV.FPGA.MEMORY.InterfaceConfig" Type="UInt">0</Property>
  2189. <Property Name="NI.LV.FPGA.MEMORY.RequestedNumberOfElements" Type="UInt">8</Property>
  2190. <Property Name="NI.LV.FPGA.MEMORY.Type" Type="UInt">2</Property>
  2191. <Property Name="NI.LV.FPGA.ScriptConfigString" Type="Str">Actual Number of Elements=8;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F03510002000000020001000200000002FFFFFFFFFFFFFFFE000100020000000200000000000000010000000100000001000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2Persist Memory ValuesFALSE;</Property>
  2192. <Property Name="NI.LV.FPGA.Valid" Type="Bool">true</Property>
  2193. <Property Name="NI.LV.FPGA.Version" Type="Int">10</Property>
  2194. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F03510002000000020001000200000002FFFFFFFFFFFFFFFE000100020000000200000000000000010000000100000001000000000000000100010000000000000000000000000000</Property>
  2195. </Item>
  2196. <Item Name="当前位置" Type="FPGA Memory Block">
  2197. <Property Name="FPGA.PersistentID" Type="Str">{BA38EA78-2917-4104-8844-BBC47267C721}</Property>
  2198. <Property Name="fullEmulation" Type="Bool">false</Property>
  2199. <Property Name="Memory Latency" Type="UInt">2</Property>
  2200. <Property Name="Multiple Clock Domains" Type="Bool">false</Property>
  2201. <Property Name="NI.LV.FPGA.CompileConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2</Property>
  2202. <Property Name="NI.LV.FPGA.MEMORY.ActualNumberOfElements" Type="UInt">6</Property>
  2203. <Property Name="NI.LV.FPGA.MEMORY.DataWidth" Type="UInt">9</Property>
  2204. <Property Name="NI.LV.FPGA.MEMORY.DramIncludeByteEnables" Type="Bool">false</Property>
  2205. <Property Name="NI.LV.FPGA.MEMORY.DramMaxOutstandingRequests" Type="Int">64</Property>
  2206. <Property Name="NI.LV.FPGA.MEMORY.DramSelection" Type="Str">DramBank0</Property>
  2207. <Property Name="NI.LV.FPGA.MEMORY.Init" Type="Bool">false</Property>
  2208. <Property Name="NI.LV.FPGA.MEMORY.InitData" Type="Str"></Property>
  2209. <Property Name="NI.LV.FPGA.MEMORY.InitVIPath" Type="Str"></Property>
  2210. <Property Name="NI.LV.FPGA.MEMORY.InterfaceAArbitration" Type="UInt">1</Property>
  2211. <Property Name="NI.LV.FPGA.MEMORY.InterfaceBArbitration" Type="UInt">1</Property>
  2212. <Property Name="NI.LV.FPGA.MEMORY.InterfaceConfig" Type="UInt">0</Property>
  2213. <Property Name="NI.LV.FPGA.MEMORY.RequestedNumberOfElements" Type="UInt">6</Property>
  2214. <Property Name="NI.LV.FPGA.MEMORY.Type" Type="UInt">2</Property>
  2215. <Property Name="NI.LV.FPGA.ScriptConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2Persist Memory ValuesFALSE;</Property>
  2216. <Property Name="NI.LV.FPGA.Valid" Type="Bool">true</Property>
  2217. <Property Name="NI.LV.FPGA.Version" Type="Int">10</Property>
  2218. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000</Property>
  2219. </Item>
  2220. <Item Name="给定位移" Type="FPGA Memory Block">
  2221. <Property Name="FPGA.PersistentID" Type="Str">{84FE0652-7ACA-4EEC-9463-553B46A5ED8A}</Property>
  2222. <Property Name="fullEmulation" Type="Bool">false</Property>
  2223. <Property Name="Memory Latency" Type="UInt">2</Property>
  2224. <Property Name="Multiple Clock Domains" Type="Bool">false</Property>
  2225. <Property Name="NI.LV.FPGA.CompileConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A000100010000000AFFFFFFFFFFFFFFFF00000019000000090000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2</Property>
  2226. <Property Name="NI.LV.FPGA.MEMORY.ActualNumberOfElements" Type="UInt">6</Property>
  2227. <Property Name="NI.LV.FPGA.MEMORY.DataWidth" Type="UInt">9</Property>
  2228. <Property Name="NI.LV.FPGA.MEMORY.DramIncludeByteEnables" Type="Bool">false</Property>
  2229. <Property Name="NI.LV.FPGA.MEMORY.DramMaxOutstandingRequests" Type="Int">64</Property>
  2230. <Property Name="NI.LV.FPGA.MEMORY.DramSelection" Type="Str">DramBank0</Property>
  2231. <Property Name="NI.LV.FPGA.MEMORY.Init" Type="Bool">false</Property>
  2232. <Property Name="NI.LV.FPGA.MEMORY.InitData" Type="Str"></Property>
  2233. <Property Name="NI.LV.FPGA.MEMORY.InitVIPath" Type="Str"></Property>
  2234. <Property Name="NI.LV.FPGA.MEMORY.InterfaceAArbitration" Type="UInt">1</Property>
  2235. <Property Name="NI.LV.FPGA.MEMORY.InterfaceBArbitration" Type="UInt">1</Property>
  2236. <Property Name="NI.LV.FPGA.MEMORY.InterfaceConfig" Type="UInt">0</Property>
  2237. <Property Name="NI.LV.FPGA.MEMORY.RequestedNumberOfElements" Type="UInt">6</Property>
  2238. <Property Name="NI.LV.FPGA.MEMORY.Type" Type="UInt">2</Property>
  2239. <Property Name="NI.LV.FPGA.ScriptConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F0351001A0000000A000100010000000AFFFFFFFFFFFFFFFF00000019000000090000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=50;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2Persist Memory ValuesFALSE;</Property>
  2240. <Property Name="NI.LV.FPGA.Valid" Type="Bool">true</Property>
  2241. <Property Name="NI.LV.FPGA.Version" Type="Int">10</Property>
  2242. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F0351001A0000000A000100010000000AFFFFFFFFFFFFFFFF00000019000000090000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000</Property>
  2243. </Item>
  2244. <Item Name="急停" Type="FPGA Register">
  2245. <Property Name="Arbitration For Write" Type="UInt">1</Property>
  2246. <Property Name="Compile Config String" Type="Str">"DataType=1000800000000001000A402104426F6F6C00000100000000000000;InitDataHash=;Name=急停;WriteArb=1"</Property>
  2247. <Property Name="Data Type" Type="UInt">0</Property>
  2248. <Property Name="FPGA.PersistentID" Type="Str">{C1CCFDBB-C1EE-416B-8C1B-FB39301B628C}</Property>
  2249. <Property Name="Initial Data" Type="Str"></Property>
  2250. <Property Name="Initialized" Type="Bool">false</Property>
  2251. <Property Name="InitVIPath" Type="Str"></Property>
  2252. <Property Name="Type Descriptor" Type="Str">1000800000000001000A402104426F6F6C00000100000000000000</Property>
  2253. <Property Name="Valid" Type="Bool">true</Property>
  2254. <Property Name="Version" Type="Int">1</Property>
  2255. </Item>
  2256. <Item Name="静支撑直偏" Type="FPGA Memory Block">
  2257. <Property Name="FPGA.PersistentID" Type="Str">{0A826EDD-92CE-4102-A277-81601A5222FE}</Property>
  2258. <Property Name="fullEmulation" Type="Bool">false</Property>
  2259. <Property Name="Memory Latency" Type="UInt">2</Property>
  2260. <Property Name="Multiple Clock Domains" Type="Bool">false</Property>
  2261. <Property Name="NI.LV.FPGA.CompileConfigString" Type="Str">Actual Number of Elements=4;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F03510014000000050001001400000005FFFFFFFFFFF800000001001400000005000000000007FFFF00000001FFFFFFF2000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2</Property>
  2262. <Property Name="NI.LV.FPGA.MEMORY.ActualNumberOfElements" Type="UInt">4</Property>
  2263. <Property Name="NI.LV.FPGA.MEMORY.DataWidth" Type="UInt">9</Property>
  2264. <Property Name="NI.LV.FPGA.MEMORY.DramIncludeByteEnables" Type="Bool">false</Property>
  2265. <Property Name="NI.LV.FPGA.MEMORY.DramMaxOutstandingRequests" Type="Int">64</Property>
  2266. <Property Name="NI.LV.FPGA.MEMORY.DramSelection" Type="Str">DramBank0</Property>
  2267. <Property Name="NI.LV.FPGA.MEMORY.Init" Type="Bool">false</Property>
  2268. <Property Name="NI.LV.FPGA.MEMORY.InitData" Type="Str"></Property>
  2269. <Property Name="NI.LV.FPGA.MEMORY.InitVIPath" Type="Str"></Property>
  2270. <Property Name="NI.LV.FPGA.MEMORY.InterfaceAArbitration" Type="UInt">1</Property>
  2271. <Property Name="NI.LV.FPGA.MEMORY.InterfaceBArbitration" Type="UInt">1</Property>
  2272. <Property Name="NI.LV.FPGA.MEMORY.InterfaceConfig" Type="UInt">0</Property>
  2273. <Property Name="NI.LV.FPGA.MEMORY.RequestedNumberOfElements" Type="UInt">4</Property>
  2274. <Property Name="NI.LV.FPGA.MEMORY.Type" Type="UInt">2</Property>
  2275. <Property Name="NI.LV.FPGA.ScriptConfigString" Type="Str">Actual Number of Elements=4;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F03510014000000050001001400000005FFFFFFFFFFF800000001001400000005000000000007FFFF00000001FFFFFFF2000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2Persist Memory ValuesFALSE;</Property>
  2276. <Property Name="NI.LV.FPGA.Valid" Type="Bool">true</Property>
  2277. <Property Name="NI.LV.FPGA.Version" Type="Int">10</Property>
  2278. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F03510014000000050001001400000005FFFFFFFFFFF800000001001400000005000000000007FFFF00000001FFFFFFF2000000000000000100010000000000000000000000000000</Property>
  2279. </Item>
  2280. <Item Name="平衡缸历史驱动" Type="FPGA Memory Block">
  2281. <Property Name="FPGA.PersistentID" Type="Str">{A65858E3-FB05-4F5E-B096-870B17546F8D}</Property>
  2282. <Property Name="fullEmulation" Type="Bool">false</Property>
  2283. <Property Name="Memory Latency" Type="UInt">2</Property>
  2284. <Property Name="Multiple Clock Domains" Type="Bool">false</Property>
  2285. <Property Name="NI.LV.FPGA.CompileConfigString" Type="Str">Actual Number of Elements=4;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F03510014000000050001001400000005FFFFFFFFFFF800000001001400000005000000000007FFFF00000001FFFFFFF2000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2</Property>
  2286. <Property Name="NI.LV.FPGA.MEMORY.ActualNumberOfElements" Type="UInt">4</Property>
  2287. <Property Name="NI.LV.FPGA.MEMORY.DataWidth" Type="UInt">9</Property>
  2288. <Property Name="NI.LV.FPGA.MEMORY.DramIncludeByteEnables" Type="Bool">false</Property>
  2289. <Property Name="NI.LV.FPGA.MEMORY.DramMaxOutstandingRequests" Type="Int">64</Property>
  2290. <Property Name="NI.LV.FPGA.MEMORY.DramSelection" Type="Str">DramBank0</Property>
  2291. <Property Name="NI.LV.FPGA.MEMORY.Init" Type="Bool">false</Property>
  2292. <Property Name="NI.LV.FPGA.MEMORY.InitData" Type="Str"></Property>
  2293. <Property Name="NI.LV.FPGA.MEMORY.InitVIPath" Type="Str"></Property>
  2294. <Property Name="NI.LV.FPGA.MEMORY.InterfaceAArbitration" Type="UInt">1</Property>
  2295. <Property Name="NI.LV.FPGA.MEMORY.InterfaceBArbitration" Type="UInt">1</Property>
  2296. <Property Name="NI.LV.FPGA.MEMORY.InterfaceConfig" Type="UInt">0</Property>
  2297. <Property Name="NI.LV.FPGA.MEMORY.RequestedNumberOfElements" Type="UInt">4</Property>
  2298. <Property Name="NI.LV.FPGA.MEMORY.Type" Type="UInt">2</Property>
  2299. <Property Name="NI.LV.FPGA.ScriptConfigString" Type="Str">Actual Number of Elements=4;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F03510014000000050001001400000005FFFFFFFFFFF800000001001400000005000000000007FFFF00000001FFFFFFF2000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2Persist Memory ValuesFALSE;</Property>
  2300. <Property Name="NI.LV.FPGA.Valid" Type="Bool">true</Property>
  2301. <Property Name="NI.LV.FPGA.Version" Type="Int">10</Property>
  2302. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F03510014000000050001001400000005FFFFFFFFFFF800000001001400000005000000000007FFFF00000001FFFFFFF2000000000000000100010000000000000000000000000000</Property>
  2303. </Item>
  2304. </Item>
  2305. <Item Name="采集定义" Type="Folder">
  2306. <Item Name="采样率" Type="FPGA Register">
  2307. <Property Name="Arbitration For Write" Type="UInt">2</Property>
  2308. <Property Name="Compile Config String" Type="Str">"DataType=1000800000000001003C005F0311001000000010000000100000001000000000000000000000001000000010000000000000FFFF0000000100000001000000000000000100010000000000000000000000000000;InitDataHash=;Name=采样率;WriteArb=2"</Property>
  2309. <Property Name="Data Type" Type="UInt">9</Property>
  2310. <Property Name="FPGA.PersistentID" Type="Str">{F14C3F15-3794-4437-B070-4FB693499E85}</Property>
  2311. <Property Name="Initial Data" Type="Str"></Property>
  2312. <Property Name="Initialized" Type="Bool">false</Property>
  2313. <Property Name="InitVIPath" Type="Str"></Property>
  2314. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F0311001000000010000000100000001000000000000000000000001000000010000000000000FFFF0000000100000001000000000000000100010000000000000000000000000000</Property>
  2315. <Property Name="Valid" Type="Bool">true</Property>
  2316. <Property Name="Version" Type="Int">1</Property>
  2317. </Item>
  2318. <Item Name="采样间隔" Type="FPGA Register">
  2319. <Property Name="Arbitration For Write" Type="UInt">2</Property>
  2320. <Property Name="Compile Config String" Type="Str">"DataType=1000800000000001003C005F0311001000000000000000010000000100000000000000000000001000000000000000000000FFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;InitDataHash=;Name=采样间隔;WriteArb=2"</Property>
  2321. <Property Name="Data Type" Type="UInt">9</Property>
  2322. <Property Name="FPGA.PersistentID" Type="Str">{77D64A1B-1C26-4379-A085-83538B448606}</Property>
  2323. <Property Name="Initial Data" Type="Str"></Property>
  2324. <Property Name="Initialized" Type="Bool">false</Property>
  2325. <Property Name="InitVIPath" Type="Str"></Property>
  2326. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F0311001000000000000000010000000100000000000000000000001000000000000000000000FFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000</Property>
  2327. <Property Name="Valid" Type="Bool">true</Property>
  2328. <Property Name="Version" Type="Int">1</Property>
  2329. </Item>
  2330. </Item>
  2331. <Item Name="自由度" Type="Folder">
  2332. <Item Name="DOF_Gain" Type="FPGA Register">
  2333. <Property Name="Arbitration For Write" Type="UInt">1</Property>
  2334. <Property Name="Compile Config String" Type="Str">"DataType=1000800000000001003C005F0351001A000000080001001A00000008FFFFFFFFFE0000000001001A000000080000000001FFFFFF00000001FFFFFFEF000000000000000100010000000000000000000000000000;InitDataHash=;Name=DOF_Gain;WriteArb=1"</Property>
  2335. <Property Name="Data Type" Type="UInt">9</Property>
  2336. <Property Name="FPGA.PersistentID" Type="Str">{6629FB36-711F-4102-A602-431FE92872DC}</Property>
  2337. <Property Name="Initial Data" Type="Str"></Property>
  2338. <Property Name="Initialized" Type="Bool">false</Property>
  2339. <Property Name="InitVIPath" Type="Str"></Property>
  2340. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F0351001A000000080001001A00000008FFFFFFFFFE0000000001001A000000080000000001FFFFFF00000001FFFFFFEF000000000000000100010000000000000000000000000000</Property>
  2341. <Property Name="Valid" Type="Bool">true</Property>
  2342. <Property Name="Version" Type="Int">1</Property>
  2343. </Item>
  2344. <Item Name="Y边长" Type="FPGA Register">
  2345. <Property Name="Arbitration For Write" Type="UInt">2</Property>
  2346. <Property Name="Compile Config String" Type="Str">"DataType=1000800000000001003C005F03110018000000100000000100000001000000000000000000000018000000100000000000FFFFFF00000001FFFFFFF9000000000000000100010000000000000000000000000000;InitDataHash=;Name=Y边长;WriteArb=2"</Property>
  2347. <Property Name="Data Type" Type="UInt">9</Property>
  2348. <Property Name="FPGA.PersistentID" Type="Str">{1555DD2A-E64B-4D30-991E-76E833683188}</Property>
  2349. <Property Name="Initial Data" Type="Str"></Property>
  2350. <Property Name="Initialized" Type="Bool">false</Property>
  2351. <Property Name="InitVIPath" Type="Str"></Property>
  2352. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F03110018000000100000000100000001000000000000000000000018000000100000000000FFFFFF00000001FFFFFFF9000000000000000100010000000000000000000000000000</Property>
  2353. <Property Name="Valid" Type="Bool">true</Property>
  2354. <Property Name="Version" Type="Int">1</Property>
  2355. </Item>
  2356. <Item Name="X边长" Type="FPGA Register">
  2357. <Property Name="Arbitration For Write" Type="UInt">2</Property>
  2358. <Property Name="Compile Config String" Type="Str">"DataType=1000800000000001003C005F03110018000000100000001800000010000000000000000000000018000000100000000000FFFFFF00000001FFFFFFF9000000000000000100010000000000000000000000000000;InitDataHash=;Name=X边长;WriteArb=2"</Property>
  2359. <Property Name="Data Type" Type="UInt">9</Property>
  2360. <Property Name="FPGA.PersistentID" Type="Str">{704CE97B-B697-45C6-A529-3E8E508D9240}</Property>
  2361. <Property Name="Initial Data" Type="Str"></Property>
  2362. <Property Name="Initialized" Type="Bool">false</Property>
  2363. <Property Name="InitVIPath" Type="Str"></Property>
  2364. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F03110018000000100000001800000010000000000000000000000018000000100000000000FFFFFF00000001FFFFFFF9000000000000000100010000000000000000000000000000</Property>
  2365. <Property Name="Valid" Type="Bool">true</Property>
  2366. <Property Name="Version" Type="Int">1</Property>
  2367. </Item>
  2368. <Item Name="Z向距离" Type="FPGA Register">
  2369. <Property Name="Arbitration For Write" Type="UInt">2</Property>
  2370. <Property Name="Compile Config String" Type="Str">"DataType=1000800000000001003C005F03110018000000100000001800000010000000000000000000000018000000100000000000FFFFFF00000001FFFFFFF9000000000000000100010000000000000000000000000000;InitDataHash=;Name=Z向距离;WriteArb=2"</Property>
  2371. <Property Name="Data Type" Type="UInt">9</Property>
  2372. <Property Name="FPGA.PersistentID" Type="Str">{3869AB57-F537-4EDB-96E9-088362E14C6F}</Property>
  2373. <Property Name="Initial Data" Type="Str"></Property>
  2374. <Property Name="Initialized" Type="Bool">false</Property>
  2375. <Property Name="InitVIPath" Type="Str"></Property>
  2376. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F03110018000000100000001800000010000000000000000000000018000000100000000000FFFFFF00000001FFFFFFF9000000000000000100010000000000000000000000000000</Property>
  2377. <Property Name="Valid" Type="Bool">true</Property>
  2378. <Property Name="Version" Type="Int">1</Property>
  2379. </Item>
  2380. <Item Name="X向距离" Type="FPGA Register">
  2381. <Property Name="Arbitration For Write" Type="UInt">2</Property>
  2382. <Property Name="Compile Config String" Type="Str">"DataType=1000800000000001003C005F03110018000000100000001800000010000000000000000000000018000000100000000000FFFFFF00000001FFFFFFF9000000000000000100010000000000000000000000000000;InitDataHash=;Name=X向距离;WriteArb=2"</Property>
  2383. <Property Name="Data Type" Type="UInt">9</Property>
  2384. <Property Name="FPGA.PersistentID" Type="Str">{AD1CB858-C60C-4314-B06A-2057C618659A}</Property>
  2385. <Property Name="Initial Data" Type="Str"></Property>
  2386. <Property Name="Initialized" Type="Bool">false</Property>
  2387. <Property Name="InitVIPath" Type="Str"></Property>
  2388. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F03110018000000100000001800000010000000000000000000000018000000100000000000FFFFFF00000001FFFFFFF9000000000000000100010000000000000000000000000000</Property>
  2389. <Property Name="Valid" Type="Bool">true</Property>
  2390. <Property Name="Version" Type="Int">1</Property>
  2391. </Item>
  2392. <Item Name="Y向距离" Type="FPGA Register">
  2393. <Property Name="Arbitration For Write" Type="UInt">2</Property>
  2394. <Property Name="Compile Config String" Type="Str">"DataType=1000800000000001003C005F03110018000000100000001800000010000000000000000000000018000000100000000000FFFFFF00000001FFFFFFF9000000000000000100010000000000000000000000000000;InitDataHash=;Name=X向距离;WriteArb=2"</Property>
  2395. <Property Name="Data Type" Type="UInt">9</Property>
  2396. <Property Name="FPGA.PersistentID" Type="Str">{8D0D255A-6090-418C-A984-68FE017E582B}</Property>
  2397. <Property Name="Initial Data" Type="Str"></Property>
  2398. <Property Name="Initialized" Type="Bool">false</Property>
  2399. <Property Name="InitVIPath" Type="Str"></Property>
  2400. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F03110018000000100000001800000010000000000000000000000018000000100000000000FFFFFF00000001FFFFFFF9000000000000000100010000000000000000000000000000</Property>
  2401. <Property Name="Valid" Type="Bool">true</Property>
  2402. <Property Name="Version" Type="Int">1</Property>
  2403. </Item>
  2404. <Item Name="X向比值" Type="FPGA Register">
  2405. <Property Name="Arbitration For Write" Type="UInt">2</Property>
  2406. <Property Name="Compile Config String" Type="Str">"DataType=1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000;InitDataHash=;Name=X向比值;WriteArb=2"</Property>
  2407. <Property Name="Data Type" Type="UInt">9</Property>
  2408. <Property Name="FPGA.PersistentID" Type="Str">{13004F2A-1B63-4A37-AC34-66729D8E95BC}</Property>
  2409. <Property Name="Initial Data" Type="Str"></Property>
  2410. <Property Name="Initialized" Type="Bool">false</Property>
  2411. <Property Name="InitVIPath" Type="Str"></Property>
  2412. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000</Property>
  2413. <Property Name="Valid" Type="Bool">true</Property>
  2414. <Property Name="Version" Type="Int">1</Property>
  2415. </Item>
  2416. <Item Name="Y向比值" Type="FPGA Register">
  2417. <Property Name="Arbitration For Write" Type="UInt">2</Property>
  2418. <Property Name="Compile Config String" Type="Str">"DataType=1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000;InitDataHash=;Name=X向比值;WriteArb=2"</Property>
  2419. <Property Name="Data Type" Type="UInt">9</Property>
  2420. <Property Name="FPGA.PersistentID" Type="Str">{7F0FCC69-4979-461D-91D8-F2E1058FA298}</Property>
  2421. <Property Name="Initial Data" Type="Str"></Property>
  2422. <Property Name="Initialized" Type="Bool">false</Property>
  2423. <Property Name="InitVIPath" Type="Str"></Property>
  2424. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F03110018000000000000000100000001000000000000000000000018000000000000000000FFFFFF00000001FFFFFFE9000000000000000100010000000000000000000000000000</Property>
  2425. <Property Name="Valid" Type="Bool">true</Property>
  2426. <Property Name="Version" Type="Int">1</Property>
  2427. </Item>
  2428. <Item Name="LX0" Type="FPGA Register">
  2429. <Property Name="Arbitration For Write" Type="UInt">2</Property>
  2430. <Property Name="Compile Config String" Type="Str">"DataType=1000800000000001003C005F03110018000000100000001800000010000000000000000000000018000000100000000000FFFFFF00000001FFFFFFF9000000000000000100010000000000000000000000000000;InitDataHash=;Name=LX0;WriteArb=2"</Property>
  2431. <Property Name="Data Type" Type="UInt">9</Property>
  2432. <Property Name="FPGA.PersistentID" Type="Str">{E0547409-73D8-4E09-81E2-1655E94479E6}</Property>
  2433. <Property Name="Initial Data" Type="Str"></Property>
  2434. <Property Name="Initialized" Type="Bool">false</Property>
  2435. <Property Name="InitVIPath" Type="Str"></Property>
  2436. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F03110018000000100000001800000010000000000000000000000018000000100000000000FFFFFF00000001FFFFFFF9000000000000000100010000000000000000000000000000</Property>
  2437. <Property Name="Valid" Type="Bool">true</Property>
  2438. <Property Name="Version" Type="Int">1</Property>
  2439. </Item>
  2440. <Item Name="LY0" Type="FPGA Register">
  2441. <Property Name="Arbitration For Write" Type="UInt">2</Property>
  2442. <Property Name="Compile Config String" Type="Str">"DataType=1000800000000001003C005F03110018000000100000001800000010000000000000000000000018000000100000000000FFFFFF00000001FFFFFFF9000000000000000100010000000000000000000000000000;InitDataHash=;Name=LX0;WriteArb=2"</Property>
  2443. <Property Name="Data Type" Type="UInt">9</Property>
  2444. <Property Name="FPGA.PersistentID" Type="Str">{EB9FDF15-33D1-4E72-894F-2A508028F111}</Property>
  2445. <Property Name="Initial Data" Type="Str"></Property>
  2446. <Property Name="Initialized" Type="Bool">false</Property>
  2447. <Property Name="InitVIPath" Type="Str"></Property>
  2448. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F03110018000000100000001800000010000000000000000000000018000000100000000000FFFFFF00000001FFFFFFF9000000000000000100010000000000000000000000000000</Property>
  2449. <Property Name="Valid" Type="Bool">true</Property>
  2450. <Property Name="Version" Type="Int">1</Property>
  2451. </Item>
  2452. <Item Name="LZ0" Type="FPGA Register">
  2453. <Property Name="Arbitration For Write" Type="UInt">2</Property>
  2454. <Property Name="Compile Config String" Type="Str">"DataType=1000800000000001003C005F03110018000000100000001800000010000000000000000000000018000000100000000000FFFFFF00000001FFFFFFF9000000000000000100010000000000000000000000000000;InitDataHash=;Name=LX0;WriteArb=2"</Property>
  2455. <Property Name="Data Type" Type="UInt">9</Property>
  2456. <Property Name="FPGA.PersistentID" Type="Str">{0661AD87-FDF9-45E1-9041-A9B2CB845C00}</Property>
  2457. <Property Name="Initial Data" Type="Str"></Property>
  2458. <Property Name="Initialized" Type="Bool">false</Property>
  2459. <Property Name="InitVIPath" Type="Str"></Property>
  2460. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F03110018000000100000001800000010000000000000000000000018000000100000000000FFFFFF00000001FFFFFFF9000000000000000100010000000000000000000000000000</Property>
  2461. <Property Name="Valid" Type="Bool">true</Property>
  2462. <Property Name="Version" Type="Int">1</Property>
  2463. </Item>
  2464. <Item Name="自由度控制误差" Type="FPGA Memory Block">
  2465. <Property Name="FPGA.PersistentID" Type="Str">{E3B1A9BE-B3E1-4AC1-B3FB-CB456208AD1E}</Property>
  2466. <Property Name="fullEmulation" Type="Bool">false</Property>
  2467. <Property Name="Memory Latency" Type="UInt">2</Property>
  2468. <Property Name="Multiple Clock Domains" Type="Bool">false</Property>
  2469. <Property Name="NI.LV.FPGA.CompileConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F03510010000000060001001000000006FFFFFFFFFFFF800000010010000000060000000000007FFF00000001FFFFFFF7000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2</Property>
  2470. <Property Name="NI.LV.FPGA.MEMORY.ActualNumberOfElements" Type="UInt">6</Property>
  2471. <Property Name="NI.LV.FPGA.MEMORY.DataWidth" Type="UInt">9</Property>
  2472. <Property Name="NI.LV.FPGA.MEMORY.DramIncludeByteEnables" Type="Bool">false</Property>
  2473. <Property Name="NI.LV.FPGA.MEMORY.DramMaxOutstandingRequests" Type="Int">64</Property>
  2474. <Property Name="NI.LV.FPGA.MEMORY.DramSelection" Type="Str">DramBank0</Property>
  2475. <Property Name="NI.LV.FPGA.MEMORY.Init" Type="Bool">false</Property>
  2476. <Property Name="NI.LV.FPGA.MEMORY.InitData" Type="Str"></Property>
  2477. <Property Name="NI.LV.FPGA.MEMORY.InitVIPath" Type="Str"></Property>
  2478. <Property Name="NI.LV.FPGA.MEMORY.InterfaceAArbitration" Type="UInt">1</Property>
  2479. <Property Name="NI.LV.FPGA.MEMORY.InterfaceBArbitration" Type="UInt">1</Property>
  2480. <Property Name="NI.LV.FPGA.MEMORY.InterfaceConfig" Type="UInt">0</Property>
  2481. <Property Name="NI.LV.FPGA.MEMORY.RequestedNumberOfElements" Type="UInt">6</Property>
  2482. <Property Name="NI.LV.FPGA.MEMORY.Type" Type="UInt">2</Property>
  2483. <Property Name="NI.LV.FPGA.ScriptConfigString" Type="Str">Actual Number of Elements=6;ReadArbs=1;WriteArbs=1;Implementation=2;DataType=1000800000000001003C005F03510010000000060001001000000006FFFFFFFFFFFF800000010010000000060000000000007FFF00000001FFFFFFF7000000000000000100010000000000000000000000000000;InitDataHash=;DRAM Selection=DramBank0;DRAM Max Outstanding Requests=64;DRAM Include Byte Enables=FALSE;DRAM Grant Time=0;Interface Configuration=Read A-Write B;Multiple Clock Domains=FALSE;Memory Latency=2Persist Memory ValuesFALSE;</Property>
  2484. <Property Name="NI.LV.FPGA.Valid" Type="Bool">true</Property>
  2485. <Property Name="NI.LV.FPGA.Version" Type="Int">10</Property>
  2486. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F03510010000000060001001000000006FFFFFFFFFFFF800000010010000000060000000000007FFF00000001FFFFFFF7000000000000000100010000000000000000000000000000</Property>
  2487. </Item>
  2488. </Item>
  2489. <Item Name="颤振" Type="Folder">
  2490. <Item Name="颤振信号相位" Type="FPGA Register">
  2491. <Property Name="Arbitration For Write" Type="UInt">2</Property>
  2492. <Property Name="Compile Config String" Type="Str">"DataType=1000800000000001003C005F03110018000000020000001800000002000000000000000000000018000000020000000000FFFFFF00000001FFFFFFEB000000000000000100010000000000000000000000000000;InitDataHash=;Name=颤振信号相位;WriteArb=2"</Property>
  2493. <Property Name="Data Type" Type="UInt">9</Property>
  2494. <Property Name="FPGA.PersistentID" Type="Str">{88FAB56B-8096-4096-944E-4E75D9665A7B}</Property>
  2495. <Property Name="Initial Data" Type="Str"></Property>
  2496. <Property Name="Initialized" Type="Bool">false</Property>
  2497. <Property Name="InitVIPath" Type="Str"></Property>
  2498. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F03110018000000020000001800000002000000000000000000000018000000020000000000FFFFFF00000001FFFFFFEB000000000000000100010000000000000000000000000000</Property>
  2499. <Property Name="Valid" Type="Bool">true</Property>
  2500. <Property Name="Version" Type="Int">1</Property>
  2501. </Item>
  2502. </Item>
  2503. </Item>
  2504. <Item Name="FPGA" Type="Folder" URL="../FPGA">
  2505. <Property Name="NI.DISK" Type="Bool">true</Property>
  2506. </Item>
  2507. <Item Name="RIO-DRAM" Type="FPGA Component Level IP">
  2508. <Property Name="NI.LV.CLIP.DeclarationCategory" Type="Str"></Property>
  2509. <Property Name="NI.LV.CLIP.SocketedCLIP" Type="Bool">true</Property>
  2510. <Property Name="NI.LV.CLIP.SocketSelection" Type="Str">RIO-DRAM</Property>
  2511. <Property Name="NI.LV.FPGA.Valid" Type="Bool">true</Property>
  2512. <Property Name="NI.SortType" Type="Int">3</Property>
  2513. </Item>
  2514. <Item Name="40 MHz Onboard Clock" Type="FPGA Base Clock">
  2515. <Property Name="FPGA.PersistentID" Type="Str">{391A754D-4E2C-49C8-85E9-32AB3913748E}</Property>
  2516. <Property Name="NI.LV.FPGA.BaseTSConfig" Type="Str">ResourceName=40 MHz Onboard Clock;TopSignalConnect=Clk40;ClockSignalName=Clk40;MinFreq=40000000.000000;MaxFreq=40000000.000000;VariableFreq=0;NomFreq=40000000.000000;PeakPeriodJitter=250.000000;MinDutyCycle=50.000000;MaxDutyCycle=50.000000;Accuracy=100.000000;RunTime=0;SpreadSpectrum=0;GenericDataHash=D41D8CD98F00B204E9800998ECF8427E;</Property>
  2517. <Property Name="NI.LV.FPGA.BaseTSConfig.Accuracy" Type="Dbl">100</Property>
  2518. <Property Name="NI.LV.FPGA.BaseTSConfig.ClockSignalName" Type="Str">Clk40</Property>
  2519. <Property Name="NI.LV.FPGA.BaseTSConfig.MaxDutyCycle" Type="Dbl">50</Property>
  2520. <Property Name="NI.LV.FPGA.BaseTSConfig.MaxFrequency" Type="Dbl">40000000</Property>
  2521. <Property Name="NI.LV.FPGA.BaseTSConfig.MinDutyCycle" Type="Dbl">50</Property>
  2522. <Property Name="NI.LV.FPGA.BaseTSConfig.MinFrequency" Type="Dbl">40000000</Property>
  2523. <Property Name="NI.LV.FPGA.BaseTSConfig.NominalFrequency" Type="Dbl">40000000</Property>
  2524. <Property Name="NI.LV.FPGA.BaseTSConfig.PeakPeriodJitter" Type="Dbl">250</Property>
  2525. <Property Name="NI.LV.FPGA.BaseTSConfig.ResourceName" Type="Str">40 MHz Onboard Clock</Property>
  2526. <Property Name="NI.LV.FPGA.BaseTSConfig.SupportAndRequireRuntimeEnableDisable" Type="Bool">false</Property>
  2527. <Property Name="NI.LV.FPGA.BaseTSConfig.TopSignalConnect" Type="Str">Clk40</Property>
  2528. <Property Name="NI.LV.FPGA.BaseTSConfig.VariableFrequency" Type="Bool">false</Property>
  2529. <Property Name="NI.LV.FPGA.Valid" Type="Bool">true</Property>
  2530. <Property Name="NI.LV.FPGA.Version" Type="Int">5</Property>
  2531. </Item>
  2532. <Item Name="9205" Type="RIO C Series Module">
  2533. <Property Name="crio.Calibration" Type="Str">1</Property>
  2534. <Property Name="crio.Location" Type="Str">Slot 1</Property>
  2535. <Property Name="crio.RequiresValidation" Type="Bool">false</Property>
  2536. <Property Name="crio.SDcounterSlaveChannelMask" Type="Str">0</Property>
  2537. <Property Name="crio.SDCounterSlaveMasterSlot" Type="Str">0</Property>
  2538. <Property Name="crio.SDInputFilter" Type="Str">128</Property>
  2539. <Property Name="crio.SupportsDynamicRes" Type="Bool">true</Property>
  2540. <Property Name="crio.Type" Type="Str">NI 9205</Property>
  2541. <Property Name="cRIOModule.AI0.TerminalMode" Type="Str">0</Property>
  2542. <Property Name="cRIOModule.AI0.VoltageRange" Type="Str">0</Property>
  2543. <Property Name="cRIOModule.AI1.TerminalMode" Type="Str">0</Property>
  2544. <Property Name="cRIOModule.AI1.VoltageRange" Type="Str">0</Property>
  2545. <Property Name="cRIOModule.AI10.TerminalMode" Type="Str">0</Property>
  2546. <Property Name="cRIOModule.AI10.VoltageRange" Type="Str">0</Property>
  2547. <Property Name="cRIOModule.AI11.TerminalMode" Type="Str">0</Property>
  2548. <Property Name="cRIOModule.AI11.VoltageRange" Type="Str">0</Property>
  2549. <Property Name="cRIOModule.AI12.TerminalMode" Type="Str">0</Property>
  2550. <Property Name="cRIOModule.AI12.VoltageRange" Type="Str">0</Property>
  2551. <Property Name="cRIOModule.AI13.TerminalMode" Type="Str">0</Property>
  2552. <Property Name="cRIOModule.AI13.VoltageRange" Type="Str">0</Property>
  2553. <Property Name="cRIOModule.AI14.TerminalMode" Type="Str">0</Property>
  2554. <Property Name="cRIOModule.AI14.VoltageRange" Type="Str">0</Property>
  2555. <Property Name="cRIOModule.AI15.TerminalMode" Type="Str">0</Property>
  2556. <Property Name="cRIOModule.AI15.VoltageRange" Type="Str">0</Property>
  2557. <Property Name="cRIOModule.AI16.TerminalMode" Type="Str">0</Property>
  2558. <Property Name="cRIOModule.AI16.VoltageRange" Type="Str">0</Property>
  2559. <Property Name="cRIOModule.AI17.TerminalMode" Type="Str">0</Property>
  2560. <Property Name="cRIOModule.AI17.VoltageRange" Type="Str">0</Property>
  2561. <Property Name="cRIOModule.AI18.TerminalMode" Type="Str">0</Property>
  2562. <Property Name="cRIOModule.AI18.VoltageRange" Type="Str">0</Property>
  2563. <Property Name="cRIOModule.AI19.TerminalMode" Type="Str">0</Property>
  2564. <Property Name="cRIOModule.AI19.VoltageRange" Type="Str">0</Property>
  2565. <Property Name="cRIOModule.AI2.TerminalMode" Type="Str">0</Property>
  2566. <Property Name="cRIOModule.AI2.VoltageRange" Type="Str">0</Property>
  2567. <Property Name="cRIOModule.AI20.TerminalMode" Type="Str">0</Property>
  2568. <Property Name="cRIOModule.AI20.VoltageRange" Type="Str">0</Property>
  2569. <Property Name="cRIOModule.AI21.TerminalMode" Type="Str">0</Property>
  2570. <Property Name="cRIOModule.AI21.VoltageRange" Type="Str">0</Property>
  2571. <Property Name="cRIOModule.AI22.TerminalMode" Type="Str">0</Property>
  2572. <Property Name="cRIOModule.AI22.VoltageRange" Type="Str">0</Property>
  2573. <Property Name="cRIOModule.AI23.TerminalMode" Type="Str">0</Property>
  2574. <Property Name="cRIOModule.AI23.VoltageRange" Type="Str">0</Property>
  2575. <Property Name="cRIOModule.AI24.TerminalMode" Type="Str">0</Property>
  2576. <Property Name="cRIOModule.AI24.VoltageRange" Type="Str">0</Property>
  2577. <Property Name="cRIOModule.AI25.TerminalMode" Type="Str">0</Property>
  2578. <Property Name="cRIOModule.AI25.VoltageRange" Type="Str">0</Property>
  2579. <Property Name="cRIOModule.AI26.TerminalMode" Type="Str">0</Property>
  2580. <Property Name="cRIOModule.AI26.VoltageRange" Type="Str">0</Property>
  2581. <Property Name="cRIOModule.AI27.TerminalMode" Type="Str">0</Property>
  2582. <Property Name="cRIOModule.AI27.VoltageRange" Type="Str">0</Property>
  2583. <Property Name="cRIOModule.AI28.TerminalMode" Type="Str">0</Property>
  2584. <Property Name="cRIOModule.AI28.VoltageRange" Type="Str">0</Property>
  2585. <Property Name="cRIOModule.AI29.TerminalMode" Type="Str">0</Property>
  2586. <Property Name="cRIOModule.AI29.VoltageRange" Type="Str">0</Property>
  2587. <Property Name="cRIOModule.AI3.TerminalMode" Type="Str">0</Property>
  2588. <Property Name="cRIOModule.AI3.VoltageRange" Type="Str">0</Property>
  2589. <Property Name="cRIOModule.AI30.TerminalMode" Type="Str">0</Property>
  2590. <Property Name="cRIOModule.AI30.VoltageRange" Type="Str">0</Property>
  2591. <Property Name="cRIOModule.AI31.TerminalMode" Type="Str">0</Property>
  2592. <Property Name="cRIOModule.AI31.VoltageRange" Type="Str">0</Property>
  2593. <Property Name="cRIOModule.AI4.TerminalMode" Type="Str">0</Property>
  2594. <Property Name="cRIOModule.AI4.VoltageRange" Type="Str">0</Property>
  2595. <Property Name="cRIOModule.AI5.TerminalMode" Type="Str">0</Property>
  2596. <Property Name="cRIOModule.AI5.VoltageRange" Type="Str">0</Property>
  2597. <Property Name="cRIOModule.AI6.TerminalMode" Type="Str">0</Property>
  2598. <Property Name="cRIOModule.AI6.VoltageRange" Type="Str">0</Property>
  2599. <Property Name="cRIOModule.AI7.TerminalMode" Type="Str">0</Property>
  2600. <Property Name="cRIOModule.AI7.VoltageRange" Type="Str">0</Property>
  2601. <Property Name="cRIOModule.AI8.TerminalMode" Type="Str">0</Property>
  2602. <Property Name="cRIOModule.AI8.VoltageRange" Type="Str">0</Property>
  2603. <Property Name="cRIOModule.AI9.TerminalMode" Type="Str">0</Property>
  2604. <Property Name="cRIOModule.AI9.VoltageRange" Type="Str">0</Property>
  2605. <Property Name="cRIOModule.DigitalIOMode" Type="Str">0</Property>
  2606. <Property Name="cRIOModule.EnableCalProperties" Type="Str">false</Property>
  2607. <Property Name="cRIOModule.EnableSpecialtyDigital" Type="Str">false</Property>
  2608. <Property Name="cRIOModule.MinConvTime" Type="Str">8.000000E+0</Property>
  2609. <Property Name="FPGA.PersistentID" Type="Str">{537D628E-0CDA-4549-B962-CE8A3E50D791}</Property>
  2610. </Item>
  2611. <Item Name="9264" Type="RIO C Series Module">
  2612. <Property Name="crio.Calibration" Type="Str">1</Property>
  2613. <Property Name="crio.Location" Type="Str">Slot 2</Property>
  2614. <Property Name="crio.RequiresValidation" Type="Bool">false</Property>
  2615. <Property Name="crio.SDcounterSlaveChannelMask" Type="Str">0</Property>
  2616. <Property Name="crio.SDCounterSlaveMasterSlot" Type="Str">0</Property>
  2617. <Property Name="crio.SDInputFilter" Type="Str">128</Property>
  2618. <Property Name="crio.SupportsDynamicRes" Type="Bool">false</Property>
  2619. <Property Name="crio.Type" Type="Str">NI 9264</Property>
  2620. <Property Name="cRIOModule.DigitalIOMode" Type="Str">0</Property>
  2621. <Property Name="cRIOModule.EnableSpecialtyDigital" Type="Str">false</Property>
  2622. <Property Name="cRIOModule.HotSwapMode" Type="Str">0</Property>
  2623. <Property Name="FPGA.PersistentID" Type="Str">{1628C48D-B609-4E52-8030-595D4909DE45}</Property>
  2624. </Item>
  2625. <Item Name="9375" Type="RIO C Series Module">
  2626. <Property Name="crio.Calibration" Type="Str">1</Property>
  2627. <Property Name="crio.Location" Type="Str">Slot 3</Property>
  2628. <Property Name="crio.RequiresValidation" Type="Bool">false</Property>
  2629. <Property Name="crio.SDcounterSlaveChannelMask" Type="Str">0</Property>
  2630. <Property Name="crio.SDCounterSlaveMasterSlot" Type="Str">0</Property>
  2631. <Property Name="crio.SDInputFilter" Type="Str">128</Property>
  2632. <Property Name="crio.SupportsDynamicRes" Type="Bool">false</Property>
  2633. <Property Name="crio.Type" Type="Str">NI 9375</Property>
  2634. <Property Name="cRIOModule.DigitalIOMode" Type="Str">0</Property>
  2635. <Property Name="cRIOModule.EnableSpecialtyDigital" Type="Str">false</Property>
  2636. <Property Name="FPGA.PersistentID" Type="Str">{185856EF-F534-4340-8C09-2760DFE356C0}</Property>
  2637. </Item>
  2638. <Item Name="波形数据" Type="FPGA FIFO">
  2639. <Property Name="Actual Number of Elements" Type="UInt">131071</Property>
  2640. <Property Name="Arbitration for Read" Type="UInt">2</Property>
  2641. <Property Name="Arbitration for Write" Type="UInt">2</Property>
  2642. <Property Name="Control Logic" Type="UInt">0</Property>
  2643. <Property Name="Data Type" Type="UInt">9</Property>
  2644. <Property Name="Disable on Overflow/Underflow" Type="Bool">false</Property>
  2645. <Property Name="fifo.configuration" Type="Str">"ControlLogic=0;NumberOfElements=131071;Type=2;ReadArbs=Never Arbitrate;ElementsPerRead=1;WriteArbs=Never Arbitrate;ElementsPerWrite=16;Implementation=2;波形数据;DataType=1000800000000001003C005F0351001C0000000A000100010000000AFFFFFFFFFFFFFFFF0000001B000000090000000007FFFFFF00000001FFFFFFEF000000000000000100010000000000000000000000000000;DisableOnOverflowUnderflow=FALSE"</Property>
  2646. <Property Name="fifo.configured" Type="Bool">true</Property>
  2647. <Property Name="fifo.projectItemValid" Type="Bool">true</Property>
  2648. <Property Name="fifo.valid" Type="Bool">true</Property>
  2649. <Property Name="fifo.version" Type="Int">13</Property>
  2650. <Property Name="FPGA.PersistentID" Type="Str">{3410F25C-3F99-4121-890B-DE4AAF4AD5DE}</Property>
  2651. <Property Name="Local" Type="Bool">false</Property>
  2652. <Property Name="Memory Type" Type="UInt">2</Property>
  2653. <Property Name="Number Of Elements Per Read" Type="UInt">1</Property>
  2654. <Property Name="Number Of Elements Per Write" Type="UInt">16</Property>
  2655. <Property Name="Requested Number of Elements" Type="UInt">128000</Property>
  2656. <Property Name="Type" Type="UInt">2</Property>
  2657. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F0351001C0000000A000100010000000AFFFFFFFFFFFFFFFF0000001B000000090000000007FFFFFF00000001FFFFFFEF000000000000000100010000000000000000000000000000</Property>
  2658. </Item>
  2659. <Item Name="自定义波" Type="FPGA FIFO">
  2660. <Property Name="Actual Number of Elements" Type="UInt">32773</Property>
  2661. <Property Name="Arbitration for Read" Type="UInt">1</Property>
  2662. <Property Name="Arbitration for Write" Type="UInt">1</Property>
  2663. <Property Name="Control Logic" Type="UInt">0</Property>
  2664. <Property Name="Data Type" Type="UInt">9</Property>
  2665. <Property Name="Disable on Overflow/Underflow" Type="Bool">false</Property>
  2666. <Property Name="fifo.configuration" Type="Str">"ControlLogic=0;NumberOfElements=32773;Type=1;ReadArbs=Arbitrate if Multiple Requestors Only;ElementsPerRead=1;WriteArbs=Arbitrate if Multiple Requestors Only;ElementsPerWrite=1;Implementation=2;自定义波;DataType=1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000;DisableOnOverflowUnderflow=FALSE"</Property>
  2667. <Property Name="fifo.configured" Type="Bool">true</Property>
  2668. <Property Name="fifo.projectItemValid" Type="Bool">true</Property>
  2669. <Property Name="fifo.valid" Type="Bool">true</Property>
  2670. <Property Name="fifo.version" Type="Int">13</Property>
  2671. <Property Name="FPGA.PersistentID" Type="Str">{6A9107C0-57D9-4B8F-8F42-2225D71D0241}</Property>
  2672. <Property Name="Local" Type="Bool">false</Property>
  2673. <Property Name="Memory Type" Type="UInt">2</Property>
  2674. <Property Name="Number Of Elements Per Read" Type="UInt">1</Property>
  2675. <Property Name="Number Of Elements Per Write" Type="UInt">1</Property>
  2676. <Property Name="Requested Number of Elements" Type="UInt">24000</Property>
  2677. <Property Name="Type" Type="UInt">1</Property>
  2678. <Property Name="Type Descriptor" Type="Str">1000800000000001003C005F0351001A0000000A0001001A0000000AFFFFFFFFFE0000000001001A0000000A0000000001FFFFFF00000001FFFFFFF1000000000000000100010000000000000000000000000000</Property>
  2679. </Item>
  2680. <Item Name="依赖关系" Type="Dependencies">
  2681. <Item Name="vi.lib" Type="Folder">
  2682. <Item Name="FxpSim.dll" Type="Document" URL="/&lt;vilib&gt;/rvi/FXPMathLib/sim/FxpSim.dll"/>
  2683. <Item Name="Clear Errors.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/Clear Errors.vi"/>
  2684. <Item Name="LVFixedPointOverflowPolicyTypeDef.ctl" Type="VI" URL="/&lt;vilib&gt;/fxp/LVFixedPointOverflowPolicyTypeDef.ctl"/>
  2685. <Item Name="lvSimController.dll" Type="Document" URL="/&lt;vilib&gt;/rvi/Simulation/lvSimController.dll"/>
  2686. </Item>
  2687. </Item>
  2688. <Item Name="程序生成规范" Type="Build">
  2689. <Item Name="Shaker" Type="{F4C5E96F-7410-48A5-BB87-3559BC9B167F}">
  2690. <Property Name="AllowEnableRemoval" Type="Bool">false</Property>
  2691. <Property Name="BuildSpecDecription" Type="Str"></Property>
  2692. <Property Name="BuildSpecName" Type="Str">Shaker</Property>
  2693. <Property Name="Comp.BitfileName" Type="Str">Shaker.lvbitx</Property>
  2694. <Property Name="Comp.CustomXilinxParameters" Type="Str"></Property>
  2695. <Property Name="Comp.MaxFanout" Type="Int">-1</Property>
  2696. <Property Name="Comp.RandomSeed" Type="Bool">false</Property>
  2697. <Property Name="Comp.Version.Build" Type="Int">0</Property>
  2698. <Property Name="Comp.Version.Fix" Type="Int">0</Property>
  2699. <Property Name="Comp.Version.Major" Type="Int">1</Property>
  2700. <Property Name="Comp.Version.Minor" Type="Int">0</Property>
  2701. <Property Name="Comp.VersionAutoIncrement" Type="Bool">false</Property>
  2702. <Property Name="Comp.Vivado.EnableMultiThreading" Type="Bool">true</Property>
  2703. <Property Name="Comp.Vivado.OptDirective" Type="Str">Default</Property>
  2704. <Property Name="Comp.Vivado.PhysOptDirective" Type="Str">Default</Property>
  2705. <Property Name="Comp.Vivado.PlaceDirective" Type="Str">Default</Property>
  2706. <Property Name="Comp.Vivado.RouteDirective" Type="Str">Default</Property>
  2707. <Property Name="Comp.Vivado.RunPowerOpt" Type="Bool">false</Property>
  2708. <Property Name="Comp.Vivado.Strategy" Type="Str">Default</Property>
  2709. <Property Name="Comp.Xilinx.DesignStrategy" Type="Str">balanced</Property>
  2710. <Property Name="Comp.Xilinx.MapEffort" Type="Str">default(noTiming)</Property>
  2711. <Property Name="Comp.Xilinx.ParEffort" Type="Str">standard</Property>
  2712. <Property Name="Comp.Xilinx.SynthEffort" Type="Str">normal</Property>
  2713. <Property Name="Comp.Xilinx.SynthGoal" Type="Str">speed</Property>
  2714. <Property Name="Comp.Xilinx.UseRecommended" Type="Bool">true</Property>
  2715. <Property Name="DefaultBuildSpec" Type="Bool">true</Property>
  2716. <Property Name="DestinationDirectory" Type="Path">/D/SourceCode/c#/Sixdegreeoffreedomdynamicloadsimulationdevice/Service/ShakerService</Property>
  2717. <Property Name="NI.LV.FPGA.LastCompiledBitfilePath" Type="Path">/D/SourceCode/c#/Sixdegreeoffreedomdynamicloadsimulationdevice/Service/ShakerService/Shaker.lvbitx</Property>
  2718. <Property Name="NI.LV.FPGA.LastCompiledBitfilePathRelativeToProject" Type="Path"></Property>
  2719. <Property Name="ProjectPath" Type="Path">/D/SourceCode/c#/Sixdegreeoffreedomdynamicloadsimulationdevice/Fpga/fpga.lvproj</Property>
  2720. <Property Name="RelativePath" Type="Bool">false</Property>
  2721. <Property Name="RunWhenLoaded" Type="Bool">true</Property>
  2722. <Property Name="SupportDownload" Type="Bool">true</Property>
  2723. <Property Name="SupportResourceEstimation" Type="Bool">false</Property>
  2724. <Property Name="TargetName" Type="Str">FPGA终端</Property>
  2725. <Property Name="TopLevelVI" Type="Ref">/RT CompactRIO终端/机箱/FPGA终端/FPGA/Fpga_Main.vi</Property>
  2726. </Item>
  2727. </Item>
  2728. </Item>
  2729. </Item>
  2730. <Item Name="依赖关系" Type="Dependencies"/>
  2731. <Item Name="程序生成规范" Type="Build"/>
  2732. </Item>
  2733. </Project>