We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1aca89 commit b0d2f71Copy full SHA for b0d2f71
src/BootstrapBlazor.Server/Components/Samples/Modbus/ModbusFactories.razor
@@ -98,6 +98,8 @@ private IModbusFactory? ModbusFactory { get; set; }</Pre>
98
99
<p>通过接口 <code>IModbusResponse</code> 获得到其原始数据 <code>RawData</code> 可以通过自定义扩展非常方便的扩展出符合自己业务的数据类型。如通过连续 2 个寄存器存储的数据,得到遵循 IEEE 754 标准的 32 位 <b>浮点数</b></p>
100
101
+<p><b>注意:</b>在将 <code>RawData</code> 转换为自定义类型(如 32 位浮点数)时,需要注意字节序(Endianness)。字节序会影响数据的解释方式,错误的字节序可能导致解析结果不正确。请根据实际设备或协议规范选择合适的字节序进行转换。</p>
102
+
103
<p>项目包含 Benchmark 基准测试工程</p>
104
105
<Pre>private const int NumberOfTask = 10;
0 commit comments