[PATCH v5 16/16] dundee: Add Bluetooth DUN driver

2012-01-04 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- Makefile.am|6 +- dundee/bluetooth.c | 290 dundee/dundee.h|4 + dundee/main.c |2 + 4 files changed, 299 insertions(+), 3 deletions(-) create mode 100644 dundee

[RFC v4 01/16] bluetooth: Add Serial interface definition

2011-12-20 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- plugins/bluetooth.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/plugins/bluetooth.h b/plugins/bluetooth.h index daa1873..4fc16ad 100644 --- a/plugins/bluetooth.h +++ b/plugins/bluetooth.h @@ -27,6 +27,7 @@ #define

[RFC v4 00/16] Add DUN support

2011-12-20 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de Hi, and another update. I have changed the series according the comments from Denis. - Renamed this project dundee - Reordering of the patches (doc and test scripts) - Move chat/ppp code into device.c - Change layering order: Add driver

[RFC v4 02/16] dundee: Add documentation

2011-12-20 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- doc/dundee-api.txt | 76 1 files changed, 76 insertions(+), 0 deletions(-) create mode 100644 doc/dundee-api.txt diff --git a/doc/dundee-api.txt b/doc/dundee-api.txt new file mode 100644

[RFC v4 03/16] dundee: Add test scripts

2011-12-20 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- test/dundee-connect| 20 + test/dundee-disconnect | 20 + test/monitor-dundee| 109 3 files changed, 149 insertions(+), 0 deletions(-) create mode 100755 test/dundee

[RFC v4 04/16] dundee: Add skeleton implementation

2011-12-20 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- Makefile.am | 12 +++ bootstrap-configure |1 + configure.ac|4 + dundee/dundee.h | 46 + dundee/main.c | 255 +++ 5 files changed, 318 insertions

[RFC v4 05/16] dundee: Add D-Bus error messages

2011-12-20 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- Makefile.am |2 +- dundee/dbus.c | 45 + dundee/dundee.h |3 +++ 3 files changed, 49 insertions(+), 1 deletions(-) create mode 100644 dundee/dbus.c diff --git a/Makefile.am b

[RFC v4 06/16] dundee: Add D-Bus configuration file

2011-12-20 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- Makefile.am|6 ++ dundee/dundee.conf | 23 +++ 2 files changed, 29 insertions(+), 0 deletions(-) create mode 100644 dundee/dundee.conf diff --git a/Makefile.am b/Makefile.am index baf9aca..1b25daa 100644

[RFC v4 08/16] dundee: Add Manager interface

2011-12-20 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- Makefile.am |2 +- dundee/dundee.h |6 +++ dundee/main.c|9 ++--- dundee/manager.c | 97 ++ 4 files changed, 107 insertions(+), 7 deletions(-) create mode 100644 dundee

[RFC v4 07/16] dundee: Add systemd configuration file

2011-12-20 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- Makefile.am |6 ++ dundee/dundee.service | 11 +++ 2 files changed, 17 insertions(+), 0 deletions(-) create mode 100644 dundee/dundee.service diff --git a/Makefile.am b/Makefile.am index 1b25daa..ea9733c 100644

[RFC v4 09/16] dundee: Add skeleton implementation for device

2011-12-20 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- Makefile.am |3 +- dundee/device.c | 100 +++ dundee/dundee.h | 15 dundee/main.c |4 ++- 4 files changed, 120 insertions(+), 2 deletions(-) create mode 100644 dundee

[RFC v4 10/16] dundee: Manager append devices

2011-12-20 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- dundee/manager.c | 22 ++ 1 files changed, 22 insertions(+), 0 deletions(-) diff --git a/dundee/manager.c b/dundee/manager.c index 45f168e..628ca3a 100644 --- a/dundee/manager.c +++ b/dundee/manager.c @@ -30,6 +30,26

[RFC v4 11/16] dundee: Add callback helpers

2011-12-20 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- dundee/dundee.h | 44 1 files changed, 44 insertions(+), 0 deletions(-) diff --git a/dundee/dundee.h b/dundee/dundee.h index 2ce4270..660c245 100644 --- a/dundee/dundee.h +++ b/dundee/dundee.h

