MPIDriveMapParamInfo

Definition

typedef struct MPIDriveMapParamInfo {
    int32_t                    parameter;
    char                    name[MPIDriveMapParamInfoMAX_STRING_LENGTH];
    MPIDriveMapParamAccess  access;
    MPIDriveMapParamType    type;
    char                    validValues[MPIDriveMapParamInfoMAX_STRING_LENGTH];
    int32_t                    defaultValue;
    char                    help[MPIDriveParamInfoMAX_STRING_LENGTH];
} MPIDriveMapParamInfo;
 

Required Header: drivemap.h

Change History: Modified in the 03.03.00

Description

MPIDriveMapParamInfo holds a set of information describing a drive parameter. This structure is read from the drives map file "drives.dm."

parameter the number used to address this drive parameter.
name a null terminated string giving a name for this drive parameter.
access defines if this drive parameter is read-only or read-write.
type the data type for this drive parameter. (ex: signed32, unsigned32, float, etc.)
validValues a string describing the possible valid values for this drive parameter.
defaultValue The factory default value this drive parameter.
help A string describing this drive parameter.

See Also

MPIDriveMapParamType