Source code for RsSmw.Implementations.Source.Bb.Eutra.Uplink.Ue.Sl.Sci.FhFlag

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


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

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

[docs] def set(self, sl_freq_hopping: bool, userEquipment=repcap.UserEquipment.Default, indexNull=repcap.IndexNull.Default) -> None: """ ``[SOURce<HW>]:BB:EUTRa:UL:UE<ST>:SL:SCI<CH0>:FHFLag`` \n Snippet: ``driver.source.bb.eutra.uplink.ue.sl.sci.fhFlag.set(sl_freq_hopping = False, userEquipment = repcap.UserEquipment.Default, indexNull = repcap.IndexNull.Default)`` \n Sets the DCI field frequency hopping flag. If enabled, frequency hopping is used for the PSSCH transmission. :param sl_freq_hopping: 1 | ON | 0| OFF :param userEquipment: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Ue') :param indexNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Sci') """ param = Conversions.bool_to_str(sl_freq_hopping) userEquipment_cmd_val = self._cmd_group.get_repcap_cmd_value(userEquipment, repcap.UserEquipment) indexNull_cmd_val = self._cmd_group.get_repcap_cmd_value(indexNull, repcap.IndexNull) self._core.io.write(f'SOURce<HwInstance>:BB:EUTRa:UL:UE{userEquipment_cmd_val}:SL:SCI{indexNull_cmd_val}:FHFLag {param}')
[docs] def get(self, userEquipment=repcap.UserEquipment.Default, indexNull=repcap.IndexNull.Default) -> bool: """ ``[SOURce<HW>]:BB:EUTRa:UL:UE<ST>:SL:SCI<CH0>:FHFLag`` \n Snippet: ``value: bool = driver.source.bb.eutra.uplink.ue.sl.sci.fhFlag.get(userEquipment = repcap.UserEquipment.Default, indexNull = repcap.IndexNull.Default)`` \n Sets the DCI field frequency hopping flag. If enabled, frequency hopping is used for the PSSCH transmission. :param userEquipment: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Ue') :param indexNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Sci') :return: sl_freq_hopping: 1 | ON | 0| OFF """ userEquipment_cmd_val = self._cmd_group.get_repcap_cmd_value(userEquipment, repcap.UserEquipment) indexNull_cmd_val = self._cmd_group.get_repcap_cmd_value(indexNull, repcap.IndexNull) response = self._core.io.query_str(f'SOURce<HwInstance>:BB:EUTRa:UL:UE{userEquipment_cmd_val}:SL:SCI{indexNull_cmd_val}:FHFLag?') return Conversions.str_to_bool(response)