Source code for RsCmwWcdmaSig.Implementations.Clean_.Sms_.Incoming_.Info_.Mtext

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class Mtext: """Mtext commands group definition. 1 total commands, 0 Sub-groups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._base = CommandsGroup("mtext", core, parent)
[docs] def set(self) -> None: """SCPI: CLEan:WCDMa:SIGNaling<instance>:SMS:INComing:INFO:MTEXt \n Snippet: driver.clean.sms.incoming.info.mtext.set() \n Resets all parameters related to a received SMS message. The message text and the information about the message length are deleted. The 'message read' flag is set to true. \n """ self._core.io.write(f'CLEan:WCDMa:SIGNaling<Instance>:SMS:INComing:INFO:MTEXt')
[docs] def set_with_opc(self) -> None: """SCPI: CLEan:WCDMa:SIGNaling<instance>:SMS:INComing:INFO:MTEXt \n Snippet: driver.clean.sms.incoming.info.mtext.set_with_opc() \n Resets all parameters related to a received SMS message. The message text and the information about the message length are deleted. The 'message read' flag is set to true. \n Same as set, but waits for the operation to complete before continuing further. Use the RsCmwWcdmaSig.utilities.opc_timeout_set() to set the timeout value. \n """ self._core.io.write_with_opc(f'CLEan:WCDMa:SIGNaling<Instance>:SMS:INComing:INFO:MTEXt')