Source code for RsFsw.Implementations.MassMemory.Store.Iq.FormatPy

from .....Internal.Core import Core
from .....Internal.CommandsGroup import CommandsGroup
from .....Internal import Conversions
from ..... import enums
from ..... import repcap


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class FormatPyCls:
	"""
	| Commands in total: 1
	| Subgroups: 0
	| Direct child commands: 1
	"""

	def __init__(self, core: Core, parent):
		self._core = core
		self._cmd_group = CommandsGroup("formatPy", core, parent)

[docs] def set(self, data_type: enums.IqDataFormat, store=repcap.Store.Default) -> None: """ ``MMEMory:STORe<n>:IQ:FORMat`` \n Snippet: ``driver.massMemory.store.iq.formatPy.set(data_type = enums.IqDataFormat.FloatComplex=FLOat32,COMPlex, store = repcap.Store.Default)`` \n Sets or queries the format of the I/Q data to be stored. :param store: optional repeated capability selector. Default value: Pos1 (settable in the interface 'Store') """ param = Conversions.enum_scalar_to_str(data_type, enums.IqDataFormat) store_cmd_val = self._cmd_group.get_repcap_cmd_value(store, repcap.Store) self._core.io.write_with_opc(f'MMEMory:STORe{store_cmd_val}:IQ:FORMat {param}')
# noinspection PyTypeChecker
[docs] def get(self, store=repcap.Store.Default) -> enums.IqDataFormat: """ ``MMEMory:STORe<n>:IQ:FORMat`` \n Snippet: ``value: enums.IqDataFormat = driver.massMemory.store.iq.formatPy.get(store = repcap.Store.Default)`` \n Sets or queries the format of the I/Q data to be stored. :param store: optional repeated capability selector. Default value: Pos1 (settable in the interface 'Store') """ store_cmd_val = self._cmd_group.get_repcap_cmd_value(store, repcap.Store) response = self._core.io.query_str_with_opc(f'MMEMory:STORe{store_cmd_val}:IQ:FORMat?') return Conversions.str_to_scalar_enum(response, enums.IqDataFormat)