summaryrefslogtreecommitdiffstats
path: root/device/src/controller.c
diff options
context:
space:
mode:
Diffstat (limited to 'device/src/controller.c')
-rw-r--r--device/src/controller.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/device/src/controller.c b/device/src/controller.c
index 02edc4faf..62051d5fe 100644
--- a/device/src/controller.c
+++ b/device/src/controller.c
@@ -407,6 +407,12 @@ static uint8_t get_acl_buffer_count_ble(void) {
return acl_buffer_count_ble;
}
+static uint8_t get_ble_white_list_size(void) {
+ assert(readable);
+ assert(ble_supported);
+ return ble_white_list_size;
+}
+
static uint8_t get_ble_resolving_list_max_size(void) {
assert(readable);
assert(ble_supported);
@@ -455,6 +461,8 @@ static const controller_t interface = {
get_acl_buffer_count_classic,
get_acl_buffer_count_ble,
+ get_ble_white_list_size,
+
get_ble_resolving_list_max_size,
set_ble_resolving_list_max_size
};