From 74d0493230416dbf15e5dfe41de8d53e166ac0c7 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Mon, 7 Sep 2009 20:15:49 -0500 Subject: [PATCH] Add a few more comments to the calypso plugin --- plugins/calypso.c | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/plugins/calypso.c b/plugins/calypso.c index 2d9a5e4..9dd4e1e 100644 --- a/plugins/calypso.c +++ b/plugins/calypso.c @@ -144,14 +144,22 @@ static void setup_modem(struct ofono_modem *modem) { struct calypso_data *data = ofono_modem_get_data(modem); + /* Generate unsolicited notifications as soon as they're generated */ g_at_chat_send(data->chat, "AT%CUNS=0", NULL, NULL, NULL, NULL); - g_at_chat_send(data->chat, "AT%CSTAT=1", NULL, NULL, NULL, NULL); - g_at_chat_send(data->chat, "@ST=\"-26\"", NULL, NULL, NULL, NULL); - g_at_chat_send(data->chat, "%SLEEP=2", NULL, NULL, NULL, NULL); - g_at_chat_send(data->chat, "+CLVL=255", NULL, NULL, NULL, NULL); + /* CSTAT tells us when SMS & Phonebook are ready to be used */ g_at_chat_register(data->chat, "%CSTAT:", cstat_notify, FALSE, modem, NULL); + g_at_chat_send(data->chat, "AT%CSTAT=1", NULL, NULL, NULL, NULL); + + /* audio side tone: set to minimum */ + g_at_chat_send(data->chat, "AT@ST=\"-26\"", NULL, NULL, NULL, NULL); + + /* Disable deep sleep */ + g_at_chat_send(data->chat, "AT%SLEEP=2", NULL, NULL, NULL, NULL); + + /* Set audio level to maximum */ + g_at_chat_send(data->chat, "AT+CLVL=255", NULL, NULL, NULL, NULL); } static void cfun_set_on_cb(gboolean ok, GAtResult *result, gpointer user_data) -- 2.7.4