[docs]classCpvpCls:"""Cpvp commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("cpvp",core,parent)
[docs]defset(self,cs_pv_p:str,bitcount:int)->None:"""SCPI: [SOURce<HW>]:BB:BTOoth:CS:CPVP \n Snippet: driver.source.bb.btooth.cs.cpvp.set(cs_pv_p = rawAbc, bitcount = 1) \n Requires packet type CS SEQUENCE or LL_CS_SEC_REQ. Sets the CS_PV_P parameter. The parameter is 64-bit in hexadecimal representation. \n :param cs_pv_p: numeric CS_PV_P value in hexadecimal representation. :param bitcount: integer Fixed bit count of 64 bits. Range: 64 to 64 """param=ArgSingleList().compose_cmd_string(ArgSingle('cs_pv_p',cs_pv_p,DataType.RawString),ArgSingle('bitcount',bitcount,DataType.Integer))self._core.io.write(f'SOURce<HwInstance>:BB:BTOoth:CS:CPVP {param}'.rstrip())
# noinspection PyTypeChecker
[docs]classCpvpStruct(StructBase):"""Response structure. Fields: \n - 1 Cs_Pv_P: str: numeric CS_PV_P value in hexadecimal representation. - 2 Bitcount: int: integer Fixed bit count of 64 bits. Range: 64 to 64"""__meta_args_list=[ArgStruct.scalar_raw_str('Cs_Pv_P'),ArgStruct.scalar_int('Bitcount')]def__init__(self):StructBase.__init__(self,self)self.Cs_Pv_P:str=Noneself.Bitcount:int=None
[docs]defget(self)->CpvpStruct:"""SCPI: [SOURce<HW>]:BB:BTOoth:CS:CPVP \n Snippet: value: CpvpStruct = driver.source.bb.btooth.cs.cpvp.get() \n Requires packet type CS SEQUENCE or LL_CS_SEC_REQ. Sets the CS_PV_P parameter. The parameter is 64-bit in hexadecimal representation. \n :return: structure: for return value, see the help for CpvpStruct structure arguments."""returnself._core.io.query_struct(f'SOURce<HwInstance>:BB:BTOoth:CS:CPVP?',self.__class__.CpvpStruct())