Last Updated: August 29, 2007
These commands are used to control the test set's adjustment procedures.
For more information on the conventions used in the programming examples click here.
Starts the currently selected adjustment procedure (see SYSTem:TOOLs:ADJustment:PROCedure[?]).
Test Set Requirements: E6601A WCTS Program Version A.01 and above
Example:
' Start the currently selected adjustment procedure.
TestSet.WriteString("SYSTem:TOOLs:ADJustment")
Queries the status of the currently running adjustment procedure. Returns a 1 when the adjustment operation is complete.
Test Set Requirements: E6601A WCTS Program Version A.01 and above
Example:
' Query the status of the currently running adjustment procedure.
TestSet.WriteString("SYSTem:TOOLs:ADJustment:OPComplete?")
Cancels the adjustment procedure.
Test Set Requirements: E6601A WCTS Program Version A.01 and above
Example:
' Cancel the adjustment procedure.
TestSet.WriteString("SYSTem:TOOLs:ADJustment:CANCel")
Queries the percentage complete of an adjustment procedure.
Query Range: 0 to 100
Test Set Requirements: E6601A WCTS Program Version A.01 and above
Example:
' Query the percentage complete of an adjustment procedure.
TestSet.WriteString("SYSTem:TOOLs:ADJustment:DONE:PERCent?")
Queries the date and time of the last adjustment procedure.
Test Set Requirements: E6601A WCTS Program Version A.01 and above
Example:
' Query the date and time of the last adjustment procedure.
TestSet.WriteString("SYSTem:TOOLs:ADJustment:FULL:LAST:DTIMe?")
Sets/queries the type of adjustment procedure to run.
Setting Range: FULL | RFG1 | RFG2 | IQ1 | IQ2 | RFANalyzer
Query Range: FULL | RFG1 | RFG2 | IQ1 | IQ2 | RFAN
Test Set Requirements: E6601A WCTS Program Version A.01 and above
Example:
' Set the adjustment procedure type to IQ1.
TestSet.WriteString("SYSTem:TOOLs:ADJustment:PROCedure IQ1")
Queries the status of an adjustment procedure.
Query Range: PASS | FAIL | BUSY | NAV (Not available)
Test Set Requirements: E6601A WCTS Program Version A.01 and above
Example:
' Query the status of the adjustment procedure.
TestSet.WriteString("SYSTem:TOOLs:ADJustment:STATus?")
Sets/queries the level of messages reported during an adjustment procedure.
Setting Range: LOW | HIGH
Query Range: LOW | HIGH
*RST Setting: HIGH
Test Set Requirements: E6601A WCTS Program Version A.01 and above
Example:
' Set the level of messages reported during an adjustment procedure to Low.
TestSet.WriteString("SYSTem:TOOLs:ADJustment:VERBose LOW")