Source code for RsSmbv.Implementations.Source.Bb.Gnss.Rt.Receiver.V.HilPosition.Latency

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class LatencyCls: """Latency commands group definition. 2 total commands, 1 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("latency", core, parent) @property def statistics(self): """statistics commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_statistics'): from .Statistics import StatisticsCls self._statistics = StatisticsCls(self._core, self._cmd_group) return self._statistics
[docs] def get(self, vehicle=repcap.Vehicle.Default) -> float: """SCPI: [SOURce<HW>]:BB:GNSS:RT:RECeiver:[V<ST>]:HILPosition:LATency \n Snippet: value: float = driver.source.bb.gnss.rt.receiver.v.hilPosition.latency.get(vehicle = repcap.Vehicle.Default) \n Queries the predicted latency that is the time delay between the elapsed time of HIL mode command and the time to execute this command in the R&S SMBV100B. HIL command refers to HiL mode A or HiL mode B commands: [:SOURce<hw>]:BB:GNSS:RT:RECeiver[:V<st>]:HILPosition:MODE:A [:SOURce<hw>]:BB:GNSS:RT:RECeiver[:V<st>]:HILPosition:MODE:B How to: 'Latency calibration' \n :param vehicle: optional repeated capability selector. Default value: Nr1 (settable in the interface 'V') :return: latency: float Range: min to max, Unit: s""" vehicle_cmd_val = self._cmd_group.get_repcap_cmd_value(vehicle, repcap.Vehicle) response = self._core.io.query_str(f'SOURce<HwInstance>:BB:GNSS:RT:RECeiver:V{vehicle_cmd_val}:HILPosition:LATency?') return Conversions.str_to_float(response)
def clone(self) -> 'LatencyCls': """Clones the group by creating new object from it and its whole existing subgroups Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group""" new_group = LatencyCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group