diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2010-09-27 23:31:28 +0900 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2010-09-27 23:33:58 +0900 |
commit | 11154dfea07903dfab48ee2c87f4f04d661924c9 (patch) | |
tree | 3ceaf11299059d58a398d7c4c2e202d4fb42fbe8 | |
parent | 3ffd6d248b01e2cb280647f950addf1588852f44 (diff) | |
download | ofono-11154dfea07903dfab48ee2c87f4f04d661924c9.tar.bz2 |
ifxmodem: Enable audio related progress information
This is using AT+XPROGRESS=1 to enable the audio related notifications
of the modem. None of these information is currently used. This command
is only present to have these details show up in the debug logs.
-rw-r--r-- | drivers/ifxmodem/voicecall.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/ifxmodem/voicecall.c b/drivers/ifxmodem/voicecall.c index 7a2cb51f..0fe360be 100644 --- a/drivers/ifxmodem/voicecall.c +++ b/drivers/ifxmodem/voicecall.c @@ -707,6 +707,7 @@ static int ifx_voicecall_probe(struct ofono_voicecall *vc, unsigned int vendor, g_at_chat_send(vd->chat, "AT+CLIP=1", none_prefix, NULL, NULL, NULL); g_at_chat_send(vd->chat, "AT+COLP=1", none_prefix, NULL, NULL, NULL); g_at_chat_send(chat, "AT+XCALLSTAT=1", none_prefix, NULL, NULL, NULL); + g_at_chat_send(chat, "AT+XPROGRESS=1", none_prefix, NULL, NULL, NULL); g_at_chat_send(vd->chat, "AT+CCWA=1", none_prefix, ifx_voicecall_initialized, vc, NULL); |