summaryrefslogtreecommitdiffstats
path: root/drivers/atmodem
AgeCommit message (Collapse)AuthorFilesLines
2009-09-01Add vendor flag to call-settingsDenis Kenzior1-1/+5
2009-09-01Add vendor parameter to call-meterDenis Kenzior1-2/+4
2009-09-01Add vendor flag to call-forwardingDenis Kenzior1-1/+5
2009-09-01Introduce vendor parameter to call-barringDenis Kenzior1-1/+5
2009-08-24Convert to fully non-recursive build systemMarcel Holtmann2-1/+1
2009-08-21Remove org.ofono.at.ManagerDenis Kenzior3-617/+0
2009-08-21Remove unused functionDenis Kenzior1-6/+0
2009-08-20Rename ofono_modem_*_userdataDenis Kenzior1-1/+1
Rename ofono_modem_get_userdata to ofono_modem_get_data Rename ofono_modem_set_userdata to ofono_modem_set_data For consistency with other drivers
2009-08-20Fix unused variable pbdDenis Kenzior1-1/+0
2009-08-20Fix unused variable chatDenis Kenzior1-1/+0
2009-08-20Fix implicit declaration of ofono_netreg_createDenis Kenzior1-0/+1
2009-08-20Update the AT modem driver to the new devinfo apiDenis Kenzior3-170/+232
2009-08-19Remove modem member from cb_dataDenis Kenzior11-45/+42
2009-08-19Fix release specific not reporting proper reasonDenis Kenzior1-1/+1
The proper disconnect reason was not being reported in the at modem voicecall plugin
2009-08-19Remove poll_clcc variableDenis Kenzior1-26/+17
The reference implementation will always poll. If a modem vendor has extensions for call status reporting, then those should be used in a separate driver
2009-08-19Update the AT modem voicecall driver for new APIDenis Kenzior3-223/+247
2009-08-19Remove dead code in voicecall at driverDenis Kenzior1-31/+0
2009-08-19Update netreg AT modem driver to the new APIDenis Kenzior3-96/+109
2009-08-19Port AT modem driver to the new MWI apiDenis Kenzior1-0/+15
2009-08-19Remove unneeded function callDenis Kenzior1-1/+0
2009-08-19Update SIM AT driver to the new APIDenis Kenzior3-43/+69
2009-08-19Port SMS AT modem driver to the new APIDenis Kenzior3-179/+178
2009-08-19Remove unused memberDenis Kenzior1-1/+0
2009-08-17Port the USSD at driver to the new APIDenis Kenzior3-23/+47
2009-08-14Update the AT modem SSN driver to the new APIDenis Kenzior4-65/+146
2009-08-14Update the at phonebook driver to the new APIDenis Kenzior3-103/+111
2009-08-14Update at call settings driver to new APIDenis Kenzior3-46/+71
2009-08-14Update the at call meter driver for new APIDenis Kenzior3-72/+90
2009-08-14Update at modem call forwarding driverDenis Kenzior3-35/+66
2009-08-14Update at modem call-barring driver to the new APIDenis Kenzior3-36/+67
2009-08-12Warn when (potentially) invalid input encounteredDenis Kenzior1-0/+10
2009-08-06Update AT modem plugin to use GAtChat loggingDenis Kenzior1-0/+9
Enabled if OFONO_AT_DEBUG environment variable is set
2009-08-06Fixup atmodem.c for gatchat changesDenis Kenzior1-7/+6
2009-08-05Fix record number in at_sim_update_record.Andrzej Zaborowski1-1/+1
2009-07-29Remove all uses of modem.hDenis Kenzior1-1/+1
2009-07-29Rename ofono_modem_userdataDenis Kenzior11-100/+110
2009-07-29Make plugins use ofono_modem_get_pathDenis Kenzior1-8/+8
2009-07-29Remove supports_tech variableDenis Kenzior1-12/+3
The proper way to register with a particular network technology is to use a band selection command (e.g. select 2G only or 3G only, or hybrid) The tech selection according to 27.007 is non-binding anyway
2009-07-29Tweak CREG notification to be more fault tolerantDenis Kenzior1-0/+10
2009-07-29Get rid of dbus-gsm.hDenis Kenzior1-1/+2
2009-07-29Rename dbus_gsm_dict_append_arrayDenis Kenzior1-1/+1
2009-07-29Move & Rename PROPERTIES_ARRAY_SIGNATUREDenis Kenzior1-1/+2
2009-07-29Rename dbus_gsm_signal_array_property_changedDenis Kenzior1-2/+2
2009-07-29Rename dbus_gsm error functions to __ofono_errorDenis Kenzior1-5/+10
2009-07-29Move & Rename dbus_gsm_connectionDenis Kenzior1-3/+3
Move to ofono/dbus.h ofono_dbus_get_connection
2009-07-29Experimental support for modems with no UCS2/UTF8Denis Kenzior1-2/+28
Some modems, like the G1 do not support UCS2/UTF8. However, we can still attempt to export some phonebook entries which are probably going to be simple Latin1 characters (e.g. 411, etc)
2009-07-27Fix phonebook comment to report CSCSYang Gu1-1/+1
2009-07-27Fix phonebook problem when charset is in a listYang Gu1-1/+1
2009-07-27Add support for cyclic filesDenis Kenzior1-0/+1
2009-07-27Refactor SIM file access codeDenis Kenzior1-20/+6
SIM File Access conditions would be reported similarly between various stacks, so it seems like the core logic of figuring out the access conditions belongs up in the daemon. This also fixes various problems, including: - access conditions read from bytes 10-12, instead of 9-11. - read/update, invalidate/rehabilitate and increase conditions read from the wrong bits (0-3 instead of 4-7 and vice versa)