[docs]classLcMaskCls:"""LcMask commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("lcMask",core,parent)
[docs]defset(self,lc_mask:str,mobileStation=repcap.MobileStation.Default)->None:"""SCPI: [SOURce<HW>]:BB:C2K:MSTation<ST>:LCMask \n Snippet: driver.source.bb.c2K.mstation.lcMask.set(lc_mask = rawAbc, mobileStation = repcap.MobileStation.Default) \n Sets the mask of the Long Code Generator of the mobile station. \n :param lc_mask: 42 bits :param mobileStation: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Mstation') """param=Conversions.value_to_str(lc_mask)mobileStation_cmd_val=self._cmd_group.get_repcap_cmd_value(mobileStation,repcap.MobileStation)self._core.io.write(f'SOURce<HwInstance>:BB:C2K:MSTation{mobileStation_cmd_val}:LCMask {param}')
[docs]defget(self,mobileStation=repcap.MobileStation.Default)->str:"""SCPI: [SOURce<HW>]:BB:C2K:MSTation<ST>:LCMask \n Snippet: value: str = driver.source.bb.c2K.mstation.lcMask.get(mobileStation = repcap.MobileStation.Default) \n Sets the mask of the Long Code Generator of the mobile station. \n :param mobileStation: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Mstation') :return: lc_mask: 42 bits"""mobileStation_cmd_val=self._cmd_group.get_repcap_cmd_value(mobileStation,repcap.MobileStation)response=self._core.io.query_str(f'SOURce<HwInstance>:BB:C2K:MSTation{mobileStation_cmd_val}:LCMask?')returntrim_str_response(response)