Source code for RsSmbv.Implementations.Source.Bb.Huwb.Fconfig.Data

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
[docs]class DataCls: """Data commands group definition. 3 total commands, 1 Subgroups, 2 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("data", core, parent) @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 get_dselection(self) -> str: """SCPI: [SOURce<HW>]:BB:HUWB:FCONfig:DATA:DSELection \n Snippet: value: str = driver.source.bb.huwb.fconfig.data.get_dselection() \n Selects an existing data list file from the default directory or from the specific directory. The data list is only used, if the DLIS is selected. \n :return: dselection: string """ response = self._core.io.query_str('SOURce<HwInstance>:BB:HUWB:FCONfig:DATA:DSELection?') return trim_str_response(response)
[docs] def set_dselection(self, dselection: str) -> None: """SCPI: [SOURce<HW>]:BB:HUWB:FCONfig:DATA:DSELection \n Snippet: driver.source.bb.huwb.fconfig.data.set_dselection(dselection = 'abc') \n Selects an existing data list file from the default directory or from the specific directory. The data list is only used, if the DLIS is selected. \n :param dselection: string """ param = Conversions.value_to_quoted_str(dselection) self._core.io.write(f'SOURce<HwInstance>:BB:HUWB:FCONfig:DATA:DSELection {param}')
# noinspection PyTypeChecker
[docs] def get_value(self) -> enums.HrpUwbDataSource: """SCPI: [SOURce<HW>]:BB:HUWB:FCONfig:DATA \n Snippet: value: enums.HrpUwbDataSource = driver.source.bb.huwb.fconfig.data.get_value() \n Sets the data source for the payload data in a frame. \n :return: data_source: PN9| PN11| PN15| PN20| PN16| PN21| PN23| ONE| ZERO| DLISt| PATT PNxx The pseudo-random sequence generator is used as the data source. There is a choice of different lengths of random sequence. DLISt A data list is used. The data list is selected with the aid of command SOURce1:BB:HUWB:DATA DLISt. ALL0 | ALL1 Internal 0 or 1 data is used. PATT Internal data is used. The bit pattern for the data is defined with the aid of command SOURce1:BB:HUWB:DATA:PATTern. """ response = self._core.io.query_str('SOURce<HwInstance>:BB:HUWB:FCONfig:DATA?') return Conversions.str_to_scalar_enum(response, enums.HrpUwbDataSource)
[docs] def set_value(self, data_source: enums.HrpUwbDataSource) -> None: """SCPI: [SOURce<HW>]:BB:HUWB:FCONfig:DATA \n Snippet: driver.source.bb.huwb.fconfig.data.set_value(data_source = enums.HrpUwbDataSource.DLISt) \n Sets the data source for the payload data in a frame. \n :param data_source: PN9| PN11| PN15| PN20| PN16| PN21| PN23| ONE| ZERO| DLISt| PATT PNxx The pseudo-random sequence generator is used as the data source. There is a choice of different lengths of random sequence. DLISt A data list is used. The data list is selected with the aid of command SOURce1:BB:HUWB:DATA DLISt. ALL0 | ALL1 Internal 0 or 1 data is used. PATT Internal data is used. The bit pattern for the data is defined with the aid of command SOURce1:BB:HUWB:DATA:PATTern. """ param = Conversions.enum_scalar_to_str(data_source, enums.HrpUwbDataSource) self._core.io.write(f'SOURce<HwInstance>:BB:HUWB:FCONfig:DATA {param}')
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