RE: modem atom api change request for support GSM&CDMA dual mode

2010-10-26 Thread Zhang, Caiwen
Hi Rajesh, > > > > > Generally, Multimode modem will have different devices. > > So it can be > > > > regarded as two different modems. E.g. There is a > > multimode modem, > > > > there are two device files for Echo mode: > > > > such as /dev/ttyUSB0(for GSM) and /dev/ttyUSB1(for CDMA). > > > >

RE: modem atom api change request for support GSM&CDMA dual mode

2010-10-26 Thread Rajesh.Nagaiah
Hi Caiwen, > > > Generally, Multimode modem will have different devices. > So it can be > > > regarded as two different modems. E.g. There is a > multimode modem, > > > there are two device files for Echo mode: > > > such as /dev/ttyUSB0(for GSM) and /dev/ttyUSB1(for CDMA). > > > > > > Of cour

Re: [PATCH] ifxmodem: Notify core about commands handled in modem.

2010-10-26 Thread Marcel Holtmann
Hi Andrew, > + /* > + * A proactive command starts with a Proactive UICC Command BER-TLV > + * short tag (0xd0) with optional pad bytes, a Terminal Response > + * starts with the Command Details CTLV tag (0x81). > + */ > + if (pdu[0] != 0x81) > + ofono_stk_p

[PATCH] mbmmodem: Notify core about commands handled in modem.

2010-10-26 Thread Andrzej Zaborowski
--- drivers/mbmmodem/stk.c | 28 +--- 1 files changed, 25 insertions(+), 3 deletions(-) diff --git a/drivers/mbmmodem/stk.c b/drivers/mbmmodem/stk.c index f279057..a7633ee 100644 --- a/drivers/mbmmodem/stk.c +++ b/drivers/mbmmodem/stk.c @@ -179,12 +179,34 @@ static void

[PATCH] ifxmodem: Notify core about commands handled in modem.

2010-10-26 Thread Andrzej Zaborowski
--- drivers/ifxmodem/stk.c | 14 ++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/drivers/ifxmodem/stk.c b/drivers/ifxmodem/stk.c index a7ca089..3b620a4 100644 --- a/drivers/ifxmodem/stk.c +++ b/drivers/ifxmodem/stk.c @@ -197,6 +197,7 @@ static void sati_notify(GAtR

[PATCH] calypsomodem: Notify core about commands handled in modem.

2010-10-26 Thread Andrzej Zaborowski
--- drivers/calypsomodem/stk.c | 27 --- 1 files changed, 24 insertions(+), 3 deletions(-) diff --git a/drivers/calypsomodem/stk.c b/drivers/calypsomodem/stk.c index 052e1f9..7168fb0 100644 --- a/drivers/calypsomodem/stk.c +++ b/drivers/calypsomodem/stk.c @@ -209,13 +209

[PATCH] stk: Handle more commands in proactive_command_handled_notify.

2010-10-26 Thread Andrzej Zaborowski
--- src/stk.c | 27 +++ 1 files changed, 27 insertions(+), 0 deletions(-) diff --git a/src/stk.c b/src/stk.c index 54994df..359f8e4 100644 --- a/src/stk.c +++ b/src/stk.c @@ -822,6 +822,7 @@ static gboolean handle_command_send_sms(const struct stk_command *cmd,

RE: [PATCH 2/6] stemodem: add default case

2010-10-26 Thread Marcel Holtmann
Hi Mika, > > > diff --git a/drivers/stemodem/radio-settings.c > > b/drivers/stemodem/radio-settings.c > > > index 5b16ec0..a345975 100644 > > > --- a/drivers/stemodem/radio-settings.c > > > +++ b/drivers/stemodem/radio-settings.c > > > @@ -90,7 +90,7 @@ static gboolean > > ofono_mode_to_ste_mode

RE: [PATCH 2/6] stemodem: add default case

2010-10-26 Thread Mika.Liljeberg
Hi Marcel, > > diff --git a/drivers/stemodem/radio-settings.c > b/drivers/stemodem/radio-settings.c > > index 5b16ec0..a345975 100644 > > --- a/drivers/stemodem/radio-settings.c > > +++ b/drivers/stemodem/radio-settings.c > > @@ -90,7 +90,7 @@ static gboolean > ofono_mode_to_ste_mode(enum ofono_

Re: [PATCH 2/6] stemodem: add default case

2010-10-26 Thread Marcel Holtmann
Hi Mika, > --- > drivers/stemodem/radio-settings.c |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/drivers/stemodem/radio-settings.c > b/drivers/stemodem/radio-settings.c > index 5b16ec0..a345975 100644 > --- a/drivers/stemodem/radio-settings.c > +++ b/drivers/ste

[PATCH 6/6] TODO: mark fast dormancy as done

2010-10-26 Thread Mika Liljeberg
--- TODO | 20 doc/features.txt |8 2 files changed, 8 insertions(+), 20 deletions(-) diff --git a/TODO b/TODO index 239bab0..6ac9cea 100644 --- a/TODO +++ b/TODO @@ -504,26 +504,6 @@ Miscellaneous Priority: Medium Complexity: C2 -- Add a pr

[PATCH 5/6] isimodem: add support for FastDormancy property

2010-10-26 Thread Mika Liljeberg
--- drivers/isimodem/radio-settings.c | 91 - 1 files changed, 90 insertions(+), 1 deletions(-) diff --git a/drivers/isimodem/radio-settings.c b/drivers/isimodem/radio-settings.c index d220476..558e032 100644 --- a/drivers/isimodem/radio-settings.c +++ b/dri

[PATCH 4/6] test: add script to control fast dormancy

2010-10-26 Thread Mika Liljeberg
--- Makefile.am|3 ++- test/set-fast-dormancy | 25 + 2 files changed, 27 insertions(+), 1 deletions(-) create mode 100755 test/set-fast-dormancy diff --git a/Makefile.am b/Makefile.am index 17797ae..5a541c7 100644 --- a/Makefile.am +++ b/Makefile.am @@

[PATCH 3/6] radio settings: add FastDormancy property

2010-10-26 Thread Mika Liljeberg
--- include/radio-settings.h | 13 + src/radio-settings.c | 114 +++-- 2 files changed, 121 insertions(+), 6 deletions(-) diff --git a/include/radio-settings.h b/include/radio-settings.h index 1b133e9..9a00772 100644 --- a/include/radio-settings.

[PATCH 0/6] Fast dormancy support

2010-10-26 Thread Mika Liljeberg
Hi All, Here's another go at fast dormancy. Br, MikaL [PATCH 1/6] radio settings: fix mode initializion [PATCH 2/6] stemodem: add default case [PATCH 3/6] radio settings: add FastDormancy property [PATCH 4/6] test: add script to control fast dormancy [PATCH 5/6] isimodem: add support fo

[PATCH 2/6] stemodem: add default case

2010-10-26 Thread Mika Liljeberg
--- drivers/stemodem/radio-settings.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/stemodem/radio-settings.c b/drivers/stemodem/radio-settings.c index 5b16ec0..a345975 100644 --- a/drivers/stemodem/radio-settings.c +++ b/drivers/stemodem/radio-settings.c @@ -9

[PATCH 1/6] radio settings: fix mode initializion

2010-10-26 Thread Mika Liljeberg
--- include/radio-settings.h |9 + src/radio-settings.c |2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/include/radio-settings.h b/include/radio-settings.h index d41ec0b..1b133e9 100644 --- a/include/radio-settings.h +++ b/include/radio-settings.h @@ -29,1