All of lore.kernel.org
 help / color / mirror / Atom feed
From: Marcel Holtmann <marcel@holtmann.org>
To: ofono@ofono.org
Subject: Re: [PATCH 1/2] atmodem: move USSD quirk to probe and use it also for STE modems
Date: Fri, 14 Jan 2011 15:20:35 +0100	[thread overview]
Message-ID: <1295014835.3873.147.camel@aeonflux> (raw)
In-Reply-To: <1295014353-9106-1-git-send-email-lasse.kunnasluoto@tieto.com>

[-- Attachment #1: Type: text/plain, Size: 2340 bytes --]

Hi Lasse,

> Fixing issues in USSD quirk:
> 1) MT USSD are not handled correctly if modem uses IRA character set (change character set to GSM already in probe)
> 2) Responses from NW to MO USSD are not hadled as internal variable is not updated after cscs= command (Query right after setting)
> 3) Use the same quirk for STE modems

Hi Lasse,

> ---
>  drivers/atmodem/ussd.c |   21 ++++++++++++---------
>  1 files changed, 12 insertions(+), 9 deletions(-)
> 
> diff --git a/drivers/atmodem/ussd.c b/drivers/atmodem/ussd.c
> index 651b6af..411b1de 100644
> --- a/drivers/atmodem/ussd.c
> +++ b/drivers/atmodem/ussd.c
> @@ -219,15 +219,6 @@ static void at_ussd_request(struct ofono_ussd *ussd, int dcs,
>  				converted, dcs);
>  	}
>  
> -	if (data->vendor == OFONO_VENDOR_QUALCOMM_MSM) {
> -		/* Ensure that the modem is using GSM character set. It
> -		 * seems it defaults to IRA and then umlauts are not
> -		 * properly encoded. The modem returns some weird from
> -		 * of Latin-1, but it is not really Latin-1 either. */
> -		g_at_chat_send(data->chat, "AT+CSCS=\"GSM\"", none_prefix,
> -							NULL, NULL, NULL);
> -	}
> -
>  	if (g_at_chat_send(data->chat, buf, cusd_prefix,
>  				cusd_request_cb, cbd, g_free) > 0)
>  		return;
> @@ -314,6 +305,18 @@ static int at_ussd_probe(struct ofono_ussd *ussd, unsigned int vendor,
>  
>  	ofono_ussd_set_data(ussd, data);
>  
> +	switch (data->vendor) {
> +	case OFONO_VENDOR_QUALCOMM_MSM:
> +	case OFONO_VENDOR_STE:
> +		/*
> +		* Ensure that the modem is using GSM character set. It
> +		* seems it defaults to IRA and then umlauts are not
> +		* properly encoded. The modem returns some weird from
> +		* of Latin-1, but it is not really Latin-1 either.
> +		*/
> +		g_at_chat_send(data->chat, "AT+CSCS=\"GSM\"", none_prefix,
> +							NULL, NULL, NULL);
> +		break;
> +	}
> +
>  	g_at_chat_send(chat, "AT+CSCS?", cscs_prefix, read_charset_cb, data,
>  			NULL);
>  

so we don't really wanna do it this way since other atoms like the
phonebook can switch the character sets as well.

The best is if the STE modem would provide access to the USSD in PDU
mode and we can then decode it properly. Using text mode for USSD is not
the best idea actually. Same as text mode for SMS is utterly broken ;)

Regards

Marcel



  reply	other threads:[~2011-01-14 14:20 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-01-14 14:12 [PATCH 1/2] atmodem: move USSD quirk to probe and use it also for STE modems Lasse Kunnasluoto
2011-01-14 14:20 ` Marcel Holtmann [this message]
2011-01-17  8:42   ` Lasse Kunnasluoto
2011-01-17 15:58     ` Denis Kenzior
2011-01-18 13:17       ` Lasse Kunnasluoto

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1295014835.3873.147.camel@aeonflux \
    --to=marcel@holtmann.org \
    --cc=ofono@ofono.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.