Source code for RsSmw.Implementations.Source.Bb.Eutra.Downlink.Emtc.Bmp.SelectAll

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


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

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

[docs] def set(self, selectAllNull=repcap.SelectAllNull.Nr0) -> None: """ ``[SOURce<HW>]:BB:EUTRa:DL:EMTC:BMP:SELectlall<ST0>`` \n Snippet: ``driver.source.bb.eutra.downlink.emtc.bmp.selectAll.set(selectAllNull = repcap.SelectAllNull.Nr0)`` \n Sets all SFs as valid or invalid. :param selectAllNull: optional repeated capability selector. Default value: Nr0 """ selectAllNull_cmd_val = self._cmd_group.get_repcap_cmd_value(selectAllNull, repcap.SelectAllNull) self._core.io.write(f'SOURce<HwInstance>:BB:EUTRa:DL:EMTC:BMP:SELectlall{selectAllNull_cmd_val}')
[docs] def set_with_opc(self, selectAllNull=repcap.SelectAllNull.Nr0, opc_timeout_ms: int = -1) -> None: selectAllNull_cmd_val = self._cmd_group.get_repcap_cmd_value(selectAllNull, repcap.SelectAllNull) """ ``[SOURce<HW>]:BB:EUTRa:DL:EMTC:BMP:SELectlall<ST0>`` \n Snippet: ``driver.source.bb.eutra.downlink.emtc.bmp.selectAll.set_with_opc(selectAllNull = repcap.SelectAllNull.Nr0)`` \n Sets all SFs as valid or invalid. Same as set, but waits for the operation to complete before continuing further. Use the RsSmw.utilities.opc_timeout_set() to set the timeout value. :param selectAllNull: optional repeated capability selector. Default value: Nr0 :param opc_timeout_ms: Maximum time to wait in milliseconds, valid only for this call. """ self._core.io.write_with_opc(f'SOURce<HwInstance>:BB:EUTRa:DL:EMTC:BMP:SELectlall{selectAllNull_cmd_val}', opc_timeout_ms)