Return-Path: From: Jakub Tyszkowski To: linux-bluetooth@vger.kernel.org Cc: Jakub Tyszkowski Subject: [PATCH 03/18] android/hal-gatt-api: Add Client Connect event Date: Fri, 28 Feb 2014 11:23:48 +0100 Message-Id: <1393583043-23455-3-git-send-email-jakub.tyszkowski@tieto.com> In-Reply-To: <1393583043-23455-1-git-send-email-jakub.tyszkowski@tieto.com> References: <1393583043-23455-1-git-send-email-jakub.tyszkowski@tieto.com> Sender: linux-bluetooth-owner@vger.kernel.org List-ID: --- 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 ab9cbc5..2570023 100644 --- a/android/hal-ipc-api.txt +++ b/android/hal-ipc-api.txt @@ -1810,6 +1810,12 @@ Android HAL name: "gatt" (BT_PROFILE_GATT_ID) Data (variable) Opcode 0x83 - Connect Device notification + + Notification parameters: Connection ID (4 octets) + Status (4 octets) + Client Interface (4 octets) + Address (6 octets) + Opcode 0x84 - Disconnect Device notification Opcode 0x85 - Search Complete notification Opcode 0x86 - Search Result notification diff --git a/android/hal-msg.h b/android/hal-msg.h index 1dad9e1..8f781e9 100644 --- a/android/hal-msg.h +++ b/android/hal-msg.h @@ -1251,3 +1251,11 @@ struct hal_ev_gatt_client_scan_result { uint16_t len; uint8_t adv_data[0]; } __attribute__((packed)); + +#define HAL_EV_GATT_CLIENT_CONNECT 0x83 +struct hal_ev_gatt_client_connect { + int32_t conn_id; + int32_t status; + int32_t client_if; + uint8_t bda[6]; +} __attribute__((packed)); -- 1.9.0