[docs]classAverageCls:"""Average commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("average",core,parent)
[docs]defget(self)->str:"""SCPI: FETCh:BURSt:TRISe:AVERage \n Snippet: value: str = driver.applications.k91Wlan.fetch.burst.trise.average.get() \n Returns the average, maximum or minimum burst rise time in seconds. Is only applicable to IEEE802.11b & IEEE802. 11g (DSSS) signals. For details see 'Modulation accuracy, flatness and tolerance parameters'. \n :return: result: list"""response=self._core.io.query_str(f'FETCh:BURSt:TRISe:AVERage?')returntrim_str_response(response)