From 63951d9bf0d0f85834da3cfa79ae12a8833eb88d Mon Sep 17 00:00:00 2001 From: Szymon Janc Date: Mon, 17 Nov 2014 14:18:55 +0100 Subject: [PATCH] android/hal-gatt: Implement client scan_filter_enable This adds required IPC message, HAL implementation and daemon stub handler --- android/gatt.c | 16 ++++++++++++++++ android/hal-gatt.c | 12 +++++++++--- android/hal-msg.h | 6 ++++++ 3 files changed, 31 insertions(+), 3 deletions(-) diff --git a/android/gatt.c b/android/gatt.c index fdf4d9acf..4f8765fbe 100644 --- a/android/gatt.c +++ b/android/gatt.c @@ -5583,6 +5583,19 @@ static void handle_client_scan_filter_clear(const void *buf, uint16_t len) HAL_STATUS_UNSUPPORTED); } +static void handle_client_scan_filter_enable(const void *buf, uint16_t len) +{ + const struct hal_cmd_gatt_client_scan_filter_enable *cmd = buf; + + DBG("client_if %u", cmd->client_if); + + /* TODO */ + + ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_GATT, + HAL_OP_GATT_CLIENT_SCAN_FILTER_ENABLE, + HAL_STATUS_UNSUPPORTED); +} + static const struct ipc_handler cmd_handlers[] = { /* HAL_OP_GATT_CLIENT_REGISTER */ { handle_client_register, false, @@ -5698,6 +5711,9 @@ static const struct ipc_handler cmd_handlers[] = { /* HAL_OP_GATT_CLIENT_SCAN_FILTER_CLEAR */ { handle_client_scan_filter_clear, false, sizeof(struct hal_cmd_gatt_client_scan_filter_clear) }, + /* HAL_OP_GATT_CLIENT_SCAN_FILTER_ENABLE */ + { handle_client_scan_filter_enable, false, + sizeof(struct hal_cmd_gatt_client_scan_filter_enable) }, }; static uint8_t read_by_group_type(const uint8_t *cmd, uint16_t cmd_len, diff --git a/android/hal-gatt.c b/android/hal-gatt.c index d82bbcad7..0d90608f0 100644 --- a/android/hal-gatt.c +++ b/android/hal-gatt.c @@ -1398,11 +1398,17 @@ static bt_status_t scan_filter_clear(int client_if, int filt_index) static bt_status_t scan_filter_enable(int client_if, bool enable) { - DBG(""); + struct hal_cmd_gatt_client_scan_filter_enable cmd; - /* TODO */ + if (!interface_ready()) + return BT_STATUS_NOT_READY; - return BT_STATUS_UNSUPPORTED; + cmd.client_if = client_if; + cmd.enable = enable; + + return hal_ipc_cmd(HAL_SERVICE_ID_GATT, + HAL_OP_GATT_CLIENT_SCAN_FILTER_ENABLE, + sizeof(cmd), &cmd, NULL, NULL, NULL); } static bt_status_t configure_mtu(int conn_id, int mtu) diff --git a/android/hal-msg.h b/android/hal-msg.h index dd740b406..7372d4518 100644 --- a/android/hal-msg.h +++ b/android/hal-msg.h @@ -1067,6 +1067,12 @@ struct hal_cmd_gatt_client_scan_filter_clear { int32_t index; } __attribute__((packed)); +#define HAL_OP_GATT_CLIENT_SCAN_FILTER_ENABLE 0x27 +struct hal_cmd_gatt_client_scan_filter_enable { + int32_t client_if; + uint8_t enable; +} __attribute__((packed)); + /* Handsfree client HAL API */ #define HAL_OP_HF_CLIENT_CONNECT 0x01 -- 2.47.3