Source code for rsrtx.Implementations.Export.Waveform.FastExport

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


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

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

[docs] def set(self, enable: bool) -> None: """ ``EXPort:WAVeform:FASTexport`` \n Snippet: ``driver.export.waveform.fastExport.set(enable = False)`` \n To improve the performance of data export to file, the measurements are performed slower while the data export speeds up. :param enable: ON | OFF """ param = Conversions.bool_to_str(enable) self._core.io.write_with_opc(f'EXPort:WAVeform:FASTexport {param}')