Source code for RsSmw.Implementations.Source.Bb.Gnss.Rtk.Base.Location.Sync

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class SyncCls: """Sync commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("sync", core, parent)
[docs] def set(self, baseSt=repcap.BaseSt.Default) -> None: """SCPI: [SOURce<HW>]:BB:GNSS:RTK:BASE<ST>:LOCation:SYNC \n Snippet: driver.source.bb.gnss.rtk.base.location.sync.set(baseSt = repcap.BaseSt.Default) \n Triggers synchronization of the RTK base station location and receiver location. \n :param baseSt: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Base') """ baseSt_cmd_val = self._cmd_group.get_repcap_cmd_value(baseSt, repcap.BaseSt) self._core.io.write(f'SOURce<HwInstance>:BB:GNSS:RTK:BASE{baseSt_cmd_val}:LOCation:SYNC')
[docs] def set_with_opc(self, baseSt=repcap.BaseSt.Default, opc_timeout_ms: int = -1) -> None: baseSt_cmd_val = self._cmd_group.get_repcap_cmd_value(baseSt, repcap.BaseSt) """SCPI: [SOURce<HW>]:BB:GNSS:RTK:BASE<ST>:LOCation:SYNC \n Snippet: driver.source.bb.gnss.rtk.base.location.sync.set_with_opc(baseSt = repcap.BaseSt.Default) \n Triggers synchronization of the RTK base station location and receiver location. \n 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. \n :param baseSt: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Base') :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:GNSS:RTK:BASE{baseSt_cmd_val}:LOCation:SYNC', opc_timeout_ms)