[docs]classDmCls:"""Dm commands group definition. 2 total commands, 0 Subgroups, 2 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("dm",core,parent)
[docs]defget_filter_py(self)->int:"""SCPI: [SOURce<HW>]:BB:PROGress:MCODer:DM:FILTer \n Snippet: value: int = driver.source.bb.progress.mcoder.dm.get_filter_py() \n Queries the status of an applied offline filtering, like for example during the calculation of a waveform and a multi carrier waveform file. \n :return: filter_py: integer Indicates the task progress in percent Range: 0 to 100 """response=self._core.io.query_str('SOURce<HwInstance>:BB:PROGress:MCODer:DM:FILTer?')returnConversions.str_to_int(response)
[docs]defget_sub(self)->int:"""SCPI: [SOURce<HW>]:BB:PROGress:MCODer:DM:SUB \n Snippet: value: int = driver.source.bb.progress.mcoder.dm.get_sub() \n No command help available \n :return: sub: No help available """response=self._core.io.query_str('SOURce<HwInstance>:BB:PROGress:MCODer:DM:SUB?')returnConversions.str_to_int(response)