Skip to content

Commit

Permalink
esp_hid: fixed ble hid battery level setting
Browse files Browse the repository at this point in the history
  • Loading branch information
esp-cjh committed May 17, 2023
1 parent 5838c2e commit 9c8958d
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions components/esp_hid/src/ble_hidd.c
Original file line number Diff line number Diff line change
Expand Up @@ -832,12 +832,14 @@ static esp_err_t esp_ble_hidd_dev_battery_set(void *devp, uint8_t level)
return ESP_OK;
}

ret = esp_ble_gatts_send_indicate(dev->bat_svc.gatt_if, dev->conn_id, dev->bat_level_handle, 1, &dev->bat_level, dev->bat_ccc.indicate_enable);
if (ret) {
ESP_LOGE(TAG, "esp_ble_gatts_send_indicate failed: %d", ret);
return ESP_FAIL;
if (dev->bat_ccc.notify_enable) {
ret = esp_ble_gatts_send_indicate(dev->bat_svc.gatt_if, dev->conn_id, dev->bat_level_handle, 1, &dev->bat_level, false);
if (ret) {
ESP_LOGE(TAG, "esp_ble_gatts_send_notify failed: %d", ret);
return ESP_FAIL;
}
}
WAIT_CB(dev);

return ESP_OK;
}

Expand Down

0 comments on commit 9c8958d

Please sign in to comment.