State

SCPI Commands

FETCh:BLUetooth:MEASurement<Instance>:TRX:STATe
class State[source]

State commands group definition. 2 total commands, 1 Sub-groups, 1 group commands

fetch()RsCmwBluetoothMeas.enums.ResourceState[source]
# SCPI: FETCh:BLUetooth:MEASurement<Instance>:TRX:STATe
value: enums.ResourceState = driver.trx.state.fetch()

Queries the main measurement state. Use FETCh:…:STATe:ALL? to query the measurement state including the substates. Use INITiate…, STOP…, ABORt… to change the measurement state.

return

meas_state: OFF | RDY | RUN OFF: measurement switched off, no resources allocated, no results available (when entered after ABORt…) RDY: measurement has been terminated, valid results are available RUN: measurement running (after INITiate…, READ…) , synchronization pending or adjusted, resources active or queued

Cloning the Group

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

Subgroups