From e37d6f37a99d280aa8771e736e2da2c85f1a3ed8 Mon Sep 17 00:00:00 2001 From: Jakub Tyszkowski Date: Fri, 28 Feb 2014 11:24:00 +0100 Subject: [PATCH] android/hal-gatt-api: Add Client Write Descriptor event --- android/hal-ipc-api.txt | 6 ++++++ android/hal-msg.h | 7 +++++++ 2 files changed, 13 insertions(+) diff --git a/android/hal-ipc-api.txt b/android/hal-ipc-api.txt index a1852a6a0..0b1fb7df4 100644 --- a/android/hal-ipc-api.txt +++ b/android/hal-ipc-api.txt @@ -1926,6 +1926,12 @@ Android HAL name: "gatt" (BT_PROFILE_GATT_ID) Valid GATT Read Parameters: As described in Read Characteristic Opcode 0x8f - Write Descriptor notification + + Notification parameters: Connection ID (4 octets) + Status (4 octets) + GATT Write Parameters (53 octets) + Valid GATT Write Parameters: As described in Write Characteristic + Opcode 0x90 - Execute Write notification Opcode 0x91 - Read Remote RSSI notification Opcode 0x92 - Listen notification diff --git a/android/hal-msg.h b/android/hal-msg.h index ee18172df..9ba190cd5 100644 --- a/android/hal-msg.h +++ b/android/hal-msg.h @@ -1359,3 +1359,10 @@ struct hal_ev_gatt_client_read_descriptor { int32_t status; struct hal_gatt_read_params data; } __attribute__((packed)); + +#define HAL_EV_GATT_CLIENT_WRITE_DESCRIPTOR 0x8f +struct hal_ev_gatt_client_write_descriptor { + int32_t conn_id; + int32_t status; + struct hal_gatt_write_params data; +} __attribute__((packed)); -- 2.47.3