Hi Anibal,
I'm interested as well in the patch
I saw that there you have two branches (me910 and v1.30+me910) can you tell me what branch have you tested?
the diff is this
git diff me910
diff --git a/plugins/telit.c b/plugins/telit.c
index f36995dc..50344281 100644
--- a/plugins/telit.c
+++ b/plugins/telit.c
@@ -239,16 +239,19 @@ static void cfun_enable_cb(gboolean ok, GAtResult *result, gpointer user_data)
ofono_modem_set_powered(modem, TRUE);
- /*
- * Tell the modem not to automatically initiate auto-attach
- * proceedures on its own.
- */
- if (data->model == ME910C1)
- g_at_chat_send(data->chat, "AT+CGATT=0", NULL, NULL, NULL, NULL);
- else
-
+ if (data->model == ME910C1) {
+ /*
+ * Telit ME910C1 needs to activate the GPRS to auto-attach the network.
+ */
+ g_at_chat_send(data->chat, "AT+CGATT=1", NULL, NULL, NULL, NULL);
+ } else {
+ /*
+ * Tell the modem not to automatically initiate auto-attach
+ * proceedures on its own.
+ */
g_at_chat_send(data->chat, "AT#AUTOATT=0", none_prefix,
NULL, NULL, NULL);
+ }
/* Follow sim state */
g_at_chat_register(data->chat, "#QSS:", telit_qss_notify,
Thanks
Nicola Lunghi