Packs a CRC (Cyclic Redundancy Check) value into a 4-byte little-endian binary format.
This is typically used for verifying software updates in the SMM (Safety Motion Module).
Returns
A Buffer containing the packed CRC value in little-endian format.
Throws
Error if the provided CRC is not a valid number.
Parameters
crc: number
The CRC value to be packed, represented as a 32-bit unsigned integer.
Packs a CRC (Cyclic Redundancy Check) value into a 4-byte little-endian binary format. This is typically used for verifying software updates in the SMM (Safety Motion Module).
Returns
A
Buffer
containing the packed CRC value in little-endian format.Throws
Error if the provided CRC is not a valid number.