diff options
| author | Max Krasnyansky <maxk@qualcomm.com> | 2002-06-25 04:07:01 +0000 | 
|---|---|---|
| committer | Max Krasnyansky <maxk@qualcomm.com> | 2002-06-25 04:07:01 +0000 | 
| commit | 2377f938f56bc623ac6e0ad2e68862a0566dd7de (patch) | |
| tree | 1ad3515b228fcb9fdd360e03d02e10b3f0617430 | |
| parent | afdbc9e8fe53fdf5c4a5c78e379d604e92a61480 (diff) | |
Additional HCI defines.
| -rw-r--r-- | include/hci.h | 28 | 
1 files changed, 28 insertions, 0 deletions
diff --git a/include/hci.h b/include/hci.h index d6946976..8c898d42 100644 --- a/include/hci.h +++ b/include/hci.h @@ -210,6 +210,34 @@ typedef struct {  #define OGF_HOST_CTL	0x03  #define OCF_RESET		0x0003 +#define OCF_READ_PAGE_TIMEOUT	0x0017 +typedef struct { +	uint8_t 	status; +	uint16_t 	timeout; +} __attribute__ ((packed)) read_page_timeout_rp; +#define READ_PAGE_TIMEOUT_RP_SIZE 3 + +#define OCF_WRITE_PAGE_TIMEOUT	0x0018 +typedef struct { +	uint16_t 	timeout; +} __attribute__ ((packed)) write_page_timeout_cp; +#define WRITE_PAGE_TIMEOUT_CP_SIZE 2 + +#define OCF_READ_PAGE_ACTIVITY	0x001B +typedef struct { +	uint8_t 	status; +	uint16_t 	interval; +	uint16_t 	window; +} __attribute__ ((packed)) read_page_activity_rp; +#define READ_PAGE_ACTIVITY_RP_SIZE 5 + +#define OCF_WRITE_PAGE_ACTIVITY	0x001C +typedef struct { +	uint16_t 	interval; +	uint16_t 	window; +} __attribute__ ((packed)) write_page_activity_cp; +#define WRITE_PAGE_ACTIVITY_CP_SIZE 4 +  #define OCF_READ_INQ_ACTIVITY	0x001D  typedef struct {  	uint8_t 	status;  | 
