From 9e5665a73d43596d065d1a8b42f0360c2c33d403 Mon Sep 17 00:00:00 2001 From: Andrei Emeltchenko Date: Thu, 6 Nov 2014 10:31:57 +0200 Subject: [PATCH] android/handsfree: Add support for new API for handle_answer Answer Call Command notification callback has new parameter bdaddr. Currently use global device 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 c465277b1..f1ddfe1f9 100644 --- a/android/hal-handsfree.c +++ b/android/hal-handsfree.c @@ -67,8 +67,15 @@ static void handle_vr_state(void *buf, uint16_t len, int fd) static void handle_answer(void *buf, uint16_t len, int fd) { - if (cbs->answer_call_cmd_cb) + if (cbs->answer_call_cmd_cb) { +#if ANDROID_VERSION >= PLATFORM_VER(5, 0, 0) + struct hal_ev_handsfree_answer *ev = buf; + + cbs->answer_call_cmd_cb((bt_bdaddr_t *) (ev->bdaddr)); +#else cbs->answer_call_cmd_cb(); +#endif + } } static void handle_hangup(void *buf, uint16_t len, int fd) diff --git a/android/hal-ipc-api.txt b/android/hal-ipc-api.txt index c0e9a39a3..bc849da6c 100644 --- a/android/hal-ipc-api.txt +++ b/android/hal-ipc-api.txt @@ -1015,7 +1015,7 @@ Notifications: Opcode 0x84 - Answer Call Command notification - Notification parameters: + Notification parameters: Remote address (6 octets) Opcode 0x85 - Hangup Call Command notification diff --git a/android/hal-msg.h b/android/hal-msg.h index 4ea30dac4..195e26c03 100644 --- a/android/hal-msg.h +++ b/android/hal-msg.h @@ -1350,6 +1350,9 @@ struct hal_ev_handsfree_vr_state { } __attribute__((packed)); #define HAL_EV_HANDSFREE_ANSWER 0x84 +struct hal_ev_handsfree_answer { + uint8_t bdaddr[6]; +} __attribute__((packed)); #define HAL_EV_HANDSFREE_HANGUP 0x85 diff --git a/android/handsfree.c b/android/handsfree.c index d6579ba29..507109dc1 100644 --- a/android/handsfree.c +++ b/android/handsfree.c @@ -493,6 +493,7 @@ static void at_cmd_a(struct hfp_context *context, enum hfp_gw_cmd_type type, void *user_data) { struct hf_device *dev = user_data; + struct hal_ev_handsfree_answer ev; DBG(""); @@ -501,8 +502,10 @@ static void at_cmd_a(struct hfp_context *context, if (hfp_context_has_next(context)) break; + bdaddr2android(&dev->bdaddr, ev.bdaddr); + ipc_send_notif(hal_ipc, HAL_SERVICE_ID_HANDSFREE, - HAL_EV_HANDSFREE_ANSWER, 0, NULL); + HAL_EV_HANDSFREE_ANSWER, sizeof(ev), &ev); /* Framework is not replying with result for ATA */ hfp_gw_send_result(dev->gw, HFP_RESULT_OK); -- 2.47.3