summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2011-09-09include: Add skeleton handsfree public atom APIMikel Astiz2-1/+59
2011-09-09dbus: Add Handsfree interface definitionMikel Astiz1-0/+1
2011-09-09TODO: Task added for HFP-specific capabilitiesMikel Astiz1-0/+11
2011-09-09plugins: Fix unused var warningDenis Kenzior1-1/+0
2011-09-08tools: Make lookup-apn use mbpi.cDenis Kenzior2-150/+25
2011-09-08plugins: Add mobile-broadband-provider-info parserDenis Kenzior2-0/+425
2011-09-08gprs: Allow NULL context names while provisioningDenis Kenzior1-1/+1
2011-09-08include: Minor style tweaksDenis Kenzior1-4/+4
2011-09-08emulator: Minor style tweaks inside bia_cbDenis Kenzior1-9/+10
2011-09-08TODO: mark HFP AG 1.6 indicator activation as doneFrédéric Danis2-11/+4
2011-09-08include: update HFP features types to version 1.6Frédéric Danis1-4/+6
2011-09-08emulator: add AT+BIA support for HFPFrédéric Danis1-10/+73
2011-08-30build: Fix generating links in Makefile.amPekka Pessi1-2/+2
In case relative dependency is in $(srcdir), $< already includes path to $(srcdir).
2011-08-23TODO: Rework USB DUN taskDenis Kenzior1-4/+4
2011-08-23doc: Reword features.txtDenis Kenzior1-2/+3
2011-08-23doc: Minor style fixesDenis Kenzior1-3/+5
2011-08-23TODO: Mark Bluetooth DUN task as doneGuillaume Zajac2-7/+3
2011-08-23TODO: Split DUN task into BT & USB DUNGuillaume Zajac1-1/+6
2011-08-29isimodem: Add UICC functionalityAki Niemi1-90/+1302
Based on patches from: Iiro Kaihlaniemi <iiro.kaihlaniemi@nokia.com> Jessica Nilsson <jessica.j.nilsson@stericsson.com>
2011-08-29build: Add isimodem UICC utilities to buildIiro Kaihlaniemi1-2/+3
2011-08-29isimodem: Add UICC utilitiesIiro Kaihlaniemi2-0/+227
2011-08-29isimodem: Allow network registration automaticallyIiro Kaihlaniemi1-0/+99
2011-08-29isimodem: Add missing codepoints and debugsIiro Kaihlaniemi4-0/+151
2011-08-21TODO: Add cbs umts format taskDenis Kenzior1-0/+12
2011-08-21TODO: Add CPHS SPN and short-SPN tasksDenis Kenzior1-0/+14
2011-08-22hso: Switch modem to use error numbers instead of stringsMarcel Holtmann1-2/+2
2011-08-18voicecall: Relax reqs for hangup of held callsDenis Kenzior1-1/+3
If we have a single held call, then it should be possible to hang it up with 'Hangup' even if active calls exist. Only if multiple held calls or a waiting call exists should we disallow the request due to possible side-effects.
2011-08-18voicecall: Move stuff aroundDenis Kenzior1-48/+48
2011-08-18gprs: Experimental fix for twitchy Huawei firmwareDenis Kenzior1-0/+8
2011-08-18network: Fix crash with an empty mcc/mnc cops listDenis Kenzior1-0/+3
Some hardware returns an empty mcc/mnc operator during an operator scan when no operators are found (e.g. on an LTE dongle in a non-LTE area). This results in oFono mistaking trying to update a non-existent operator object. For reference: ofonod[27532]: Device: < \r\n+NWSTATEIND: 4\r\n\r\n+COPS: (0,"","","",255),,(0-4),(0-2)\r\n\r \nOK\r\n process 27532: arguments to dbus_message_new_signal() were incorrect, assertion "_dbus_check_ is_valid_path (path)" failed in file dbus-message.c line 1289. This is normally a bug in some application using the D-Bus library. D-Bus not built with -rdynamic so unable to print a backtrace
2011-08-17udev: Fix typo for Huawei diagnostic interfacesDaniel Wagner1-1/+1
2011-08-16plugin: Use weak reference for external debug statementsMarcel Holtmann1-2/+2
2011-08-15plugin: Use simpler version mismatch errorMarcel Holtmann1-2/+2
2011-08-15plugin: Add debug support for external pluginsMarcel Holtmann2-1/+11
2011-08-15log: Use separate function for enable loggingMarcel Holtmann2-5/+17
2011-08-15cdma-voicecall: Implement SendTones methodCaiwen Zhang1-0/+54
2011-08-15include: Add send_tones to cdma voicecall driver APICaiwen Zhang1-0/+3
2011-08-15cdma-voicecall: Implement SendFlash methodCaiwen Zhang1-0/+25
2011-08-15include: Add send_flash to cdma voicecall driver APICaiwen Zhang1-0/+3
2011-08-15cdma-voicecall: Implement Answer methodCaiwen Zhang1-0/+23
2011-08-15include: Add cdma-voicecall answer driver APICaiwen Zhang1-0/+3
2011-08-15doc: Reword features.txt entryDenis Kenzior1-3/+6
2011-08-15TODO: mark HFP AG emulator task as doneFrédéric Danis2-8/+7
2011-08-15emulator: fix indicator notificationFrédéric Danis2-13/+31
2011-08-15gatserver: Add command finished callbacksDenis Kenzior2-8/+46
2011-08-15stkagent: Define DBUS_TIMEOUT_INFINITE if undefinedMarcel Holtmann1-0/+4
2011-08-14gatserver: Fix not processing after async errorDenis Kenzior1-0/+1
If we send an async error response, all future commands are ignored.
2011-08-14gatserver: Add sanity checkDenis Kenzior1-0/+2
2011-08-14gatserver: Fix not sending OK final responseDenis Kenzior1-8/+13
2011-08-14gatserver: Refactor IO codeDenis Kenzior1-25/+22
The current GAtServer implementation had nasty corner cases where multiple commands were issued on the same command line. The server_suspend had no effect and we ended up processing the second command anyway, resulting in interesting side-effects or crashes. This commit simply discards the rest of the read input if the server starts processing a command. Since we do not yet support command abortion we also discard data that arrives when command is being processed.