VTI Instruments shall not be liable for injury to property other than the goods themselves. Other than the limited warranty stated above, VTI Instruments makes no other warranties, express or implied, with respect to the quality of product beyond the description of the goods on the face of the contract.
RODUCT ONFIGURATIONS VTI Instruments declares that the aforementioned product conforms to the requirements of the Low Voltage Directive 73/23/EEC and the EMC Directive 89/366/EEC (inclusive 93/68/EEC) and carries the “CE” mark accordingly. The product has been designed and manufactured according...
To avoid electrical overload, electric shock, or fire hazard, do not use a power source that applies other than the specified voltage. To avoid fire hazard, only use the type and rating fuse Use Proper Fuse specified for this product. VM2710A Preface...
Page 8
VTI Instruments Corporation ARNINGS Avoid Electric Shock To avoid electric shock or fire hazard, do not operate this product with the covers removed. Do not connect or disconnect any cable, probes, test leads, etc. while they are connected to a voltage source. Remove all power and unplug unit before performing any service.
Page 9
UPPORT ESOURCES Support resources for this product are available on the Internet and at VTI Instruments customer support centers. VTI Instruments Corp. World Headquarters VTI Instruments Corp. 2031 Main Street Irvine, CA 92614-6509 Phone: (949) 955-1894 Fax: (949) 955-3041...
2- and 4-wire resistance measurements in a very small footprint. The instrument uses the message-based word serial interface for programming and data movement, as well as supporting register data access for high-speed data access. The VM2710A command set conforms to the SCPI standard for consistency and ease of programming.
As part of the VMIP family of instruments, the VM2710A can be combined with up to two other modules to form a high-density VXIbus instrument that fully utilizes the capabilities of the VMIP module.
Page 14
VTI Instruments Corporation DC V OLTAGE PECIFICATIONS ONTINUED ± (%R + %R ± 5 °C DC ZERO CCURACY EADING ANGE AFTER UP AND COMMAND 100 PLC 10 PLC 1 PLC 0.1 PLC 0.03 PLC Range (6.5 Digits) (6.5 Digits) (5.5 Digits) (5.5 Digits)
Page 15
0.05 + 0.05 : 0 °C - 18 °C 28 °C - 55 °C; (%R + %R ) / °C EMPERATURE OEFFICIENT EADING ANGE 10 mA 0.002 + 0.0005 100 mA 0.001 + 0.0005 1.0 A 0.002 + 0.0005 VM2710A Introduction...
Page 16
VTI Instruments Corporation AC V OLTAGE PECIFICATIONS EASUREMENT ETHOD AC-coupled true rms AC R ANGES 0.1, 1.0, 10.0, 100.0, 300.0 VAC VERRANGE 20% except 300 V range NPUT MPEDANCE 1 MΩ in parallel with < 50 pF REST ACTOR 5:1 maximum...
Page 18
VTI Instruments Corporation AC C URRENT PECIFICATIONS EASUREMENT ETHOD Direct coupled to fuse and shunt, ac-coupled true rms measurement URRENT ANGES 10 mA, 100 mA, and 1.0 A rms ANGE HUNT ESISTORS 0.1 Ω 1.0 A Range 8.1 Ω 10 mA & 100 mA Range...
All components should be immediately inspected for damage upon receipt of the unit. Once the VM2710A is assessed to be in good condition, it may be installed into an appropriate C-size or D-size VXIbus chassis in any slot other than slot zero. The chassis should be checked to ensure that it is capable of providing adequate power and cooling for the VM2710A.
OGICAL DDRESS The logical address of the VM2710A is set by a single 8-position DIP switch located near the VMIP module’s backplane connectors (this is the only switch on the module). The switch is labeled with positions 1 through 8 and with an ON position. A switch pushed toward the ON legend will signify a logic 1;...
VM2710A-1 will have J201 that contains all signals for this instrument. The VM2710A-2 will have J201 and J202, while the VM2710A-3 will have J200, J201, and J202. The wiring for each of these connectors is identical and since each group is treated as a separate instrument, the module will have three A channels and three B channels.
ROGRAMMING NTRODUCTION The VM2710A is a VXIbus message-based device whose command set is compliant with the Standard Command for Programmable Instruments (SCPI) programming language. All module commands are sent over the VXIbus backplane to the module. Commands may be in upper, lower or mixed case.
Page 25
They can also be placed alone on a line. For example, place the *RST command in front of a setting string as follows: *RST;OUTP:TTLT 3;POL POS Note that the OUTP:TTLT command set did not require a leading colon (:) because there was no prior trunk of the SCPI tree. VM2710A Programming...
"or", is used to separate parameter alternatives. EGISTER CCESS The VM2710A provides pseudo register access for high-speed data retrieval. The register is read only and has 32-bit information accessible in two 16-bit parts. There are two methods for accessing the 32-bit information.
Page 27
2.50000e-1 0x00000000 20 M 4-Wire Ω 2.50000e+0 0x00000000 10 mA dc 3.00000e-9 0x00400000 100 mA dc 3.00000e-8 0x00400000 1 A dc 3.00000e-7 0x00400000 10 mA ac 1.50000e-9 0x00000000 100 mA ac 1.50000e-8 0x00000000 1 A ac 1.50000e-7 0x00000000 VM2710A Programming...
Page 28
VTI Instruments Corporation The VM2710A supports data access by way of the Device Dependent Registers of the VXIbus interface. The following table shows A16 Memory and the VM2710A Data Map. 3-2: R - A16 A ABLE EGISTERS DDRESS PACE Offset...
Page 29
This bit depends on whether the optional RAM is installed. Hardware revision level Hardware revision level Hardware revision level Not Used Not Used Not Used Not Used Not Used Not Used Not Used 3-2: FIFO S IGURE TATUS EGISTER VM2710A Programming...
VTI Instruments Corporation EGISTER CCESS ROGRAMMING XAMPLE The following register access example includes parameter set-up, testing and data retrieval: #include <utility.h> #include <ansi_c.h> #include <nivxi.h> #include "stdio.h" #include <userint.h> #include "vxitech.h" static double volt, voltmin, voltmax, accumulate; static char *reg_base;...
Page 31
/* Tell the VM2710A to start and how to run */ vxiwrt(addr, "trace:feed reg"); vxiwrt(addr, "trig:coun 0"); vxiwrt(addr, "init"); /* Remember the current time for later */ delta_time = Timer(); /* Loop sending "trig" and doing a delay until a key is hit */ while (KeyHit () == 0) vxiwrt(addr, "trig");...
Page 32
VTI Instruments Corporation /* We already have the high data; get the low and combine into 32 bits */ value = (temp << 16) | *data_lo; /* Isolate the actual measurement part (remove the rest) */ int_value = value & 0x00ffffff;...
Page 33
%f Max delta: %f Delta hi to lo: %f\n", accumulate-voltmin, voltmax-accumulate, voltmax- voltmin); /* Return the mapping window to the system */ ret = UnMapVXIAddress (window); /* Close the library */ ret = CloseVXIlibrary (); /* Exit with no error */ return(0); VM2710A Programming...
The following is a summary of the CALibration commands that may be useful in calibrating the VM2710A. These commands are described in more detail in the Command Dictionary section of this manual. Some of these commands, if used improperly, can destroy the calibration of the VM2710A.
Page 35
CALibration:CONVert:OFFSet? Reports the offset of the current function and range setting of the VM2710A. See the Offset column in Table 3-1 Function and Range. This query returns the constants for the currently set range and function. CALibration:CONVert:OFFSet:CURRent:AC? Reports the offset for a specified range in the ac Current function.
Page 36
Sets the range for the zero measurement in the dc voltage function and takes a zero reading. If no value is entered, then the VM2710A will take a zero measurement for each of the voltage ranges, thus taking more time.
MFGTEST C OMMANDS The following are low-level commands that may be used in calibrating the VM2710A. They are described here as an aid in understanding the VM2710A calibration programs. Most users will never need to use these commands. Some of these commands, if used improperly, can destroy the calibration of the VM2710A.
Page 38
VTI Instruments Corporation MFGTEST? 6 Reports the offset value. The equvalent command is MFGTEST:CAL_OFFSET?. MFGTEST 7 #S Sets the converter scale value for non-vol, where #S is the value to be set. MFGTEST? 7 Reports the converter scale value. MFGTEST 8 #O Sets the converter offset value for non-vol, where #O is the value to be set.
Page 39
Read the ‘251 equ header pointer; can be used to get the file revision of the ‘251 code. MFGTEST? 35 Read the ‘251 math header pointer; can be used to get the file revision of the ‘251 code. VM2710A Programming...
OMMAND ISTING The following tables provide an alphabetical listing of each command supported by the VM2710A along with a brief definition. If an X is found in the column titled *RST, then the value or setting controlled by this command is possibly changed by the execution of the *RST command. If no X is found, then *RST has no effect.
Page 41
Resets the module to a known state *SRE Set the service request enable register *STB? Query the Status Byte Register *TRG Causes a trigger event to occur *TST? Starts and reports a self-test procedure *WAI Halts execution and queries VM2710A Command Dictionary...
Page 42
Reports the most recent configuration set CONFigure:CURRent:AC Selects the ac Current function Autoranging 1 PLC CONFigure:CURRent[:DC] Selects the dc current function Autoranging 1 PLC CONFigure:FRESistance Selects 4-wire ohms function Autoranging 1 PLC CONFigure:RESistance Selects the 2-wire ohms function Autoranging 1 PLC VM2710A Command Dictionary...
Page 43
[SENSe:]CURRent:APERture Sets the integration time for current 1.67E-02 measurements (60 Hz) or 2E-02 (50 Hz) [SENSe:]CURRent[:DC]:RANGe Selects the dc current range Autoranging [SENSe:]CURRent:NPLC Sets the integration time in Power Line Cycles (PLCs) [SENSe:]CURRent:RANGe:AUTOmatic Enables the autoranging function VM2710A Command Dictionary...
Page 44
TRIG:DEL:AU and the start of the measurement TRIGger:DELay:AUTOmatic Enables/disables automatic trigger delay TRIGger[:IMMediate] Causes the multimeter to trigger immediately when in the wait-for-trigger mode TRIGger:SLOPe Selects rising or falling edge of trigger signal TRIGger:SOURce Selects trigger source VM2710A Command Dictionary...
Page 45
Queries the Questionable Status Condition Register. STATus:QUEStionable:ENABle Sets the Questionable Status Enable Register. STATus:QUEStionable[:EVENt]? Queries the Questionable Status Event Register. SYSTem:ERRor? Queries the Error Queue. Clears queue SYSTem:VERsion? Queries which version of the SCPI standard to which the module complies. VM2710A Command Dictionary...
Describes in detail what the command does and refers to additional sources. Examples Present the proper use of each command and its query (when available). Related Commands Lists commands that affect the use of this command or commands that are affected by this command. VM2710A Command Dictionary...
This command clears the Status Event Register, Operation Status Register and the Questionable Data/Signal Register. It also clears the OPC flag and clears all queues (except the output queue). Examples Command / Query Response (Description) *CLS (Clears all status and event registers) Related Commands VM2710A Command Dictionary...
Bit 6 - User Request Bit 7 - Power On The Event Status Enable query reports the current contents of the Event Status Enable Register. Examples Command / Query Response (Description) *ESE 36 *ESE? Related Commands *ESR? VM2710A Command Dictionary...
The Power On bit is set when the module is first powered on or after it receives a reset via the VXI Control Register. Once the bit is cleared (by executing the *ESR? command) it will remain cleared. Examples Command / Query Response (Description) *ESR? (Clears all status and event registers) Related Commands *ESE VM2710A Command Dictionary...
If a serial number is not supplied, the third field is set to 0 (zero). Examples Command / Query Response (Description) *IDN? VTI Instruments,VM2710A,0,1.0 (The revision listed here is for reference only; the response will always be the instrument's current revision.) Related Commands VM2710A Command Dictionary...
The Operation Complete command sets the OPC bit in the Event Status Register when all pending operations have completed. The Operation Complete query will return a 1 to the output queue when all pending operations have completed. Examples Command / Query Response (Description) *OPC *OPC? Related Commands *WAI VM2710A Command Dictionary...
The Reset command resets the module’s hardware and software to a known state. See the command index at the beginning of this chapter for the default parameter values used with this command. Examples Command / Query Response (Description) *RST Related Commands VM2710A Command Dictionary...
Bit 3 - Questionable Status Summary (not used) Bit 4 - Message Available Bit 5 - Event Status Summary Bit 6 - 0 Bit 7 - Operation Status Summary Examples Command / Query Response (Description) *SRE 4 *SRE? Related Commands VM2710A Command Dictionary...
Bit 2 - Error Queue Has Data Bit 4 - Questionable Status Summary (not used) Bit 5 - Message Available Bit 6 - Master Summary Status Bit 7 - Operation Status Summary Examples Command / Query Response (Description) *STB? Related Commands VM2710A Command Dictionary...
Numeric ASCII value from 0 to 143 Description The Self-Test query causes the VM2710A to run its self-test procedures and report on the results. A value of 0 means there were no errors, all tests passed. A non-zero value is composed of the following: 1 –...
No Operation Pending message is true. This command makes sure that all previous commands have been executed before proceeding. It provides a way of synchronizing the module with its commander. Examples Command / Query Response (Description) *WAI *OPC Related Commands VM2710A Command Dictionary...
When the trigger source is set to BUS or HOLD, the ABORt command places the VM2710A in idle state. Subsequent triggers sent are ignored and the "Trigger ignored" error is generated. Examples...
CALCulate:FUNCtion must first be set to AVERage. Examples Command / Query Response (Description) CALC:AVER (Sets the calculate function to keep track on reading averages.) CALC:AVER:MAX? (Reports the highest reading value) Related Commands CALCulate:[FUNCtion:]AVERage:AVERage? CALCulate:[FUNCtion:]AVERage:COUNt? CALCulate:[FUNCtion:]AVERage:MINimum? CALCulate:[FUNCtion:]FUNCtion CALCulate:[FUNCtion:]STATe VM2710A Command Dictionary...
Queries and reports the lowest reading that has been taken. The CALCulate:FUNCtion must first be set to AVERage. Examples Command / Query Response (Description) CALC:FUNC:AVER Sets the calculate function to keep track of reading averages. CALC:AVER:MIN? (Reports the lowest reading value) Related Commands CALCulate:[FUNCtion:]AVERage:AVERage? CALCulate:[FUNCtion:]AVERage:COUNt? CALCulate:[FUNCtion:]AVERage:MAXimum? CALCulate:[FUNCtion:]FUNCtion CALCulate:[FUNCtion:]STATe VM2710A Command Dictionary...
This command sets the calculate function to either AVERage, LIMit or NULL. The reset value is NULL. Examples Command / Query Response (Description) CALC:FUNC:AVER (Sets the calculate function to keep track of reading averages.) Related Commands CALCulate:[FUNCtion:]AVERage CALCulate:[FUNCtion:]LIMit CALCulate:[FUNCtion:]NULL CALCulate:[FUNCtion:]STATe VM2710A Command Dictionary...
Queries and reports the average reading taken. The CALCulate:FUNCtion must first be set to AVERage. Examples Command / Query Response (Description) CALC:AVER (Sets the calculate function to keep track of readings averages) CALC:AVER:AVER? (readings sum)/(readings count) (Reports the average reading taken) Related Commands CALCulate:[FUNCtion:]AVERage:COUNt? CALCulate:[FUNCtion:]AVERage:MAXimum? CALCulate:[FUNCtion:]AVERage:MINimum? CALCulate:[FUNCtion:]FUNCtion CALCulate:[FUNCtion:]STATe VM2710A Command Dictionary...
The CALCulate:FUNCtion must first be set to AVERage. Examples Command / Query Response (Description) CALC:AVER (Sets the calculate function to keep track of reading averages) CALC:COUN? (Reports the reading count) Related Commands CALCulate:[FUNCtion:]AVERage:AVERage? CALCulate:[FUNCtion:]AVERage:MAXimum? CALCulate:[FUNCtion:]AVERage:MINimum? CALCulate:[FUNCtion:]FUNCtion CALCulate:[FUNCtion:]STATe VM2710A Command Dictionary...
Command / Query Response (Description) CALC:LIM:LOW 3.5 (Sets the lower limit to 3.5 V in the 10 V range) CALC:LIM:LOW LAST (Sets the lower limit to the value of the last measurement) Related Commands CALCulate:FUNCtion CALCulate:[FUNCtion:]LIMit:LOWer:TTLTrg CALCulate:[FUNCtion:]LIMit:UPPer VM2710A Command Dictionary...
This command enables the below limit failure to also be read off one of the backplane trigger lines (0 - 7). The default value is NONE. Examples Command / Query Response (Description) CALC:LIM:LOW:TTLT 3 (Enables the below limit failure to be captured from the backplane trigger line #3) Related Commands CALCulate:FUNCtion CALCulate:[FUNCtion:]LIMit:LOWer VM2710A Command Dictionary...
Command / Query Response (Description) CALC:LIM:UPP 8.8 (Sets the upper limit to 8.8 V in the 10 V range) CALC:LIM:UPP LAST (Sets the upper limit to the value of the last measurement) Related Commands CALCulate:FUNCtion CALCulate:[FUNCtion:]LIMit:LOWer CALCulate:[FUNCtion:]LIMit:UPPer:TTLTrg VM2710A Command Dictionary...
This command enables the above limit failure to also be read off one of the backplane trigger lines (0 - 7). The default value is NONE. Examples Command / Query Response (Description) CALC:LIM:UPP:TTLT 3 (Enables the above limit failure to be captured from the backplane trigger line #3) Related Commands CALCulate:FUNCtion CALCulate:[FUNCtion:]LIMit:UPPer VM2710A Command Dictionary...
Query Parameters Query Response number Description Sets the calculate offset value. The default value is zero (0). Examples Command / Query Response (Description) CALC:NULL:OFFS LAST (Sets the last measurement value as the offset value.) Related Commands CALCulate:FUNCtion VM2710A Command Dictionary...
The default setting is OFF (0), which returns all data when a read is made. Examples Command / Query Response (Description) CALC:NOR 1 (Sets the instrument to only return the calculate values) Related Commands VM2710A Command Dictionary...
Query Response See Table 3-1: Function and Range. Description Reports the gain of the current function and range setting of the VM2710A. See the Scale column in Table 3-1: Function and Range. Calibration commands should only be executed by qualified personnel.
Changing these values incorrectly can cause the instrument to perform improperly. Examples Command / Query Response (Description) CAL:CONV:GAIN:CURR:AC 1 (Queries and reports the gain for the 1 A range.) Related Commands CALibration:CONVert:GAIN? CALibration:CONVert:GAIN:CURRent[:DC]? CALibration:CONVert:GAIN:FRESistance? CALibration:CONVert:GAIN:RESistance? CALibration:CONVert:GAIN:VOLTage:AC? CALibration:CONVert:GAIN:VOLTage[:DC]? VM2710A Command Dictionary...
Changing these values incorrectly can cause the instrument to perform improperly. Examples Command / Query Response (Description) CAL:CONV:GAIN:CURR:DC 1 (Qureies and reports the gain for the 1 A range.) Related Commands CALibration:CONVert:GAIN? CALibration:CONVert:GAIN:CURRent:AC? CALibration:CONVert:GAIN:FRESistance? CALibration:CONVert:GAIN:RESistance? CALibration:CONVert:GAIN:VOLTage:AC? CALibration:CONVert:GAIN:VOLTage[:DC]? VM2710A Command Dictionary...
Changing these values incorrectly can cause the instrument to perform improperly. Examples Command / Query Response (Description) CAL:CONV:GAIN:FRES? 20000 (Queries and reports the gain for the 20 kΩ range.) Related Commands CALibration:CONVert:GAIN? CALibration:CONVert:GAIN:CURRent:AC? CALibration:CONVert:GAIN:CURRent[:DC]? CALibration:CONVert:GAIN:RESistance? CALibration:CONVert:GAIN:VOLTage:AC? CALibration:CONVert:GAIN:VOLTage[:DC]? VM2710A Command Dictionary...
Changing these values incorrectly can cause the instrument to perform improperly. Examples Command / Query Response (Description) (Qureies and reports the gain for the 20 kΩ CAL:CONV:GAIN:RES? 20000 range.) Related Commands CALibration:CONVert:GAIN? CALibration:CONVert:GAIN:CURRent:AC? CALibration:CONVert:GAIN:CURRent[:DC]? CALibration:CONVert:GAIN:FRESistance? CALibration:CONVert:GAIN:VOLTage:AC? CALibration:CONVert:GAIN:VOLTage[:DC]? VM2710A Command Dictionary...
Changing these values incorrectly can cause the instrument to perform improperly. Examples Command / Query Response (Description) CAL:CONV:GAIN:VOLT:AC? 10 (Queries and reports the gain for the 10 V range.) Related Commands CALibration:CONVert:GAIN? CALibration:CONVert:GAIN:CURRent:AC? CALibration:CONVert:GAIN:CURRent[:DC]? CALibration:CONVert:GAIN:FRESistance? CALibration:CONVert:GAIN:RESistance? CALibration:CONVert:GAIN:VOLTage[:DC]? VM2710A Command Dictionary...
Changing these values incorrectly can cause the instrument to perform improperly. Examples Command / Query Response (Description) CAL:CONV:GAIN:VOLT:DC? 10 (Queries and reports the gain for the 10 V range) Related Commands CALibration:CONVert:GAIN? CALibration:CONVert:GAIN:CURRent:AC? CALibration:CONVert:GAIN:CURRent[:DC]? CALibration:CONVert:GAIN:FRESistance? CALibration:CONVert:GAIN:RESistance? CALibration:CONVert:GAIN:VOLTage:AC? VM2710A Command Dictionary...
Query Response See Table 3-1: Function and Range Description Reports the offset of the current function and range setting of the VM2710A. See the Offset column in Table 3-1: Function and Range. Calibration commands should only be executed by qualified personnel.
Changing these values incorrectly can cause the instrument to perform improperly. Examples Command / Query Response (Description) CAL:CONV:OFFS:CURR:AC 1 (Queires and reports the offset for the 1 A range) Related Commands CALibration:CONVert:OFFSet? CALibration:CONVert:OFFSet:CURRent[:DC]? CALibration:CONVert:OFFSet:FRESistance? CALibration:CONVert:OFFSet:RESistance? CALibration:CONVert:OFFSet:VOLTage:AC? CALibration:CONVert:OFFSet:VOLTage[:DC]? VM2710A Command Dictionary...
Changing these values incorrectly can cause the instrument to perform improperly. Examples Command / Query Response (Description) CAL:CONV:OFFS:CURR:DC 1 (Queries and reports the offset for the 1 A range.) Related Commands CALibration:CONVert:OFFSet? CALibration:CONVert:OFFSet:CURRent:AC? CALibration:CONVert:OFFSet:FRESistance? CALibration:CONVert:OFFSet:RESistance? CALibration:CONVert:OFFSet:VOLTage:AC? CALibration:CONVert:OFFSet:VOLTage[:DC]? VM2710A Command Dictionary...
Changing these values incorrectly can cause the instrument to perform improperly. Examples Command / Query Response (Description) (Queries and reports the gain for the 20 kΩ CAL:CONV:OFFS:FRES? 20000 range.) Related Commands CALibration:CONVert:OFFSet? CALibration:CONVert:OFFSet:CURRent:AC? CALibration:CONVert:OFFSet:CURRent[:DC]? CALibration:CONVert:OFFSet:RESistance? CALibration:CONVert:OFFSet:VOLTage:AC? CALibration:CONVert:OFFSet:VOLTage[:DC]? VM2710A Command Dictionary...
Changing these values incorrectly can cause the instrument to perform improperly. Examples Command / Query Response (Description) (Queries and reports the gain for the 20 kΩ CAL:CONV:OFFS:RES? 20000 range) Related Commands CALibration:CONVert:OFFSet? CALibration:CONVert:OFFSet:CURRent:AC? CALibration:CONVert:OFFSet:CURRent[:DC]? CALibration:CONVert:OFFSet:FRESistance? CALibration:CONVert:OFFSet:VOLTage:AC? CALibration:CONVert:OFFSet:VOLTage[:DC]? VM2710A Command Dictionary...
Changing these values incorrectly can cause the instrument to perform improperly. Examples Command / Query Response (Description) CAL:CONV:OFFS:VOLT:AC? 10 (Queries and reports the gain for the 10 V range.) Related Commands CALibration:CONVert:OFFSet? CALibration:CONVert:OFFSet:CURRent:AC? CALibration:CONVert:OFFSet:CURRent[:DC]? CALibration:CONVert:OFFSet:FRESistance? CALibration:CONVert:OFFSet:RESistance? CALibration:CONVert:OFFSet:VOLTage[:DC]? VM2710A Command Dictionary...
Changing these values incorrectly can cause the instrument to perform improperly. Examples Command / Query Response (Description) CAL:CONV:OFFS:VOLT:DC? 10 (Queries and reports the gain for the 10 V range.) Related Commands CALibration:CONVert:OFFSet? CALibration:CONVert:OFFSet:CURRent:AC? CALibration:CONVert:OFFSet:CURRent[:DC]? CALibration:CONVert:OFFSet:FRESistance? CALibration:CONVert:OFFSet:RESistance? CALibration:CONVert:OFFSet:VOLTage:AC? VM2710A Command Dictionary...
The Calibration Default command sets all the calibration gain and offset values to their respective default values. Calibration commands should only be executed by qualified personnel. Changing these values incorrectly can cause the instrument to perform improperly. Examples Command / Query Response (Description) CAL:DEF Related Commands VM2710A Command Dictionary...
Changing these values incorrectly can cause the instrument to perform improperly. Examples Command / Query Response (Description) CAL:LFR 50 (Sets the line frequency reference to 50 Hz.) CAL:LFR? MAX 60 (Reports the maximum line frequency available is 60 Hz.) Related Commands [SENSe:]RESistance:APERture [SENSe:]VOLTage:APERture VM2710A Command Dictionary...
Calibration commands should only be executed by qualified personnel. Changing these values incorrectly can cause the instrument to perform improperly. Examples Command / Query Response (Description) CAL:NUMB? Related Commands VM2710A Command Dictionary...
This allows the user to modify Calibration DAC values with the ability to restore the original values Calibration commands should only be executed by qualified personnel. Changing these values incorrectly can cause the instrument to perform improperly. Examples Command / Query Response (Description) CAL:RES Related Commands VM2710A Command Dictionary...
VM2710. Calibration commands should only be executed by qualified personnel. Changing these values incorrectly can cause the instrument to perform improperly. Examples Command / Query Response (Description) CAL:SEC:CODE #16VM2710 Related Commands CALibration:SECure[:STATe] VM2710A Command Dictionary...
Response (Description) CAL:SEC OFF #16VM2710 (Disable security mode) CAL:SEC:STAT 1 (Turns calibration security back on again.) CAL:SEC? (Indicates the calibration security is enabled so that no new information can be stored in non- volatile memory.) CALibration:SECure:CODE Related Commands VM2710A Command Dictionary...
The Calibration Secure State must be disabled before initiating a Calibration Store command. Calibration commands should only be executed by qualified personnel. Changing these values incorrectly can cause the instrument to perform improperly. Examples Command / Query Response (Description) CAL:STOR Related Commands CALibration:SECure[:STATe] VM2710A Command Dictionary...
Description Sets the range for the zero measurement in the dc voltage function. If no value is entered, then the VM2710A will take a zero measurement for each of the voltage ranges thus taking more time. Note that this command can only be issued for DC voltages and can only be run when the aperture is set to at least 1 PLC.
Updates the current zero measurements to later be stored using the Calibration Store command. Calibration commands should only be executed by qualified personnel. Changing these values incorrectly can cause the instrument to perform improperly. Examples Command / Query Response (Description) CAL:ZERO:UPD Related Commands CALibration:STORe VM2710A Command Dictionary...
“VOLT:AC 1.000000E+002,1.000000E-003” (Indicates that the device is con figured for volts ac in the 100 V range at a resolution of 1 mV.) Related Commands CONFigure:CURRent:AC CONFigure:CURRent[:DC] CONFigure:VOLTage:AC CONFigure:VOLTage[:DC] CONFigure:FRESistance CONFigure:RESistance MEASure:CURRent:AC MEASure:CURRent[:DC] MEASure:VOLTage:AC MEASure:VOLTage[:DC] MEASure:FRESistance MEASure:RESistance VM2710A Command Dictionary...
1e5 (Dependant on Range setting) Examples Command / Query Response (Description) CONF:CURR:AC MAX,MAX (Selects 1 A and 10 µA resolution.) CONF:CURR:AC 0.1,1E-6 (Selects the 0.1 A range ata 1 µA resolution.) Related Commands FETCh? INITiate READ? CONFigure? VM2710A Command Dictionary...
1e5 (Dependant on Range setting) Examples Command / Query Response (Description) CONF:CUR MAX,MAX (Selects 1 A at 10 µA resolution.) CONF:CURR 0.1,1E-6 (Selects the 0.1 A range and 1 µA resolution.) Related Commands FETCh? INITiate READ? CONFigure? VM2710A Command Dictionary...
A Line Feed (LF) and an END-or-Identify (EOF) signal follow the last reading. The output format is dependent on the FORMat command. Examples Command / Query Response (Description) FETC? ±1.234567E±123LF Related Commands CONFigure FORMat INITiate READ? VM2710A Command Dictionary...
*RST FORM? #12%E (The default is a C string in exponential format. A voltage measurement of 12.3456789 would read: 1.234568E+001 (the default precision is 6. Note that the “7” has been rounded to an “8”.) Related Commands VM2710A Command Dictionary...
The system would return a 9.9e37 for positive overflows, and -9.9e37 for negative overflows. Examples Command / Query Response (Description) FORM:OVER BIP (Sets the overflow format to alert the user of overflow in both the positive and negative values.) Related Commands VM2710A Command Dictionary...
This command places the multimeter in the wait-for-trigger state and stores the readings into memory when a trigger occurs. Readings previously stored are replaced by the new ones. Examples Command / Query Response (Description) INIT Related Commands ABORt CONFigure FETCh? READ? VM2710A Command Dictionary...
<source> = A | B *RST Value Query Syntax INPut:SOURce? Query Parameters Query Response A | B Description This command selects the input source used: A or B. Examples Command / Query Response (Description) INP:SOUR B INP:SOUR? Related Commands VM2710A Command Dictionary...
The Math command turns the math function ON or OFF. Examples Command / Query Response (Description) MATH 1 (Enables the math function for this module.) MATH? 1 (Indicates that the math function has been truned on.) MATH:FACTor Related Commands MATH:FACTor LAST MATH:OFFSet MATH:OFFSet LAST VM2710A Command Dictionary...
This command sets the factor Value (reading * factor) - offset. Math Factor LAST takes the last measured reading and sets it as the factor value. Examples Command / Query Response (Description) MATH:FACT 2 MATH:FACT? Related Commands MATH MATH:OFFSet VM2710A Command Dictionary...
This command sets the offset Value (reading * factor) - offset. Math Offset LAST takes the last measured reading and sets it as the offset value. Examples Command / Query Response (Description) MATH:OFFS 1 MATH:OFFS? Related Commands MATH MATH:FACTor VM2710A Command Dictionary...
[no specified value] 1e5 (Dependant on range setting) Examples Command / Query Response (Description) MEAS:CURR:AC MAX,MAX (Selects 1 A at 10 µA resolution.) MEAS:CURR:AC 0.1,1E-6 (Selects the 0.1 A range at 1 µA resolution.) Related Commands READ? VM2710A Command Dictionary...
[no specified value] 1e5 (Dependant on Range setting) Examples Command / Query Response (Description) MEAS:CURR MAX,MAX (Selects 1 A at 10 µA resolution.) MEAS:CURR 0.1,1E-6 (Selects the 0.1 A range at 1 µA resolution.) Related Commands READ? VM2710A Command Dictionary...
(Dependant on Range) [no specified value] 1e-3 (Dependant on Range) Examples Command / Query Response (Description) MEAS:VOLT:AC MAX,MAX (Selects ±300 V at 1 mV resolution.) MEAS:VOLT:AC 12,1E-2 (Selects the 100 V range at 10 mV resolution.) Related Commands READ? VM2710A Command Dictionary...
(Dependant on Range) [no specified value] 1e-3 (Dependant on Range) Examples Command / Query Response (Description) CONF:VOLT:AC MAX,MAX (Selects ±300 V at 1 mV resolution.) CONF:VOLT:AC 12,1E-2 (Selects the 100 V range at 10 mV resolution.) Related Commands READ? VM2710A Command Dictionary...
The default setting is enabled. Examples Command / Query Response (Description) MFGTEST 99 0 (Disables the ohmes current function.) MFGTEST? 99 0 (Verifies that the ohms current function is disabled) Related Commands VM2710A Command Dictionary...
(0 - 7) is used. The backplane trigger line enable is an additional output to the front panel trigger line that is always present. Examples Command / Query Response (Description) OUTP:TTLT 4 ON OUTP:TTL 4? OUTPut[:TTLTrig]:POLarity Related Commands VM2710A Command Dictionary...
*RST Value Query Syntax OUTPut[:TTLTrig]:POLarity? Query Parameters Query Response POS | NEG Description Sets the polarity of the voltmeter-completed signal to the VXIbus trigger lines. Examples Command / Query Response (Description) OUTP:POL POS OUTP:POL? Related Commands OUTPut:TTLTrg VM2710A Command Dictionary...
Autoranging is automatically disabled if a range is explicitly selected. Four different command branches control this one enable/disable autorange function: RANGe:AUTOmatic [SENSe:]CURRent:RANGe:AUTOmatic [SENSe:]RESistance:RANGe:AUTOmatic [SENSe:]VOLTage:RANGe:AUTOmatic The default setting for this function is ON. Examples Command / Query Response (Description) RANG:AUTO OFF RANG:AUTO? Related Commands [SENSe:]CURRent:RANGe:AUTOmatic [SENSe:]RESistance:RANGe:AUTOmatic [SENSe:]VOLTage:RANGe:AUTOmatic VM2710A Command Dictionary...
Description This command sets the delay (settling) time between changing functions or ranges. The VM2710A will delay this specified amount of time, after a function and/or range change, before starting to take readings. Setting a delay time will disable the RANGe:DELay:AUTOmatic function.
500 ms Current (dc) 5 ms Current (ac) AC Filter settling time High AC Filter settling time 800 ms 250 ms 60 ms Examples Command / Query Response (Description) RANG:DEL:AUTO RANG:DEL:AUTO? Related Commands RANGe:DELay [SENSe:]CURRent:RANGe:DELay:AUTOmatic [SENSe:]RESistance:RANGe:DELay:AUTOmatic [SENSe:]VOLTage:RANGe:DELay:AUTOmatic VM2710A Command Dictionary...
In continuous mode, readings continue unitl an ABORt command is received. Examples Command / Query Response (Description) READ? (Places the multimeter in wait-for-trigger state and make measurements. Send readings to output buffer. Trigger source is IMMediate by default.) Related Commands CONFigure FETCh? INITiate TRIGger:COUNt VM2710A Command Dictionary...
MAXimum is specified, the command sets (or the query returns) the value of 1 for MIN, and the value of 16,777,215 for MAX. The default value is 1. Examples Command / Query Response (Description) SAMP:COUN 12 SAMP:COUN? Related Commands VM2710A Command Dictionary...
1. IMMediate initiates a reading when the multimeter is not busy. TIMer specifies to use the TIMer rate setting that is set with the SAMPle:TIMer command. The default setting is IMMediate. Examples Command / Query Response (Description) SAMP:SOUR TIM SAMP:SOUR? Related Commands SAMPle:COUNt SAMPle:TIMer VM2710A Command Dictionary...
…interval, and so on. The same would be true if the SAMPle:COUNt were 3, 4, 5, …, etc. Examples Command / Query Response (Description) SAMP:TIM 0.02 Sets the sample time to every 10th interval (aperture time is 2.0 ms). Related Commands SAMPle:COUNt SAMPle:SOURce VM2710A Command Dictionary...
This command selects the frequency range, or measurement mode, for ac voltage. The multimeter will automatically set the correct mode (slow, medium or fast) by entering the expected frequency of the input signal. Examples Command / Query Response (Description) BAND:DET 400 (Automatically selects medium mode.) BAND:DET? Related Commands VM2710A Command Dictionary...
With the new range, a new resolution is also selected; however, this resolution is based on the aperture time set by the CONFigure command. Specifying a fixed range also disables the autorange mode. Examples Command / Query Response (Description) CURR:AC:RANG MAX CURR:AC:RANG? CONFigure Related Commands VM2710A Command Dictionary...
CALibration:LFRequency, CURRent:NPLC or CURRent:RESolution. The last command executed has priority. See *RST Values above for default values. Examples Command / Query Response (Description) CURR:APER 1.67E-01 Sets the aperture time to 167 ms Related Commands CALibration:LFRequency [SENSe:]CURRent:NPLC [SENSe:]CURRent:RESolution VM2710A Command Dictionary...
With the new range, a new resolution is also selected; however, this resolution is based on the aperture time set by the CONFigure command. Specifying a fixed range also disables the autorange mode. Examples Command / Query Response (Description) CURR:RANG MAX CURR:RANG? CONFigure Related Commands CURRent:RANGe:AUTOmatic VM2710A Command Dictionary...
Setting integration time in power line cycles also sets the aperture time and the resolution. This command can override the previous values set by CURRent:NPLC or CURRent:RESolution. The last command executed has priority. Examples Command / Query Response (Description) CURR:NPLC 10 CURR:NPLC? Related Commands CALibration:LFRequency [SENSe:]CURRent:APERture [SENSe:]CURRent:RESolution VM2710A Command Dictionary...
CURRent:AC:RANGe or CURRent[:DC]:RANGe command. Four different command branches control this one enable/disable autorange function: RANGe:AUTOmatic [SENSe:]CURRent:RANGe:AUTOmatic [SENSe:]RESistance:RANGe:AUTOmatic [SENSe:]VOLTage:RANGe:AUTOmatic The default setting for this function is ON. Examples Command / Query Response (Description) CURR:RANG:AUTO OFF CURR:RANG:AUTO? RANGe:AUTOmatic Related Commands [SENSe:]RESistance:RANGe:AUTOmatic [SENSe:]VOLTage:RANGe:AUTOmatic VM2710A Command Dictionary...
20 MΩ 500 ms Current (dc) 5 ms Current (ac) AC Filter settling time High AC Filter settling time 800 ms 250 ms 60 ms Examples Command / Query Response (Description) CURR:RANG:DEL:AUTO CURR:RANG:DEL:AUTO? Related Commands RANGe:DELay:AUTOmatic [SENSe:]RESistance:RANGe:DELay:AUTOmatic [SENSe:]VOLTage:RANGe:DELay:AUTOmatic VM2710A Command Dictionary...
This command can override the previous values set by CURRent:APERture or CURRent:NPLC. The last command executed has priority. Examples Command / Query Response (Description) CURR:RES 0.00001 (Sets the resolution to 10 µA.) Related Commands [SENSe:]CURRent:APERture [SENSe:]CURRent:NPLC VM2710A Command Dictionary...
This command can override the previous values set by CURRent:APERture or CURRent:NPLC. The last command executed has priority. Examples Command / Query Response (Description) CURR:RES 0.00001 (Sets the resolution to 10 µA.) Related Commands [SENSe:]CURRent:APERture [SENSe:]CURRent:NPLC VM2710A Command Dictionary...
FRES | RES | VOLT:AC | VOLT Description This command selects the measurement function of the multimeter. The default function is dc voltage. Examples Command / Query Response (Description) FUNC:RES (Selects the 2-wire ohms function.) FUNC? Related Commands VM2710A Command Dictionary...
This command can override the previous values set by CALibration:LFRequency, RESistance:NPLC or RESistance:RESolution. The last command executed has priority. See *RST Values above for default values. Examples Command / Query Response (Description) RES:APER 1.67E-01 (Sets the aperture time to 167 ms.) CALibration:LFRequency Related Commands VM2710A Command Dictionary...
Query Parameters Query Response 0 | 1 Description This command, when active, prevents negative resistance values from being reported by the VM2710A. The reset state is 0, which will report negative values. Examples Command / Query Response (Description) RES:NEG 1 (Enables filtering of negative resistance values;...
Setting integration time in power line cycles also sets the aperture time and the resolution. This command can override the previous values set by RESistance:NPLC or RESistance:RESolution. The last command executed has priority. Examples Command / Query Response (Description) RES:NPLC 10 RES:NPLC? Related Commands CALibration:LFRequency [SENSe:]RESistance:APERture [SENSe:]RESistance:RESolution VM2710A Command Dictionary...
CONFigure. Specifying a fixed range also overrides and disables the autorange mode. Examples Command / Query Response (Description) (Selects the 200 Ω range.) RES:RANG 25 RES:RANG? CONFigure Related Commands RESistance:RANGe:AUTOmatic VM2710A Command Dictionary...
RESistance:RANGe command. Four different command branches control this one enable/disable autorange function: RANGe:AUTOmatic [SENSe:]CURRent:RANGe:AUTOmatic [SENSe:]RESistance:RANGe:AUTOmatic [SENSe:]VOLTage:RANGe:AUTOmatic The default setting for this function is ON. Examples Command / Query Response (Description) RES:RANG:AUTO OFF RES:RANG:AUTO? RANGe:AUTOmatic Related Commands [SENSe:]CURRent:RANGe:AUTOmatic [SENSe:]VOLTage:RANGe:AUTOmatic VM2710A Command Dictionary...
20 MΩ 500 ms Current (dc) 5 ms Current (ac) AC Filter settling time High AC Filter settling time 800 ms 250 ms 60 ms Examples Command / Query Response (Description) RES:RANG:DEL:AUTO RES:RANG:DEL:AUTO? Related Commands RANGe:DELay:AUTOmatic [SENSe:]CURRent:RANGe:DELay:AUTOmatic [SENSe:]VOLTage:RANGe:DELay:AUTOmatic VM2710A Command Dictionary...
This command can override the previous values set by RESistance:APERture or RESistance:NPLC. The last command executed has priority. Examples Command / Query Response (Description) (Sets the resolution to 1 mΩ.) RES:RES 0.001 [SENSe:]RESistance:APERture Related Commands [SENSe:]RESistance:NPLC VM2710A Command Dictionary...
With the new range, a new resolution is also selected; however, this resolution is based on the aperture time set by the CONFigure command. Specifying a fixed range also disables the autorange mode. Examples Command / Query Response (Description) VOLT:AC:RANG MAX VOLT:AC:RANG? CONFigure Related Commands VOLTage:RANGe:AUTOmatic VM2710A Command Dictionary...
CALibration:LFRequency, VOLTage:NPLC or VOLTage:RESolution. The last command executed has priority. See the *RST Values above for the default values. Examples Command / Query Response (Description) VOLT:APER 1.67E-01 (Sets the aperture time to 167 ms.) Related Commands CALibration:LFRequency [SENSe:]VOLTage:NPLC [SENSe:]VOLTage:RESolution VM2710A Command Dictionary...
With the new range, a new resolution is also selected; however, this resolution is based on the aperture time set by the CONFigure command. Specifying a fixed range also disables the autorange mode. Examples Command / Query Response (Description) VOLT:RANG MAX VOLT:RANG? CONFigure Related Commands VOLTage:RANGe:AUTOmatic VM2710A Command Dictionary...
Setting integration time in power line cycles also sets the aperture time and the resolution. This command can override the previous values set by VOLTage:NPLC or VOLTage:RESolution. The last command executed has priority. Examples Command / Query Response (Description) VOLT:NPLC 10 VOLT:NPLC? Related Commands CALibration:LFRequency [SENSe:]VOLTage:APERture [SENSe:]VOLTage:RESolution VM2710A Command Dictionary...
VOLTage:AC:RANGe or VOLTage[:DC]:RANGe command. Four different command branches control this one enable/disable autorange function: RANGe:AUTOmatic [SENSe:]CURRent:RANGe:AUTOmatic [SENSe:]RESistance:RANGe:AUTOmatic [SENSe:]VOLTage:RANGe:AUTOmatic The default setting for this function is ON. Examples Command / Query Response (Description) VOLT:RANG:AUTO OFF VOLT:RANG:AUTO? RANGe:AUTOmatic Related Commands [SENSe:]CURRent:RANGe:AUTOmatic [SENSe:]RESistance:RANGe:AUTOmatic VM2710A Command Dictionary...
20 MΩ 500 ms Current (dc) 5 ms Current (ac) AC Filter settling time High AC Filter settling time 800 ms 250 ms 60 ms Examples Command / Query Response (Description) VOLT:RANG:DEL:AUTO VOLT:RANG:DEL:AUTO? Related Commands RANGe:DELay:AUTOmatic [SENSe:]CURRent:RANGe:DELay:AUTOmatic [SENSe:]RESistance:RANGe:DELay:AUTOmatic VM2710A Command Dictionary...
This command can override the previous values set by VOLTage:APERture or VOLTage:NPLC. The last command executed has priority. Examples Command / Query Response (Description) VOLT:RES 0.001 (Sets the resolution to 1 mV.) Related Commands [SENSe:]VOLTage:APERture [SENSe:]VOLtage:NPLC VM2710A Command Dictionary...
This command can override the previous values set by VOLTage:APERture or VOLTage:NPLC. The last command executed has priority. Examples Command / Query Response (Description) VOLT:RES 0.001 (Sets the resolution to 1 mV.) Related Commands [SENSe:]VOLTage:APERture [SENSe:]VOLtage:NPLC VM2710A Command Dictionary...
A zero is returned when the test has completed with no errors. Examples Command / Query Response (Description) TEST? (Performs an internal self-test and reports the results.) Related Commands *TST VM2710A Command Dictionary...
OFF | REG Description Data (measurements) are retrieved from the VM2710A using two different methods. For most systems, the easiest method to use is word serial data transfers. This is the same technique used to program the module and query the module's settings. When fast response time is important, measurements can be retrieved using register access.
After the reading is complete, the stored trigger satisfies the EXT event if the multimeter is programmed as such. However, a second trigger occurring during a reading will still generate a "trigger too fast" error. Examples Command / Query Response (Description) TRIG:BUFF ON TRIG:BUFF? Related Commands VM2710A Command Dictionary...
Once INITiate is used to start operation, ABORt or *RST command must be used to remove the voltmeter form the countinuous opeation. The CONFigure and MEASure commands set the trigger count to 1. Examples Command / Query Response (Description) TRIG:COUN 10 TRIG:COUN? SAMPle:COUNt Related Commands VM2710A Command Dictionary...
67 µs for MINimum aperture time and 82 µs for all other aperture times. A delay between measurements in a burst can be set using the SAMPle:TIMer command. Examples Command / Query Response (Description) TRIG:DEL 2 TRIG:DEL? Related Commands TRIGger:DELay:AUTOmatic VM2710A Command Dictionary...
Resistance Trigger Delay 20 Ω to 200 kΩ 5 ms Resistance Trigger Delay 2 MΩ 50 ms Resistance Trigger Delay 20 MΩ 500 ms The TRIGger:DELay:AUTOmatic function is on by default. Examples Command / Query Response (Description) TRIG:DEL:AUTO 1 TRIG:DEL:AUTO? Related Commands TRIGger:DELay VM2710A Command Dictionary...
TRIGger:IMMediate is executed. The levels of trigger commands containing the IMMediate parameter are different. The TRIGger:SOURce:IMMediate bypasses the trigger system so that the VM2710A is triggered immediately only if it is in the wait-for-trigger state. The TRIGger:IMMediate command causes a single trigger cycle to happen after the trigger system has been disabled.
This command determines whether the rising or falling edge of the front panel signal will trigger the multimeter. Examples Command / Query Response (Description) TRIG:SLOP POS (Sets the multimeter to trigger on the rising edge of the front panel signal.) TRIG:SLOP? Related Commands VM2710A Command Dictionary...
IMMediate The trigger system is always true. A trigger will happen immediately if the VM2710A is in wait-for-trigger state. This is the default setting. TTLTrg <n> The VXIbus TTL trigger lines on the backplane. Note that the CONFigure and MEASure command subsystems automatically reset the trigger source to TRIGger:SOURce:IMMediate.
Description Reports the bits set in the Operation Status Register's condition register. Returns a decimal number of 0 (no bits set) or 32 (bit 5 set). Examples Command / Query Response (Description) STAT:OPER:COND? STATus:OPERation:ENABle Related Commands STATus:OPERation[:EVENt] VM2710A Command Dictionary...
The query reports the bits enabled in the Operation Status Register's enable register, then clears the register contents and enters the value into the computer. Examples Command / Query Response (Description) STAT:OPER:ENAB 33 (Enables bit 0 and bit 5) STAT:OPER:ENAB? Related Commands STATus:OPERation:CONDition? STATus:OPERation[:EVENt] VM2710A Command Dictionary...
STATus:OPERation[:EVENt]? Query Parameters Query Response Description Queries the bits set in the Operation Status Register's event register. This command clears all bits in the event register. Examples Command / Query Response (Description) STAT:OPER? Related Commands STATus:OPERation:CONDition? STATus:OPERation:ENABle? VM2710A Command Dictionary...
The Status Preset command presets the Status Registers. The Operational Status Enable Register is set to 0 and the Questionable Status Enable Register is set to 0. This command is provided for SCPI compliance only. Examples Command / Query Response (Description) STAT:PRES Related Commands VM2710A Command Dictionary...
Query Parameters Query Response Description The Questionable Status Condition Register query is provided for SCPI compliance only. The VM2710A does not alter any bits in this register and a query always reports a Examples Command / Query Response (Description) STAT:QUES:COND?
The Status Questionable Enable query reports the contents of the Questionable Data/Signal Register's enable register, then clears the register contents and enters the value into the computer Examples Command / Query Response (Description) STAT:QUES:ENAB 64 STAT:QUES:ENAB? Related Commands VM2710A Command Dictionary...
The query reports the bits set in the Questionable Data/Signal register's event register. This command reads the event register and then clears all bits in the event register and enters the value into the computer. Examples Command / Query Response (Description) STAT:QUES? Related Commands VM2710A Command Dictionary...
See the SCPI standard Volume 2: Command Reference for details on errors and reporting them.A list of error codes is provided in the SYST:ERR? Error Codes table below. Examples Command / Query Response (Description) SYST:ERR? -350, “Queue overflow” Related Commands VM2710A Command Dictionary...
Data out of range; Valid zeros are 0 to 7 Data out of range; Valid latest zeros are 0 to 7 -222 -223 Too much data; Security buffer full Too much data; Format buffer full -223 -223 Too much data; Output string would be too big VM2710A Command Dictionary...
Page 168
System error; Unrecognized internal line frequency -310 -310 System error; Unrecognized sample source -310 System error; Unrecognized resistance range System error; Unrecognized internal resistance resolution -310 -310 System error; Unrecognized intrenal trigger count System error; Unrecognized internal trigger delay -310 VM2710A Command Dictionary...
SYSTem:VERSion? Purpose Queries the SCPI version number the VM2710A complies with Type Required SCPI command Command Syntax Command Parameters *RST Value Query Syntax SYSTem:VERSion? Query Parameters Query Response Numeric ASCII value Description The System Version query reports version of the SCPI standard with which the VM2710A complies.
Need help?
Do you have a question about the VM2710A and is the answer not in the manual?
Questions and answers