[RFC v4 12/16] dundee: Add device un/register

2011-12-20 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- dundee/device.c | 69 ++- dundee/dundee.h | 21 2 files changed, 89 insertions(+), 1 deletions(-) diff --git a/dundee/device.c b/dundee/device.c index 7ccf669..c5ea6c7

[RFC v4 13/16] dundee: Add driver helper functions

2011-12-20 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- dundee/device.c | 18 ++ dundee/dundee.h |5 + 2 files changed, 23 insertions(+), 0 deletions(-) diff --git a/dundee/device.c b/dundee/device.c index c5ea6c7..d44ef1d 100644 --- a/dundee/device.c +++ b/dundee/device.c

[RFC v4 14/16] dundee: Add device D-Bus interface

2011-12-20 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- dundee/device.c | 221 +++ dundee/dundee.h |1 + 2 files changed, 222 insertions(+), 0 deletions(-) diff --git a/dundee/device.c b/dundee/device.c index d44ef1d..696c9e2 100644

[RFC v4 15/16] dundee: Add PPP handling code to device

2011-12-20 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- Makefile.am |2 +- dundee/device.c | 241 ++- 2 files changed, 240 insertions(+), 3 deletions(-) diff --git a/Makefile.am b/Makefile.am index 015f2d5..817fdc0 100644 --- a/Makefile.am

[RFC v4 16/16] dundee: Add Bluetooth DUN driver

2011-12-20 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- Makefile.am|6 +- dundee/bluetooth.c | 347 dundee/dundee.h|4 + dundee/main.c |2 + 4 files changed, 356 insertions(+), 3 deletions(-) create mode 100644 dundee

[RFC v3 01/16] elect: Add skeleton implementation

2011-12-13 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- Makefile.am | 12 +++ bootstrap-configure |1 + configure.ac|4 + elect/elect.h | 46 + elect/main.c| 255 +++ 5 files changed, 318 insertions

[RFC v3 00/16] Add DUN support

2011-12-13 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de Hi, Another update on this one. I splittet some patches more, in order to make it more easy to review. This version is now tested and works pretty good. The phone does some funky stuff, but that is BT only. Tomorrow, I should get a BT sniffer

[RFC v3 03/16] elect: Add D-Bus configuration file

2011-12-13 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- Makefile.am |6 ++ elect/elect.conf | 23 +++ 2 files changed, 29 insertions(+), 0 deletions(-) create mode 100644 elect/elect.conf diff --git a/Makefile.am b/Makefile.am index 38e5d90..70ea5de 100644

[RFC v3 02/16] elect: Add D-Bus error messages

2011-12-13 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- Makefile.am |2 +- elect/dbus.c | 52 elect/elect.h |4 3 files changed, 57 insertions(+), 1 deletions(-) create mode 100644 elect/dbus.c diff --git a/Makefile.am b

[RFC v3 04/16] elect: Add systemd configuration file

2011-12-13 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- Makefile.am |6 ++ elect/elect.service | 11 +++ 2 files changed, 17 insertions(+), 0 deletions(-) create mode 100644 elect/elect.service diff --git a/Makefile.am b/Makefile.am index 70ea5de..43311b0 100644

[RFC v3 05/16] elect: Add Manager interface

2011-12-13 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- Makefile.am |2 +- elect/elect.h |6 +++ elect/main.c|9 ++--- elect/manager.c | 97 +++ 4 files changed, 107 insertions(+), 7 deletions(-) create mode 100644 elect

[RFC v3 06/16] elect: Add skeleton implementation for device

2011-12-13 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- Makefile.am|2 +- elect/device.c | 100 elect/elect.h | 15 elect/main.c |4 ++- 4 files changed, 119 insertions(+), 2 deletions(-) create mode 100644 elect

[RFC v3 07/16] elect: Manager append devices

2011-12-13 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- elect/manager.c | 22 ++ 1 files changed, 22 insertions(+), 0 deletions(-) diff --git a/elect/manager.c b/elect/manager.c index 65c8242..99ad216 100644 --- a/elect/manager.c +++ b/elect/manager.c @@ -30,6 +30,26

