SoftLRCLRC 方法 (Byte, Int32, Int32) |
获取对应的数据的LRC校验码
Class for LRC validation that provides a standard validation method
命名空间:
HslCommunication.Serial
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public static byte LRC(
byte[] value,
int left,
int right
)
Public Shared Function LRC (
value As Byte(),
left As Integer,
right As Integer
) As Byte
public:
static unsigned char LRC(
array<unsigned char>^ value,
int left,
int right
)
static member LRC :
value : byte[] *
left : int *
right : int -> byte
参数
- value
- 类型:SystemByte
需要校验的数据,不包含LRC字节 - left
- 类型:SystemInt32
忽略的左边的字节数量 - right
- 类型:SystemInt32
忽略的右边的字节数量
返回值
类型:
Byte返回LRC校验码
参见