Signametrics
40
Remarks
This function returns a value identifying the DMM model.
Parameter
Type/Description
nDmm
int
Identifies the DMM. DMMs are numbered starting with zero.
Return Value
DMM type Integer or an error code.
Value
Meaning
2055
SM2055 is at nDmm slot
2060
SM2060 is at nDmm slot
2064
SM2064 is at nDmm slot
Negative Value
Error code
Example
int DMMtype = DMMGetType(0);
DMMGetVer
Description
Get DMM software driver version.
#include "SM2060.h"
int
DMMGetVer
(
int nDmm, double
*lpfResult
)
Remarks
This function returns the DMM software driver version, which is a double floating value.
Parameter
Type/Description
nDmm
int
Identifies the DMM. DMMs are numbered starting with zero.
lpfResult
double *
Pointer to the location which holds the version.
Return Value
Integer error code.
Value
Meaning
Negative Value
Error code
Example
int status; double ver;
status = DMMGetVer(0, &ver);