Re: [PATCHv2 0/2] mmsd: new tasks definition

2012-06-25 Thread Marcel Holtmann
Hi Ronald, These patches concern mmsd and update documentation to describe new functionalities to add to mmsd. Ronald Tessier (2): doc: Describe delivered group in storage doc doc: Add new D-Bus methods to service interface both patches have been applied. Regards Marcel

Re: [PATCH 2/6] doc: Modify SendMessage D-Bus API

2012-06-25 Thread Marcel Holtmann
Hi Ronald, doc/service-api.txt |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/doc/service-api.txt b/doc/service-api.txt index 36e1161..57e8942 100644 --- a/doc/service-api.txt +++ b/doc/service-api.txt @@ -36,7 +36,8 @@ Methods array{object,dict}

Re: [PATCH 4/6] mmsutil: Encode delivery-report in send_req msg

2012-06-25 Thread Marcel Holtmann
Hi Ronald, src/mmsutil.c |9 - src/mmsutil.h |5 + 2 files changed, 13 insertions(+), 1 deletions(-) patch has been applied. Regards Marcel ___ ofono mailing list ofono@ofono.org http://lists.ofono.org/listinfo/ofono

Re: [PATCH 5/6] unit: Add delivery_report to send_req testing

2012-06-25 Thread Marcel Holtmann
Hi Ronald, unit/test-mmsutil.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) patch has been applied. Regards Marcel ___ ofono mailing list ofono@ofono.org http://lists.ofono.org/listinfo/ofono

Re: GPRS re-connect problem

2012-06-25 Thread August Mayer
Hello Denis, Wow, that was it exactly! After initialising with ATC0, the serial data connection isn't closed anymore. Never thought that the close would originate from the modem! Many thanks for your help greetings August Am 2012-06-19 10:30, schrieb Denis Kenzior: Hi August, On

[PATCH] bluetooth: ignore error if driver returns -EALREADY

2012-06-25 Thread Luiz Augusto von Dentz
From: Luiz Augusto von Dentz luiz.von.de...@intel.com --- plugins/bluetooth.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/bluetooth.c b/plugins/bluetooth.c index dbf79eb..cb5fe24 100644 --- a/plugins/bluetooth.c +++ b/plugins/bluetooth.c @@ -275,7 +275,7 @@

SUPL Tests based on oFono

2012-06-25 Thread Jens Rehsack
Hi, first snapshots of the planned SUPL tests has been uploaded to http://repo.or.cz/: - http://repo.or.cz/w/Net-Radio-Location-SUPL-Test.git - http://repo.or.cz/w/Net-Radio-Modem.git - http://repo.or.cz/w/Net-Radio-oFono.git - http://repo.or.cz/w/Net-Radio-Modem-Adapter-oFono.git I set up my

[PATCH 1/2] emulator: Test already done in g_at_server_resume()

2012-06-25 Thread Guillaume Zajac
--- src/emulator.c |3 --- 1 files changed, 0 insertions(+), 3 deletions(-) diff --git a/src/emulator.c b/src/emulator.c index e7c7d41..c3165eb 100644 --- a/src/emulator.c +++ b/src/emulator.c @@ -100,9 +100,6 @@ static void cleanup_ppp(struct ofono_emulator *em)

[PATCH 2/2] emulator: Fix crash when dundee is disconnecting

2012-06-25 Thread Guillaume Zajac
Dundee is not waiting to receive the NO CARRIER notification to close the IO channel with oFono so that oFono is trying to send a NO CARRIER although GAtServer is removed. --- src/emulator.c |9 - 1 files changed, 8 insertions(+), 1 deletions(-) diff --git a/src/emulator.c

[PATCH 1/7] control: Fix empty sender checking

2012-06-25 Thread Philippe Nunes
--- src/control.cpp |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/control.cpp b/src/control.cpp index ee1e7d8..27910c2 100644 --- a/src/control.cpp +++ b/src/control.cpp @@ -339,7 +339,7 @@ void ControlWidget::sendCBM() void ControlWidget::sendSMSMessage() { -

[PATCH 0/7] phonesim: Add UCS2 encoding support for CBS/USSD

2012-06-25 Thread Philippe Nunes
phonesim is extended to support UCS2 encoding regarding CBS/USSD messages: - for CBS, a scheme combobox is now available for user selection. - for USSD, the best scheme is used based on the content of the USSD text string. phonesim is also able now to split the CBS text (according the chosen

[PATCH 3/7] qcbsmessage: Extend QCBSMessage class

2012-06-25 Thread Philippe Nunes
--- src/qcbsmessage.cpp | 140 ++- src/qcbsmessage.h |7 +++ 2 files changed, 146 insertions(+), 1 deletion(-) diff --git a/src/qcbsmessage.cpp b/src/qcbsmessage.cpp index fc17ae0..eb360bc 100644 --- a/src/qcbsmessage.cpp +++

[PATCH 2/7] controbase: Add combobox for CBS scheme selection

2012-06-25 Thread Philippe Nunes
--- src/controlbase.ui | 36 1 file changed, 20 insertions(+), 16 deletions(-) diff --git a/src/controlbase.ui b/src/controlbase.ui index ce675d2..b1a9ff1 100644 --- a/src/controlbase.ui +++ b/src/controlbase.ui @@ -531,7 +531,7 @@

[PATCH 4/7] hardwaremanipulator: Add UCS2 encoding support for CBS message

2012-06-25 Thread Philippe Nunes
--- src/control.cpp |6 ++ src/hardwaremanipulator.cpp | 28 +++- src/hardwaremanipulator.h |6 -- 3 files changed, 21 insertions(+), 19 deletions(-) diff --git a/src/control.cpp b/src/control.cpp index 27910c2..89dd294 100644 ---

[PATCH 6/7] sms: Extend CBS message formating to use UCS2 scheme

2012-06-25 Thread Philippe Nunes
--- src/qsmsmessage.cpp | 119 +++ 1 file changed, 111 insertions(+), 8 deletions(-) diff --git a/src/qsmsmessage.cpp b/src/qsmsmessage.cpp index 1e2a317..c2eeb29 100644 --- a/src/qsmsmessage.cpp +++ b/src/qsmsmessage.cpp @@ -20,6 +20,7 @@

[PATCH 5/7] hardwaremanipulator: Add multi-page support for CBS message

2012-06-25 Thread Philippe Nunes
--- src/hardwaremanipulator.cpp | 35 +-- 1 file changed, 33 insertions(+), 2 deletions(-) diff --git a/src/hardwaremanipulator.cpp b/src/hardwaremanipulator.cpp index c19b507..b746229 100644 --- a/src/hardwaremanipulator.cpp +++ b/src/hardwaremanipulator.cpp @@

[PATCH 7/7] hardwaremanipulator: Add USC2 encoding support for USSD.

2012-06-25 Thread Philippe Nunes
--- src/hardwaremanipulator.cpp | 31 +++ 1 file changed, 27 insertions(+), 4 deletions(-) diff --git a/src/hardwaremanipulator.cpp b/src/hardwaremanipulator.cpp index b746229..056480c 100644 --- a/src/hardwaremanipulator.cpp +++ b/src/hardwaremanipulator.cpp @@

Re: [PATCH 2/2] emulator: Fix crash when dundee is disconnecting

2012-06-25 Thread Denis Kenzior
Hi Guillaume, On 06/25/2012 09:19 AM, Guillaume Zajac wrote: Dundee is not waiting to receive the NO CARRIER notification to close the IO channel with oFono so that oFono is trying to send a NO CARRIER although GAtServer is removed. --- src/emulator.c |9 - 1 files changed, 8

Re: [PATCH] bluetooth: ignore error if driver returns -EALREADY

2012-06-25 Thread Denis Kenzior
Hi Luiz, On 06/25/2012 03:54 AM, Luiz Augusto von Dentz wrote: From: Luiz Augusto von Dentzluiz.von.de...@intel.com --- plugins/bluetooth.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Patch has been applied, thanks. Regards, -Denis

Re: [PATCH 2/7] controbase: Add combobox for CBS scheme selection

2012-06-25 Thread Denis Kenzior
Hi Philippe, +item row=0 column=3 +widget class=QComboBox name=cbScheme +property name=currentIndex +number0/number +/property +item +property name=text +stringDefault GSM/string +/property +/item +item +property name=text +stringUCS2/string +/property +/item +/widget +/item Since you're

Re: [PATCH 5/7] hardwaremanipulator: Add multi-page support for CBS message

2012-06-25 Thread Denis Kenzior
Hi Philippe, On 06/25/2012 09:38 AM, Philippe Nunes wrote: --- src/hardwaremanipulator.cpp | 35 +-- 1 file changed, 33 insertions(+), 2 deletions(-) diff --git a/src/hardwaremanipulator.cpp b/src/hardwaremanipulator.cpp index c19b507..b746229 100644 ---

Unable to decode PDU for SMS-STATUS-REPORT

2012-06-25 Thread Audric Schiltknecht
Hi guys. I'm having troubles with delivery reports. When I send a message with the property UseDeliveryReports set to true, I can get the delivery report from the GSM modem, but ofono is unable to decode it: ofonod[677]: SMS: \r\n+CDS:

Re: [PATCH 1/7] control: Fix empty sender checking

2012-06-25 Thread Denis Kenzior
Hi Philippe, On 06/25/2012 09:37 AM, Philippe Nunes wrote: --- src/control.cpp |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Patch has been applied, thanks. Regards, -Denis ___ ofono mailing list ofono@ofono.org

Re: Unable to decode PDU for SMS-STATUS-REPORT

2012-06-25 Thread Audric Schiltknecht
On Mon, 25 Jun 2012 18:10:36 +0200, Audric Schiltknecht wrote: Hi guys. I'm having troubles with delivery reports. When I send a message with the property UseDeliveryReports set to true, I can get the delivery report from the GSM modem, but ofono is unable to decode it: ofonod[677]: SMS:

Re: Unable to decode PDU for SMS-STATUS-REPORT

2012-06-25 Thread Denis Kenzior
Hi Audric, On 06/25/2012 11:10 AM, Audric Schiltknecht wrote: Hi guys. I'm having troubles with delivery reports. When I send a message with the property UseDeliveryReports set to true, I can get the delivery report from the GSM modem, but ofono is unable to decode it: ofonod[677]: SMS:

Re: [PATCH 7/7] hardwaremanipulator: Add USC2 encoding support for USSD.

2012-06-25 Thread Denis Kenzior
Hi Philippe, On 06/25/2012 09:38 AM, Philippe Nunes wrote: --- src/hardwaremanipulator.cpp | 31 +++ 1 file changed, 27 insertions(+), 4 deletions(-) Patch has been applied, thanks. Regards, -Denis ___ ofono

Re: [PATCH 3/7] qcbsmessage: Extend QCBSMessage class

2012-06-25 Thread Denis Kenzior
Hi Philippe, On 06/25/2012 09:37 AM, Philippe Nunes wrote: --- src/qcbsmessage.cpp | 140 ++- src/qcbsmessage.h |7 +++ 2 files changed, 146 insertions(+), 1 deletion(-) Patch has been applied. I added a tiny follow on commit to fix