[docs]classRpowerCls:"""Rpower commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("rpower",core,parent)
[docs]defset(self,mode:enums.PvtRefPower)->None:"""SCPI: CONFigure:BURSt:PVT:RPOWer \n Snippet: driver.applications.k91Wlan.configure.burst.pvt.rpower.set(mode = enums.PvtRefPower.MAXimum) \n This remote control command configures the use of either mean or maximum PPDU power as a reference power for the 802.11b, g (DSSS) PVT measurement. \n :param mode: MEAN | MAXimum """param=Conversions.enum_scalar_to_str(mode,enums.PvtRefPower)self._core.io.write(f'CONFigure:BURSt:PVT:RPOWer {param}')
# noinspection PyTypeChecker
[docs]defget(self)->enums.PvtRefPower:"""SCPI: CONFigure:BURSt:PVT:RPOWer \n Snippet: value: enums.PvtRefPower = driver.applications.k91Wlan.configure.burst.pvt.rpower.get() \n This remote control command configures the use of either mean or maximum PPDU power as a reference power for the 802.11b, g (DSSS) PVT measurement. \n :return: mode: MEAN | MAXimum"""response=self._core.io.query_str(f'CONFigure:BURSt:PVT:RPOWer?')returnConversions.str_to_scalar_enum(response,enums.PvtRefPower)