Function buildSmmParametersGroupBitmask

  • Builds a bitmask for the safety parameters of a given group in the SMM parameter set.

    The bitmask is an array of bytes where each bit represents whether a specific safety parameter belongs to the specified group. The group index determines which group's parameters are marked as 1 in the bitmask, and others are marked as 0.

    Returns

    A Uint8Array representing the bitmask for the specified group. Each byte contains 8 bits, where each bit corresponds to a safety parameter.

    Throws

    If the groupIndex is out of range or if the parameter structure is not valid for the given version.

    Parameters

    • groupIndex: number

      The index of the group for which to build the bitmask. The index corresponds to the position of the group in the safety parameters.

    • parameterStructureVersion: number = 0x0041

      The version of the parameter struct to use. Defaults to 0x0041.

    Returns Uint8Array

Generated using TypeDoc