diff options
author | Nitin Arora <niarora@codeaurora.org> | 2015-07-02 14:13:45 -0700 |
---|---|---|
committer | Andre Eisenbach <eisenbach@google.com> | 2015-07-21 13:41:14 -0700 |
commit | ccd37fa0fed142dae2491212ec72e20d74560b59 (patch) | |
tree | 5c9cfdc236b9aea23968237a4f7fbeeee3059e2c | |
parent | 65f9c04aa36af5379ba3a28dba36a5de16686024 (diff) | |
download | android_system_bt-ccd37fa0fed142dae2491212ec72e20d74560b59.tar.gz android_system_bt-ccd37fa0fed142dae2491212ec72e20d74560b59.tar.bz2 android_system_bt-ccd37fa0fed142dae2491212ec72e20d74560b59.zip |
Enable enhanced connection complete event
This change enables the enhanced connection complete event in order
to receive the local rpa address while connection is completed
with a paired peripheral. This is required if central tries to
repair or key upgrade an already paired device so that the confirm
or the DHKey Check values match during the pairing process
Bug: 22515703
Change-Id: If27f3b22bc568df6f081f8ad13dfc6783a83ae47
-rw-r--r-- | device/src/controller.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/device/src/controller.c b/device/src/controller.c index 51016254f..1938f09aa 100644 --- a/device/src/controller.c +++ b/device/src/controller.c @@ -34,7 +34,7 @@ #include "stack/include/btm_ble_api.h" #include "btcore/include/version.h" -const bt_event_mask_t BLE_EVENT_MASK = { "\x00\x00\x00\x00\x00\x00\x04\x7f" }; +const bt_event_mask_t BLE_EVENT_MASK = { "\x00\x00\x00\x00\x00\x00\x06\x7f" }; #if (BLE_INCLUDED) const bt_event_mask_t CLASSIC_EVENT_MASK = { HCI_DUMO_EVENT_MASK_EXT }; |