[docs]classSnuapCls:"""Snuap commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("snuap",core,parent)
[docs]defset(self,nap_uap:str,bitcount:int)->None:"""SCPI: [SOURce<HW>]:BB:BTOoth:ECONfiguration:PCONfiguration:SNUap \n Snippet: driver.source.bb.btooth.econfiguration.pconfiguration.snuap.set(nap_uap = rawAbc, bitcount = 1) \n Sets the non-significant address part (NAP) and upper address part (UAP) of Bluetooth device address. Commands for the advertising ..:ANUap, initiating ..:INUap, and scanning ..:SNUap 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 ..:TNUap. \n :param nap_uap: numeric :param bitcount: integer Range: 24 to 24 """param=ArgSingleList().compose_cmd_string(ArgSingle('nap_uap',nap_uap,DataType.RawString),ArgSingle('bitcount',bitcount,DataType.Integer))self._core.io.write(f'SOURce<HwInstance>:BB:BTOoth:ECONfiguration:PCONfiguration:SNUap {param}'.rstrip())
[docs]defget(self)->SnuapStruct:"""SCPI: [SOURce<HW>]:BB:BTOoth:ECONfiguration:PCONfiguration:SNUap \n Snippet: value: SnuapStruct = driver.source.bb.btooth.econfiguration.pconfiguration.snuap.get() \n Sets the non-significant address part (NAP) and upper address part (UAP) of Bluetooth device address. Commands for the advertising ..:ANUap, initiating ..:INUap, and scanning ..:SNUap 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 ..:TNUap. \n :return: structure: for return value, see the help for SnuapStruct structure arguments."""returnself._core.io.query_struct(f'SOURce<HwInstance>:BB:BTOoth:ECONfiguration:PCONfiguration:SNUap?',self.__class__.SnuapStruct())