Function packSmmValidationReport

  • 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.

    • username: string

      The username associated with the report.

    • password: string

      The password associated with the report.

    Returns {
        buffer: Uint8Array;
        crc: number;
        credentials: Buffer;
    }

    • buffer: Uint8Array
    • crc: number
    • credentials: Buffer

Generated using TypeDoc