[RFC] gatchat: Print error message if opening tun failes

2012-08-21 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de This is a very common misstake. Let's help the users to configure their system correctly. --- gatchat/ppp_net.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gatchat/ppp_net.c b/gatchat/ppp_net.c index 1609b99..7082de7

Re: sierra wireless MC8092

2012-08-21 Thread Lemoine Simon
Hi Denis, Thanks for your answer, I have used at_util_sim_state_query_new() like in plugins/zte.c, and it works, CPIN? responds READY. But when I launch active-context script, I see that I get an IP address but I lost it right after. I have try to understand the code but I don't know why

Re: [RFC] gatchat: Print error message if opening tun failes

2012-08-21 Thread Marcel Holtmann
Hi Daniel, This is a very common misstake. Let's help the users to configure their system correctly. --- gatchat/ppp_net.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gatchat/ppp_net.c b/gatchat/ppp_net.c index 1609b99..7082de7 100644 --- a/gatchat/ppp_net.c

[PATCH] telit: disable auto attach procedures with AUTOATT

2012-08-21 Thread Christopher Vogl
--- plugins/telit.c |7 +++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/plugins/telit.c b/plugins/telit.c index 20ab1df..ec57f01 100644 --- a/plugins/telit.c +++ b/plugins/telit.c @@ -314,6 +314,13 @@ static void cfun_enable_cb(gboolean ok, GAtResult *result, gpointer

how to run ofono together with simulator

2012-08-21 Thread Zhao, Lihan
Hi, I'm focus on Ofono's validating porting. Now I have compiled ofono on my computer under the guide of INSTALL file. and I need to run ofono with simulator so that I can test the cases. Could you please help to solve this problem? Thank you! Best Regards, Lihan

Subject: RFC Migrate from RFC2822 to ISO8601 for time representations

2012-08-21 Thread Olivier Le Thanh Duong
Hi, the format used to represent time in ofono is currently RFC2822 which is complex and a bit deprecated. I think it would be better to move to ISO8601 which is a well used and supported [1] format and simpler to parse. RFC2822 date example: Mon, 05 Oct 2009 19:31:32 +0200 ISO8601 date

Re: [PATCH] Inserted the GSM syntax option in modem.conf.

2012-08-21 Thread Andres Salomon
On Thu, 29 Oct 2009 12:04:23 +0100 Ryan M. Raasch ryan.raasch-re5jqeeqqe8avxtiumw...@public.gmane.org wrote: Hello, Since the modems need to be setup in particular ways, this patch allows for the GSM syntax to be specified by the configuration file. I like this a whole lot better than

[PATCH] Add udev rules for Option GIO431 modem

2012-08-21 Thread Ross Burton
--- plugins/ofono.rules |1 + 1 files changed, 1 insertions(+), 0 deletions(-) -- Intel Open Source Technology Centre http://oss.intel.com/ diff --git a/plugins/ofono.rules b/plugins/ofono.rules index 3db0cf4..4df7683 100644 --- a/plugins/ofono.rules +++ b/plugins/ofono.rules @@ -14,6

Help needed for starting Phonesim

2012-08-21 Thread Bommaraju, Rajyalakshmi
Hi, I am trying to bring up phonesim GUI but not successful to help test ofono plugin, I did the following, and Please let me know if I missed anything. I compiled and installed latest ofono src code , and ran it as sudo ./src/ofonod -n -d plugins/* I have copied ofono.conf to

[PATCH 1/9] Add parser for network measurement results objects

2012-08-21 Thread Yang Gu
--- src/stkutil.c | 26 ++ 1 files changed, 26 insertions(+), 0 deletions(-) diff --git a/src/stkutil.c b/src/stkutil.c index 437dcdb..9a02658 100644 --- a/src/stkutil.c +++ b/src/stkutil.c @@ -619,6 +619,30 @@ static gboolean parse_dataobj_help_request(struct

[PATCH 2/9] Add parser for items next action indicator objects

2012-08-21 Thread Yang Gu
--- src/stkutil.c | 38 ++ src/stkutil.h |5 + 2 files changed, 43 insertions(+), 0 deletions(-) diff --git a/src/stkutil.c b/src/stkutil.c index 9a02658..b997752 100644 --- a/src/stkutil.c +++ b/src/stkutil.c @@ -67,6 +67,34 @@ static gboolean

[PATCH 3/9] Add parser for event list objects

2012-08-21 Thread Yang Gu
--- src/stkutil.c | 10 ++ src/stkutil.h | 24 2 files changed, 34 insertions(+), 0 deletions(-) diff --git a/src/stkutil.c b/src/stkutil.c index b997752..ecd5639 100644 --- a/src/stkutil.c +++ b/src/stkutil.c @@ -679,6 +679,14 @@ static gboolean

[PATCH 4/9] Add parser for cause objects

2012-08-21 Thread Yang Gu
--- src/stkutil.c | 35 +++ 1 files changed, 35 insertions(+), 0 deletions(-) diff --git a/src/stkutil.c b/src/stkutil.c index ecd5639..8f4ff39 100644 --- a/src/stkutil.c +++ b/src/stkutil.c @@ -687,6 +687,39 @@ static gboolean parse_dataobj_event_list(

[PATCH 5/9] Add parser for location status objects

2012-08-21 Thread Yang Gu
--- src/stkutil.c | 30 ++ src/stkutil.h |6 ++ 2 files changed, 36 insertions(+), 0 deletions(-) diff --git a/src/stkutil.c b/src/stkutil.c index 8f4ff39..3aae6bf 100644 --- a/src/stkutil.c +++ b/src/stkutil.c @@ -67,6 +67,26 @@ static gboolean

[PATCH 6/9] Add parser for transaction identifier objects

2012-08-21 Thread Yang Gu
--- src/stkutil.c | 10 ++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/src/stkutil.c b/src/stkutil.c index 3aae6bf..d573430 100644 --- a/src/stkutil.c +++ b/src/stkutil.c @@ -748,6 +748,14 @@ static gboolean parse_dataobj_location_status(

[PATCH 7/9] Add parser for call control requested action objects

2012-08-21 Thread Yang Gu
--- src/stkutil.c | 10 ++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/src/stkutil.c b/src/stkutil.c index d573430..6619bc3 100644 --- a/src/stkutil.c +++ b/src/stkutil.c @@ -756,6 +756,14 @@ static gboolean parse_dataobj_transaction_id(

[PATCH 8/9] Add the macro for icon qualifier

2012-08-21 Thread Yang Gu
--- src/stkutil.h |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/src/stkutil.h b/src/stkutil.h index b85592c..08a5355 100644 --- a/src/stkutil.h +++ b/src/stkutil.h @@ -296,6 +296,11 @@ enum stk_service_state { STK_NO_SERVICE =0x02 }; +enum

[PATCH 9/9] Add parser for item icon identifier list objects

2012-08-21 Thread Yang Gu
--- src/stkutil.c | 31 +++ src/stkutil.h |7 +++ 2 files changed, 38 insertions(+), 0 deletions(-) diff --git a/src/stkutil.c b/src/stkutil.c index 6619bc3..71899b9 100644 --- a/src/stkutil.c +++ b/src/stkutil.c @@ -786,6 +786,35 @@ static gboolean

Re: DUN client for oFono and BlueZ

2012-08-21 Thread Bastien Nocera
On Mon, 2010-04-26 at 22:20 -0300, Gustavo F. Padovan wrote: Hi all, I'm starting the DUN Client implementation for the Linux Stack. DUN is the Bluetooth dial-up network profile. It makes possible share internet connection between two Bluetooth devices. That is my Google Summer of Code

Re: DUN client for oFono and BlueZ

2012-08-21 Thread Bastien Nocera
On Tue, 2010-04-27 at 12:30 -0300, Gustavo F. Padovan wrote: Hi Bastien, * Bastien Nocera had...@hadess.net [2010-04-27 09:15:28 +0100]: On Mon, 2010-04-26 at 22:20 -0300, Gustavo F. Padovan wrote: Hi all, I'm starting the DUN Client implementation for the Linux Stack. DUN is

[PATCH v3 1/1] Add telephony_str_to_error to decode error code

2012-08-21 Thread Zhenhua Zhang
Use to decode a final error string to error code. --- drivers/atmodem/atutil.c |7 ++--- src/common.c | 48 ++ src/common.h |1 + 3 files changed, 52 insertions(+), 4 deletions(-) diff --git a/drivers/atmodem/atutil.c

RE: [RFC] AGPS support

2012-08-21 Thread Joly, Frederic
Thanks, Waldo. I would suggest to add the Radio Access Technology (RAT) indication in the RequestFineTimeInjection . It is possible that after the reception of the Assistance Data message from the network and the request for time injection from the GPS manager that the radio conditions have

Patch for merging voice call history plugin implementation

2012-08-21 Thread rajyalakshmi bommaraju
Hi, I have implemented voice call history plugin using memory mapped file , the implementation tested on meego images right now as an external plugin to ofono. I am submitting the code here so that it works as builtin plugin for ofono in future. Please review the patch and let me know

Re: [PATCH 1/1] Huawei E176: Mark primary and secondary device at ofono.rules TODO: Fix sim_add detection, add E1552 idProduct to ofono.rules

2012-08-21 Thread Florian Steinel
Hi Kalle, 2010/5/31, Kalle Valo kalle.v...@canonical.com: Hi Florian, thank you for the patch. I'm curious, did you test ofono with Huawei E176? Did it work? Did you have any problems? I have testet ofono with Huawei E176, enabled the modem with the enable-modem script and it doesn't

Re: [RFC patches 02/13] sms_send_message: add a short roadmap

2012-08-21 Thread Inaky Perez-Gonzalez
On Fri, 2010-05-28 at 07:11 -0700, Marcel Holtmann wrote: Hi Inaky, From: Inaky Perez-Gonzalez inaky.perez-gonza...@intel.com --- src/sms.c | 13 + 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/src/sms.c b/src/sms.c index 3a1cff0..594481e

Re: [RFC patches 03/13] documentation: add note about referencing standards

2012-08-21 Thread Inaky Perez-Gonzalez
On Fri, 2010-05-28 at 07:13 -0700, Marcel Holtmann wrote: Hi Inaky, From: Inaky Perez-Gonzalez inaky.perez-gonza...@intel.com --- doc/standards.txt |8 1 files changed, 8 insertions(+), 0 deletions(-) create mode 100644 doc/standards.txt diff --git

Re: [RFC patches 06/13] smutil.h: add missing header file dependencies

2012-08-21 Thread Inaky Perez-Gonzalez
On Fri, 2010-05-28 at 07:19 -0700, Marcel Holtmann wrote: Hi Inaky, diff --git a/src/smsutil.h b/src/smsutil.h index 469a49e..356ec5d 100644 --- a/src/smsutil.h +++ b/src/smsutil.h @@ -18,6 +18,14 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA

Re: [RFC patches 05/13] util.h: Add BUILD_BUG_ON() and friends for compile-time assert checking

2012-08-21 Thread Inaky Perez-Gonzalez
On Fri, 2010-05-28 at 07:17 -0700, Marcel Holtmann wrote: Hi Inaky, From: Inaky Perez-Gonzalez inaky.perez-gonza...@intel.com These have been stolen from the Linux kernel source; come pretty handy to make build-time consistency checks and thus avoid run-time surprises. ---

Re: [RFC patches 10/13] doc: explain debugging options to -d, add a pointer in -h to manpage

2012-08-21 Thread Inaky Perez-Gonzalez
On Fri, 2010-05-28 at 07:21 -0700, Marcel Holtmann wrote: Hi Inaky, From: Inaky Perez-Gonzalez inaky.perez-gonza...@intel.com Modified HACKING and man page to have more formation on what are the debugging options and how to enable them. --- HACKING | 10 ++

Re: [RFC patches 04/13] sms_assembly_add_fragment_backup: clarify how insertion spot is found

2012-08-21 Thread Inaky Perez-Gonzalez
On Fri, 2010-05-28 at 07:27 -0700, Denis Kenzior wrote: Hi Inaky, + /* Iterate over the bitmap to find in which position +* should the fragment be inserted -- basically we +* walk each bit in the bitmap until the bit we care +* about

Re: [RFC patches 12/13] SMS: introduce message ID API

2012-08-21 Thread Inaky Perez-Gonzalez
On Fri, 2010-05-28 at 07:27 -0700, Marcel Holtmann wrote: Hi Inaky, +/** + * Create a random UUID + * + * \param msg_id Descriptor + * + * \internal + * + * Crams the msg_id ID buffer with random 32-bit numbers; because we + * use a byte based buffer, we play the cast to

Re: [RFC patches 01/13] Update .gitignore to ignore cscope databases and backup files

2012-08-21 Thread Inaky Perez-Gonzalez
On Fri, 2010-05-28 at 07:29 -0700, Marcel Holtmann wrote: Hi Joao, diff --git a/.gitignore b/.gitignore index 1ce7067..d7e9254 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +*~ believe it or not, I always left that out on purpose. I like having git status

Option (hso) modem and PAP

2012-08-21 Thread Benoit Monin
Hi, I have been trying an Option modem with ofono recently. It took me a while to establish a connection because the APN we're using needs a username and password. Apparently Option swapped the username and password of the AT command AT$QCPDPP. Also, it seems that some other Option modem uses

RE: Modem emulator and DUN server side for oFono and BlueZ

2012-08-21 Thread suraj
Hi Zhenhua, On Wed, 2010-05-05 at 06:27 +0530, Zhang, Zhenhua wrote: Hi Padovan, Gustavo F. Padovan wrote: Hi Zhenhua, * Zhang, Zhenhua zhenhua.zh...@intel.com [2010-04-27 15:53:54 +0800]: Hi, I am now working on modem emulator and one usage is for DUN server role.

[PATCH] Simulation of MT release of call to spcial number

2012-08-21 Thread ext-arun . 1 . ravindran
From: Arun Ravindran ext-arun.1.ravind...@nokia.com --- src/callmanager.cpp | 17 + src/callmanager.h |3 +++ src/default.xml |1 + 3 files changed, 21 insertions(+), 0 deletions(-) diff --git a/src/callmanager.cpp b/src/callmanager.cpp index 5336d27..06f426d

Re: PPP disconnected via Huawei modem

2012-08-21 Thread Фьодор
2010/11/11 Chen Yuwei yuwac...@gmail.com Hi, I use MeeGo NB 10/26 release to browse some website via Huawei modem, The PPP connection is disconnected when recieve a PPP event (RXJ-). Then the PPP can not be connected anymore. Why? What condition does ofono recieve this event? The ofono

RE: [PATCH] doc: Add Location Services API

2012-08-21 Thread Simon LETHBRIDGE
Hi Denis, -Original Message- From: Denis Kenzior [mailto:denk...@gmail.com] Sent: 11 November 2010 21:50 To: ofono@ofono.org Cc: Sjur Brændeland; Simon LETHBRIDGE; Sjur BRENDELAND Subject: Re: [PATCH] doc: Add Location Services API So let me summarize 27.007 briefly. It

[PATCH 2/2] Update the network documentation

2012-08-21 Thread Rémi Denis-Courmont
--- doc/network-api.txt |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/network-api.txt b/doc/network-api.txt index 083e918..9fb9974 100644 --- a/doc/network-api.txt +++ b/doc/network-api.txt @@ -125,8 +125,9 @@ Properties string Mode [readonly]

[PATCH 1/2] Distinguish HSDPA, HSUPA or both as access technologies

2012-08-21 Thread Rémi Denis-Courmont
--- src/common.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common.c b/src/common.c index b5b9a6f..22bf1c2 100644 --- a/src/common.c +++ b/src/common.c @@ -661,9 +661,9 @@ const char *registration_tech_to_string(int tech) case

[PATCH] build: Update glib version in configure.ac

2012-08-21 Thread George Matveev
function g_mkstemp_full in src/storage.c requires glib version 2.22 or higher --- configure.ac |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 6aeab7c..c0f4217 100644 --- a/configure.ac +++ b/configure.ac @@ -67,8 +67,8 @@

[PATCH 1/1] gisi: Updated subscriptions and pipe handling to accomodate additional isimodem versions

2012-08-21 Thread Jessica Nilsson
--- This is needed in order for isimodem2.5 to work. Best Regards, Jessica gisi/common.h |3 + gisi/message.c |8 + gisi/message.h |1 + gisi/modem.c | 105 -- gisi/modem.h |4 + gisi/pipe.c| 433 ++-- 6

[PATCH] build: Update glib version in configure.ac

2012-08-21 Thread George Matveev
function g_mkstemp_full in src/storage.c requires glib version 2.22 or higher --- configure.ac |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 6aeab7c..c0f4217 100644 --- a/configure.ac +++ b/configure.ac @@ -67,8 +67,8 @@

Re: Fwd: [PATCH 01/18] gisi: pipe and pep for wgmodem2.5

2012-08-21 Thread Kumar SANGHVI
Hi, As far as I can tell, implementing connect() on PEP sockets would be much more elegant (and symmetric). Sorry, I am not aware of the oFono. However, I was just wondering that enabling Pipe Controller in Phonet stack should suffice. Pipe controller in Phonet stack already implements

how to statically register a modem

2012-08-21 Thread Ostermann, Christophe
Hi, I work on a mobile platform with a motorola h24 modem (access through serial rs232 or usb) and I try to setup/configure ofono to use atmodem driver. I have compiled ofono with -disable-udev option. I now want to register my modem but it seems that usage of modem.conf is obsolete. Can smby

Motorola moem h24 update

2012-08-21 Thread Ostermann, Christophe
Hi, I ve send a message yesterday regarding Motorola modem H24 and static config. Today I ve achieved to create a plugin for this modem and make it recognized by udev. I also succeed to perform a voice call :-) Now I want to set up a gprs connection, but it s quite hard to understand how

Ofono crash when sendin SMS's

2012-08-21 Thread Ari.Laukkanen
Hi, I am testing ofono with N900 modem and python scripts sending big sms messages approx 20-30 pieces (size 500-1500 characters). SMSC setting is not valid i.e. sms sending will fail. I get quit often crash in tx_next() function in sms.c. See backtrace. #0 0x0047d95e in tx_next ()

Re: [PATCH v2 3/8] emulator: add RING for HFP AG

2012-08-21 Thread Frederic Danis
Hello Denis, Le 11/04/2011 17:51, Denis Kenzior a écrit : Hi Frédéric, On 04/07/2011 11:33 AM, Frédéric Danis wrote: --- src/emulator.c | 86 +++ 1 files changed, 73 insertions(+), 13 deletions(-) diff --git a/src/emulator.c

Re: [VPATH PATCH 2/2] Fix $(INCLUDE) in Makefile.am

2012-08-21 Thread Pekka Pessi
Hi Marcel, On Tue, 2011-08-30 at 11:39 -0700, ext Marcel Holtmann wrote: what problem is this patch fixing? The problem was that things like #include gisi/iter.h did not work with VPATH. --Pekka ___ ofono mailing list ofono@ofono.org

Anyone want to upstraem N950 patches from MeeGo/Mer?

2012-08-21 Thread Marko Saukko
Hi, there are some Nokia N950 related ofono patches that never made to the upstream. I wonder if there is anyone that would be interested of fixing and upstreaming these? The patches seem to apply with minor modification on top of 1.0 tree, but I'm not sure if changes are needed or not.

I need ofofo can compiler in vs2005.

2012-08-21 Thread YP W
How does it works in vs2005? Do you have any plan about cross compiler for Windows ? Thanks macchiiatoo ___ ofono mailing list ofono@ofono.org http://lists.ofono.org/listinfo/ofono

About Ofono Sierra Driver

2012-08-21 Thread Tengchou Yang
Dear All: I am a new user of ofono library. Here is the problem I got. Hope that you guys can help me out. First of all, I have a modem which is from sierra wireless MC5728V. this is such an AT command base device. What I did is add the sierra command under /etc/udev/rules.d/ofono.rules +29

[Announce] Net::Radio::oFono released

2012-08-21 Thread Jens Rehsack
Hi, I just want to announce Net::Radio::oFono, a Perl module to access running ofonod from Perl without external help. It can be found on http://search.cpan.org/dist/Net-Radio-oFono/ or https://metacpan.org/release/Net-Radio-oFono/. Best regards, Jens

Re: [RFC] gatchat: Print error message if opening tun failes

2012-08-21 Thread Daniel Wagner
Hi Marcel, On 21.08.2012 15:00, Marcel Holtmann wrote: This is a very common misstake. Let's help the users to configure their system correctly. --- gatchat/ppp_net.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gatchat/ppp_net.c b/gatchat/ppp_net.c index

Re: [RFC patches 06/13] smutil.h: add missing header file dependencies

2012-08-21 Thread Inaky Perez-Gonzalez
On Fri, 2010-05-28 at 07:31 -0700, Denis Kenzior wrote: Hi Inaky, +#include glib/gtypes.h +#include glib/gslist.h +#include glib/gmessages.h +#include glib/gchecksum.h Isn't it sufficient to just add glib/glib.h here? You can definitely do that, but it also increases the

Re: [RFC patches 02/13] sms_send_message: add a short roadmap

2012-08-21 Thread Inaky Perez-Gonzalez
On Fri, 2010-05-28 at 07:34 -0700, Denis Kenzior wrote: Hi Inaky, From: Inaky Perez-Gonzalez inaky.perez-gonza...@intel.com --- src/sms.c | 13 + 1 files changed, 13 insertions(+), 0 deletions(-) Applied with s/D-BUS/D-Bus Thank you for applying, but please

Re: [RFC patches 07/13] write_file: make transaction-safe

2012-08-21 Thread Inaky Perez-Gonzalez
On Fri, 2010-05-28 at 07:43 -0700, Denis Kenzior wrote: Hi Inaky, From: Inaky Perez-Gonzalez inaky.perez-gonza...@intel.com write_file(), as written wasn't transaction-safe; a crash bewtween a file being open and the buffer being written before a safe close would leave the file with

Re: [RFC patches 08/13] storage: add __attribute__((format)) to {write, read}_file() for printf-like variable arg verification

2012-08-21 Thread Inaky Perez-Gonzalez
On Fri, 2010-05-28 at 07:45 -0700, Denis Kenzior wrote: Hi Inaky, From: Inaky Perez-Gonzalez inaky.perez-gonza...@intel.com --- src/storage.h |6 -- 1 files changed, 4 insertions(+), 2 deletions(-) Patch has been applied with a modified commit message. Thanks.

Re: [RFC patches 09/13] Add function doc headers to ofono_sms_{create, register}

2012-08-21 Thread Inaky Perez-Gonzalez
On Fri, 2010-05-28 at 07:47 -0700, Denis Kenzior wrote: Hi Inaky, From: Inaky Perez-Gonzalez inaky.perez-gonza...@intel.com Signed-off-by: Inaky Perez-Gonzalez inaky.perez-gonza...@intel.com We don't use signed off lines here, please don't include them in the future. Grr, sorry, my

Set username and password with create-context

2012-08-21 Thread Benoit Monin
Add the possibility to set the username and the password with create-context, in complement of the APN. Signed-off-by: Benoît Monin --- test/create-context | 28 +++- 1 files changed, 23 insertions(+), 5 deletions(-) diff --git a/test/create-context

hso : swap username and password for PAP

2012-08-21 Thread Benoit Monin
The parameters for the AT command AT$QCPDPP must be swapped for PAP in order to make it work with an Option modem. Tested with a GTM382 development kit. No idea about CHAP parameters, left unchanged. Signed-off-by: Benoît Monin --- drivers/hsomodem/gprs-context.c | 2 +- 1 files changed, 1

Huawei EM700 SIM card recognition

2012-08-21 Thread Florian Mayer
Hello, we currently test a Huawei EM770W modem in a customer application together with ofono and connman. Dialup works fine so far with the 2.6.35~rc5 kernel from Meego 1.1 developement trunk. With kernel 2.6.33.3 from Meego 1.0 we had the problem that the communication got stuck from time

Bug?: modem.conf only read if atmodem support enabled

2012-08-21 Thread Luke-Jr
Is there a good reason why oFono cannot be configured without atmodem support? ___ ofono mailing list ofono@ofono.org http://lists.ofono.org/listinfo/ofono

Naming GPRS network devices

2012-08-21 Thread Luke-Jr
Trying to write some networking scripts to start a GPRS connection on Gentoo, but it really needs to be able to specify the interface name... any ideas on how to get that? Thanks, Luke ___ ofono mailing list ofono@ofono.org

[PATCH] add 3GPP2 relative specifications

2012-08-21 Thread caiwen.zhang
--- doc/standards.txt | 85 + 1 files changed, 85 insertions(+), 0 deletions(-) diff --git a/doc/standards.txt b/doc/standards.txt index a7eaa5e..1b8c23f 100644 --- a/doc/standards.txt +++ b/doc/standards.txt @@ -81,3 +81,88 @@ technology

[PATCH 1/2] add CDMA radio setting support

2012-08-21 Thread caiwen.zhang
--- include/radio-settings.h |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/include/radio-settings.h b/include/radio-settings.h index d41ec0b..1391271 100644 --- a/include/radio-settings.h +++ b/include/radio-settings.h @@ -33,6 +33,10 @@ enum ofono_radio_access_mode

[PATCH 2/2] add CDMA radio setting support

2012-08-21 Thread caiwen.zhang
--- src/radio-settings.c | 12 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/src/radio-settings.c b/src/radio-settings.c index f70d870..4952eac 100644 --- a/src/radio-settings.c +++ b/src/radio-settings.c @@ -58,6 +58,12 @@ static const char

[PATCH] update sim api

2012-08-21 Thread caiwen.zhang
From: cwzhang cwzhang@cwzhang-laptop.(none) --- doc/sim-api.txt | 80 --- 1 files changed, 35 insertions(+), 45 deletions(-) mode change 100644 = 100755 doc/sim-api.txt diff --git a/doc/sim-api.txt b/doc/sim-api.txt old mode 100644 new mode

sms class or sms coding

2012-08-21 Thread temp oraire
Hello, I would like to know if data coding scheme for sms or sms classes( 0, 1) will be display in the received sms details given by SmsManager Inteface later. Currently I'm working on several tests on a meego platform and I would like to check several information on recieved sms. Also I

PPP disconnet with Huawei modem

2012-08-21 Thread Chen Yuwei
Hi, I use MeeGo NB 10/26 release to browse some website via Huawei modem, The PPP connection is disconnected when recieve a PPP event (RXJ-). Then the PPP can not be connected anymore. Why? What condition does ofono recieve this event? The ofono also recieved udev event remove and removed the

modem_conf__Phonesim

2012-08-21 Thread Radoslaw Bilewicz
Hi, I am writing, because I found in software version history, that from commit “7c2529077cb885d8fb4c50b6696c53c2b4e5d20b (Release 0.34) Modem.conf should not be used to configure ofono with phonesim(“phonesim: Don't use modem.conf for phonesim modems) I want to configure ofono(release

DUN Client Support

2012-08-21 Thread Claudio Degioanni
Hi all, I have a question about ofono current release. It supports the DUN profile passing throw bluez dbus ? thank you Claudio ___ ofono mailing list ofono@ofono.org http://lists.ofono.org/listinfo/ofono

Using the N900 modem via USB

2012-08-21 Thread Michael 'Mickey' Lauer
Hello, we're trying to develop a 3rd party software that runs on the N900 and talks to the modem. To make developing more efficient, we try to forward the modem via USB and develop on a PC. For some reason we can't seem to get the phonet0 - upnlink0 forwarding to work. tcpdump shows our request

Re: SAT support in oFono

2012-08-21 Thread Philippe Nunes
On 01/24/2011 11:49 AM, Marcel Holtmann wrote: Hi Lasse, I am checking what is the level of SAT/STK support in ofono and have a couple of questions. The current implementation contains support for basic STK commands, like menus, inputs, calls, sms and so on. In TODO, there is only REFRESH

Re: [PATCH net-next 0/6] Phonet: small pipe protocol fixes

2012-08-21 Thread David Miller
From: Rémi Denis-Courmont remi.denis-courm...@nokia.com Date: Fri, 25 Feb 2011 11:13:41 +0200 This patch series cleans up and fixes a number of small bits in the Phonet pipe code, especially the experimental pipe controller. Once this small bits are sorted out, I will try to fix the controller

Re: [PATCH net-next 0/6] Phonet: small pipe protocol fixes

2012-08-21 Thread David Miller
From: David Miller da...@davemloft.net Date: Fri, 25 Feb 2011 11:20:55 -0800 (PST) From: Rémi Denis-Courmont remi.denis-courm...@nokia.com Date: Fri, 25 Feb 2011 11:13:41 +0200 This patch series cleans up and fixes a number of small bits in the Phonet pipe code, especially the experimental

re: AT+CBKLT COMAMND

2012-08-21 Thread america 999
HI , How to use the AT+CBKLT command ? i..e to enable or disable the backlight of the device ? I need to know the exact syntax to enable or disable backlight ? The syntax i have tried for is AT+CBKLT RESPONSE : ERROR AT+CBKLT? RESPOSNE : ERROR AT+CBKLT=? RESPONSE : ERROR Please do

Queries related to oFono

2012-08-21 Thread Ankur chauhan
Dear All Greetings!   I am new to oFono, however I have a few basic queries.   1)  [oFono]:  Does this framework supports the 3GPP release 9 features.    2)  [oFono]:  In Multimode case (2G+3G+LTE) PS session continuation support, i.e. during PS call UE latches to some

Add BodySar functions for Huawei modem

2012-08-21 Thread Elton_Chen
Hi, I add bodysar functions and SW_FRONT_PROXIMITY swtich event handler for Huawei modem. Add new 2 interfaces and 1 property in Radio_Settings for bodysar : Property : BodySar : show the status of BodySar (Enable/Disable ) Interface : SetBODYSARGSM : Set the maximum GSM RF

Debug log

2012-08-21 Thread rajeshkumar s.a
PFA, the debug log I am getting a timeout error when I do a ./enable-modem on Huawei datacard (EC168C) Regards, Rajesh debug_log Description: Binary data ___ ofono mailing list ofono@ofono.org http://lists.ofono.org/listinfo/ofono

VS: [Meego-handset] ofono-qt - anything to add/improve?

2012-08-21 Thread Härkönen Timo
Hi This is from N900 Community Edition: [root@localhost ~]# rpm -q --whatrequires libofono-qt meegotouchcp-cellular-0.0.1-1.3.DE.armv7hl meegotouchcp-gprs-0.17.4-12.2.DE.armv7hl meego-pinquery-0.0.2-1.1.DE.armv7hl meego-ux-settings-0.4.0-1.33.armv7hl -Timo ps. Sorry for top posting. using

RE: [Meego-handset] ofono-qt - anything to add/improve?

2012-08-21 Thread jukka.eklund
Right, so CE specifically has added those 3 first packages (cellular PIN query, and settings). Those are available for upstream also, but probably not accepted for a reason or other. The last one is the new (Tablet) Settings application that is in MeeGo 1.2. Alex, you could at least get in

RE: Incoming patch HS2330 detection, plugins/udev.c

2012-08-21 Thread Nicolas Paccou
Hi Michael, I'm Nicolas Paccou, I'm in charge of validating the changes applied in new oFono release. Unfortunately, I have not the hardware to be able to regress your patch. I wanted to know if you have tested your patch on HS2330 modem ? If yes, can you tell me if the result is ok ? If not, do

Ericsson 5512fg Modem is not responding when trying to enable it using ofono enable-modem test utility, oFono times out to response.

2012-08-21 Thread Singh, Manjeet
Hi We have a problem to work with Ericsson f5521gw WWAN device with oFono telephony stack that we are using in Fedora15 Kernel version 2.6.38. oFono version 0.49(latest) which supports f5521gw. The problem is following: Ericsson f5521gw WWAN device that we have has HP Vendor ID (0x03f0)and

[RFC PATCHv2 1/4] Automatic provisioning of GPRS context settings

2012-08-21 Thread manju krishna
Hello, This is Manju Krishna working for mPortal.I was going through your internet uploads regarding the GPRS provisioning. I would like to have complete code snippnet for activation of GPRS.This particular information will be great help to me in project. Regards, Manju Krishna

Re: Optical Module Transceiver/ SFP SFP+ XFP X2 /Manufacturer

2012-08-21 Thread noah
Dear friends, This is Noah Wang from Shenzhen FTTX Technology Co.,Ltd. I am writing in the hope of making friends and establishing a long-term business relationship with you. Products we design and supply are as below,(E-catalog can be offered as you wish) 1. Compatible Optical Modules

Re: [Gta04-owner] Polling CLCC error handling on Option modem (GTA04)

2012-08-21 Thread Matthias Apitz
El día Wednesday, March 07, 2012 a las 11:36:24AM +0100, Radek Polak escribió: On Monday 05 March 2012 20:26:29 Denis Kenzior wrote: You can always try ignoring CME ERROR 100 and re-try the CLCC poll. Maybe the modem is in a transitional period (e.g. call being released) and it can't

Re: ofono-tests internet context: DNS works, ping wget and ssh do not (Connection Refused)

2012-08-21 Thread Denis Kenzior
Hi Darren, On 05/09/2012 05:46 PM, Darren Hart wrote: I have successfully used ofono-tests to enable,online,activate,and create-internet-context. I have an IP address and added the opendns servers. DNS appears to be working and the route looks sane-ish. Please keep in mind that oFono is

Re: [HEADS UP] vim users

2012-08-21 Thread Gustavo Sverzut Barbieri
On Tue, May 22, 2012 at 12:38 PM, Lucas De Marchi lucas.demar...@profusion.mobi wrote: Hey, As I sent previously to BlueZ mailing list, the patches for d-bus introspection exposes a bug in vim c syntax highlight. There's already a fix for that:

[PATCH] Adding some test scripts to fetch properties dictionaries from ofono

2012-08-21 Thread rehsack
From: Jens Rehsack s...@netbsd.org --- test/nw-properties| 43 +++ test/radio-properties | 40 test/sim-properties | 40 3 Dateien geändert, 123 Zeilen

Re: [PATCH] stk: Make sure to reset respond_on_exit.

2012-08-21 Thread Hicham Bencherif
hicham1...@gmail.com Envoyé de mon iPhone ___ ofono mailing list ofono@ofono.org http://lists.ofono.org/listinfo/ofono

Re: [RFC] gatchat: Print error message if opening tun failes

2012-08-21 Thread Denis Kenzior
Hi Daniel, On 08/21/2012 10:09 AM, Daniel Wagner wrote: Hi Marcel, [sorry, a resend, ofono doesn't like non subscriber to post] On 21.08.2012 15:00, Marcel Holtmann wrote: This is a very common misstake. Let's help the users to configure their system correctly. --- gatchat/ppp_net.c | 6

Re: [PATCH] telit: disable auto attach procedures with AUTOATT

2012-08-21 Thread Denis Kenzior
Hi Christopher, On 08/21/2012 10:06 AM, Christopher Vogl wrote: --- plugins/telit.c |7 +++ 1 files changed, 7 insertions(+), 0 deletions(-) Patch has been applied, thanks. Regards, -Denis ___ ofono mailing list ofono@ofono.org

Re: [RFC] HFP support into oFono and BlueZ

2012-08-21 Thread Lucas De Marchi
Hi Zhao, On Thu, Jan 21, 2010 at 5:54 AM, Zhao Forrest forrest.z...@gmail.com wrote: Your patch removes many DBus APIs provided by audio/gateway.c, which was originally designed to provide a set of DBus functions/signals for ease of application development. In other words, your patch is too

[PATCH] Add SMS initialize retry

2012-08-21 Thread caiwen . zhang
From: Caiwen Zhang caiwen.zh...@intel.com Before SMS fuction is useable, it will do some initialization. Following AT command will be sent: AT+CSMS=? AT+CSMS=xx AT+CSMS? AT+CMGF=? AT+CPMS=? * AT+CMGF=xx * AT+CPMS=xx AT+CNMI=? AT+CNMI=xx It is possible that the modem will return