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

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.