Return-Path: From: Lukasz Rymanowski To: linux-bluetooth@vger.kernel.org Cc: luiz.dentz@gmail.com, Lukasz Rymanowski Subject: [PATCH v2 11/16] android/hf-client: Add Dial and Dial Memory command Date: Wed, 10 Sep 2014 13:34:09 +0200 Message-Id: <1410348854-26249-12-git-send-email-lukasz.rymanowski@tieto.com> In-Reply-To: <1410348854-26249-1-git-send-email-lukasz.rymanowski@tieto.com> References: <1410348854-26249-1-git-send-email-lukasz.rymanowski@tieto.com> Sender: linux-bluetooth-owner@vger.kernel.org List-ID: --- android/hal-hf-client.c | 42 ++++++++++++++++++++++++++++++++++++++++++ android/hal-msg.h | 11 +++++++++++ android/hf-client.c | 19 +++++++++++++++++++ 3 files changed, 72 insertions(+) diff --git a/android/hal-hf-client.c b/android/hal-hf-client.c index 52f3113..b2c1513 100644 --- a/android/hal-hf-client.c +++ b/android/hal-hf-client.c @@ -186,6 +186,46 @@ static bt_status_t volume_control(bthf_client_volume_type_t type, sizeof(cmd), &cmd, NULL, NULL, NULL); } +static bt_status_t dial(const char *number) +{ + char buf[IPC_MTU]; + struct hal_cmd_hf_client_dial *cmd = (void *) buf; + size_t len; + + DBG(""); + + if (!interface_ready()) + return BT_STATUS_NOT_READY; + + if (number) { + cmd->number_len = strlen(number) + 1; + memcpy(cmd->number, number, cmd->number_len); + } else { + cmd->number_len = 0; + } + + len = sizeof(*cmd) + cmd->number_len; + + return hal_ipc_cmd(HAL_SERVICE_ID_HF_CLIENT, HAL_OP_HF_CLIENT_DIAL, + len, cmd, NULL, NULL, NULL); +} + +static bt_status_t dial_memory(int location) +{ + struct hal_cmd_hf_client_dial_memory cmd; + + DBG(""); + + if (!interface_ready()) + return BT_STATUS_NOT_READY; + + cmd.location = location; + + return hal_ipc_cmd(HAL_SERVICE_ID_HF_CLIENT, + HAL_OP_HF_CLIENT_DIAL_MEMORY, sizeof(cmd), + &cmd, NULL, NULL, NULL); +} + static void cleanup(void) { struct hal_cmd_unregister_module cmd; @@ -215,6 +255,8 @@ static bthf_client_interface_t iface = { .start_voice_recognition = start_voice_recognition, .stop_voice_recognition = stop_voice_recognition, .volume_control = volume_control, + .dial = dial, + .dial_memory = dial_memory, .cleanup = cleanup }; diff --git a/android/hal-msg.h b/android/hal-msg.h index 7665d27..8886741 100644 --- a/android/hal-msg.h +++ b/android/hal-msg.h @@ -1010,6 +1010,17 @@ struct hal_cmd_hf_client_volume_control { uint8_t volume; } __attribute__((packed)); +#define HAL_OP_HF_CLIENT_DIAL 0x08 +struct hal_cmd_hf_client_dial { + uint16_t number_len; + uint8_t number[0]; +} __attribute__((packed)); + +#define HAL_OP_HF_CLIENT_DIAL_MEMORY 0x09 +struct hal_cmd_hf_client_dial_memory { + uint16_t location; +} __attribute__((packed)); + /* Notifications and confirmations */ #define HAL_POWER_OFF 0x00 diff --git a/android/hf-client.c b/android/hf-client.c index 74f0181..e1cb88d 100644 --- a/android/hf-client.c +++ b/android/hf-client.c @@ -99,6 +99,20 @@ static void handle_volume_control(const void *buf, uint16_t len) HAL_STATUS_UNSUPPORTED); } +static void handle_dial(const void *buf, uint16_t len) +{ + DBG("Not Implemented"); + ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_HF_CLIENT, + HAL_OP_HF_CLIENT_DIAL, HAL_STATUS_UNSUPPORTED); +} + +static void handle_dial_memory(const void *buf, uint16_t len) +{ + DBG("Not Implemented"); + ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_HF_CLIENT, + HAL_OP_HF_CLIENT_DIAL_MEMORY, HAL_STATUS_UNSUPPORTED); +} + static const struct ipc_handler cmd_handlers[] = { /* HAL_OP_HF_CLIENT_CONNECT */ { handle_connect, false, @@ -119,6 +133,11 @@ static const struct ipc_handler cmd_handlers[] = { /* HAL_OP_HF_CLIENT_VOLUME_CONTROL */ { handle_volume_control, false, sizeof(struct hal_cmd_hf_client_volume_control) }, + /* HAL_OP_HF_CLIENT_DIAL */ + { handle_dial, true, sizeof(struct hal_cmd_hf_client_dial) }, + /* HAL_OP_HF_CLIENT_DIAL_MEMORY */ + { handle_dial_memory, false, + sizeof(struct hal_cmd_hf_client_dial_memory) }, }; bool bt_hf_client_register(struct ipc *ipc, const bdaddr_t *addr) -- 1.8.4