Source code for RsCMPX_Base.Implementations.MassMemory.Store.State

from ....Internal.Core import Core
from ....Internal.CommandsGroup import CommandsGroup
from ....Internal.Types import DataType
from ....Internal.ArgSingleList import ArgSingleList
from ....Internal.ArgSingle import ArgSingle


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class StateCls: """State commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("state", core, parent)
[docs] def set(self, sav_rcl_state_number: int, filename: str, msus: str = None) -> None: """SCPI: MMEMory:STORe:STATe \n Snippet: driver.massMemory.store.state.set(sav_rcl_state_number = 1, filename = 'abc', msus = 'abc') \n Stores the instrument settings from the specified internal memory to the specified file. To store the current instrument settings to a file, use first *SAV <MemoryNumber> to store the settings to the memory. Then use this command to store the settings from the memory to a file. For more convenience, see method RsCMPX_Base.MassMemory.save. \n :param sav_rcl_state_number: No help available :param filename: No help available :param msus: No help available """ param = ArgSingleList().compose_cmd_string(ArgSingle('sav_rcl_state_number', sav_rcl_state_number, DataType.Integer), ArgSingle('filename', filename, DataType.String), ArgSingle('msus', msus, DataType.String, None, is_optional=True)) self._core.io.write(f'MMEMory:STORe:STATe {param}'.rstrip())