All
SCPI Commands :
TEST<HW>:ALL:RESult
TEST<HW>:ALL:STARt
- Commands in total: 2Subgroups: 0Direct child commands: 2
- get_result() Test[source]
# TEST<HW>:ALL:RESult value: enums.Test = driver.test.all.get_result()
Queries the progress of the performed selftest. Start the selftest with method
RsSmw.test.all.start().- Returns:
result: 0 | 1| RUNning | STOPped
- start() None[source]
# TEST<HW>:ALL:STARt driver.test.all.start()
Starts the selftest. Use the command method
RsSmw.test.all.result()to query the progress of the test.
- start_with_opc(opc_timeout_ms: int = -1) None[source]
# TEST<HW>:ALL:STARt driver.test.all.start_with_opc()
Starts the selftest. Use the command method
RsSmw.test.all.result()to query the progress of the test.Same as start, but waits for the operation to complete before continuing further. Use the RsSmw.utilities.opc_timeout_set() to set the timeout value.
- Parameters:
opc_timeout_ms – Maximum time to wait in milliseconds, valid only for this call.