--- android/hal-ipc-api.txt | 7 +++++++ android/hal-msg.h | 6 ++++++ 2 files changed, 13 insertions(+) diff --git a/android/hal-ipc-api.txt b/android/hal-ipc-api.txt index 3104c06..fac614e 100644 --- a/android/hal-ipc-api.txt +++ b/android/hal-ipc-api.txt @@ -1755,6 +1755,13 @@ Android HAL name: "gatt" (BT_PROFILE_GATT_ID) In case of an error, the error response will be returned. Opcode 0x21 - Delete Service command/response + + Command parameters: Server (4 octets) + Service handle (4 octets) + Response parameters: <none> + + In case of an error, the error response will be returned. + Opcode 0x22 - Send Indication command/response Opcode 0x23 - Send Response command/response diff --git a/android/hal-msg.h b/android/hal-msg.h index 0253f3a..6598996 100644 --- a/android/hal-msg.h +++ b/android/hal-msg.h @@ -770,6 +770,12 @@ struct hal_cmd_gatt_server_stop_service { int32_t service_handle; } __attribute__((packed)); +#define HAL_OP_GATT_SERVER_DELETE_SERVICE 0x21 +struct hal_cmd_gatt_server_delete_service { + int32_t server_if; + int32_t service_handle; +} __attribute__((packed)); + /* Notifications and confirmations */ #define HAL_POWER_OFF 0x00 -- 1.8.5.2 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html