Source code for RsCmwGsmMeas.Implementations.MultiEval_.State_.All

from ....Internal.Core import Core
from ....Internal.CommandsGroup import CommandsGroup
from ....Internal.StructBase import StructBase
from ....Internal.ArgStruct import ArgStruct
from .... import enums


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class All: """All commands group definition. 1 total commands, 0 Sub-groups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._base = CommandsGroup("all", core, parent) # noinspection PyTypeChecker
[docs] class FetchStruct(StructBase): """Response structure. Fields: \n - Main_State: enums.ResourceState: OFF | RDY | RUN OFF: measurement switched off, no resources allocated, no results available (when entered after STOP...) RDY: measurement has been terminated, valid results are available RUN: measurement running (after INITiate..., READ...) , synchronization pending or adjusted, resources active or queued - Sync_State: enums.ResourceState: PEND | ADJ | INV PEND: waiting for resource allocation, adjustment, hardware switching ('pending') ADJ: all necessary adjustments finished, measurement running ('adjusted') INV: not applicable because main_state: OFF or RDY ('invalid') - Resource_State: enums.ResourceState: QUE | ACT | INV QUE: measurement without resources, no results available ('queued') ACT: resources allocated, acquisition of results in progress but not complete ('active') INV: not applicable because main_state: OFF or RDY ('invalid')""" __meta_args_list = [ ArgStruct.scalar_enum('Main_State', enums.ResourceState), ArgStruct.scalar_enum('Sync_State', enums.ResourceState), ArgStruct.scalar_enum('Resource_State', enums.ResourceState)] def __init__(self): StructBase.__init__(self, self) self.Main_State: enums.ResourceState = None self.Sync_State: enums.ResourceState = None self.Resource_State: enums.ResourceState = None
[docs] def fetch(self) -> FetchStruct: """SCPI: FETCh:GSM:MEASurement<Instance>:MEValuation:STATe:ALL \n Snippet: value: FetchStruct = driver.multiEval.state.all.fetch() \n Queries the main measurement state and the measurement substates. Both measurement substates are relevant for running measurements only. Use FETCh:...:STATe? to query the main measurement state only. Use INITiate..., STOP..., ABORt... to change the measurement state. \n :return: structure: for return value, see the help for FetchStruct structure arguments.""" return self._core.io.query_struct(f'FETCh:GSM:MEASurement<Instance>:MEValuation:STATe:ALL?', self.__class__.FetchStruct())