[docs]defdelete(self,subframeNull=repcap.SubframeNull.Default)->None:"""SCPI: [SOURce<HW>]:BB:EUTRa:DL:[SUBF<ST0>]:ENCC:PDCCh:EXTC:DELete \n Snippet: driver.source.bb.eutra.downlink.subf.encc.pdcch.extc.delete(subframeNull = repcap.SubframeNull.Default) \n Deletes the selected row. \n :param subframeNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Subf') """subframeNull_cmd_val=self._cmd_group.get_repcap_cmd_value(subframeNull,repcap.SubframeNull)self._core.io.write(f'SOURce<HwInstance>:BB:EUTRa:DL:SUBF{subframeNull_cmd_val}:ENCC:PDCCh:EXTC:DELete')
[docs]defdelete_with_opc(self,subframeNull=repcap.SubframeNull.Default,opc_timeout_ms:int=-1)->None:subframeNull_cmd_val=self._cmd_group.get_repcap_cmd_value(subframeNull,repcap.SubframeNull)"""SCPI: [SOURce<HW>]:BB:EUTRa:DL:[SUBF<ST0>]:ENCC:PDCCh:EXTC:DELete \n Snippet: driver.source.bb.eutra.downlink.subf.encc.pdcch.extc.delete_with_opc(subframeNull = repcap.SubframeNull.Default) \n Deletes the selected row. \n Same as delete, but waits for the operation to complete before continuing further. Use the RsSmw.utilities.opc_timeout_set() to set the timeout value. \n :param subframeNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Subf') :param opc_timeout_ms: Maximum time to wait in milliseconds, valid only for this call."""self._core.io.write_with_opc(f'SOURce<HwInstance>:BB:EUTRa:DL:SUBF{subframeNull_cmd_val}:ENCC:PDCCh:EXTC:DELete',opc_timeout_ms)
[docs]defreset(self,subframeNull=repcap.SubframeNull.Default)->None:"""SCPI: [SOURce<HW>]:BB:EUTRa:DL:[SUBF<ST0>]:ENCC:PDCCh:EXTC:RESet \n Snippet: driver.source.bb.eutra.downlink.subf.encc.pdcch.extc.reset(subframeNull = repcap.SubframeNull.Default) \n Resets the table. \n :param subframeNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Subf') """subframeNull_cmd_val=self._cmd_group.get_repcap_cmd_value(subframeNull,repcap.SubframeNull)self._core.io.write(f'SOURce<HwInstance>:BB:EUTRa:DL:SUBF{subframeNull_cmd_val}:ENCC:PDCCh:EXTC:RESet')
[docs]defreset_with_opc(self,subframeNull=repcap.SubframeNull.Default,opc_timeout_ms:int=-1)->None:subframeNull_cmd_val=self._cmd_group.get_repcap_cmd_value(subframeNull,repcap.SubframeNull)"""SCPI: [SOURce<HW>]:BB:EUTRa:DL:[SUBF<ST0>]:ENCC:PDCCh:EXTC:RESet \n Snippet: driver.source.bb.eutra.downlink.subf.encc.pdcch.extc.reset_with_opc(subframeNull = repcap.SubframeNull.Default) \n Resets the table. \n Same as reset, but waits for the operation to complete before continuing further. Use the RsSmw.utilities.opc_timeout_set() to set the timeout value. \n :param subframeNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Subf') :param opc_timeout_ms: Maximum time to wait in milliseconds, valid only for this call."""self._core.io.write_with_opc(f'SOURce<HwInstance>:BB:EUTRa:DL:SUBF{subframeNull_cmd_val}:ENCC:PDCCh:EXTC:RESet',opc_timeout_ms)
defclone(self)->'ExtcCls':"""Clones the group by creating new object from it and its whole existing subgroups Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group"""new_group=ExtcCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group