android/hal-gatt-api: Add Client Connect event

This commit is contained in:
Jakub Tyszkowski 2014-02-28 11:23:48 +01:00 committed by Szymon Janc
parent 3417c8beff
commit 6df9839372
2 changed files with 14 additions and 0 deletions

View File

@ -1810,6 +1810,12 @@ Android HAL name: "gatt" (BT_PROFILE_GATT_ID)
Data (variable) Data (variable)
Opcode 0x83 - Connect Device notification 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 0x84 - Disconnect Device notification
Opcode 0x85 - Search Complete notification Opcode 0x85 - Search Complete notification
Opcode 0x86 - Search Result notification Opcode 0x86 - Search Result notification

View File

@ -1239,3 +1239,11 @@ struct hal_ev_gatt_client_scan_result {
uint16_t len; uint16_t len;
uint8_t adv_data[0]; uint8_t adv_data[0];
} __attribute__((packed)); } __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));