From 89c757f49d6aa3f8345bb6e0f1ab38b99a520ccd Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Wed, 11 Jan 2012 06:37:05 -0600 Subject: [PATCH] zte: Setup CSCS on both ports --- plugins/zte.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/plugins/zte.c b/plugins/zte.c index e5511a0b..9a1b9e97 100644 --- a/plugins/zte.c +++ b/plugins/zte.c @@ -167,6 +167,16 @@ static void zoprt_enable(gboolean ok, GAtResult *result, gpointer user_data) g_at_chat_send(data->modem, "AT&C0", NULL, NULL, NULL, NULL); g_at_chat_send(data->aux, "AT&C0", NULL, NULL, NULL, NULL); + /* + * Ensure that the modem is using GSM character set and not IRA, + * otherwise weirdness with umlauts and other non-ASCII characters + * can result + */ + g_at_chat_send(data->modem, "AT+CSCS=\"GSM\"", none_prefix, + NULL, NULL, NULL); + g_at_chat_send(data->aux, "AT+CSCS=\"GSM\"", none_prefix, + NULL, NULL, NULL); + /* Read PCB information */ g_at_chat_send(data->aux, "AT+ZPCB?", none_prefix, NULL, NULL, NULL);