From 8805ca9a84b178e5ae082c9a115ee55bbdae5263 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Mon, 18 Apr 2005 14:08:58 +0000 Subject: Add definitions for hardware error and flush occurred events --- include/hci.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'include') diff --git a/include/hci.h b/include/hci.h index f20a64b3..aa0b7202 100644 --- a/include/hci.h +++ b/include/hci.h @@ -1004,6 +1004,18 @@ typedef struct { } __attribute__ ((packed)) evt_cmd_status; #define EVT_CMD_STATUS_SIZE 4 +#define EVT_HARDWARE_ERROR 0x10 +typedef struct { + uint8_t code; +} __attribute__ ((packed)) evt_hardware_error; +#define EVT_HARDWARE_ERROR_SIZE 1 + +#define EVT_FLUSH_OCCURRED 0x11 +typedef struct { + uint16_t handle; +} __attribute__ ((packed)) evt_flush_occured; +#define EVT_FLUSH_OCCURRED_SIZE 2 + #define EVT_ROLE_CHANGE 0x12 typedef struct { uint8_t status; -- cgit