Source code for RsSmbv.Implementations.Source.Bb.Btooth.FilterPy.Osampling

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class OsamplingCls: """Osampling commands group definition. 2 total commands, 1 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("osampling", core, parent) @property def auto(self): """auto commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_auto'): from .Auto import AutoCls self._auto = AutoCls(self._core, self._cmd_group) return self._auto
[docs] def get_value(self) -> int: """SCPI: [SOURce<HW>]:BB:BTOoth:FILTer:OSAMpling \n Snippet: value: int = driver.source.bb.btooth.filterPy.osampling.get_value() \n Sets the upsampling factor. \n :return: osampling: integer Range: 1 to 32 """ response = self._core.io.query_str('SOURce<HwInstance>:BB:BTOoth:FILTer:OSAMpling?') return Conversions.str_to_int(response)
[docs] def set_value(self, osampling: int) -> None: """SCPI: [SOURce<HW>]:BB:BTOoth:FILTer:OSAMpling \n Snippet: driver.source.bb.btooth.filterPy.osampling.set_value(osampling = 1) \n Sets the upsampling factor. \n :param osampling: integer Range: 1 to 32 """ param = Conversions.decimal_value_to_str(osampling) self._core.io.write(f'SOURce<HwInstance>:BB:BTOoth:FILTer:OSAMpling {param}')
def clone(self) -> 'OsamplingCls': """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 = OsamplingCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group