[docs]classSimeCls:"""Sime commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("sime",core,parent)
[docs]defset(self,sys_inf_mod_ext:bool,allocationNull=repcap.AllocationNull.Default)->None:"""SCPI: [SOURce<HW>]:BB:EUTRa:DL:NIOT:DCI:ALLoc<CH0>:SIME \n Snippet: driver.source.bb.eutra.downlink.niot.dci.alloc.sime.set(sys_inf_mod_ext = False, allocationNull = repcap.AllocationNull.Default) \n Sets the DCI field system info modification - extended discontinuous reception. \n :param sys_inf_mod_ext: 1| ON| 0| OFF :param allocationNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Alloc') """param=Conversions.bool_to_str(sys_inf_mod_ext)allocationNull_cmd_val=self._cmd_group.get_repcap_cmd_value(allocationNull,repcap.AllocationNull)self._core.io.write(f'SOURce<HwInstance>:BB:EUTRa:DL:NIOT:DCI:ALLoc{allocationNull_cmd_val}:SIME {param}')
[docs]defget(self,allocationNull=repcap.AllocationNull.Default)->bool:"""SCPI: [SOURce<HW>]:BB:EUTRa:DL:NIOT:DCI:ALLoc<CH0>:SIME \n Snippet: value: bool = driver.source.bb.eutra.downlink.niot.dci.alloc.sime.get(allocationNull = repcap.AllocationNull.Default) \n Sets the DCI field system info modification - extended discontinuous reception. \n :param allocationNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Alloc') :return: sys_inf_mod_ext: 1| ON| 0| OFF"""allocationNull_cmd_val=self._cmd_group.get_repcap_cmd_value(allocationNull,repcap.AllocationNull)response=self._core.io.query_str(f'SOURce<HwInstance>:BB:EUTRa:DL:NIOT:DCI:ALLoc{allocationNull_cmd_val}:SIME?')returnConversions.str_to_bool(response)