Source code for RsSmw.Implementations.Source.Bb.Dvb.Dvbx.GhConfig.FiUse

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


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

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

[docs] def get_state(self) -> bool: """ ``[SOURce<HW>]:BB:DVB:DVBX:GHConfig:FIUSe:[STATe]`` \n Snippet: ``value: bool = driver.source.bb.dvb.dvbx.ghConfig.fiUse.get_state()`` \n Includes a PDU fragment in the GSE packet. :return: fi_use: 1 | ON | 0| OFF """ response = self._core.io.query_str('SOURce<HwInstance>:BB:DVB:DVBX:GHConfig:FIUSe:STATe?') return Conversions.str_to_bool(response)
[docs] def set_state(self, fi_use: bool) -> None: """ ``[SOURce<HW>]:BB:DVB:DVBX:GHConfig:FIUSe:[STATe]`` \n Snippet: ``driver.source.bb.dvb.dvbx.ghConfig.fiUse.set_state(fi_use = False)`` \n Includes a PDU fragment in the GSE packet. :param fi_use: 1 | ON | 0| OFF """ param = Conversions.bool_to_str(fi_use) self._core.io.write(f'SOURce<HwInstance>:BB:DVB:DVBX:GHConfig:FIUSe:STATe {param}')