summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDenis Kenzior <denkenz@gmail.com>2014-01-16 23:04:30 -0600
committerDenis Kenzior <denkenz@gmail.com>2014-10-20 13:40:27 -0500
commit881207ce1874a67ccdbaf4e2df644f8debfd2fa2 (patch)
tree564dc8eb1c414e61aefe78237e05bfcd2425aa85 /src
parent0f0733c348087f52913b94ab257125417d25ca0f (diff)
downloadofono-881207ce1874a67ccdbaf4e2df644f8debfd2fa2.tar.bz2
hfp: Update for new HFP 1.7 values
Diffstat (limited to 'src')
-rw-r--r--src/hfp.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/hfp.h b/src/hfp.h
index 94ea4f7a..31730d99 100644
--- a/src/hfp.h
+++ b/src/hfp.h
@@ -31,6 +31,7 @@ enum hfp_ag_feature {
HFP_AG_FEATURE_ENHANCED_CALL_CONTROL = 0x80,
HFP_AG_FEATURE_EXTENDED_RES_CODE = 0x100,
HFP_AG_FEATURE_CODEC_NEGOTIATION = 0x200,
+ HFP_AG_FEATURE_HF_INDICATORS = 0x400,
};
/* HFP HF supported features bitmap. Bluetooth HFP 1.6 spec page 88 */
@@ -43,6 +44,7 @@ enum hfp_hf_feature {
HFP_HF_FEATURE_ENHANCED_CALL_STATUS = 0x20,
HFP_HF_FEATURE_ENHANCED_CALL_CONTROL = 0x40,
HFP_HF_FEATURE_CODEC_NEGOTIATION = 0x80,
+ HFP_HF_FEATURE_HF_INDICATORS = 0x100,
};
/* HFP AG supported call hold and multiparty services bitmap. Bluetooth HFP 1.6 spec page 76 */
@@ -83,5 +85,6 @@ enum hfp_codec {
enum hfp_version {
HFP_VERSION_1_5 = 0x0105,
HFP_VERSION_1_6 = 0x0106,
- HFP_VERSION_LATEST = HFP_VERSION_1_6,
+ HFP_VERSION_1_7 = 0x0107,
+ HFP_VERSION_LATEST = HFP_VERSION_1_7,
};