From: Denis Kenzior Date: Wed, 5 Mar 2014 18:26:04 +0000 (-0600) Subject: he910: Switch to permissive parser X-Git-Tag: upstream/1.15~37 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f8819b588b6a6b7e3ab14a239242e6e38c61f6bc;p=platform%2Fupstream%2Fofono.git 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 --- diff --git a/plugins/he910.c b/plugins/he910.c index ce7e57be..10adf3c6 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);