Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ea12243e authored by Hansong Zhang's avatar Hansong Zhang Committed by Automerger Merge Worker
Browse files

Controller Shim: Add implemented functions am: 60fdd639

Original change: https://android-review.googlesource.com/c/platform/system/bt/+/1348969

Change-Id: Ia116d8411d5f31a3da89f1d39286fac0633a7c24
parents 732e7a49 60fdd639
Loading
Loading
Loading
Loading
+3 −6
Original line number Diff line number Diff line
@@ -250,8 +250,7 @@ static uint16_t get_ble_maximum_tx_data_length(void) {
}

static uint16_t get_ble_maxium_advertising_data_length(void) {
  LOG_WARN("%s TODO Unimplemented", __func__);
  return 0;
  return GetController()->GetControllerLeMaximumAdvertisingDataLength();
}

static uint8_t get_ble_number_of_supported_advertising_sets(void) {
@@ -268,13 +267,11 @@ static uint8_t get_acl_buffer_count_ble(void) {
}

static uint8_t get_ble_white_list_size(void) {
  LOG_WARN("%s TODO Unimplemented", __func__);
  return 0;
  return GetController()->GetControllerLeWhiteListSize();
}

static uint8_t get_ble_resolving_list_max_size(void) {
  LOG_WARN("%s TODO Unimplemented", __func__);
  return 0;
  return GetController()->GetControllerLeResolvingListSize();
}

static void set_ble_resolving_list_max_size(int resolving_list_max_size) {