[docs]classCivpCls:"""Civp commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("civp",core,parent)
[docs]defset(self,cs_iv_p:str,bitcount:int)->None:"""SCPI: [SOURce<HW>]:BB:BTOoth:CS:CIVP \n Snippet: driver.source.bb.btooth.cs.civp.set(cs_iv_p = rawAbc, bitcount = 1) \n No command help available \n :param cs_iv_p: No help available :param bitcount: No help available """param=ArgSingleList().compose_cmd_string(ArgSingle('cs_iv_p',cs_iv_p,DataType.RawString),ArgSingle('bitcount',bitcount,DataType.Integer))self._core.io.write(f'SOURce<HwInstance>:BB:BTOoth:CS:CIVP {param}'.rstrip())
# noinspection PyTypeChecker
[docs]classCivpStruct(StructBase):"""Response structure. Fields: \n - Cs_Iv_P: str: No parameter help available - Bitcount: int: No parameter help available"""__meta_args_list=[ArgStruct.scalar_raw_str('Cs_Iv_P'),ArgStruct.scalar_int('Bitcount')]def__init__(self):StructBase.__init__(self,self)self.Cs_Iv_P:str=Noneself.Bitcount:int=None
[docs]defget(self)->CivpStruct:"""SCPI: [SOURce<HW>]:BB:BTOoth:CS:CIVP \n Snippet: value: CivpStruct = driver.source.bb.btooth.cs.civp.get() \n No command help available \n :return: structure: for return value, see the help for CivpStruct structure arguments."""returnself._core.io.query_struct(f'SOURce<HwInstance>:BB:BTOoth:CS:CIVP?',self.__class__.CivpStruct())