meiDriveMapParamList
Declaration
|
long meiDriveMapParamList (MEIDriveMap driveMap,
char *nodeName,
char *firmwareVersion,
long paramCount,
MEIDriveMapParamInfo *driveParamInfo);
|
|
Required Header: stdmei.h |
Description
meiDriveMapParamList scans the drive map file for an entry that matches a particular drive. If a drive entry is found, this function writes the drive parameter information about each of the drive parameters to the driveParamInfo list.
This function is normally used with the meiDriveMapParamCount(...) function. The meiDriveMapParamCount function is called first to get the size of the parameter list, the user can then use this size to allocate enough memory to hold the complete parameter list before calling this function to fill in the parameter list.
|
driveMap |
a handle to a DriveMap object. |
*nodeName |
the product/manufacturing text string of the node to search for. The nodeName of an SqNode object can be retreived by calling meiSqNodeInfo(...). See MEISqNodeInfo. |
*firmwareVersion |
The firmware version of the drive to search for. This information can be retrieved from an SqNode object by calling meiSqNodeDriveInfo(...). See MEISqNodeDriveInfo. |
paramCount |
the number of drive parameter information records that can be written to the driveParamInfo list. |
*driveParamInfo |
pointer to the list of drive parameter information records that will be filled in by this function. |
|
|
|
|
|
See Also
meiDriveMapParamCount
|