Sets the output to DC Voltage limit.
CalRefSetDCVoltsLimit (hHandle, dVoltageLimit, plStatus)
Name |
Type |
Comments |
hHandle |
LONG |
Handle for a Reference. |
dVoltageLimit |
DOUBLE |
Set the voltage limit in Volts. |
plStatus |
PLONG |
Returned status: 0 on success, negative number on failure. |
This function sets the Reference output function to DC Voltage and sets the corresponding amount of voltage.
The following example set the Reference output function to DC Voltage and sets the corresponding amount of voltage to 15 Volts.:
LONG lHandle, lStatus;
CalRefSetDCVoltsLimit (lHandle, 15, &lStatus);