Source code for RsSmw.Implementations.Source.Bb.Wlay.Pconfig.Hda.Mcs.Dpt

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class DptCls:
	"""
	| Commands in total: 1
	| Subgroups: 0
	| Direct child commands: 1
	"""

	def __init__(self, core: Core, parent):
		self._core = core
		self._cmd_group = CommandsGroup("dpt", core, parent)

[docs] def get_state(self) -> bool: """ ``[SOURce<HW>]:BB:WLAY:PCONfig:HDA:MCS:DPT:STATe`` \n Snippet: ``value: bool = driver.source.bb.wlay.pconfig.hda.mcs.dpt.get_state()`` \n Activates dual polarisation TRN training. :return: dual_polar_trn: 1 | ON | 0| OFF """ response = self._core.io.query_str('SOURce<HwInstance>:BB:WLAY:PCONfig:HDA:MCS:DPT:STATe?') return Conversions.str_to_bool(response)
[docs] def set_state(self, dual_polar_trn: bool) -> None: """ ``[SOURce<HW>]:BB:WLAY:PCONfig:HDA:MCS:DPT:STATe`` \n Snippet: ``driver.source.bb.wlay.pconfig.hda.mcs.dpt.set_state(dual_polar_trn = False)`` \n Activates dual polarisation TRN training. :param dual_polar_trn: 1 | ON | 0| OFF """ param = Conversions.bool_to_str(dual_polar_trn) self._core.io.write(f'SOURce<HwInstance>:BB:WLAY:PCONfig:HDA:MCS:DPT:STATe {param}')