From 30672580a11559077d005fb8a15ff35a7e036489 Mon Sep 17 00:00:00 2001 From: Andrei Emeltchenko Date: Thu, 6 Nov 2014 10:32:06 +0200 Subject: [PATCH] android/handsfree: Add support for new API for cops_cmd_cb COPS Command notification callback has new parameter bdaddr. --- android/hal-handsfree.c | 9 ++++++++- android/hal-ipc-api.txt | 2 +- android/hal-msg.h | 3 +++ android/handsfree.c | 5 ++++- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/android/hal-handsfree.c b/android/hal-handsfree.c index 1ea8a9c2d..ea9614b4e 100644 --- a/android/hal-handsfree.c +++ b/android/hal-handsfree.c @@ -193,8 +193,15 @@ static void handle_cind(void *buf, uint16_t len, int fd) static void handle_cops(void *buf, uint16_t len, int fd) { - if (cbs->cops_cmd_cb) + if (cbs->cops_cmd_cb) { +#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0) + struct hal_ev_handsfree_cops *ev = buf; + + cbs->cops_cmd_cb((bt_bdaddr_t *) (ev->bdaddr)); +#else cbs->cops_cmd_cb(); +#endif + } } static void handle_clcc(void *buf, uint16_t len, int fd) diff --git a/android/hal-ipc-api.txt b/android/hal-ipc-api.txt index c3fe8007c..b4ae5994e 100644 --- a/android/hal-ipc-api.txt +++ b/android/hal-ipc-api.txt @@ -1068,7 +1068,7 @@ Notifications: Opcode 0x8d - COPS Command notification - Notification parameters: + Notification parameters: Remote address (6 octets) Opcode 0x8e - CLCC Command notification diff --git a/android/hal-msg.h b/android/hal-msg.h index 86a79c7e9..5793a5bc1 100644 --- a/android/hal-msg.h +++ b/android/hal-msg.h @@ -1410,6 +1410,9 @@ struct hal_ev_handsfree_cind { } __attribute__((packed)); #define HAL_EV_HANDSFREE_COPS 0x8D +struct hal_ev_handsfree_cops { + uint8_t bdaddr[6]; +} __attribute__((packed)); #define HAL_EV_HANDSFREE_CLCC 0x8E diff --git a/android/handsfree.c b/android/handsfree.c index 7c866d81a..af15ed2f5 100644 --- a/android/handsfree.c +++ b/android/handsfree.c @@ -418,6 +418,7 @@ static void at_cmd_cops(struct hfp_context *context, enum hfp_gw_cmd_type type, void *user_data) { struct hf_device *dev = user_data; + struct hal_ev_handsfree_cops ev; unsigned int val; switch (type) { @@ -434,8 +435,10 @@ static void at_cmd_cops(struct hfp_context *context, hfp_gw_send_result(dev->gw, HFP_RESULT_OK); return; case HFP_GW_CMD_TYPE_READ: + bdaddr2android(&dev->bdaddr, ev.bdaddr); + ipc_send_notif(hal_ipc, HAL_SERVICE_ID_HANDSFREE, - HAL_EV_HANDSFREE_COPS, 0, NULL); + HAL_EV_HANDSFREE_COPS, sizeof(ev), &ev); return; case HFP_GW_CMD_TYPE_TEST: case HFP_GW_CMD_TYPE_COMMAND: -- 2.47.3