Extended advertising event properties
C
#define BLE_GAP_EXT_ADV_EVT_PROP_CONNECTABLE_ADV (1U << 0U) #define BLE_GAP_EXT_ADV_EVT_PROP_SCANNABLE_ADV (1U << 1U) #define BLE_GAP_EXT_ADV_EVT_PROP_DIRECTED_ADV (1U << 2U) #define BLE_GAP_EXT_ADV_EVT_PROP_HIGH_DUTY_DIRECTED_CONN_ADV (1U << 3U) #define BLE_GAP_EXT_ADV_EVT_PROP_LEGACY_ADV (1U << 4U) #define BLE_GAP_EXT_ADV_EVT_PROP_OMIT_ADDRESS (1U << 5U) #define BLE_GAP_EXT_ADV_EVT_PROP_TX_POWER (1U << 6U) #define BLE_GAP_EXT_ADV_EVT_PROP_ALL (BLE_GAP_EXT_ADV_EVT_PROP_CONNECTABLE_ADV \ |BLE_GAP_EXT_ADV_EVT_PROP_SCANNABLE_ADV \ |BLE_GAP_EXT_ADV_EVT_PROP_DIRECTED_ADV \ |BLE_GAP_EXT_ADV_EVT_PROP_HIGH_DUTY_DIRECTED_CONN_ADV \ |BLE_GAP_EXT_ADV_EVT_PROP_LEGACY_ADV \ |BLE_GAP_EXT_ADV_EVT_PROP_OMIT_ADDRESS \ |BLE_GAP_EXT_ADV_EVT_PROP_TX_POWER)
Description
Defines the properties of extended advertising events.
Macro Definition
Macro | Description |
---|---|
BLE_GAP_EXT_ADV_EVT_PROP_CONNECTABLE_ADV | Property indicating connectable advertising. |
BLE_GAP_EXT_ADV_EVT_PROP_SCANNABLE_ADV | Property indicating scannable advertising. |
BLE_GAP_EXT_ADV_EVT_PROP_DIRECTED_ADV | Property indicating directed advertising. |
BLE_GAP_EXT_ADV_EVT_PROP_HIGH_DUTY_DIRECTED_CONN_ADV | Property indicating high duty cycle directed connectable advertising (<= 3.75 ms interval). |
BLE_GAP_EXT_ADV_EVT_PROP_LEGACY_ADV | Property indicating the use of legacy advertising PDUs. |
BLE_GAP_EXT_ADV_EVT_PROP_OMIT_ADDRESS | Property indicating the omission of the advertiser's address from all PDUs (anonymous advertising). |
BLE_GAP_EXT_ADV_EVT_PROP_TX_POWER | Property indicating the inclusion of TxPower in the extended header of the advertising PDU. |
BLE_GAP_EXT_ADV_EVT_PROP_ALL | Combination of all properties. |