[docs]classMaximumCls:"""Maximum commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("maximum",core,parent)
[docs]defget(self)->float:"""SCPI: FETCh:FTIMe:MAXimum \n Snippet: value: float = driver.applications.k9X11Ad.fetch.ftime.maximum.get() \n Returns the average, maximum or minimum fall time for the PPDU in s. For details see 'Fall Time [s]'. \n :return: result: No help available"""response=self._core.io.query_str(f'FETCh:FTIMe:MAXimum?')returnConversions.str_to_float(response)