Source code for RsCmwWcdmaSig.Implementations.Clean_.Elogging

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class Elogging: """Elogging commands group definition. 1 total commands, 0 Sub-groups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._base = CommandsGroup("elogging", core, parent)
[docs] def set(self) -> None: """SCPI: CLEan:WCDMa:SIGNaling<instance>:ELOGging \n Snippet: driver.clean.elogging.set() \n Clears the event log. \n """ self._core.io.write(f'CLEan:WCDMa:SIGNaling<Instance>:ELOGging')
[docs] def set_with_opc(self) -> None: """SCPI: CLEan:WCDMa:SIGNaling<instance>:ELOGging \n Snippet: driver.clean.elogging.set_with_opc() \n Clears the event log. \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>:ELOGging')