From: Gustavo F. Padovan Date: Mon, 26 Sep 2011 17:26:58 +0000 (-0300) Subject: telit: add #RSEN notify X-Git-Tag: 1.0~36 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9667db0b142908bf95d570edf6fd482256d881ae;p=platform%2Fupstream%2Fofono.git telit: add #RSEN notify RSEN URC tells if the SAP Client was enabled or not --- diff --git a/plugins/telit.c b/plugins/telit.c index cc10668..1f950aa 100644 --- a/plugins/telit.c +++ b/plugins/telit.c @@ -105,6 +105,22 @@ static GAtChat *open_device(struct ofono_modem *modem, return chat; } +static void telit_rsen_notify(GAtResult *result, gpointer user_data) +{ + struct ofono_modem *modem = user_data; + int status; + GAtResultIter iter; + + DBG("%p", modem); + + g_at_result_iter_init(&iter, result); + + if (!g_at_result_iter_next(&iter, "#RSEN:")) + return; + + g_at_result_iter_next_number(&iter, &status); +} + static void rsen_enable_cb(gboolean ok, GAtResult *result, gpointer user_data) { struct ofono_modem *modem = user_data; @@ -131,6 +147,9 @@ static int telit_sap_enable(struct ofono_modem *modem) if (data->chat == NULL) return -EINVAL; + g_at_chat_register(data->chat, "#RSEN:", telit_rsen_notify, + FALSE, modem, NULL); + g_at_chat_send(data->chat, "AT#NOPT=3", NULL, NULL, NULL, NULL); /* Set SAP functionality */