android/hal-gatt-api: Add Client Search Result event

This commit is contained in:
Jakub Tyszkowski 2014-02-28 11:23:51 +01:00 committed by Szymon Janc
parent 9828ebe8d2
commit 0589710b48
2 changed files with 14 additions and 0 deletions

View File

@ -1829,6 +1829,14 @@ Android HAL name: "gatt" (BT_PROFILE_GATT_ID)
Status (4 octets)
Opcode 0x86 - Search Result notification
Notification parameters: Connection ID (4 octets)
GATT Service ID (18 octets)
Valid GATT Service ID: GATT ID (17 octets)
Is Primary (1 octet)
Valid GATT ID: UUID (16 octets)
Instance ID (1 octet)
Opcode 0x87 - Get Characteristic notification
Opcode 0x88 - Get Descriptor notification
Opcode 0x89 - Get Included Service notification

View File

@ -1261,3 +1261,9 @@ struct hal_ev_gatt_client_search_complete {
int32_t conn_id;
int32_t status;
} __attribute__((packed));
#define HAL_EV_GATT_CLIENT_SEARCH_RESULT 0x86
struct hal_ev_gatt_client_search_result {
int32_t conn_id;
struct hal_gatt_srvc_id srvc_id;
} __attribute__((packed));