[docs]classAlapCls:"""Alap commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("alap",core,parent)
[docs]defset(self,lap:str,bitcount:int)->None:"""SCPI: [SOURce<HW>]:BB:BTOoth:ECONfiguration:PCONfiguration:ALAP \n Snippet: driver.source.bb.btooth.econfiguration.pconfiguration.alap.set(lap = rawAbc, bitcount = 1) \n Sets the lower address part (LAP) of Bluetooth device address. Commands for the advertising ..:ALAP, initiating ..:ILAP, scanning ..:SLAP PDUs of advertising channel type are provided. In addition, a command is provided for scanner's or initiator's target device address to which the advertisement is directed ..:TLAP. \n :param lap: numeric :param bitcount: integer Range: 24 to 24 """param=ArgSingleList().compose_cmd_string(ArgSingle('lap',lap,DataType.RawString),ArgSingle('bitcount',bitcount,DataType.Integer))self._core.io.write(f'SOURce<HwInstance>:BB:BTOoth:ECONfiguration:PCONfiguration:ALAP {param}'.rstrip())
[docs]defget(self)->AlapStruct:"""SCPI: [SOURce<HW>]:BB:BTOoth:ECONfiguration:PCONfiguration:ALAP \n Snippet: value: AlapStruct = driver.source.bb.btooth.econfiguration.pconfiguration.alap.get() \n Sets the lower address part (LAP) of Bluetooth device address. Commands for the advertising ..:ALAP, initiating ..:ILAP, scanning ..:SLAP PDUs of advertising channel type are provided. In addition, a command is provided for scanner's or initiator's target device address to which the advertisement is directed ..:TLAP. \n :return: structure: for return value, see the help for AlapStruct structure arguments."""returnself._core.io.query_struct(f'SOURce<HwInstance>:BB:BTOoth:ECONfiguration:PCONfiguration:ALAP?',self.__class__.AlapStruct())