[docs]classUcchCls:"""Ucch commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("ucch",core,parent)
[docs]defget(self)->float:"""SCPI: FETCh:ALL:SUMMary:EVM:UCCH \n Snippet: value: float = driver.applications.k14Xnr5G.fetch.all.summary.evm.ucch.get() \n Queries the EVM of all PUCCH resource elements. INTRO_CMD_HELP: method RsFsw.Applications.K14x_Nr5G.Fetch.All.Summary.Evm.Ucch.get_ queries the average result over all carriers. Prerequisites: \n - Select to evaluate all carriers ([SENSe:]NR5G:RSUMmary:CCResult) . \n :return: evm: EVM in % or dB."""response=self._core.io.query_str(f'FETCh:ALL:SUMMary:EVM:UCCH?')returnConversions.str_to_float(response)