diff options
author | Ravi Nagarajan <nravi@broadcom.com> | 2012-04-11 12:07:09 +0530 |
---|---|---|
committer | Matthew Xie <mattx@google.com> | 2012-07-14 11:19:16 -0700 |
commit | 7ca15ca81eee23a930eecc9f388cc73b4efc1994 (patch) | |
tree | a2393513201d5ece325b95456e1e742df1bf8eb4 /bta | |
parent | aeddde20be2d01a2c052ee516f9015243dbaebf1 (diff) | |
download | external_bluetooth_bluedroid-7ca15ca81eee23a930eecc9f388cc73b4efc1994.zip external_bluetooth_bluedroid-7ca15ca81eee23a930eecc9f388cc73b4efc1994.tar.gz external_bluetooth_bluedroid-7ca15ca81eee23a930eecc9f388cc73b4efc1994.tar.bz2 |
Resolve HFP PTS issues related to 3way calling. Following were the changes
1. Enable the feature in stack to avoid sending duplicate indicators
2. AT command response return code was incorrect
3. Update the call indicator to confirm to errata#2043. call=1 implies a call is in progress - either held/active
Change-Id: I0243f83697ed7390ec0ad96c525e41ee9d93de2d
Diffstat (limited to 'bta')
-rw-r--r-- | bta/ag/bta_ag_cmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bta/ag/bta_ag_cmd.c b/bta/ag/bta_ag_cmd.c index 5d60405..7787a75 100644 --- a/bta/ag/bta_ag_cmd.c +++ b/bta/ag/bta_ag_cmd.c @@ -1612,7 +1612,7 @@ void bta_ag_hfp_result(tBTA_AG_SCB *p_scb, tBTA_AG_API_RESULT *p_result) break; case BTA_AG_IND_RES: - bta_ag_send_ind(p_scb, p_result->data.ind.id, p_result->data.ind.value, TRUE); + bta_ag_send_ind(p_scb, p_result->data.ind.id, p_result->data.ind.value, FALSE); break; case BTA_AG_BVRA_RES: |