From 7093092de1548cfd30a041916be7db1b14fcb9d1 Mon Sep 17 00:00:00 2001 From: Jakub Tyszkowski Date: Fri, 28 Feb 2014 11:23:49 +0100 Subject: [PATCH] android/hal-gatt-api: Add Client Disconnect event --- android/hal-ipc-api.txt | 6 ++++++ android/hal-msg.h | 8 ++++++++ 2 files changed, 14 insertions(+) diff --git a/android/hal-ipc-api.txt b/android/hal-ipc-api.txt index 257002334..09916b23b 100644 --- a/android/hal-ipc-api.txt +++ b/android/hal-ipc-api.txt @@ -1817,6 +1817,12 @@ Android HAL name: "gatt" (BT_PROFILE_GATT_ID) Address (6 octets) Opcode 0x84 - Disconnect Device notification + + Notification parameters: Connection ID (4 octets) + Status (4 octets) + Client Interface (4 octets) + Address (6 octets) + Opcode 0x85 - Search Complete notification Opcode 0x86 - Search Result notification Opcode 0x87 - Get Characteristic notification diff --git a/android/hal-msg.h b/android/hal-msg.h index 0f7c193d2..4e3645755 100644 --- a/android/hal-msg.h +++ b/android/hal-msg.h @@ -1247,3 +1247,11 @@ struct hal_ev_gatt_client_connect { int32_t client_if; uint8_t bda[6]; } __attribute__((packed)); + +#define HAL_EV_GATT_CLIENT_DISCONNECT 0x84 +struct hal_ev_gatt_client_disconnect { + int32_t conn_id; + int32_t status; + int32_t client_if; + uint8_t bda[6]; +} __attribute__((packed)); -- 2.47.3