Operator`s manual

Table Of Contents
139 Signametrics
Parameter Type/Description
nDmm
int Identifies the DMM. DMMs are numbered starting with zero.
bRelative
int TRUE (1) to enter relative mode, FALSE (0) to clear mode.
Return Value The return value is one of the following constants.
Value
Meaning
DMM_OKAY
DMM mode changed successfully.
Negative Value
Error code
Example status = DMMSetRelative(0, TRUE);
DMMSetRTD
SMU2060 SMU2064
Description Set the RTD parameters.
#include "SMU2060.h"
#include "USBDMMUser.h"
int DMMSetRTD(int nDmm, double ldRo)
Remarks This function sets the RTD parameters. The DMM must be in RTD measurement
function for this function to execute properly. Connect your RTD using a 4-wire
connection. ldRo sets the RTD R
o
(Ice point resistance). Since it modifies the default R
o
parameter for the selected RTD, this function must follow the selection of the basic RTD
type, using DMMSetRange.
Parameter
Type/Description
nDmm
int Identifies the DMM. DMMs are numbered starting with zero.
ldRo
double R
o
resistance. See specs for allowed range for each RTD
type.
Return Value Integer error code.
Value
Meaning
DMM_OKAY
Operation successfully completed.
Negative Value
Error code
Example
DMMSetFunction(0, RTD); // RTD measurement function
DMMSetRange(0, _pt385); // Select RTD
DMMSetRTD(0, 1000.0); // Set Ro = 1k Ohms
DMMSetSensorParams
SMU2060 SMU2064