Hello
I enable BT advertising with the option BT_GAP_ADV_TYPE_ADV_NONCONN_IND
#define BT_LE_ADV_NCONN_IND BT_LE_ADV_PARAM(BT_GAP_ADV_TYPE_ADV_NONCONN_IND, \
BT_GAP_ADV_FAST_INT_MIN_2, \
BT_GAP_ADV_FAST_INT_MAX_2, \
NULL)
const struct bt_data scan_resp[] = {
BT_DATA(BT_DATA_NAME_COMPLETE, beacon_name, strlen(beacon_name)),
};
err = bt_le_adv_start(BT_LE_ADV_NCONN_IND,adv, ARRAY_SIZE(adv),scan_resp, ARRAY_SIZE(adv));
This works but the device appears as "connectable undirected" in the BT scanner tool
What options should I use for the device to appear as "non-connectable undirected" ?
Thank you