From 2da131cab49c0b107b41d5a050237dbe87a6376e Mon Sep 17 00:00:00 2001 From: Ravi kumar Veeramally Date: Thu, 13 Mar 2014 13:58:42 +0200 Subject: [PATCH] android/hal-msg: Add HDP app registration state event struct --- android/hal-msg.h | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/android/hal-msg.h b/android/hal-msg.h index 57069b3fb..3f119de73 100644 --- a/android/hal-msg.h +++ b/android/hal-msg.h @@ -996,6 +996,17 @@ struct hal_ev_pan_conn_state { uint8_t remote_role; } __attribute__((packed)); +#define HAL_HEALTH_APP_REG_SUCCESS 0x00 +#define HAL_HEALTH_APP_REG_FAILED 0x01 +#define HAL_HEALTH_APP_DEREG_SUCCESS 0x02 +#define HAL_HEALTH_APP_DEREG_FAILED 0x03 + +#define HAL_EV_HEALTH_APP_REG_STATE 0x81 +struct hal_ev_health_app_reg_state { + uint16_t id; + uint8_t state; +} __attribute__((packed)); + #define HAL_A2DP_STATE_DISCONNECTED 0x00 #define HAL_A2DP_STATE_CONNECTING 0x01 #define HAL_A2DP_STATE_CONNECTED 0x02 -- 2.47.3