From e115c62dcef946f7b3391f10dfcd5a792beb708c Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Wed, 5 Mar 2014 12:26:04 -0600 Subject: [PATCH] he910: Switch to permissive parser Seems the CCFC implementation on Telit firmware is not v.250 compliant: ofonod[445]: Aux: > AT+CCFC=0,2\r ofonod[445]: Aux: < \r\n\r\n+CCFC:0,7\r\n\r\nOK\r\n Change-Id: I06f917a74320a624afc655cb76ee10ecfc245f5d --- plugins/he910.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/he910.c b/plugins/he910.c index ce7e57b..10adf3c 100644 --- a/plugins/he910.c +++ b/plugins/he910.c @@ -102,7 +102,7 @@ static GAtChat *open_device(struct ofono_modem *modem, if (channel == NULL) return NULL; - syntax = g_at_syntax_new_gsmv1(); + syntax = g_at_syntax_new_gsm_permissive(); chat = g_at_chat_new(channel, syntax); g_at_syntax_unref(syntax); g_io_channel_unref(channel); -- 2.7.4