eis/config/Config/AliveFile_template.xml

28 lines
1.3 KiB
XML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?xml version="1.0" encoding="utf-8" standalone="no"?>
<!--心跳电文配置-->
<Properties>
<Property type="s" loop="1" value="165" />
<!--表示1个short值为165-->
<!--<Property type="o" loop="1" value="1" />-->
<!--表示1个字节的bool型写1=true写0=false-->
<Property type="b" loop="1" value="11110000" />
<!--表示1个8位bit的数从左到右长度1字节-->
<Property type="c" loop="1" value="123456789" />
<!--表示9个字节的字符串长度按实际写多少算-->
<Property type="c" loop="1" length="12" value="12345" />
<!--表示12个字符串后面不够的自动补空格或0-->
<Property type="c" loop="5" length="12" value="12345" />
<!--表示12个字符串后面不够的自动补空格或0,并且循环5次-->
<Property type="c" loop="1" length="12" value="12345678901234567890" />
<!--表示12个字符串超过12个后面的自动截掉-->
<Property type="i" loop="6" value="1234" />
<!--表示6个int每个都是1234-->
<Property type="l" loop="6" value="1234" />
<!--表示6个long每个都是1234-->
<Property type="h" loop="1" length="4" value="0A320d5c" />
<!--表示16进制从左到右长度1-4字节-->
<Property type="f" loop="846" value="1.0" />
<!--表示846个float每个都是1.0-->
</Properties>