summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2009-10-02Add unit test for 3G STATUS response dataDenis Kenzior1-0/+46
2009-10-02Add utility to parse 3G get response dataDenis Kenzior2-0/+114
Based on ETSI 102.221
2009-10-02Add utility to parse 2G GET_RESPONSE dataDenis Kenzior3-12/+28
This format is described in 51.011 and the older 11.11. It is not supported by newer 3G UICC based devices & sim card combinations
2009-10-02Add unit test for EF databaseDenis Kenzior1-0/+18
2009-10-02Add utility to lookup files in EF dbDenis Kenzior2-1/+23
2009-10-02Refactor: Move elementary file type checkingDenis Kenzior6-119/+82
Every single EF read callback checks the file type reported out of the SIM is what it expects. Instead this should be done in one place and the errors reported accordingly
2009-10-02Add basic elementary file databaseDenis Kenzior2-0/+73
2009-10-02Enable a few extra atoms in the Huawei pluginMarcel Holtmann1-0/+9
2009-10-02Enable more atoms in the MBM pluginMarcel Holtmann1-0/+27
2009-10-02Add support for switching to a different GAtSyntax at runtimeMarcel Holtmann2-0/+14
2009-10-02Remove unused variables causing a compiler warningMarcel Holtmann1-2/+0
2009-10-02Fix missing include for close() function callMarcel Holtmann1-1/+3
2009-10-01Update plugins to the new g_at_tty_open APIDenis Kenzior7-30/+63
2009-10-01Replace g_at_chat_new_from_tty with g_at_tty_openDenis Kenzior4-44/+290
2009-09-29G1: move chat handling into enable callbackAndres Salomon1-26/+22
This updates the g1 code to create the GAtChat object in the enable() callback, and to unref it in the disable() callback. This is more in line with what the other plugins do, and as a bonus fixes a segfault when powering down the G1 modem.. Signed-off-by: Andres Salomon <dilinger@collabora.co.uk>
2009-09-29Fix: different signedness comparisonDenis Kenzior1-1/+1
2009-09-29Add call volume atom to calypso pluginDenis Kenzior1-3/+2
2009-09-29Add test script for controlling speaker volumeDenis Kenzior1-0/+18
2009-09-29Add call volume to phonesim pluginDenis Kenzior1-0/+2
2009-09-29Add at modem call volume driverDenis Kenzior4-0/+238
2009-09-29Fix: Don't try to set a value if already setDenis Kenzior1-0/+9
2009-09-29Be more numerically stableDenis Kenzior1-2/+2
2009-09-29Use none_prefix in cssnDenis Kenzior1-1/+3
2009-09-29Add Muted property to CallVolume atomDenis Kenzior2-0/+69
2009-09-29Refactor: Call Volume set_property handlingDenis Kenzior1-71/+59
2009-09-29Get rid of unused defineDenis Kenzior1-2/+0
2009-09-29Get rid of unused variablesDenis Kenzior1-2/+0
2009-09-29Refactor: Assume driver will set call volumeDenis Kenzior1-3/+0
Driver should use the ofono_call_volume_set_microphone_volume and ofono_call_volume_set_speaker_volume functions.
2009-09-29Don't use ofono_ prefix for static functionsDenis Kenzior1-11/+8
2009-09-29Refactor: Break up call volume notifyDenis Kenzior2-16/+28
2009-09-29Cleanup: Do not expose DBus details to driversDenis Kenzior2-12/+8
2009-09-29Add call volume interface to adjust speaker and mic volumeZhenhua Zhang4-2/+443
2009-09-28Fix: F3607gw not being recognized properlyDenis Kenzior1-11/+12
Reports <foo> Broadband <foo> instead of <foo> Broadband Minicard <foo> F3607gw Mobile Broadband Data Modem F3607gw Mobile Broadband Modem F3607gw Mobile Broadband GPS Port F3607gw Mobile Broadband Network Adapter F3607gw Mobile Broadband Device Management F3607gw Mobile Broadband USIM Port
2009-09-28Fix: Report registered modems properlyDenis Kenzior1-2/+2
2009-09-28Fix efli being removed prematurelyDenis Kenzior1-4/+6
2009-09-25Release 0.6Marcel Holtmann2-1/+6
2009-09-25Add ignore line generated udev rules fileMarcel Holtmann1-0/+1
2009-09-25Fix build issue with example history pluginMarcel Holtmann1-1/+1
2009-09-25Fix segmentation fault from SIM reading on Calypso modemMarcel Holtmann1-0/+3
2009-09-25Convert some more strings list for easier readingMarcel Holtmann1-1/+3
2009-09-25Add some more test scripts for SMS and voice call testingMarcel Holtmann5-1/+91
2009-09-24Add gsmdial application to ignore listMarcel Holtmann1-0/+2
2009-09-24Add skeleton for gsmdial test applicationMarcel Holtmann1-0/+29
2009-09-24Release 0.5Marcel Holtmann2-1/+14
2009-09-24Add oFono whitepaper to distributionMarcel Holtmann1-1/+8
2009-09-24Fix whitespaceDenis Kenzior1-7/+7
2009-09-24Add first draft of the ofono whitepaperDenis Kenzior1-0/+172
2009-09-24Update the sim-api with LockedPins propertyDenis Kenzior1-0/+10
2009-09-24Add initial support for LockedPins propertyDenis Kenzior1-7/+95
2009-09-24gdbus: handle introspection generally in generic_message.RISKÓ Gergely1-43/+59
Previously it was a specific case, now introspection is just another interface, which is always implemented. It is registered/unregistered when an object path is referenced first/last.