Catalog

SCPI Commands

CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:INQuiry:PTARgets:CATalog:LESignaling
CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:INQuiry:PTARgets:CATalog
class Catalog[source]

Catalog commands group definition. 2 total commands, 0 Sub-groups, 2 group commands

class LeSignalingStruct[source]

Structure for reading output parameters. Fields:

  • No_Discovered_Devices: int: No parameter help available

  • Item_Number: List[int]: No parameter help available

  • Discovered_Eut: List[str]: string A comma-separated list of Bluetooth devices, where each device is represented by an item number and its Address in hexadecimal notation. Item number 0 always represents the default target.

class ValueStruct[source]

Structure for reading output parameters. Fields:

  • No_Discovered_Devices: int: No parameter help available

  • Item_Number: List[int]: No parameter help available

  • Discovered_Eut: List[str]: string A comma-separated list of Bluetooth devices, where each device is represented by an item number and its BD_Address in hexadecimal notation. Item number 0 always represents the default target.

get_le_signaling()LeSignalingStruct[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:INQuiry:PTARgets:CATalog:LESignaling
value: LeSignalingStruct = driver.configure.connection.inquiry.ptargets.catalog.get_le_signaling()

This query returns a list of all targets available for paging, i.e. all LE devices found. If no inquiry was made before, this list only contains the default device (see method RsCmwBluetoothSig.Configure.Connection.Address.Eut.leSignaling) . After inquiry, it also contains the devices that were responding (in chronological order) .

return

structure: for return value, see the help for LeSignalingStruct structure arguments.

get_value()ValueStruct[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:INQuiry:PTARgets:CATalog
value: ValueStruct = driver.configure.connection.inquiry.ptargets.catalog.get_value()

This query returns a list of all targets available for paging. If no inquiry was made before, this list only contains the default device (see method RsCmwBluetoothSig.Configure.Connection.BdAddress.eut) . After inquiry, it also contains the devices that were responding (in chronological order) .

return

structure: for return value, see the help for ValueStruct structure arguments.