Changes for page 01 Lua Functions

Last modified by Theodore Xu on 2023/10/26 10:51

From version 5.19
edited by Stone Wu
on 2022/07/12 10:01
Change comment: There is no comment for this version
To version 5.20
edited by Stone Wu
on 2022/07/12 10:05
Change comment: (Autosaved)

Summary

Details

Page properties
Content
... ... @@ -1679,10 +1679,17 @@
1679 1679  * number prarm.width: the width, i.e. the number of CRC bits.
1680 1680  * number [prarm.poly]: short for the generated item in hexadecimal. For example, CRC-32 is 0x04C11DB7, ignoring the highest bit "1", i.e., the complete generation item is 0x104C11DB7.
1681 1681  * number [prarm.init]: the initialization preset value of the register (crc) at the beginning of the algorithm in hexadecimal.
1682 -* number [prarm.xorout], the final CRC value obtained after heterodyning the calculation result with this parameter.
1683 -* number [prarm.refin], whether each byte of the data to be measured is inverted by bit, true or false.
1684 -* number [prarm.refout], after the calculation and before the heterodyning output, whether the whole data is inverted by bit, true or false. Return: success: crc object Failure: multi, error code
1682 +* number [prarm.xorout]: the final CRC value obtained after heterodyning the calculation result with this parameter.
1683 +* number [prarm.refin]: whether each byte of the data to be measured is inverted by bit, true or false.
1684 +* number [prarm.refout]: after the calculation or before the heterodyning output, whether the whole data is inverted by bit, true or false.
1685 1685  
1686 +Return:
1687 +
1688 +Success: crc object
1689 +
1690 +Failure: multi, error code
1691 +
1692 +
1686 1686  (((
1687 1687  == **set_network(table config)** ==
1688 1688  )))