Source code for RsSmbv.Implementations.Source.Bb.Gnss.Svid.Gps.Nmessage.Cnav.Ccorrection.Isc.L5Q

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class L5QCls: """L5Q commands group definition. 2 total commands, 1 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("l5Q", core, parent) @property def unscaled(self): """unscaled commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_unscaled'): from .Unscaled import UnscaledCls self._unscaled = UnscaledCls(self._core, self._cmd_group) return self._unscaled
[docs] def set(self, isc_l_5_q_5: int, satelliteSvid=repcap.SatelliteSvid.Default) -> None: """SCPI: [SOURce<HW>]:BB:GNSS:SVID<CH>:GPS:NMESsage:CNAV:CCORection:ISC:L5Q \n Snippet: driver.source.bb.gnss.svid.gps.nmessage.cnav.ccorrection.isc.l5Q.set(isc_l_5_q_5 = 1, satelliteSvid = repcap.SatelliteSvid.Default) \n Sets the inter-signal corrections (ISC) parameters of the GPS/QZSS CNAV message. \n :param isc_l_5_q_5: integer Range: -4096 to 4095 :param satelliteSvid: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Svid') """ param = Conversions.decimal_value_to_str(isc_l_5_q_5) satelliteSvid_cmd_val = self._cmd_group.get_repcap_cmd_value(satelliteSvid, repcap.SatelliteSvid) self._core.io.write(f'SOURce<HwInstance>:BB:GNSS:SVID{satelliteSvid_cmd_val}:GPS:NMESsage:CNAV:CCORection:ISC:L5Q {param}')
[docs] def get(self, satelliteSvid=repcap.SatelliteSvid.Default) -> int: """SCPI: [SOURce<HW>]:BB:GNSS:SVID<CH>:GPS:NMESsage:CNAV:CCORection:ISC:L5Q \n Snippet: value: int = driver.source.bb.gnss.svid.gps.nmessage.cnav.ccorrection.isc.l5Q.get(satelliteSvid = repcap.SatelliteSvid.Default) \n Sets the inter-signal corrections (ISC) parameters of the GPS/QZSS CNAV message. \n :param satelliteSvid: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Svid') :return: isc_l_5_q_5: No help available""" satelliteSvid_cmd_val = self._cmd_group.get_repcap_cmd_value(satelliteSvid, repcap.SatelliteSvid) response = self._core.io.query_str(f'SOURce<HwInstance>:BB:GNSS:SVID{satelliteSvid_cmd_val}:GPS:NMESsage:CNAV:CCORection:ISC:L5Q?') return Conversions.str_to_int(response)
def clone(self) -> 'L5QCls': """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 = L5QCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group