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

MacroDescription
BLE_GAP_EXT_ADV_EVT_PROP_CONNECTABLE_ADVProperty indicating connectable advertising.
BLE_GAP_EXT_ADV_EVT_PROP_SCANNABLE_ADVProperty indicating scannable advertising.
BLE_GAP_EXT_ADV_EVT_PROP_DIRECTED_ADVProperty indicating directed advertising.
BLE_GAP_EXT_ADV_EVT_PROP_HIGH_DUTY_DIRECTED_CONN_ADVProperty indicating high duty cycle directed connectable advertising (<= 3.75 ms interval).
BLE_GAP_EXT_ADV_EVT_PROP_LEGACY_ADVProperty indicating the use of legacy advertising PDUs.
BLE_GAP_EXT_ADV_EVT_PROP_OMIT_ADDRESSProperty indicating the omission of the advertiser's address from all PDUs (anonymous advertising).
BLE_GAP_EXT_ADV_EVT_PROP_TX_POWERProperty indicating the inclusion of TxPower in the extended header of the advertising PDU.
BLE_GAP_EXT_ADV_EVT_PROP_ALLCombination of all properties.