TwclBluetoothLeAdvertisementType Enumeration

Types of the Bluetooth LE advertisement packet.

Namespace: wclBluetooth
type
 TwclBluetoothLeAdvertisementType = (
 atConnectableUndirected,
 atConnectableDirected,
 atScannableUndirected,
 atNonConnectableUndirected,
 atScanResponse,
 atExtended,
 atUnknown
 );

The TwclBluetoothLeAdvertisementType type exposes the following members.

Show:
 NameDescription
atConnectableDirected

The advertisement is directed and indicates that the device is connectable but not scannable. This advertisement type cannot carry data.

This corresponds with the ADV_DIRECT_IND type defined in the Bluetooth LE specifications.

atConnectableUndirected

The advertisement is undirected and indicates that the device is connectable and scannable. This advertisement type can carry data.

This corresponds with the ADV_IND type defined in the Bluetooth LE specifications.

atExtended

This advertisement is a 5.0 extended advertisement. This advertisement type may have different properties, and is not necessarily directed, connected, scannable, nor a scan response.

atNonConnectableUndirected

The advertisement is undirected and indicates that the device is not connectable nor scannable. This advertisement type can carry data.

This corresponds with the ADV_NONCONN_IND type defined in the Bluetooth LE specifications.

atScannableUndirected

The advertisement is undirected and indicates that the device is scannable but not connectable. This advertisement type can carry data.

This corresponds with the ADV_SCAN_IND type defined in the Bluetooth LE specifications.

atScanResponse

This advertisement is a scan response to a scan request issued for a scannable advertisement. This advertisement type can carry data.

This corresponds with the SCAN_RSP type defined in the Bluetooth LE specifications.

atUnknown

Unknown advertisement packet type.

Top