All
SCPI Command :
FETCh:BLUetooth:MEASurement<Instance>:MEValuation:STATe:ALL
- class AllCls[source]
All commands group definition. 1 total commands, 0 Subgroups, 1 group commands
- class FetchStruct[source]
Response structure. Fields:
Main_State: enums.ResourceState: Current state or target state of ongoing state transition OFF: measurement off RUN: measurement running RDY: measurement completed
Sync_State: enums.ResourceState: PEND: transition to MainState ongoing ADJ: MainState reached
Resource_State: enums.ResourceState: QUE: waiting for resource allocation ACT: resources allocated INV: no resources allocated
- fetch(timeout: float = None, target_main_state: ResourceState = None, target_sync_state: SyncState = None) FetchStruct[source]
# SCPI: FETCh:BLUetooth:MEASurement<Instance>:MEValuation:STATe:ALL value: FetchStruct = driver.bluetooth.measurement.multiEval.state.all.fetch(timeout = 1.0, target_main_state = enums.ResourceState.ACTive, target_sync_state = enums.SyncState.ADJusted)
Queries the main measurement state and the measurement substates. Without query parameters, the states are returned immediately. With query parameters, the states are returned when the <TargetMainState> and the <TargetSyncState> are reached or when the <Timeout> expires.
- param timeout:
No help available
- param target_main_state:
Target MainState for the query Default is RUN.
- param target_sync_state:
Target SyncState for the query Default is ADJ.
- return:
structure: for return value, see the help for FetchStruct structure arguments.