Source code for RsSmbv.Implementations.Source.Bb.Tdscdma.Down.Cell.Enh.Dch.Dcch.Data

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class DataCls: """Data commands group definition. 3 total commands, 2 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("data", core, parent) @property def dselect(self): """dselect commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_dselect'): from .Dselect import DselectCls self._dselect = DselectCls(self._core, self._cmd_group) return self._dselect @property def pattern(self): """pattern commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_pattern'): from .Pattern import PatternCls self._pattern = PatternCls(self._core, self._cmd_group) return self._pattern
[docs] def set(self, data: enums.DataSourceA, cell=repcap.Cell.Default) -> None: """SCPI: [SOURce<HW>]:BB:TDSCdma:DOWN:CELL<ST>:ENH:DCH:DCCH:DATA \n Snippet: driver.source.bb.tdscdma.down.cell.enh.dch.dcch.data.set(data = enums.DataSourceA.DLISt, cell = repcap.Cell.Default) \n The command selects the data source for the specified channel. For the traffic channels, this value is specific for the selected radio configuration. \n :param data: PN9| PN11| PN15| PN16| PN20| PN21| PN23| DLISt| ZERO| ONE| PATTern PNxx PRBS data as per CCITT with period lengths between 29-1 and 223-1 is generated internally. DLISt Internal data from a programmable data list is used. The data list can be generated by the Data Editor or generated externally. Data lists are selected in the 'Select Data List' field. The data list is selected with the command BB:TDSC:DOWN:CELL1:ENH:BCH:DTCH:DATA:DSEL data list name. ZERO | ONE Internal 0 and 1 data is used. PATTern A user-definable bit pattern with a maximum length of 64 bits is generated internally. The bit pattern is defined in the 'Pattern entry field'. The bit pattern is selected with the command BB:TDSC:DOWN:CELL1:ENH:BCH:DTCH:DATA:PATT bit pattern. :param cell: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Cell') """ param = Conversions.enum_scalar_to_str(data, enums.DataSourceA) cell_cmd_val = self._cmd_group.get_repcap_cmd_value(cell, repcap.Cell) self._core.io.write(f'SOURce<HwInstance>:BB:TDSCdma:DOWN:CELL{cell_cmd_val}:ENH:DCH:DCCH:DATA {param}')
# noinspection PyTypeChecker
[docs] def get(self, cell=repcap.Cell.Default) -> enums.DataSourceA: """SCPI: [SOURce<HW>]:BB:TDSCdma:DOWN:CELL<ST>:ENH:DCH:DCCH:DATA \n Snippet: value: enums.DataSourceA = driver.source.bb.tdscdma.down.cell.enh.dch.dcch.data.get(cell = repcap.Cell.Default) \n The command selects the data source for the specified channel. For the traffic channels, this value is specific for the selected radio configuration. \n :param cell: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Cell') :return: data: PN9| PN11| PN15| PN16| PN20| PN21| PN23| DLISt| ZERO| ONE| PATTern PNxx PRBS data as per CCITT with period lengths between 29-1 and 223-1 is generated internally. DLISt Internal data from a programmable data list is used. The data list can be generated by the Data Editor or generated externally. Data lists are selected in the 'Select Data List' field. The data list is selected with the command BB:TDSC:DOWN:CELL1:ENH:BCH:DTCH:DATA:DSEL data list name. ZERO | ONE Internal 0 and 1 data is used. PATTern A user-definable bit pattern with a maximum length of 64 bits is generated internally. The bit pattern is defined in the 'Pattern entry field'. The bit pattern is selected with the command BB:TDSC:DOWN:CELL1:ENH:BCH:DTCH:DATA:PATT bit pattern.""" cell_cmd_val = self._cmd_group.get_repcap_cmd_value(cell, repcap.Cell) response = self._core.io.query_str(f'SOURce<HwInstance>:BB:TDSCdma:DOWN:CELL{cell_cmd_val}:ENH:DCH:DCCH:DATA?') return Conversions.str_to_scalar_enum(response, enums.DataSourceA)
def clone(self) -> 'DataCls': """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 = DataCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group