From 8859abc7ab3f74ecc967d6994c9e95e40378483a Mon Sep 17 00:00:00 2001 From: Grzegorz Kolodziejczyk Date: Thu, 27 Feb 2014 14:28:46 +0100 Subject: [PATCH] android/hal-gatt-api: Add Server Descriptor --- android/hal-ipc-api.txt | 9 +++++++++ android/hal-msg.h | 8 ++++++++ 2 files changed, 17 insertions(+) diff --git a/android/hal-ipc-api.txt b/android/hal-ipc-api.txt index aa5d7309a..e84cb8e26 100644 --- a/android/hal-ipc-api.txt +++ b/android/hal-ipc-api.txt @@ -1731,6 +1731,15 @@ Android HAL name: "gatt" (BT_PROFILE_GATT_ID) In case of an error, the error response will be returned. Opcode 0x1e - Add Descriptor command/response + + Command parameters: Server (4 octets) + Service handle (4 octets) + UUID (16 octets) + Permissions (4 octets) + Response parameters: + + In case of an error, the error response will be returned. + Opcode 0x1f - Start Service command/response Opcode 0x20 - Stop Service command/response Opcode 0x21 - Delete Service command/response diff --git a/android/hal-msg.h b/android/hal-msg.h index 22ac0580f..931c4f170 100644 --- a/android/hal-msg.h +++ b/android/hal-msg.h @@ -749,6 +749,14 @@ struct hal_cmd_gatt_server_add_characteristic { int32_t permissions; } __attribute__((packed)); +#define HAL_OP_GATT_SERVER_ADD_DESCRIPTOR 0x1e +struct hal_cmd_gatt_server_add_descriptor { + int32_t server_if; + int32_t service_handle; + uint8_t uuid[16]; + int32_t permissions; +} __attribute__((packed)); + /* Notifications and confirmations */ #define HAL_POWER_OFF 0x00 -- 2.47.3