[docs]classDemodCls:"""Demod commands group definition. 9 total commands, 9 Subgroups, 0 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("demod",core,parent)@propertydefauto(self):"""auto commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_auto'):from.AutoimportAutoClsself._auto=AutoCls(self._core,self._cmd_group)returnself._auto@propertydefbestimation(self):"""bestimation commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_bestimation'):from.BestimationimportBestimationClsself._bestimation=BestimationCls(self._core,self._cmd_group)returnself._bestimation@propertydefcbScrambling(self):"""cbScrambling commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_cbScrambling'):from.CbScramblingimportCbScramblingClsself._cbScrambling=CbScramblingCls(self._core,self._cmd_group)returnself._cbScrambling@propertydefcestimation(self):"""cestimation commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_cestimation'):from.CestimationimportCestimationClsself._cestimation=CestimationCls(self._core,self._cmd_group)returnself._cestimation@propertydefdaChannels(self):"""daChannels commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_daChannels'):from.DaChannelsimportDaChannelsClsself._daChannels=DaChannelsCls(self._core,self._cmd_group)returnself._daChannels@propertydefevmCalc(self):"""evmCalc commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_evmCalc'):from.EvmCalcimportEvmCalcClsself._evmCalc=EvmCalcCls(self._core,self._cmd_group)returnself._evmCalc@propertydefmcFilter(self):"""mcFilter commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_mcFilter'):from.McFilterimportMcFilterClsself._mcFilter=McFilterCls(self._core,self._cmd_group)returnself._mcFilter@propertydefprData(self):"""prData commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_prData'):from.PrDataimportPrDataClsself._prData=PrDataCls(self._core,self._cmd_group)returnself._prData@propertydefsiSync(self):"""siSync commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_siSync'):from.SiSyncimportSiSyncClsself._siSync=SiSyncCls(self._core,self._cmd_group)returnself._siSyncdefclone(self)->'DemodCls':"""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=DemodCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group