diff options
| author | Marcel Holtmann <marcel@holtmann.org> | 2005-04-18 14:08:58 +0000 | 
|---|---|---|
| committer | Marcel Holtmann <marcel@holtmann.org> | 2005-04-18 14:08:58 +0000 | 
| commit | 8805ca9a84b178e5ae082c9a115ee55bbdae5263 (patch) | |
| tree | 4093d9ba2a8400088814eb28f458d62e71b2fbf0 /include/hci.h | |
| parent | 0887d119a0b61e38cbd3d30e207c09eb5a5ff463 (diff) | |
Add definitions for hardware error and flush occurred events
Diffstat (limited to 'include/hci.h')
| -rw-r--r-- | include/hci.h | 12 | 
1 files changed, 12 insertions, 0 deletions
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;  | 
