Return-Path: From: Andrei Emeltchenko To: linux-bluetooth@vger.kernel.org Subject: [PATCHv1 27/47] android/handsfree: Add support for new API for cind_response Date: Tue, 4 Nov 2014 10:18:50 +0200 Message-Id: <1415089150-18798-28-git-send-email-Andrei.Emeltchenko.news@gmail.com> In-Reply-To: <1415089150-18798-1-git-send-email-Andrei.Emeltchenko.news@gmail.com> References: <1415089150-18798-1-git-send-email-Andrei.Emeltchenko.news@gmail.com> Sender: linux-bluetooth-owner@vger.kernel.org List-ID: From: Andrei Emeltchenko cind_response has new parameter bdaddr in new Android API. --- android/hal-handsfree.c | 14 ++++++++++++++ android/hal-ipc-api.txt | 1 + android/hal-msg.h | 1 + android/handsfree.c | 5 ++++- 4 files changed, 20 insertions(+), 1 deletion(-) diff --git a/android/hal-handsfree.c b/android/hal-handsfree.c index f28b8c7..b240f84 100644 --- a/android/hal-handsfree.c +++ b/android/hal-handsfree.c @@ -488,9 +488,16 @@ static bt_status_t cops_response(const char *cops) len, cmd, NULL, NULL, NULL); } +#if ANDROID_VERSION > PLATFORM_VER(4, 4, 4) +static bt_status_t cind_response(int svc, int num_active, int num_held, + bthf_call_state_t state, int signal, + int roam, int batt_chg, + bt_bdaddr_t *bd_addr) +#else static bt_status_t cind_response(int svc, int num_active, int num_held, bthf_call_state_t state, int signal, int roam, int batt_chg) +#endif { struct hal_cmd_handsfree_cind_response cmd; @@ -499,6 +506,13 @@ static bt_status_t cind_response(int svc, int num_active, int num_held, if (!interface_ready()) return BT_STATUS_NOT_READY; +#if ANDROID_VERSION > PLATFORM_VER(4, 4, 4) + if (!bd_addr) + return BT_STATUS_PARM_INVALID; + + memcpy(cmd.bdaddr, bd_addr, sizeof(cmd.bdaddr)); +#endif + cmd.svc = svc; cmd.num_active = num_active; cmd.num_held = num_held; diff --git a/android/hal-ipc-api.txt b/android/hal-ipc-api.txt index 4a591b1..27572e4 100644 --- a/android/hal-ipc-api.txt +++ b/android/hal-ipc-api.txt @@ -892,6 +892,7 @@ Commands and responses: Signal strength (1 octet) Roaming indicator (1 octet) Battery level (1 octet) + Remote address (6 octets) Response parameters: Valid call setup states: 0x00 = Active diff --git a/android/hal-msg.h b/android/hal-msg.h index a2f2de4..17e6dee 100644 --- a/android/hal-msg.h +++ b/android/hal-msg.h @@ -551,6 +551,7 @@ struct hal_cmd_handsfree_cind_response { uint8_t signal; uint8_t roam; uint8_t batt_chg; + uint8_t bdaddr[6]; } __attribute__((packed)); #define HAL_OP_HANDSFREE_FORMATTED_AT_RESPONSE 0x0B diff --git a/android/handsfree.c b/android/handsfree.c index 7089f7c..3ef19d7 100644 --- a/android/handsfree.c +++ b/android/handsfree.c @@ -2081,11 +2081,14 @@ static void handle_cind(const void *buf, uint16_t len) { const struct hal_cmd_handsfree_cind_response *cmd = buf; struct hf_device *dev; + bdaddr_t bdaddr; uint8_t status; DBG(""); - dev = find_default_device(); + android2bdaddr(cmd->bdaddr, &bdaddr); + + dev = find_device(&bdaddr); if (!dev) { status = HAL_STATUS_FAILED; goto done; -- 1.9.1