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

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class L1CaCls: """L1Ca commands group definition. 2 total commands, 1 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("l1Ca", 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_1_ca: int, satelliteSvid=repcap.SatelliteSvid.Default) -> None: """SCPI: [SOURce<HW>]:BB:GNSS:SVID<CH>:GPS:NMESsage:CNAV:CCORection:ISC:L1CA \n Snippet: driver.source.bb.gnss.svid.gps.nmessage.cnav.ccorrection.isc.l1Ca.set(isc_l_1_ca = 1, satelliteSvid = repcap.SatelliteSvid.Default) \n Sets the inter-signal corrections (ISC) parameters of the GPS/QZSS CNAV message. \n :param isc_l_1_ca: 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_1_ca) 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:L1CA {param}')
[docs] def get(self, satelliteSvid=repcap.SatelliteSvid.Default) -> int: """SCPI: [SOURce<HW>]:BB:GNSS:SVID<CH>:GPS:NMESsage:CNAV:CCORection:ISC:L1CA \n Snippet: value: int = driver.source.bb.gnss.svid.gps.nmessage.cnav.ccorrection.isc.l1Ca.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_1_ca: integer Range: -4096 to 4095""" 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:L1CA?') return Conversions.str_to_int(response)
def clone(self) -> 'L1CaCls': """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 = L1CaCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group