diff options
| author | Marcel Holtmann <marcel@holtmann.org> | 2005-04-17 21:30:19 +0000 | 
|---|---|---|
| committer | Marcel Holtmann <marcel@holtmann.org> | 2005-04-17 21:30:19 +0000 | 
| commit | 01aab15cf710601c93457042507b433474a78c04 (patch) | |
| tree | c84ab230f562ee2bc5ab5dfb03604c50d54b134b | |
| parent | c875d7ca57c3e5bad8c8af080c7d33f85a499c07 (diff) | |
Add definition for remote extended features event
| -rw-r--r-- | include/hci.h | 10 | 
1 files changed, 10 insertions, 0 deletions
diff --git a/include/hci.h b/include/hci.h index 5502e2b5..3f811ffa 100644 --- a/include/hci.h +++ b/include/hci.h @@ -1064,6 +1064,16 @@ typedef struct {  } __attribute__ ((packed)) inquiry_info_with_rssi_and_pscan_mode;  #define INQUIRY_INFO_WITH_RSSI_AND_PSCAN_MODE_SIZE 15 +#define EVT_READ_REMOTE_EXT_FEATURES_COMPLETE	0x23 +typedef struct { +	uint8_t		status; +	uint16_t	handle; +	uint8_t		page_num; +	uint8_t		max_page_num; +	uint8_t		features[8]; +} __attribute__ ((packed)) evt_read_remote_ext_features_complete; +#define EVT_READ_REMOTE_EXT_FEATURES_COMPLETE_SIZE 13 +  #define EVT_TESTING			0xFE  #define EVT_VENDOR			0xFF  | 
