All

SCPI Commands :

TEST:ALL:RESult
TEST:ALL:STARt
class AllCls[source]

All commands group definition. 2 total commands, 0 Subgroups, 2 group commands

get_result() Test[source]
# SCPI: TEST:ALL:RESult
value: enums.Test = driver.test.all.get_result()

Queries the result of the performed selftest. Start the selftest with method RsSgt.Test.All.start.

return:

result: 0| 1| RUNning| STOPped

start() None[source]
# SCPI: TEST:ALL:STARt
driver.test.all.start()

Starts the selftest. Use the command method RsSgt.Test.All.result to query the result.

start_with_opc(opc_timeout_ms: int = -1) None[source]
# SCPI: TEST:ALL:STARt
driver.test.all.start_with_opc()

Starts the selftest. Use the command method RsSgt.Test.All.result to query the result.

Same as start, but waits for the operation to complete before continuing further. Use the RsSgt.utilities.opc_timeout_set() to set the timeout value.

param opc_timeout_ms:

Maximum time to wait in milliseconds, valid only for this call.