Re: [PATCH] Fix Let data device be optional for mbm driver

2010-04-16 Thread Marcel Holtmann
Hi Zhenhua, Dell 5530 modem has no data device port. So data device should be optional in mbm drvier. can you please include the content of /proc/bus/usb/devices for this device and the sysfs descriptions for each TTY port. Regards Marcel ___

RF control, atoms and Powered property

2010-04-16 Thread Pekka Pessi
Hello all, I continue the Powered saga with Nokia N900 phone as an example use case. N900 is a Linux phone running Maemo 5, it has a Nokia modem with ISI interface. When N900 is powered on, it boots the Linux. First thing in user space are the system services, things like system dbus, hal, ohm.

Re: [PATCH 1/2] phonesim: Add a simple USSD UI.

2010-04-16 Thread Denis Kenzior
Hi Andrew, This is not the best UI in the world... --- src/control.cpp | 40 +++- src/control.h |6 ++-- src/controlbase.ui | 70 +++ src/hardwaremanipulator.cpp | 19 ++-

Re: [PATCH 2/2] phonesim: Refactor SimApplication api, add a UI.

2010-04-16 Thread Denis Kenzior
Hi Andrew, Try to move all the AT parsing / generating out of applications, just send ready envelopes, terminal responses, commands between the application and the SimRules class. --- src/control.cpp | 35 +++ src/control.h |1 + src/controlbase.ui

Re: [PATCH 4/8] Add skeleton of src/emulator.c

2010-04-16 Thread Denis Kenzior
Hi Zhenhua, --- Makefile.am|7 +- include/dbus.h |1 + include/emulator.h | 75 +++ src/emulator.c | 203 src/ofono.h | 4 + 5 files changed, 287 insertions(+), 3 deletions(-)

[PATCH 1/2] hdlc: allow for scanning and escaping

2010-04-16 Thread Kristen Carlson Accardi
PPP needs to inspect the packet protocol to see if a character should be escaped. Additionally, it needs to be able to compare against recv and xmit accm. --- gatchat/gathdlc.c | 60 gatchat/gathdlc.h | 12 ++ 2 files changed, 67

[PATCH 2/2] hdlc: handle wrapped buffers

2010-04-16 Thread Kristen Carlson Accardi
--- gatchat/gathdlc.c | 75 1 files changed, 40 insertions(+), 35 deletions(-) diff --git a/gatchat/gathdlc.c b/gatchat/gathdlc.c index c5c02cf..13e15a1 100644 --- a/gatchat/gathdlc.c +++ b/gatchat/gathdlc.c @@ -59,11 +59,12 @@ static void

[PATCH 0/2] hdlc fixes

2010-04-16 Thread Kristen Carlson Accardi
Kristen Carlson Accardi (2): hdlc: allow for scanning and escaping hdlc: handle wrapped buffers gatchat/gathdlc.c | 121 ++-- gatchat/gathdlc.h | 12 + 2 files changed, 100 insertions(+), 33 deletions(-)