Skip to content
Snippets Groups Projects
Commit e3814d64 authored by Martin Brabham's avatar Martin Brabham
Browse files

Floss: Set the default event mask for Classic and LE Controller shim API

Bug: 223832246
Test: mma -j $(nproc)
Test: ./build.py
Tag: #floss
Change-Id: I20e4be403ccfbd505a268f1d97a12b3f2947afaf
parent fe969c76
No related branches found
No related tags found
No related merge requests found
......@@ -120,6 +120,7 @@ typedef struct controller_t {
uint8_t (*clear_event_filter)(void);
uint8_t (*clear_event_mask)(void);
uint8_t (*le_rand)(LeRandCallback);
uint8_t (*set_default_event_mask)(void);
uint8_t (*set_event_filter_inquiry_result_all_devices)(void);
} controller_t;
......
......@@ -334,6 +334,14 @@ static uint8_t controller_le_rand(LeRandCallback cb) {
return BTM_SUCCESS;
}
static uint8_t controller_set_default_event_mask() {
bluetooth::shim::GetController()->SetEventMask(
bluetooth::hci::Controller::kDefaultEventMask);
bluetooth::shim::GetController()->LeSetEventMask(
bluetooth::hci::Controller::kDefaultLeEventMask);
return BTM_SUCCESS;
}
static uint8_t controller_set_event_filter_inquiry_result_all_devices() {
bluetooth::shim::GetController()->SetEventFilterInquiryResultAllDevices();
return BTM_SUCCESS;
......@@ -440,6 +448,7 @@ static const controller_t interface = {
.clear_event_filter = controller_clear_event_filter,
.clear_event_mask = controller_clear_event_mask,
.le_rand = controller_le_rand,
.set_default_event_mask = controller_set_default_event_mask,
.set_event_filter_inquiry_result_all_devices =
controller_set_event_filter_inquiry_result_all_devices};
......
......@@ -372,6 +372,7 @@ tBTM_STATUS clear_event_filter() { return BTM_SUCCESS; }
tBTM_STATUS clear_event_mask() { return BTM_SUCCESS; }
tBTM_STATUS le_rand(LeRandCallback cb) { return BTM_SUCCESS; }
tBTM_STATUS set_default_event_mask() { return BTM_SUCCESS; }
tBTM_STATUS set_event_filter_inquiry_result_all_devices() {
return BTM_SUCCESS;
}
......@@ -464,6 +465,7 @@ const controller_t interface = {
clear_event_filter,
clear_event_mask,
le_rand,
set_default_event_mask,
set_event_filter_inquiry_result_all_devices};
} // namespace device_controller
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment