Problem with SIM lock states not showing correctly in Ofono API.

2011-02-18 Thread Jussi Kangas
Hi, I would like to get rid of this problem. It's been on TODO list since November. I haven't received any feedback about mail [RFC] sim: check if lock is locked after code changing attempt I sent 4th of February. Could somebody check it? Br, -Jussi

Re: [PATCH 09/18] isimodem: clip colp clir colr wgmodem2.5

2011-02-18 Thread Aki Niemi
Hi Andreas, 2011/2/15 Andreas Westin andreas.wes...@stericsson.com: From: Jessica Nilsson jessica.j.nils...@stericsson.com ---  drivers/isimodem/call-settings.c |  697 +-  drivers/isimodem/call.h          |    9 +  drivers/isimodem/debug.c         |    

Re: [PATCH 1/2] ste: Add support for multiple pdp contexts.

2011-02-18 Thread Marit Sofie Henriksen
2011/2/9 Marit Sofie Henriksen maritsofie.henriks...@gmail.com 2011/2/8 Marcel Holtmann mar...@holtmann.org Hi Marit, diff --git a/plugins/ste.c b/plugins/ste.c index cf8aed8..749c4f3 100644 --- a/plugins/ste.c +++ b/plugins/ste.c @@ -66,6 +66,7 @@ #include

Re: [PATCH 11/18] isimodem: gprs-context updates wgmodem2.5

2011-02-18 Thread Aki Niemi
Hi, 2011/2/15 Andreas Westin andreas.wes...@stericsson.com: From: Jessica Nilsson jessica.j.nils...@stericsson.com ---  drivers/isimodem/gprs-context.c |   95 +-  1 files changed, 62 insertions(+), 33 deletions(-) diff --git

[PATCH 0/4] bluetooth: add CIND and CIEV support for HFP AG

2011-02-18 Thread Frédéric Danis
Add signal strength APIs in netreg atom Add CIND and CIEV support in emulator atom for service, roaming and signal indicators Frédéric Danis (4): emulator: add network info support for HFP netreg: add get signal strength API netreg: add support for signal strength get and watch APIs

[PATCH 2/4] netreg: add get signal strength API

2011-02-18 Thread Frédéric Danis
--- include/netreg.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/netreg.h b/include/netreg.h index 26a3442..871fe6d 100644 --- a/include/netreg.h +++ b/include/netreg.h @@ -111,6 +111,7 @@ void *ofono_netreg_get_data(struct ofono_netreg *netreg); int

[PATCH 3/4] netreg: add support for signal strength get and watch APIs

2011-02-18 Thread Frédéric Danis
--- src/network.c | 61 + src/ofono.h | 10 + 2 files changed, 71 insertions(+), 0 deletions(-) diff --git a/src/network.c b/src/network.c index c059906..4a0e984 100644 --- a/src/network.c +++ b/src/network.c @@ -79,6 +79,7 @@

[PATCH 4/4] emulator: add network signal support for HFP

2011-02-18 Thread Frédéric Danis
--- src/emulator.c | 37 +++-- 1 files changed, 35 insertions(+), 2 deletions(-) diff --git a/src/emulator.c b/src/emulator.c index d8cd32f..6835f96 100644 --- a/src/emulator.c +++ b/src/emulator.c @@ -38,8 +38,10 @@ struct ofono_emulator { struct

Modem reboots when trying to activate a ConnectionContext

2011-02-18 Thread Antoine Reversat
This is on an N900 running nitdroid gingerbread with a 2.6.35.9 kernel and ofono 0.42 When I do this : dbus-send --system --print-reply --dest=org.ofono /isimodem/context2 org.ofono.ConnectionContext.SetProperty string:Active variant:boolean:true I get back : Error org.ofono.Error.Failed:

[PATCH] emulator: add dialing support

2011-02-18 Thread Gustavo F. Padovan
It handles client ATD*99# request and then initiate the PPP negotiation. IP forward through the new ppp interface is not done yet. Initially based on patches from Zhenhua Zhang zhenhua.zh...@intel.com --- src/emulator.c | 121 1 files

Re: Problem with SIM lock states not showing correctly in Ofono API.

2011-02-18 Thread Denis Kenzior
Hi Jussi, On 02/18/2011 01:56 AM, Jussi Kangas wrote: Hi, I would like to get rid of this problem. It's been on TODO list since November. I haven't received any feedback about mail [RFC] sim: check if lock is locked after code changing attempt I sent 4th of February. Could somebody

Re: [PATCH 2/2] stemodem: Add support for multiple pdp contexts.

2011-02-18 Thread Marcel Holtmann
Hi Marit, Redesigned, there will be only one contexts for each instance of the driver and only one CAIF interface, no longer need the list of caif devices. --- drivers/stemodem/gprs-context.c | 273 --- 1 files changed, 57 insertions(+), 216

Re: [PATCH 1/2] ste: Add support for multiple pdp contexts.

2011-02-18 Thread Marcel Holtmann
Hi Marit, Is this approach ok, and has anyone had the chance to look at these pathces? (this one plus [PATCH 2/2] stemodem: Add support for multiple pdp contexts) it is fine with me. Just re-send them with the warning fixed. Regards Marcel

Re: Modem reboots when trying to activate a ConnectionContext

2011-02-18 Thread Antoine Reversat
If I'm not mistaken I might have found what's wrong : it seems the subblock length are wrong. Fro example in GPDS_CONTEXT_CONFIGURE_REQ the second subblock (GPDS_APN_INFO) contains a length of 0x16 which is 22 bytes. Except the length is 19 bytes. Is this right or am I missing something ? It is

Re: Modem reboots when trying to activate a ConnectionContext

2011-02-18 Thread Antoine Reversat
I removed the finale + 3 in both send_context_authenticate and link_conf_cb in drivers/isimodem/gprs-context.c which would account for filler bytes but they don't seem to be actually put int the message. This works but I don't know if it is the right fix. On Fri, Feb 18, 2011 at 1:45 PM, Antoine

Re: [PATCH] emulator: add dialing support

2011-02-18 Thread Denis Kenzior
Hi Gustavo, On 02/18/2011 11:27 AM, Gustavo F. Padovan wrote: It handles client ATD*99# request and then initiate the PPP negotiation. IP forward through the new ppp interface is not done yet. Initially based on patches from Zhenhua Zhang zhenhua.zh...@intel.com --- src/emulator.c | 121

Re: [PATCH 2/9] sim: Implement basic Refresh.

2011-02-18 Thread Andrzej Zaborowski
Hi Denis, On 17 February 2011 22:03, Denis Kenzior denk...@gmail.com wrote: On 02/15/2011 01:58 AM, Andrzej Zaborowski wrote: ---  src/ofono.h |    4 ++  src/sim.c   |  163 ++  2 files changed, 155 insertions(+), 12 deletions(-)

Re: [PATCH 3/9] sim: Watch for changes to relevant SIM files.

2011-02-18 Thread Andrzej Zaborowski
On 17 February 2011 22:08, Denis Kenzior denk...@gmail.com wrote: On 02/15/2011 01:58 AM, Andrzej Zaborowski wrote: +             ofono_sim_remove_file_watch(sim-context, SIM_EFMSISDN_FILEID); +             ofono_sim_remove_file_watch(sim-context, SIM_EFSDN_FILEID); +