Source code for RsSmw.Implementations.Source.Bb.Gbas.Vdb.Mconfig.Waypoint.File

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class FileCls:
	"""
	| Commands in total: 1
	| Subgroups: 0
	| Direct child commands: 1
	"""

	def __init__(self, core: Core, parent):
		self._core = core
		self._cmd_group = CommandsGroup("file", core, parent)

[docs] def get(self, vdbTransmitter=repcap.VdbTransmitter.Default) -> str: """ ``[SOURce<HW>]:BB:GBAS:VDB<CH>:MCONfig:WAYPoint:FILE`` \n Snippet: ``value: str = driver.source.bb.gbas.vdb.mconfig.waypoint.file.get(vdbTransmitter = repcap.VdbTransmitter.Default)`` \n Requires 'Mode > GBAS' (LAAS) header information. Queries the currently selected waypoint file. :param vdbTransmitter: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Vdb') :return: filename: string Filename with file extension (txt) """ vdbTransmitter_cmd_val = self._cmd_group.get_repcap_cmd_value(vdbTransmitter, repcap.VdbTransmitter) response = self._core.io.query_str(f'SOURce<HwInstance>:BB:GBAS:VDB{vdbTransmitter_cmd_val}:MCONfig:WAYPoint:FILE?') return trim_str_response(response)