summaryrefslogtreecommitdiffstats
path: root/include/hci.h
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2005-06-16 13:53:08 +0000
committerMarcel Holtmann <marcel@holtmann.org>2005-06-16 13:53:08 +0000
commitf38a7523b3e2ec2109cd5c5f65803da5a354da03 (patch)
tree0140e68c4ecd4dce4177d62fd2b3c8a1db6c0cb6 /include/hci.h
parente8c8131bc6c67b3592a5b5ec1882f2d8abf00608 (diff)
Add support for reading and writing the inquiry scan type
Diffstat (limited to 'include/hci.h')
-rw-r--r--include/hci.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/include/hci.h b/include/hci.h
index 86ffe8c9..b6275196 100644
--- a/include/hci.h
+++ b/include/hci.h
@@ -833,6 +833,23 @@ typedef struct {
} __attribute__ ((packed)) set_afh_classification_rp;
#define SET_AFH_CLASSIFICATION_RP_SIZE 1
+#define OCF_READ_INQUIRY_SCAN_TYPE 0x0042
+typedef struct {
+ uint8_t status;
+ uint8_t type;
+} __attribute__ ((packed)) read_inquiry_scan_type_rp;
+#define READ_INQUIRY_SCAN_TYPE_RP_SIZE 2
+
+#define OCF_WRITE_INQUIRY_SCAN_TYPE 0x0043
+typedef struct {
+ uint8_t type;
+} __attribute__ ((packed)) write_inquiry_scan_type_cp;
+#define WRITE_INQUIRY_SCAN_TYPE_CP_SIZE 1
+typedef struct {
+ uint8_t status;
+} __attribute__ ((packed)) write_inquiry_scan_type_rp;
+#define WRITE_INQUIRY_SCAN_TYPE_RP_SIZE 1
+
#define OCF_READ_INQUIRY_MODE 0x0044
typedef struct {
uint8_t status;