Source code for RsSmcv.Implementations.TsGen.Configure.Prbs

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class PrbsCls: """Prbs commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("prbs", core, parent) # noinspection PyTypeChecker
[docs] def get_sequence(self) -> enums.SettingsPrbs: """SCPI: TSGen:CONFigure:PRBS:[SEQuence] \n Snippet: value: enums.SettingsPrbs = driver.tsGen.configure.prbs.get_sequence() \n Sets the length of the PRBS sequence. \n :return: prbs: P15_1| P23_1 """ response = self._core.io.query_str('TSGen:CONFigure:PRBS:SEQuence?') return Conversions.str_to_scalar_enum(response, enums.SettingsPrbs)
[docs] def set_sequence(self, prbs: enums.SettingsPrbs) -> None: """SCPI: TSGen:CONFigure:PRBS:[SEQuence] \n Snippet: driver.tsGen.configure.prbs.set_sequence(prbs = enums.SettingsPrbs.P15_1) \n Sets the length of the PRBS sequence. \n :param prbs: P15_1| P23_1 """ param = Conversions.enum_scalar_to_str(prbs, enums.SettingsPrbs) self._core.io.write(f'TSGen:CONFigure:PRBS:SEQuence {param}')