[docs]classSvFailedCls:"""SvFailed commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("svFailed",core,parent)
[docs]defset(self,state:enums.AutoMode)->None:"""SCPI: [SENSe]:SWEep:SVFailed \n Snippet: driver.applications.k40PhaseNoise.sense.sweep.svFailed.set(state = enums.AutoMode.AUTO) \n Turns repeated tries to start the measurement if signal verification fails on and off. \n :param state: ON | OFF | AUTO If on, the application tries to verify the signal once and then aborts the measurement if verification has failed. """param=Conversions.enum_scalar_to_str(state,enums.AutoMode)self._core.io.write(f'SENSe:SWEep:SVFailed {param}')
# noinspection PyTypeChecker
[docs]defget(self)->enums.AutoMode:"""SCPI: [SENSe]:SWEep:SVFailed \n Snippet: value: enums.AutoMode = driver.applications.k40PhaseNoise.sense.sweep.svFailed.get() \n Turns repeated tries to start the measurement if signal verification fails on and off. \n :return: state: ON | OFF | AUTO If on, the application tries to verify the signal once and then aborts the measurement if verification has failed."""response=self._core.io.query_str(f'SENSe:SWEep:SVFailed?')returnConversions.str_to_scalar_enum(response,enums.AutoMode)