Test

SCPI Commands :

TEST:HS
TEST:LEVel
TEST:NRPTrigger
TEST:PRESet
class TestCls[source]

Test commands group definition. 19 total commands, 7 Subgroups, 4 group commands

get_hs() str[source]
# SCPI: TEST:HS
value: str = driver.test.get_hs()

No command help available

return:

areg_test_int_face: No help available

get_level() SelftLev[source]
# SCPI: TEST:LEVel
value: enums.SelftLev = driver.test.get_level()

No command help available

return:

level: No help available

preset() None[source]
# SCPI: TEST:PRESet
driver.test.preset()

No command help available

preset_with_opc(opc_timeout_ms: int = -1) None[source]
# SCPI: TEST:PRESet
driver.test.preset_with_opc()

No command help available

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

param opc_timeout_ms:

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

set_hs(areg_test_int_face: str) None[source]
# SCPI: TEST:HS
driver.test.set_hs(areg_test_int_face = 'abc')

No command help available

param areg_test_int_face:

No help available

set_level(level: SelftLev) None[source]
# SCPI: TEST:LEVel
driver.test.set_level(level = enums.SelftLev.CUSTomer)

No command help available

param level:

No help available

set_nrp_trigger(nrp_trigger: bool) None[source]
# SCPI: TEST:NRPTrigger
driver.test.set_nrp_trigger(nrp_trigger = False)

No command help available

param nrp_trigger:

No help available

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.test.clone()

Subgroups