Source code for RsSmbv.Implementations.Source.Bb.Btooth.Econfiguration.Pconfiguration.Acad

from ........Internal.Core import Core
from ........Internal.CommandsGroup import CommandsGroup
from ........Internal import Conversions
from ........Internal.Utilities import trim_str_response
from ........ import enums


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class AcadCls:
	"""
	| Commands in total: 3
	| Subgroups: 1
	| Direct child commands: 2
	"""

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

	@property
	def apattern(self):
		"""
		| Commands in total: 1
		| Subgroups: 0
		| Direct child commands: 1
		"""
		if not hasattr(self, '_apattern'):
			from .Apattern import ApatternCls
			self._apattern = ApatternCls(self._core, self._cmd_group)
		return self._apattern

[docs] def get_aselection(self) -> str: """ ``[SOURce<HW>]:BB:BTOoth:ECONfiguration:PCONfiguration:ACAD:ASELection`` \n Snippet: ``value: str = driver.source.bb.btooth.econfiguration.pconfiguration.acad.get_aselection()`` \n Specifies data list file. The settings is relevant for method ``RsSmbv.source.bb.btooth.econfiguration.pconfiguration.acad.value()`` DLISt :return: dselection: string Path and file name. """ response = self._core.io.query_str('SOURce<HwInstance>:BB:BTOoth:ECONfiguration:PCONfiguration:ACAD:ASELection?') return trim_str_response(response)
[docs] def set_aselection(self, dselection: str) -> None: """ ``[SOURce<HW>]:BB:BTOoth:ECONfiguration:PCONfiguration:ACAD:ASELection`` \n Snippet: ``driver.source.bb.btooth.econfiguration.pconfiguration.acad.set_aselection(dselection = 'abc')`` \n Specifies data list file. The settings is relevant for method ``RsSmbv.source.bb.btooth.econfiguration.pconfiguration.acad.value()`` DLISt :param dselection: string Path and file name. """ param = Conversions.value_to_quoted_str(dselection) self._core.io.write(f'SOURce<HwInstance>:BB:BTOoth:ECONfiguration:PCONfiguration:ACAD:ASELection {param}')
# noinspection PyTypeChecker
[docs] def get_value(self) -> enums.DataSourceB: """ ``[SOURce<HW>]:BB:BTOoth:ECONfiguration:PCONfiguration:ACAD`` \n Snippet: ``value: enums.DataSourceB = driver.source.bb.btooth.econfiguration.pconfiguration.acad.get_value()`` \n Specifies the pattern source used for additional controller advertising data (ACAD) . :return: data: ALL0 | ALL1 | PATTern | PN09 | PN11 | PN15 | PN16 | PN20 | PN21 | PN23 | DLISt ALL0 / ALL1 All 0 or all 1 pattern PATTern User-defined pattern. The pattern can be specified via: method ``RsSmbv.source.bb.btooth.econfiguration.pconfiguration.acad.apattern.set()`` PNxx Pseudo-random bit sequences (PRBS) of a length of xx bits. The length in bit can be 9, 11, 15, 16, 20, 21, or 23. DLISt Internal ACAD data list is used. The data list can be specified via: method ``RsSmbv.source.bb.btooth.econfiguration.pconfiguration.acad.aselection()`` """ response = self._core.io.query_str('SOURce<HwInstance>:BB:BTOoth:ECONfiguration:PCONfiguration:ACAD?') return Conversions.str_to_scalar_enum(response, enums.DataSourceB)
[docs] def set_value(self, data: enums.DataSourceB) -> None: """ ``[SOURce<HW>]:BB:BTOoth:ECONfiguration:PCONfiguration:ACAD`` \n Snippet: ``driver.source.bb.btooth.econfiguration.pconfiguration.acad.set_value(data = enums.DataSourceB.ALL0)`` \n Specifies the pattern source used for additional controller advertising data (ACAD) . :param data: ALL0 | ALL1 | PATTern | PN09 | PN11 | PN15 | PN16 | PN20 | PN21 | PN23 | DLISt ALL0 / ALL1 All 0 or all 1 pattern PATTern User-defined pattern. The pattern can be specified via: method ``RsSmbv.source.bb.btooth.econfiguration.pconfiguration.acad.apattern.set()`` PNxx Pseudo-random bit sequences (PRBS) of a length of xx bits. The length in bit can be 9, 11, 15, 16, 20, 21, or 23. DLISt Internal ACAD data list is used. The data list can be specified via: method ``RsSmbv.source.bb.btooth.econfiguration.pconfiguration.acad.aselection()`` """ param = Conversions.enum_scalar_to_str(data, enums.DataSourceB) self._core.io.write(f'SOURce<HwInstance>:BB:BTOoth:ECONfiguration:PCONfiguration:ACAD {param}')
def clone(self) -> 'AcadCls': """ Clones the group by creating new object from it and its whole existing subgroups. Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group. """ new_group = AcadCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group