[docs]classInsertCls:"""Insert commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("insert",core,parent)
[docs]defset(self,frameBlock=repcap.FrameBlock.Default)->None:"""SCPI: [SOURce<HW>]:BB:WLNN:FBLock<CH>:INSert \n Snippet: driver.source.bb.wlnn.fblock.insert.set(frameBlock = repcap.FrameBlock.Default) \n The command adds a default frame block before the selected frame block. \n :param frameBlock: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Fblock') """frameBlock_cmd_val=self._cmd_group.get_repcap_cmd_value(frameBlock,repcap.FrameBlock)self._core.io.write(f'SOURce<HwInstance>:BB:WLNN:FBLock{frameBlock_cmd_val}:INSert')
[docs]defset_with_opc(self,frameBlock=repcap.FrameBlock.Default,opc_timeout_ms:int=-1)->None:frameBlock_cmd_val=self._cmd_group.get_repcap_cmd_value(frameBlock,repcap.FrameBlock)"""SCPI: [SOURce<HW>]:BB:WLNN:FBLock<CH>:INSert \n Snippet: driver.source.bb.wlnn.fblock.insert.set_with_opc(frameBlock = repcap.FrameBlock.Default) \n The command adds a default frame block before the selected frame block. \n Same as set, but waits for the operation to complete before continuing further. Use the RsSmbv.utilities.opc_timeout_set() to set the timeout value. \n :param frameBlock: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Fblock') :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:WLNN:FBLock{frameBlock_cmd_val}:INSert',opc_timeout_ms)