Test

SCPI Commands :

TEST:BBIN
TEST:FRC
TEST:NRPTrigger
TEST:PRESet
Commands in total: 57
Subgroups: 13
Direct child commands: 4
get_bbin() bool[source]
# TEST:BBIN
value: bool = driver.test.get_bbin()

No help available

get_frc() str[source]
# TEST:FRC
value: str = driver.test.get_frc()

No help available

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

No help available

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

No help available

Same as preset, 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.

set_frc(test_freq_resp_cor: str) None[source]
# TEST:FRC
driver.test.set_frc(test_freq_resp_cor = 'abc')

No help available

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

No help available

Cloning the Group

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

Subgroups