Source code for RsSmw.Implementations.Source.Bb.Evdo.Terminal.Dchannel.Packet.Fcs.State

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


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

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

[docs] def set(self, state: bool, terminal=repcap.Terminal.Default, packet=repcap.Packet.Default) -> None: """ ``[SOURce<HW>]:BB:EVDO:TERMinal<ST>:DCHannel:PACKet<CH>:FCS:[STATe]`` \n Snippet: ``driver.source.bb.evdo.terminal.dchannel.packet.fcs.state.set(state = False, terminal = repcap.Terminal.Default, packet = repcap.Packet.Default)`` \n (enabled for an access terminal working in traffic mode) Enables or disables appending a standard Frame Check Sequence (FCS) and tail to the MAC layer packet. Note: Configuration of Packet 2 and Packet 3 transmitted on the second and the third subframe, is only enabled for physical layer subtype 2. :param state: 1 | ON | 0| OFF :param terminal: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Terminal') :param packet: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Packet') """ param = Conversions.bool_to_str(state) terminal_cmd_val = self._cmd_group.get_repcap_cmd_value(terminal, repcap.Terminal) packet_cmd_val = self._cmd_group.get_repcap_cmd_value(packet, repcap.Packet) self._core.io.write(f'SOURce<HwInstance>:BB:EVDO:TERMinal{terminal_cmd_val}:DCHannel:PACKet{packet_cmd_val}:FCS:STATe {param}')
[docs] def get(self, terminal=repcap.Terminal.Default, packet=repcap.Packet.Default) -> bool: """ ``[SOURce<HW>]:BB:EVDO:TERMinal<ST>:DCHannel:PACKet<CH>:FCS:[STATe]`` \n Snippet: ``value: bool = driver.source.bb.evdo.terminal.dchannel.packet.fcs.state.get(terminal = repcap.Terminal.Default, packet = repcap.Packet.Default)`` \n (enabled for an access terminal working in traffic mode) Enables or disables appending a standard Frame Check Sequence (FCS) and tail to the MAC layer packet. Note: Configuration of Packet 2 and Packet 3 transmitted on the second and the third subframe, is only enabled for physical layer subtype 2. :param terminal: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Terminal') :param packet: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Packet') :return: state: 1 | ON | 0| OFF """ terminal_cmd_val = self._cmd_group.get_repcap_cmd_value(terminal, repcap.Terminal) packet_cmd_val = self._cmd_group.get_repcap_cmd_value(packet, repcap.Packet) response = self._core.io.query_str(f'SOURce<HwInstance>:BB:EVDO:TERMinal{terminal_cmd_val}:DCHannel:PACKet{packet_cmd_val}:FCS:STATe?') return Conversions.str_to_bool(response)