summaryrefslogtreecommitdiffstats
path: root/include/hci.h
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2002-12-15 13:18:53 +0000
committerMarcel Holtmann <marcel@holtmann.org>2002-12-15 13:18:53 +0000
commitd6cbeb4c61f5dc0c0d04dd022139b44f81964b18 (patch)
tree23eacda469f1a02fc6bbe1426431432a4504c2f5 /include/hci.h
parenta0a3d96eed5f186278ea931953d4bcb6cd99cc7a (diff)
Support for voice setting
Diffstat (limited to 'include/hci.h')
-rw-r--r--include/hci.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/hci.h b/include/hci.h
index 7868366c..a00b7218 100644
--- a/include/hci.h
+++ b/include/hci.h
@@ -338,6 +338,19 @@ typedef struct {
} __attribute__ ((packed)) write_class_of_dev_cp;
#define WRITE_CLASS_OF_DEV_CP_SIZE 3
+#define OCF_READ_VOICE_SETTING 0x0025
+typedef struct {
+ uint8_t status;
+ uint16_t voice_setting;
+} __attribute__ ((packed)) read_voice_setting_rp;
+#define READ_VOICE_SETTING_RP_SIZE 3
+
+#define OCF_WRITE_VOICE_SETTING 0x0026
+typedef struct {
+ uint16_t voice_setting;
+} __attribute__ ((packed)) write_voice_setting_cp;
+#define WRITE_VOICE_SETTING_CP_SIZE 2
+
#define OCF_HOST_BUFFER_SIZE 0x0033
typedef struct {
uint16_t acl_mtu;