Packs a validation report for the SMM (Safety Motion Module), including a CRC, date, and credentials.
The function takes a content Uint8Array, a Date, a username, and a password, and returns an object
containing the packed report, the CRC, and the credentials used for packing.
The packed report includes the following components:
CRC32 checksum of the content.
The date packed into a specific format.
The credentials (username and password) packed into a specific format.
Returns
An object containing:
buffer: A Uint8Array that includes the packed CRC, date, and credentials.
crc: The CRC32 checksum of the content.
credentials: The packed username and password.
Parameters
content: Uint8Array
The content of the validation report, as a Uint8Array.
date: Date
The date of the report to be packed into the format used by SMM.
Packs a validation report for the SMM (Safety Motion Module), including a CRC, date, and credentials. The function takes a content
Uint8Array
, aDate
, ausername
, and apassword
, and returns an object containing the packed report, the CRC, and the credentials used for packing.The packed report includes the following components:
Returns
An object containing:
buffer
: AUint8Array
that includes the packed CRC, date, and credentials.crc
: The CRC32 checksum of thecontent
.credentials
: The packed username and password.