[docs]classScodeCls:"""Scode commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("scode",core,parent)
[docs]defget_step(self)->str:"""SCPI: [SOURce<HW>]:BB:W3GPp:MSTation:ADDitional:SCODe:STEP \n Snippet: value: str = driver.source.bb.w3Gpp.mstation.additional.scode.get_step() \n Sets the step width for increasing the scrambling code of the additional user equipment. The start value is the scrambling code of UE4. \n :return: step: integer Range: 0 to #HFFFFFF """response=self._core.io.query_str('SOURce<HwInstance>:BB:W3GPp:MSTation:ADDitional:SCODe:STEP?')returntrim_str_response(response)
[docs]defset_step(self,step:str)->None:"""SCPI: [SOURce<HW>]:BB:W3GPp:MSTation:ADDitional:SCODe:STEP \n Snippet: driver.source.bb.w3Gpp.mstation.additional.scode.set_step(step = rawAbc) \n Sets the step width for increasing the scrambling code of the additional user equipment. The start value is the scrambling code of UE4. \n :param step: integer Range: 0 to #HFFFFFF """param=Conversions.value_to_str(step)self._core.io.write(f'SOURce<HwInstance>:BB:W3GPp:MSTation:ADDitional:SCODe:STEP {param}')