[docs]classPilotCls:"""Pilot commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("pilot",core,parent)
[docs]defget(self)->str:"""SCPI: FETCh:SCDetailed:EVM:PILot \n Snippet: value: str = driver.applications.k91Wlan.fetch.scDetailed.evm.pilot.get() \n Returns the EVM for all pilot subcarriers. The result is a comma-separated list of values, one for each PPDU and each RU. These results are only available if the Signal Content Detailed result display is currently active (see method RsFsw. Layout.Add.Window.get_) . \n :return: result: Unit: dB"""response=self._core.io.query_str(f'FETCh:SCDetailed:EVM:PILot?')returntrim_str_response(response)