MPIDriveMapParamValue

Definition

typedef union {
    int32_t            signed32;
    short           signed16;
    char            signed8;
    unsigned int32_t   unsigned32;
    unsigned short  unsigned16;
    unsigned char   unsigned8;
    unsigned int32_t   enumerated;
    unsigned int32_t   hex;
    unsigned int32_t   mask;
    char            character;
    char            string[MPIDriveMapParamMAX_STRING_LENGTH];
    float           single;
} MPIDriveMapParamValue;

Change History: Modified in the 03.03.00

Description

The MPIDriveMapParamValue union holds the value of a drive parameter. The different fields allow this data type to hold all the different types of drive parameters. The MPISqNodeDriveParamType enumeration is used to identify which of the fields within the MPISqNodeDriveParamValue union to use.

See Also

MPIDriveMapParamType