Source code for RsSmbv.Implementations.Test.Bb.Data

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class DataCls: """Data commands group definition. 8 total commands, 2 Subgroups, 6 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("data", core, parent) @property def error(self): """error commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_error'): from .Error import ErrorCls self._error = ErrorCls(self._core, self._cmd_group) return self._error @property def trigger(self): """trigger commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_trigger'): from .Trigger import TriggerCls self._trigger = TriggerCls(self._core, self._cmd_group) return self._trigger
[docs] def get_frequency(self) -> int: """SCPI: TEST:BB:DATA:FREQuency \n Snippet: value: int = driver.test.bb.data.get_frequency() \n Sets the clock frequency for the BER/BLER test generator. \n :return: clock: integer Range: 100 to 1E8 """ response = self._core.io.query_str('TEST:BB:DATA:FREQuency?') return Conversions.str_to_int(response)
[docs] def set_frequency(self, clock: int) -> None: """SCPI: TEST:BB:DATA:FREQuency \n Snippet: driver.test.bb.data.set_frequency(clock = 1) \n Sets the clock frequency for the BER/BLER test generator. \n :param clock: integer Range: 100 to 1E8 """ param = Conversions.decimal_value_to_str(clock) self._core.io.write(f'TEST:BB:DATA:FREQuency {param}')
[docs] def get_off_time(self) -> int: """SCPI: TEST:BB:DATA:OFFTime \n Snippet: value: int = driver.test.bb.data.get_off_time() \n Sets the on/off time of the data enable time interval of the BER/BLER test generator. \n :return: off_time: integer Range: 0 to 4294967295, Unit: Bit """ response = self._core.io.query_str('TEST:BB:DATA:OFFTime?') return Conversions.str_to_int(response)
[docs] def set_off_time(self, off_time: int) -> None: """SCPI: TEST:BB:DATA:OFFTime \n Snippet: driver.test.bb.data.set_off_time(off_time = 1) \n Sets the on/off time of the data enable time interval of the BER/BLER test generator. \n :param off_time: integer Range: 0 to 4294967295, Unit: Bit """ param = Conversions.decimal_value_to_str(off_time) self._core.io.write(f'TEST:BB:DATA:OFFTime {param}')
[docs] def get_ontime(self) -> int: """SCPI: TEST:BB:DATA:ONTime \n Snippet: value: int = driver.test.bb.data.get_ontime() \n Sets the on/off time of the data enable time interval of the BER/BLER test generator. \n :return: ontime: No help available """ response = self._core.io.query_str('TEST:BB:DATA:ONTime?') return Conversions.str_to_int(response)
[docs] def set_ontime(self, ontime: int) -> None: """SCPI: TEST:BB:DATA:ONTime \n Snippet: driver.test.bb.data.set_ontime(ontime = 1) \n Sets the on/off time of the data enable time interval of the BER/BLER test generator. \n :param ontime: integer Range: 0 to 4294967295, Unit: Bit """ param = Conversions.decimal_value_to_str(ontime) self._core.io.write(f'TEST:BB:DATA:ONTime {param}')
[docs] def get_rdelay(self) -> int: """SCPI: TEST:BB:DATA:RDELay \n Snippet: value: int = driver.test.bb.data.get_rdelay() \n For 'External Restart = On, sets the delay time for the restart signal of the BER/BLER test generator. \n :return: restart_delay: integer Range: 0 to 4294967295 """ response = self._core.io.query_str('TEST:BB:DATA:RDELay?') return Conversions.str_to_int(response)
[docs] def set_rdelay(self, restart_delay: int) -> None: """SCPI: TEST:BB:DATA:RDELay \n Snippet: driver.test.bb.data.set_rdelay(restart_delay = 1) \n For 'External Restart = On, sets the delay time for the restart signal of the BER/BLER test generator. \n :param restart_delay: integer Range: 0 to 4294967295 """ param = Conversions.decimal_value_to_str(restart_delay) self._core.io.write(f'TEST:BB:DATA:RDELay {param}')
[docs] def get_state(self) -> bool: """SCPI: TEST:BB:DATA:STATe \n Snippet: value: bool = driver.test.bb.data.get_state() \n Activates the test generator for the bit or block error rate measurement. \n :return: state: 1| ON| 0| OFF """ response = self._core.io.query_str('TEST:BB:DATA:STATe?') return Conversions.str_to_bool(response)
[docs] def set_state(self, state: bool) -> None: """SCPI: TEST:BB:DATA:STATe \n Snippet: driver.test.bb.data.set_state(state = False) \n Activates the test generator for the bit or block error rate measurement. \n :param state: 1| ON| 0| OFF """ param = Conversions.bool_to_str(state) self._core.io.write(f'TEST:BB:DATA:STATe {param}')
# noinspection PyTypeChecker
[docs] def get_type_py(self) -> enums.BertTestMode: """SCPI: TEST:BB:DATA:TYPE \n Snippet: value: enums.BertTestMode = driver.test.bb.data.get_type_py() \n Selects the type of error measurement. \n :return: type_py: BER| BLER """ response = self._core.io.query_str('TEST:BB:DATA:TYPE?') return Conversions.str_to_scalar_enum(response, enums.BertTestMode)
[docs] def set_type_py(self, type_py: enums.BertTestMode) -> None: """SCPI: TEST:BB:DATA:TYPE \n Snippet: driver.test.bb.data.set_type_py(type_py = enums.BertTestMode.BER) \n Selects the type of error measurement. \n :param type_py: BER| BLER """ param = Conversions.enum_scalar_to_str(type_py, enums.BertTestMode) self._core.io.write(f'TEST:BB:DATA:TYPE {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