Source code for RsSmbv.Implementations.Source.Bb.Btooth.Cs.Cdata.Ecode

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


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

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

[docs] def set(self, ecode: str, bitcount: int) -> None: """ ``[SOURce<HW>]:BB:BTOoth:CS:CDATa:ECODe`` \n Snippet: ``driver.source.bb.btooth.cs.cdata.ecode.set(ecode = rawAbc, bitcount = 1)`` \n No help available """ param = ArgSingleList().compose_cmd_string(ArgSingle('ecode', ecode, DataType.RawString), ArgSingle('bitcount', bitcount, DataType.Integer)) self._core.io.write(f'SOURce<HwInstance>:BB:BTOoth:CS:CDATa:ECODe {param}'.rstrip())
# noinspection PyTypeChecker
[docs] class EcodeStruct(StructBase): """ Response structure. Fields: \n - 1 Ecode: str: No parameter help available - 2 Bitcount: int: No parameter help available """ __meta_args_list = [ ArgStruct.scalar_raw_str('Ecode'), ArgStruct.scalar_int('Bitcount')] def __init__(self): StructBase.__init__(self, self) self.Ecode: str = None self.Bitcount: int = None
[docs] def get(self) -> EcodeStruct: """ ``[SOURce<HW>]:BB:BTOoth:CS:CDATa:ECODe`` \n Snippet: ``value: EcodeStruct = driver.source.bb.btooth.cs.cdata.ecode.get()`` \n No help available :return: structure: for return value, see the help for EcodeStruct structure arguments. """ return self._core.io.query_struct(f'SOURce<HwInstance>:BB:BTOoth:CS:CDATa:ECODe?', self.__class__.EcodeStruct())