Existing Advertising modes in esp32
Posted: Mon Jun 26, 2017 12:38 pm
Hi,
Is there more information about available advertising modes?
I'm talking about this:
In esp-idf/components/bt/bluedroid/api/includes/esp_gap_ble_api.h
In most examples only ADV_TYPE_IND is used. What about other modes?
Is there more information about available advertising modes?
I'm talking about this:
Code: Select all
/// Advertising mode
typedef enum {
ADV_TYPE_IND = 0x00,
ADV_TYPE_DIRECT_IND_HIGH = 0x01,
ADV_TYPE_SCAN_IND = 0x02,
ADV_TYPE_NONCONN_IND = 0x03,
ADV_TYPE_DIRECT_IND_LOW = 0x04,
} esp_ble_adv_type_t;
In most examples only ADV_TYPE_IND is used. What about other modes?