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
[docs]class EcodeCls:
"""Ecode commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""
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:
"""SCPI: [SOURce<HW>]:BB:BTOoth:ECONfiguration:PCONfiguration:ECODe \n
Snippet: driver.source.bb.btooth.econfiguration.pconfiguration.ecode.set(ecode = rawAbc, bitcount = 1) \n
Sets the error code value to inform the remote device why the connection is about to be terminated in case of
LL_TERMINATE_IND packet. On the other hand, this parameter for LL_REJECT_IND packet is used for the reason a request was
rejected. A 8 bit value is set. Note: This parameter is relevant for data frame configuration and the packet type:
INTRO_CMD_HELP: Selects the clock source: \n
- LL_TERMINATE_IND
- LL_REJECT_IND \n
:param ecode: numeric
:param bitcount: integer Range: 8 to 8
"""
param = ArgSingleList().compose_cmd_string(ArgSingle('ecode', ecode, DataType.RawString), ArgSingle('bitcount', bitcount, DataType.Integer))
self._core.io.write(f'SOURce<HwInstance>:BB:BTOoth:ECONfiguration:PCONfiguration:ECODe {param}'.rstrip())
# noinspection PyTypeChecker
[docs] class EcodeStruct(StructBase):
"""Response structure. Fields: \n
- Ecode: str: numeric
- Bitcount: int: integer Range: 8 to 8"""
__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:
"""SCPI: [SOURce<HW>]:BB:BTOoth:ECONfiguration:PCONfiguration:ECODe \n
Snippet: value: EcodeStruct = driver.source.bb.btooth.econfiguration.pconfiguration.ecode.get() \n
Sets the error code value to inform the remote device why the connection is about to be terminated in case of
LL_TERMINATE_IND packet. On the other hand, this parameter for LL_REJECT_IND packet is used for the reason a request was
rejected. A 8 bit value is set. Note: This parameter is relevant for data frame configuration and the packet type:
INTRO_CMD_HELP: Selects the clock source: \n
- LL_TERMINATE_IND
- LL_REJECT_IND \n
:return: structure: for return value, see the help for EcodeStruct structure arguments."""
return self._core.io.query_struct(f'SOURce<HwInstance>:BB:BTOoth:ECONfiguration:PCONfiguration:ECODe?', self.__class__.EcodeStruct())