[docs]classTimcCls:"""Timc commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("timc",core,parent)# noinspection PyTypeChecker
[docs]defget_nta_offset(self)->enums.TimcNtAoffs:"""SCPI: [SOURce<HW>]:BB:EUTRa:TIMC:NTAoffset \n Snippet: value: enums.TimcNtAoffs = driver.source.bb.eutra.timc.get_nta_offset() \n Sets the parameter NTA offset as defined in the 3GPP TS 36.211. \n :return: nta_offset: NTA0| NTA624 """response=self._core.io.query_str('SOURce<HwInstance>:BB:EUTRa:TIMC:NTAoffset?')returnConversions.str_to_scalar_enum(response,enums.TimcNtAoffs)
[docs]defset_nta_offset(self,nta_offset:enums.TimcNtAoffs)->None:"""SCPI: [SOURce<HW>]:BB:EUTRa:TIMC:NTAoffset \n Snippet: driver.source.bb.eutra.timc.set_nta_offset(nta_offset = enums.TimcNtAoffs._0) \n Sets the parameter NTA offset as defined in the 3GPP TS 36.211. \n :param nta_offset: NTA0| NTA624 """param=Conversions.enum_scalar_to_str(nta_offset,enums.TimcNtAoffs)self._core.io.write(f'SOURce<HwInstance>:BB:EUTRa:TIMC:NTAoffset {param}')