[RFC v3 09/16] elect: Add BlueZ hooks to device

2011-12-13 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- Makefile.am|4 +- elect/device.c | 141 +++- 2 files changed, 142 insertions(+), 3 deletions(-) diff --git a/Makefile.am b/Makefile.am index cdeab8d..a11176e 100644 --- a/Makefile.am

[RFC v3 10/16] elect: Add device D-Bus interface

2011-12-13 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- elect/device.c | 235 elect/elect.h |1 + 2 files changed, 236 insertions(+), 0 deletions(-) diff --git a/elect/device.c b/elect/device.c index 13999fd..f9a01fd 100644 --- a/elect

[RFC v3 11/16] elect: Dis/Connect Serial interface

2011-12-13 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- elect/device.c | 124 +++- 1 files changed, 122 insertions(+), 2 deletions(-) diff --git a/elect/device.c b/elect/device.c index f9a01fd..b404546 100644 --- a/elect/device.c +++ b/elect

[RFC v3 12/16] elect: Add skeleton dial implementation

2011-12-13 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- Makefile.am |3 +- elect/dial.c | 83 + elect/elect.h | 16 +++ 3 files changed, 101 insertions(+), 1 deletions(-) create mode 100644 elect/dial.c diff --git

[RFC v3 13/16] elect: Add ppp callbacks to device

2011-12-13 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- elect/device.c | 103 1 files changed, 103 insertions(+), 0 deletions(-) diff --git a/elect/device.c b/elect/device.c index b404546..b4cbbfc 100644 --- a/elect/device.c +++ b/elect

[RFC v3 14/16] elect: Add GatChat and PPP handler

2011-12-13 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- Makefile.am |2 +- elect/dial.c | 125 +- 2 files changed, 125 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index 588183d..f39035f 100644 --- a/Makefile.am

[RFC v3 15/16] elect: Add test scripts

2011-12-13 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- test/elect-connect| 20 + test/elect-disconnect | 20 + test/monitor-elect| 109 + 3 files changed, 149 insertions(+), 0 deletions(-) create mode 100755 test/elect

[RFC v3 16/16] elect: Add documentation

2011-12-13 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- doc/elect-api.txt | 86 + 1 files changed, 86 insertions(+), 0 deletions(-) create mode 100644 doc/elect-api.txt diff --git a/doc/elect-api.txt b/doc/elect-api.txt new file mode 100644

[RFC v1] elect: Add DUN support

2011-12-09 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- Hi, I dropped the Connect()/Disconnect() method and added the SetProperty() for Active. Also the documentation is now correct. I'll start now to split this huge patch. cheers, daniel v1: - Elect API change: Connect()/Disconect() dropped

Re: ofono usage on embedded device

2011-12-09 Thread Daniel Wagner
Hi Renat, On 09.12.2011 14:37, Renat Zaripov wrote: On 09.12.2011 14:08, Sergey Lapin wrote: I'm interested in c) because somehow we have troubles with udev in our device, systemd detects ttys perfectly while ofono can't find anything and it seems to see no tty devices at all, so we'd like

[RFC v2 00/11] Add DUN support

2011-12-09 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de Hi, This is now the splittet version of the previous huge patch. It is only compile tested so far. I have changed a few things and cleanup stuff. Consider this version just as work in progress. If you spot something stupid tell me now :) Have

[RFC v2 01/11] elect: Add skeleton implementation

2011-12-09 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- Makefile.am | 24 + bootstrap-configure |1 + configure.ac|4 + elect/elect.conf| 23 + elect/elect.h | 65 + elect/elect.service | 11 ++ elect/main.c| 255

[RFC v2 02/11] elect: Add Manager interface

2011-12-09 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- Makefile.am |2 +- elect/elect.h |8 - elect/main.c|9 ++--- elect/manager.c | 98 +++ 4 files changed, 109 insertions(+), 8 deletions(-) create mode 100644 elect

[RFC v2 03/11] elect: Add skeleton implementation for device

2011-12-09 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- Makefile.am |2 +- elect/device.c | 104 +++ elect/elect.h | 15 +++- elect/main.c|4 ++- elect/manager.c | 22 5 files changed, 144 insertions(+), 3

[RFC v2 04/11] bluetooth: Add Serial interface definition

2011-12-09 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- plugins/bluetooth.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/plugins/bluetooth.h b/plugins/bluetooth.h index daa1873..4fc16ad 100644 --- a/plugins/bluetooth.h +++ b/plugins/bluetooth.h @@ -27,6 +27,7 @@ #define

[RFC v2 05/11] elect: Add BlueZ hooks to device

2011-12-09 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- Makefile.am|4 +- elect/device.c | 142 +++- 2 files changed, 143 insertions(+), 3 deletions(-) diff --git a/Makefile.am b/Makefile.am index d02fd21..045ea2e 100644 --- a/Makefile.am

[RFC v2 06/11] elect: Add device D-Bus interface

2011-12-09 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- elect/device.c | 232 elect/elect.h |1 + 2 files changed, 233 insertions(+), 0 deletions(-) diff --git a/elect/device.c b/elect/device.c index 8f4d6a0..33091e6 100644 --- a/elect

[RFC v2 07/11] elect: Dis/Connect Serial interface

2011-12-09 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- elect/device.c | 128 +++- 1 files changed, 126 insertions(+), 2 deletions(-) diff --git a/elect/device.c b/elect/device.c index 33091e6..13f2c70 100644 --- a/elect/device.c +++ b/elect

[RFC v2 08/11] elect: Add ppp callbacks to device

2011-12-09 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- Makefile.am|2 +- elect/device.c | 96 elect/elect.h | 15 + 3 files changed, 112 insertions(+), 1 deletions(-) diff --git a/Makefile.am b/Makefile.am index 045ea2e

[RFC v2 09/11] elect: Add GatChat and PPP handler

2011-12-09 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- Makefile.am |2 +- elect/dun.c | 207 +++ 2 files changed, 208 insertions(+), 1 deletions(-) create mode 100644 elect/dun.c diff --git a/Makefile.am b/Makefile.am index 3e36d4e

[RFC v2 10/11] elect: Add test scripts

2011-12-09 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- test/elect-connect| 20 + test/elect-disconnect | 20 + test/monitor-elect| 109 + 3 files changed, 149 insertions(+), 0 deletions(-) create mode 100755 test/elect

[RFC v2 11/11] elect: Add documentation

2011-12-09 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- doc/elect-api.txt | 86 + 1 files changed, 86 insertions(+), 0 deletions(-) create mode 100644 doc/elect-api.txt diff --git a/doc/elect-api.txt b/doc/elect-api.txt new file mode 100644

[RFC v1] dunmodem: Add support for DUN

2011-11-29 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de WIP --- Makefile.am |7 +- drivers/dunmodem/devinfo.c | 110 drivers/dunmodem/dunmodem.c |8 +- drivers/dunmodem/dunmodem.h |8 +- drivers/dunmodem/gprs-context.c

[PATCH v0 01/32] modem: Add modem type to ofono_modem_driver

2011-11-22 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- include/modem.h |7 +++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/include/modem.h b/include/modem.h index 3fea2de..c34703b 100644 --- a/include/modem.h +++ b/include/modem.h @@ -30,6 +30,12 @@ extern C { struct

[PATCH v0 02/32] alcatel: Add modem type hardware

2011-11-22 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- plugins/alcatel.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/plugins/alcatel.c b/plugins/alcatel.c index fd0e4ec..87a2a38 100644 --- a/plugins/alcatel.c +++ b/plugins/alcatel.c @@ -255,6 +255,7 @@ static void

[PATCH v0 03/32] calypso: Add modem type hardware

2011-11-22 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- plugins/calypso.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/plugins/calypso.c b/plugins/calypso.c index 8154899..3a54bec 100644 --- a/plugins/calypso.c +++ b/plugins/calypso.c @@ -542,6 +542,7 @@ static void

[PATCH v0 05/32] gobi: Add mode type hardware

2011-11-22 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- plugins/gobi.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/plugins/gobi.c b/plugins/gobi.c index d8c974b..bc779e1 100644 --- a/plugins/gobi.c +++ b/plugins/gobi.c @@ -324,6 +324,7 @@ static void gobi_post_online

[PATCH v0 06/32] hfp_hf: Add modem type hfp

2011-11-22 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- plugins/hfp_hf.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/plugins/hfp_hf.c b/plugins/hfp_hf.c index c4c90ff..48a734a 100644 --- a/plugins/hfp_hf.c +++ b/plugins/hfp_hf.c @@ -499,6 +499,7 @@ static void

[PATCH v0 07/32] hso: Add modem type hardware

2011-11-22 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- plugins/hso.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/plugins/hso.c b/plugins/hso.c index 897cd12..4b6df20 100644 --- a/plugins/hso.c +++ b/plugins/hso.c @@ -406,6 +406,7 @@ static void hso_post_online(struct

[PATCH v0 08/32] huawei: Add modem type hardware

2011-11-22 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- plugins/huawei.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/plugins/huawei.c b/plugins/huawei.c index ae15bf9..61107c2 100644 --- a/plugins/huawei.c +++ b/plugins/huawei.c @@ -717,6 +717,7 @@ static void

[PATCH v0 09/32] huaweicdma: Add modem type hardware

2011-11-22 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- plugins/huaweicdma.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/plugins/huaweicdma.c b/plugins/huaweicdma.c index 4c83114..41f09ac 100644 --- a/plugins/huaweicdma.c +++ b/plugins/huaweicdma.c @@ -218,6 +218,7

[PATCH v0 10/32] ifx: Add modem type hardware

2011-11-22 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- plugins/ifx.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/plugins/ifx.c b/plugins/ifx.c index e9ef4bc..a5184b5 100644 --- a/plugins/ifx.c +++ b/plugins/ifx.c @@ -749,6 +749,7 @@ static void ifx_post_online(struct

[PATCH v0 11/32] isiusb: Add modem type hardware

2011-11-22 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- plugins/isiusb.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/plugins/isiusb.c b/plugins/isiusb.c index 82d2cc5..834f114 100644 --- a/plugins/isiusb.c +++ b/plugins/isiusb.c @@ -451,6 +451,7 @@ static int

[PATCH v0 13/32] mbm: Add modem type hardware

2011-11-22 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- plugins/mbm.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/plugins/mbm.c b/plugins/mbm.c index 32c7665..2dc9237 100644 --- a/plugins/mbm.c +++ b/plugins/mbm.c @@ -477,6 +477,7 @@ static void mbm_post_online(struct

[PATCH v0 12/32] linktop: Add modem type hardware

2011-11-22 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- plugins/linktop.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/plugins/linktop.c b/plugins/linktop.c index bb0d7b8..4229ea4 100644 --- a/plugins/linktop.c +++ b/plugins/linktop.c @@ -282,6 +282,7 @@ static void

[PATCH v0 14/32] n900: Add modem type hardware

2011-11-22 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- plugins/n900.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/plugins/n900.c b/plugins/n900.c index 44e2e75..ebee449 100644 --- a/plugins/n900.c +++ b/plugins/n900.c @@ -539,6 +539,7 @@ static int n900_disable(struct

[PATCH v0 15/32] nokia: Add modem type hardware

2011-11-22 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- plugins/nokia.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/plugins/nokia.c b/plugins/nokia.c index ae6c997..59efec5 100644 --- a/plugins/nokia.c +++ b/plugins/nokia.c @@ -253,6 +253,7 @@ static void

[PATCH v0 16/32] novatelcdma: Add modem type hardware

2011-11-22 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- plugins/nokiacdma.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/plugins/nokiacdma.c b/plugins/nokiacdma.c index a25e2a0..a8d7b21 100644 --- a/plugins/nokiacdma.c +++ b/plugins/nokiacdma.c @@ -163,6 +163,7 @@ static

[PATCH v0 17/32] novatel: Add modem type hardware

2011-11-22 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- plugins/novatel.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/plugins/novatel.c b/plugins/novatel.c index a64364d..ba7c1c3 100644 --- a/plugins/novatel.c +++ b/plugins/novatel.c @@ -354,6 +354,7 @@ static void

[PATCH v0 18/32] palmpre: Add modem type hardware

2011-11-22 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- plugins/palmpre.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/plugins/palmpre.c b/plugins/palmpre.c index c495f28..425646c 100644 --- a/plugins/palmpre.c +++ b/plugins/palmpre.c @@ -212,6 +212,7 @@ static void

[PATCH v0 19/32] phonesim: Add modem type hardware

2011-11-22 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- plugins/phonesim.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/plugins/phonesim.c b/plugins/phonesim.c index 5f4940f..80017d8 100644 --- a/plugins/phonesim.c +++ b/plugins/phonesim.c @@ -787,6 +787,7 @@ static void

[PATCH v0 20/32] samsumg: Add modem type hardware

2011-11-22 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- plugins/samsung.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/plugins/samsung.c b/plugins/samsung.c index 8e0d360..2d7cd1f 100644 --- a/plugins/samsung.c +++ b/plugins/samsung.c @@ -260,6 +260,7 @@ static void

[PATCH v0 21/32] sap: Add modem type sap

2011-11-22 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- plugins/sap.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/plugins/sap.c b/plugins/sap.c index f88e61a..d893bc1 100644 --- a/plugins/sap.c +++ b/plugins/sap.c @@ -306,6 +306,7 @@ static void bluetooth_sap_set_alias

[PATCH v0 22/32] sierra: Add modem type hardware

2011-11-22 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- plugins/sierra.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/plugins/sierra.c b/plugins/sierra.c index c41e2d1..6404ca6 100644 --- a/plugins/sierra.c +++ b/plugins/sierra.c @@ -243,6 +243,7 @@ static void

[PATCH v0 23/32] speedup: Add modem type hardware

2011-11-22 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- plugins/speedup.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/plugins/speedup.c b/plugins/speedup.c index a90dfe3..f81d4a2 100644 --- a/plugins/speedup.c +++ b/plugins/speedup.c @@ -276,6 +276,7 @@ static void

DUN done right (was Re: ofono plugin)

2011-11-13 Thread Daniel Wagner
Hi Everyone, On 11/02/2011 03:58 PM, Denis Kenzior wrote: Hi Daniel, - DUN: ConnMan should directly talk to BlueZ. There are too many issues with having oFono in the middle. There is a strong relation ship between PAN and DUN and ConnMan needs to be aware of it. Think about the kill switch

Re: ofono plugin

2011-11-04 Thread Daniel Wagner
Hi, an update on this one. We had yesterday a long discussion again on #ofono. The result out of this discussion is: - DUN: ConnMan should directly talk to BlueZ. There are too many issues with having oFono in the middle. There is a strong relation ship between PAN and DUN and ConnMan needs to

[RFC v0] modem: Add ModemType

2011-11-04 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de Indicate the kind of modem it is before it is powered up. --- Hi, here is the proposal to add this additional flag, so that ConnMan only takes control over the real hardware. cheers, daniel doc/modem-api.txt | 11 +++ 1 files changed

ofono plugin

2011-11-03 Thread Daniel Wagner
Hi, There was a short discussion on the #ofono channel on the oFono plugin in ConnMan. As it turns out there are some issues concerning the way the current plugin interacts with oFono. For example the current plugin has a complicated logic how to detect the modem. It really wants to have a SIM

[PATCH] hfp: Expose BT address using the serial number

2011-10-13 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de From: Mikel Astiz mikel.as...@bmw-carit.de --- plugins/hfp_hf.c | 100 ++ 1 files changed, 100 insertions(+), 0 deletions(-) diff --git a/plugins/hfp_hf.c b/plugins/hfp_hf.c index 1008696

Re: [PATCH] hfp: Expose BT address using the serial number

2011-10-13 Thread Daniel Wagner
On 10/13/2011 07:05 AM, Daniel Wagner wrote: From: Daniel Wagnerdaniel.wag...@bmw-carit.de From: Mikel Astizmikel.as...@bmw-carit.de Obviously, this one is from Mikel. My scipt did not realize this... ___ ofono mailing list ofono@ofono.org http

[PATCH] doc: Clarifications on voice call behavior

2011-10-13 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- doc/voicecall-api.txt|4 doc/voicecallmanager-api.txt |7 ++- 2 files changed, 10 insertions(+), 1 deletions(-) diff --git a/doc/voicecall-api.txt b/doc/voicecall-api.txt index 7eb41aa..fb8f099 100644 --- a/doc

Re: [PATCH 02/12] Add handsfree atom for HFP-specific capabilities

2011-09-16 Thread Daniel Wagner
Hi Mikel, +++ b/include/handsfree.h @@ -0,0 +1,57 @@ +/* + * + * oFono - Open Source Telephony + * + * Copyright (C) 2008-2010 Intel Corporation. All rights reserved. BMW CarIT copyright statement? :) cheers, daniel ___ ofono mailing list

[PATCH] udev: Fix typo for Huawei diagnostic interfaces

2011-08-16 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- plugins/udevng.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/plugins/udevng.c b/plugins/udevng.c index 78682ff..1365bd1 100644 --- a/plugins/udevng.c +++ b/plugins/udevng.c @@ -259,7 +259,7 @@ static gboolean

Re: Ofono and DUN Client

2011-07-05 Thread Daniel Wagner
Hi Claudio, On 17.06.2011 14:28, Claudio Degioanni wrote: Hi all, What is the current state of work of bluetooth DUN client on ofono ? We hope to have some patches ready very soon. That means in this week. cheers, daniel ___ ofono mailing list

Re: [HELP Required]Routing Of SCO data to BT Host Speaker

2011-03-17 Thread Daniel Wagner
are maintained as default. 2.Also, do I need to modify SCORouting=PCM in audio.conf file. (default is HCI) It will be of great help to receive any further inputs regarding the above issue. Best Regards, Milan -Original Message- From: Daniel Wagner [mailto:w...@monom.org] Sent: Friday, March

Re: [HELP Required]Routing Of SCO data to BT Host Speaker

2011-03-10 Thread Daniel Wagner
Hi Milan, On Fri, Mar 11, 2011 at 10:56:34AM +0530, milan.satpa...@accenture.com wrote: Hi, Recently I have been trying to use Ofono to write a Handsfree based application( Using C on Ubuntu 10.10). I am able to connect(SLC) to the AG using Ofono. After connection I am also successful in

[PATCH] hfp: Don't reply to crashed bluetoothd

2011-02-10 Thread Daniel Wagner
In case bluetoothd crashes randomly the data pointer can be NULL. So we shouldn't derefernce it. --- plugins/hfp.c |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/plugins/hfp.c b/plugins/hfp.c index 12d3457..acb297f 100644 --- a/plugins/hfp.c +++ b/plugins/hfp.c @@

oFono Development History

2011-01-03 Thread Daniel Wagner
Hi, after doing the ConnMan video, couldn't resist to do it for oFono as well: http://www.youtube.com/watch?v=E246bZEWai8 have fun, daniel ___ ofono mailing list ofono@ofono.org http://lists.ofono.org/listinfo/ofono

Re: [PATCH] HACKING: Add ofono.conf file copy command required

2010-12-01 Thread Daniel Wagner
+ Copy configuration file which specifies the required security policies +# sudo cp ./src/ofono.conf /etc/dbus-1/system.d/ + Considered to add this too? sudo killall -HUP dbus-daemon daniel ___ ofono mailing list ofono@ofono.org

Re: RAT , signal Strength indication ofono 0.23

2010-08-18 Thread Daniel Wagner
Hi Alain, In fact the property like CellId or LocationAreaCode are sometimes updated but the property Technology (RAT) is never indicated, in the other hand the property Strength is not updated when the signal strength of the cell change. Is sound like networkregistration API is not fully

[PATCH v2 1/3] Add CurrentTechnology property to DCM

2010-06-24 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- doc/dataconnectionmanager-api.txt |7 ++ include/gprs.h|1 + src/gprs.c| 40 + 3 files changed, 48 insertions(+), 0 deletions(-) diff --git a/doc

Monitor current technology

2010-06-24 Thread Daniel Wagner
This series adds a new property to DCM to export the current technology used. Changes from the last version: - The core will only update the CurrentTechnology when attached and != -1. Here is a log from ofonod: http://pastebin.com/A8r4wNqL Here is a log from ofono-monitor:

[PATCH v2 3/3] Monitor current technology used for Option modems

2010-06-24 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- drivers/atmodem/gprs.c | 170 1 files changed, 170 insertions(+), 0 deletions(-) diff --git a/drivers/atmodem/gprs.c b/drivers/atmodem/gprs.c index bf82d06..9988217 100644 --- a/drivers/atmodem

[PATCH v2 2/3] Pass down vendor flag into DCM

2010-06-24 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- plugins/hso.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/plugins/hso.c b/plugins/hso.c index 9e3b35a..e645221 100644 --- a/plugins/hso.c +++ b/plugins/hso.c @@ -246,7 +246,8 @@ static void hso_post_sim(struct

[PATCH v6] Report cell technology capability for Option HSO modems

2010-06-14 Thread Daniel Wagner
Option modem use OCTI and OUWCTI commands for reporting the cell capability. --- Now this version is tested and works as expected. Before at_creg_cb (creg_query) OCTI/OUWCTI is fired and after creg_notify. Now I'll takle the DCM patch for the techs. v6: fix double free v5: don't send AT+CREG?

CurrentTechnology property in DCM

2010-06-14 Thread Daniel Wagner
This series adds a new property to DCM to export the current technology used. Note this series is on top of [1] applied. Here is a log from ofonod: http://pastebin.com/L28y8HYj Here is a log from ofono-monitor: http://pastebin.com/YuNSekLW [1] [PATCH v6] Report cell technology capability for

[RFC v0 1/3] Add CurrentTechnology property to DCM

2010-06-14 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- doc/dataconnectionmanager-api.txt |7 +++ include/gprs.h|1 + src/gprs.c| 30 ++ 3 files changed, 38 insertions(+), 0 deletions(-) diff --git a/doc

[RFC v0 2/3] Pass down vendor flag into DCM

2010-06-14 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- plugins/hso.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/plugins/hso.c b/plugins/hso.c index 9e3b35a..e645221 100644 --- a/plugins/hso.c +++ b/plugins/hso.c @@ -246,7 +246,8 @@ static void hso_post_sim(struct

[RFC v0 3/3] Monitor current technology used for Option modems

2010-06-14 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- drivers/atmodem/gprs.c | 156 1 files changed, 156 insertions(+), 0 deletions(-) diff --git a/drivers/atmodem/gprs.c b/drivers/atmodem/gprs.c index bf82d06..0ed97f3 100644 --- a/drivers/atmodem

[PATCH v1] Report cell technology capability for Option HSO modems

2010-06-11 Thread Daniel Wagner
Option modem use OCTI and OUWCTI commands for reporting the cell capability. --- This patch needs some more testing. v1: do not depend on unsoliced message. use only octi ouwcti, no ossysi v0: based on [RFC v3] Readout technology form Option HSO modems drivers/atmodem/atutil.c

[PATCH v4] Report cell technology capability for Option HSO

2010-06-11 Thread Daniel Wagner
Option modem use OCTI and OUWCTI commands for reporting the cell capability. --- not run or testest because of missing modem. v4: clean up :) v3: simplify even more. v2: simplify v1 and use two callbacks instead of one v1: do not depend on unsoliced message. use only octi ouwcti, no ossysi v0:

[PATCH v5] Report cell technology capability for Option HSO

2010-06-11 Thread Daniel Wagner
Option modem use OCTI and OUWCTI commands for reporting the cell capability. --- not run or testest because of missing modem. v5: don't send AT+CREG? twice v4: clean up :) v3: simplify even more. v2: simplify v1 and use two callbacks instead of one v1: do not depend on unsoliced message. use

[PATCH v0] Report cell technology capability for Option HSO modems

2010-06-10 Thread Daniel Wagner
Option modem use OCTI and OSSYSI commands for reporting the cell capability. --- The log to this patch: http://pastebin.com/xrbrUGeL Unfortunalty, I couldn't get away without OSSYSI updating the netreg info. v0: based on [RFC v3] Readout technology form Option HSO modems

<    1   2   3   >