summaryrefslogtreecommitdiff
path: root/android/hal-bluetooth.c
diff options
context:
space:
mode:
authorMarcin Kraglak <marcin.kraglak@tieto.com>2014-11-21 12:16:40 +0100
committerSzymon Janc <szymon.janc@tieto.com>2014-11-24 15:25:45 +0100
commit963def301509c7620d497892e151dca575434867 (patch)
treee6239de4b11ce7a9d5d4f2b780937718116eef21 /android/hal-bluetooth.c
parent64f08bc02b12a402871d9f2c0e69829adfcba1be (diff)
downloadbluez-963def301509c7620d497892e151dca575434867.tar.gz
android/hal-bluetooth: Implement read_energy_info
Diffstat (limited to 'android/hal-bluetooth.c')
-rw-r--r--android/hal-bluetooth.c28
1 files changed, 26 insertions, 2 deletions
diff --git a/android/hal-bluetooth.c b/android/hal-bluetooth.c
index defaef1ab..7be02edd9 100644
--- a/android/hal-bluetooth.c
+++ b/android/hal-bluetooth.c
@@ -349,6 +349,26 @@ static void handle_le_test_mode(void *buf, uint16_t len, int fd)
bt_hal_cbacks->le_test_mode_cb(ev->status, ev->num_packets);
}
+static void handle_energy_info(void *buf, uint16_t len, int fd)
+{
+#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0)
+ struct hal_ev_energy_info *ev = buf;
+ bt_activity_energy_info info;
+
+ DBG("");
+
+ info.ctrl_state = ev->ctrl_state;
+ info.energy_used = ev->energy_used;
+ info.idle_time = ev->idle_time;
+ info.rx_time = ev->rx_time;
+ info.status = ev->status;
+ info.tx_time = ev->status;
+
+ if (bt_hal_cbacks->energy_info_cb)
+ bt_hal_cbacks->energy_info_cb(&info);
+#endif
+}
+
/*
* handlers will be called from notification thread context,
* index in table equals to 'opcode - HAL_MINIMUM_EVENT'
@@ -386,6 +406,8 @@ static const struct hal_ipc_handler ev_handlers[] = {
sizeof(struct hal_ev_dut_mode_receive) },
/* HAL_EV_LE_TEST_MODE */
{ handle_le_test_mode, false, sizeof(struct hal_ev_le_test_mode) },
+ /* HAL_EV_ENERGY_INFO */
+ { handle_energy_info, false, sizeof(struct hal_ev_energy_info) },
};
static uint8_t get_mode(void)
@@ -992,9 +1014,11 @@ static int read_energy_info(void)
{
DBG("");
- /* TODO: implement */
+ if (!interface_ready())
+ return BT_STATUS_NOT_READY;
- return BT_STATUS_UNSUPPORTED;
+ return hal_ipc_cmd(HAL_SERVICE_ID_BLUETOOTH, HAL_OP_READ_ENERGY_INFO, 0,
+ NULL, NULL, NULL, NULL);
}
#endif