From 39437cd5d1f537db1a4209be1503a1b7dfe8ca4d Mon Sep 17 00:00:00 2001 From: Ravi kumar Veeramally Date: Mon, 9 Jun 2014 17:28:13 +0300 Subject: [PATCH] android/hal-health: Add app state event handler --- android/hal-health.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/android/hal-health.c b/android/hal-health.c index ae327b884..e7326d762 100644 --- a/android/hal-health.c +++ b/android/hal-health.c @@ -33,11 +33,22 @@ static bool interface_ready(void) return cbacks != NULL; } +static void handle_app_registration_state(void *buf, uint16_t len) +{ + struct hal_ev_health_app_reg_state *ev = buf; + + if (cbacks->app_reg_state_cb) + cbacks->app_reg_state_cb(ev->id, ev->state); +} + /* * handlers will be called from notification thread context, * index in table equals to 'opcode - HAL_MINIMUM_EVENT' */ static const struct hal_ipc_handler ev_handlers[] = { + /* HAL_EV_HEALTH_APP_REG_STATE */ + { handle_app_registration_state, false, + sizeof(struct hal_ev_health_app_reg_state) }, }; static bt_status_t register_application(bthl_reg_param_t *reg, int *app_id) -- 2.47.3