diff options
author | Denis Kenzior <denkenz@gmail.com> | 2009-11-12 19:16:01 -0600 |
---|---|---|
committer | Denis Kenzior <denkenz@gmail.com> | 2009-11-12 19:16:32 -0600 |
commit | 72e0d2c578fb450acc08c51f2b075fbcac46f626 (patch) | |
tree | 9181504c22fa906cddef6b291b98613164ba5572 | |
parent | 9a703cd378f35b6efe2f9afe1f7095d6297fbe1c (diff) | |
download | ofono-72e0d2c578fb450acc08c51f2b075fbcac46f626.tar.bz2 |
Fix: On calypso use proprietory %CHLD=7X command
-rw-r--r-- | drivers/calypsomodem/voicecall.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/calypsomodem/voicecall.c b/drivers/calypsomodem/voicecall.c index abfa021b..756d6fee 100644 --- a/drivers/calypsomodem/voicecall.c +++ b/drivers/calypsomodem/voicecall.c @@ -156,7 +156,10 @@ static void calypso_release_specific(struct ofono_voicecall *vc, int id, { char buf[32]; - sprintf(buf, "AT+CHLD=1%d", id); + /* On calypso, 1X only releases active calls, while 7X releases + * active or held calls + */ + sprintf(buf, "AT%CHLD=7%d", id); calypso_template(vc, buf, cb, data); } |