Source code for RsSmbv.Implementations.Source.Bb.Gnss.Svid.Gps.Signal.L5Band.L5S.Data.Nmessage.Dselect

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class DselectCls: """Dselect commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("dselect", core, parent)
[docs] def set(self, dselect: str, satelliteSvid=repcap.SatelliteSvid.Default) -> None: """SCPI: [SOURce<HW>]:BB:GNSS:SVID<CH>:GPS:SIGNal:L5Band:L5S:DATA:NMESsage:DSELect \n Snippet: driver.source.bb.gnss.svid.gps.signal.l5Band.l5S.data.nmessage.dselect.set(dselect = 'abc', satelliteSvid = repcap.SatelliteSvid.Default) \n Selects an existing data list file from the default directory or from the specific directory. Refer to 'Accessing Files in the Default or Specified Directory' for general information on file handling in the default and in a specific directory. \n :param dselect: string Filename incl. file extension or complete file path :param satelliteSvid: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Svid') """ param = Conversions.value_to_quoted_str(dselect) 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:SIGNal:L5Band:L5S:DATA:NMESsage:DSELect {param}')
[docs] def get(self, satelliteSvid=repcap.SatelliteSvid.Default) -> str: """SCPI: [SOURce<HW>]:BB:GNSS:SVID<CH>:GPS:SIGNal:L5Band:L5S:DATA:NMESsage:DSELect \n Snippet: value: str = driver.source.bb.gnss.svid.gps.signal.l5Band.l5S.data.nmessage.dselect.get(satelliteSvid = repcap.SatelliteSvid.Default) \n Selects an existing data list file from the default directory or from the specific directory. Refer to 'Accessing Files in the Default or Specified Directory' for general information on file handling in the default and in a specific directory. \n :param satelliteSvid: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Svid') :return: dselect: string Filename incl. file extension or complete file path""" 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:SIGNal:L5Band:L5S:DATA:NMESsage:DSELect?') return trim_str_response(response)