From d4eeced43c521bd6ab88211d2da70f174d2ce61c Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Thu, 12 Jan 2012 04:37:40 +0100 Subject: hso: Setup CSCS after SIM card has been detected --- plugins/hso.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/plugins/hso.c b/plugins/hso.c index 19bdc5e4..4834c56c 100644 --- a/plugins/hso.c +++ b/plugins/hso.c @@ -217,6 +217,16 @@ static void sim_status(gboolean ok, GAtResult *result, gpointer user_data) if (data->have_sim == FALSE) return; + /* + * 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->control, "AT+CSCS=\"GSM\"", none_prefix, + NULL, NULL, NULL); + g_at_chat_send(data->app, "AT+CSCS=\"GSM\"", none_prefix, + NULL, NULL, NULL); + /* * Option has the concept of Speech Service versus * Data Service. Problem is that in Data Service mode @@ -345,16 +355,6 @@ static int hso_enable(struct ofono_modem *modem) g_at_chat_send(data->control, "ATE0 +CMEE=1", NULL, NULL, NULL, NULL); g_at_chat_send(data->app, "ATE0 +CMEE=1", 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->control, "AT+CSCS=\"GSM\"", none_prefix, - NULL, NULL, NULL); - g_at_chat_send(data->app, "AT+CSCS=\"GSM\"", none_prefix, - NULL, NULL, NULL); - g_at_chat_send(data->control, "AT+CFUN=4", none_prefix, cfun_enable, modem, NULL); -- cgit v1.2.3