[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)->str:"""SCPI: FETCh:BURSt:PAYLoad:MAXimum \n Snippet: value: str = driver.applications.k91Wlan.fetch.burst.payload.maximum.get() \n Returns the average, maximum or minimum of the 'Payload Power per PPDU' (in dBm) . All analyzed PPDUs, up to the statistic length, take part in the statistical evaluation. \n :return: result: list"""response=self._core.io.query_str(f'FETCh:BURSt:PAYLoad:MAXimum?')returntrim_str_response(response)