Extended advertising event properties
C
#define BLE_GAP_EXT_ADV_EVT_PROP_CONNECTABLE_ADV (1 << 0) #define BLE_GAP_EXT_ADV_EVT_PROP_SCANNABLE_ADV (1 << 1) #define BLE_GAP_EXT_ADV_EVT_PROP_DIRECTED_ADV (1 << 2) #define BLE_GAP_EXT_ADV_EVT_PROP_HIGH_DUTY_DIRECTED_CONN_ADV (1 << 3) #define BLE_GAP_EXT_ADV_EVT_PROP_LEGACY_ADV (1 << 4) #define BLE_GAP_EXT_ADV_EVT_PROP_OMIT_ADDRESS (1 << 5) #define BLE_GAP_EXT_ADV_EVT_PROP_TX_POWER (1 << 6) #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. |