[docs]classIdCls:"""Id commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("id",core,parent)
[docs]defset(self,idn:str,bitcount:int)->None:"""SCPI: [SOURce<HW>]:BB:BTOoth:ECONfiguration:PCONfiguration:ID \n Snippet: driver.source.bb.btooth.econfiguration.pconfiguration.id.set(idn = rawAbc, bitcount = 1) \n Specifies the ID in the CtrData field of the LL_PERIODIC_SYNC_IND PDU. \n :param idn: numeric :param bitcount: integer Range: 16 to 16 """param=ArgSingleList().compose_cmd_string(ArgSingle('idn',idn,DataType.RawString),ArgSingle('bitcount',bitcount,DataType.Integer))self._core.io.write(f'SOURce<HwInstance>:BB:BTOoth:ECONfiguration:PCONfiguration:ID {param}'.rstrip())
[docs]defget(self)->IdStruct:"""SCPI: [SOURce<HW>]:BB:BTOoth:ECONfiguration:PCONfiguration:ID \n Snippet: value: IdStruct = driver.source.bb.btooth.econfiguration.pconfiguration.id.get() \n Specifies the ID in the CtrData field of the LL_PERIODIC_SYNC_IND PDU. \n :return: structure: for return value, see the help for IdStruct structure arguments."""returnself._core.io.query_struct(f'SOURce<HwInstance>:BB:BTOoth:ECONfiguration:PCONfiguration:ID?',self.__class__.IdStruct())