[docs]classCwCls:"""Cw commands group definition. 30 total commands, 18 Subgroups, 0 group commands Repeated Capability: Codeword, default value after init: Codeword.Nr1"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("cw",core,parent)self._cmd_group.rep_cap=RepeatedCapability(self._cmd_group.group_name,'repcap_codeword_get','repcap_codeword_set',repcap.Codeword.Nr1)defrepcap_codeword_set(self,codeword:repcap.Codeword)->None:"""Repeated Capability default value numeric suffix. This value is used, if you do not explicitely set it in the child set/get methods, or if you leave it to Codeword.Default Default value after init: Codeword.Nr1"""self._cmd_group.set_repcap_enum_value(codeword)defrepcap_codeword_get(self)->repcap.Codeword:"""Returns the current default repeated capability for the child set/get methods"""# noinspection PyTypeCheckerreturnself._cmd_group.get_repcap_enum_value()@propertydefaoc(self):"""aoc commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_aoc'):from.AocimportAocClsself._aoc=AocCls(self._core,self._cmd_group)returnself._aoc@propertydefccoding(self):"""ccoding commands group. 4 Sub-classes, 0 commands."""ifnothasattr(self,'_ccoding'):from.CcodingimportCcodingClsself._ccoding=CcodingCls(self._core,self._cmd_group)returnself._ccoding@propertydefconflict(self):"""conflict commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_conflict'):from.ConflictimportConflictClsself._conflict=ConflictCls(self._core,self._cmd_group)returnself._conflict@propertydefconType(self):"""conType commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_conType'):from.ConTypeimportConTypeClsself._conType=ConTypeCls(self._core,self._cmd_group)returnself._conType@propertydefdata(self):"""data commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_data'):from.DataimportDataClsself._data=DataCls(self._core,self._cmd_group)returnself._data@propertydefdselect(self):"""dselect commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_dselect'):from.DselectimportDselectClsself._dselect=DselectCls(self._core,self._cmd_group)returnself._dselect@propertydefgap(self):"""gap commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_gap'):from.GapimportGapClsself._gap=GapCls(self._core,self._cmd_group)returnself._gap@propertydefmodulation(self):"""modulation commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_modulation'):from.ModulationimportModulationClsself._modulation=ModulationCls(self._core,self._cmd_group)returnself._modulation@propertydefpattern(self):"""pattern commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_pattern'):from.PatternimportPatternClsself._pattern=PatternCls(self._core,self._cmd_group)returnself._pattern@propertydefphysBits(self):"""physBits commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_physBits'):from.PhysBitsimportPhysBitsClsself._physBits=PhysBitsCls(self._core,self._cmd_group)returnself._physBits@propertydefpower(self):"""power commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_power'):from.PowerimportPowerClsself._power=PowerCls(self._core,self._cmd_group)returnself._power@propertydefprecoding(self):"""precoding commands group. 9 Sub-classes, 0 commands."""ifnothasattr(self,'_precoding'):from.PrecodingimportPrecodingClsself._precoding=PrecodingCls(self._core,self._cmd_group)returnself._precoding@propertydefrbCount(self):"""rbCount commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_rbCount'):from.RbCountimportRbCountClsself._rbCount=RbCountCls(self._core,self._cmd_group)returnself._rbCount@propertydefrbOffset(self):"""rbOffset commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_rbOffset'):from.RbOffsetimportRbOffsetClsself._rbOffset=RbOffsetCls(self._core,self._cmd_group)returnself._rbOffset@propertydefscrambling(self):"""scrambling commands group. 2 Sub-classes, 0 commands."""ifnothasattr(self,'_scrambling'):from.ScramblingimportScramblingClsself._scrambling=ScramblingCls(self._core,self._cmd_group)returnself._scrambling@propertydefstate(self):"""state commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_state'):from.StateimportStateClsself._state=StateCls(self._core,self._cmd_group)returnself._state@propertydefsymCount(self):"""symCount commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_symCount'):from.SymCountimportSymCountClsself._symCount=SymCountCls(self._core,self._cmd_group)returnself._symCount@propertydefsymOffset(self):"""symOffset commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_symOffset'):from.SymOffsetimportSymOffsetClsself._symOffset=SymOffsetCls(self._core,self._cmd_group)returnself._symOffsetdefclone(self)->'CwCls':"""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=CwCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group