ussd: Read current CSCS charset

This commit is contained in:
Jeevaka Badrappan 2010-09-13 16:00:13 -07:00 committed by Denis Kenzior
parent ebcfe67d91
commit 09de3fdaab
1 changed files with 16 additions and 0 deletions

View File

@ -44,12 +44,25 @@
static const char *cusd_prefix[] = { "+CUSD:", NULL };
static const char *none_prefix[] = { NULL };
static const char *cscs_prefix[] = { "+CSCS:", NULL };
struct ussd_data {
GAtChat *chat;
unsigned int vendor;
enum at_util_charset charset;
};
static void read_charset_cb(gboolean ok, GAtResult *result,
gpointer user_data)
{
struct ussd_data *data = user_data;
if (!ok)
return;
at_util_parse_cscs_query(result, &data->charset);
}
static void cusd_parse(GAtResult *result, struct ofono_ussd *ussd)
{
GAtResultIter iter;
@ -247,6 +260,9 @@ static int at_ussd_probe(struct ofono_ussd *ussd, unsigned int vendor,
ofono_ussd_set_data(ussd, data);
g_at_chat_send(chat, "AT+CSCS?", cscs_prefix, read_charset_cb, data,
NULL);
g_at_chat_send(chat, "AT+CUSD=1", NULL, at_ussd_register, ussd, NULL);
return 0;