[PATCH 1/6] android/hal-health: Add channel state event handler

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



---
 android/hal-health.c | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/android/hal-health.c b/android/hal-health.c
index 0ef6afc..27e72dc 100644
--- a/android/hal-health.c
+++ b/android/hal-health.c
@@ -41,6 +41,17 @@ static void handle_app_registration_state(void *buf, uint16_t len, int fd)
 		cbacks->app_reg_state_cb(ev->id, ev->state);
 }
 
+static void handle_channel_state(void *buf, uint16_t len, int fd)
+{
+	struct hal_ev_health_channel_state *ev = buf;
+
+	if (cbacks->channel_state_cb)
+		cbacks->channel_state_cb(ev->app_id,
+					(bt_bdaddr_t *) ev->bdaddr,
+					ev->mdep_index, ev->channel_id,
+					ev->channel_state, fd);
+}
+
 /*
  * handlers will be called from notification thread context,
  * index in table equals to 'opcode - HAL_MINIMUM_EVENT'
@@ -49,6 +60,9 @@ 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) },
+	/* HAL_EV_HEALTH_CHANNEL_STATE */
+	{ handle_channel_state, false,
+				sizeof(struct hal_ev_health_channel_state) },
 };
 
 static bt_status_t register_application(bthl_reg_param_t *reg, int *app_id)
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html




[Index of Archives]     [Bluez Devel]     [Linux Wireless Networking]     [Linux Wireless Personal Area Networking]     [Linux ATH6KL]     [Linux USB Devel]     [Linux Media Drivers]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [Big List of Linux Books]

  Powered by Linux