Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-06-09 | Add support for Features property on modem interface | Marcel Holtmann | 1 | -12/+74 | |
2010-05-27 | Use ofono_bool_t instead of bool in modem API. | Pekka Pessi | 1 | -5/+5 | |
2010-05-27 | modem: Fix inconsistent state | Pekka Pessi | 1 | -3/+6 | |
Keep modem state consistent if sim is removed while set_online driver call is pending. This results in set_online callback being called and modem entering an invalid state. | |||||
2010-05-26 | Fix: Go to online state if set_online is NULL | Denis Kenzior | 1 | -0/+9 | |
2010-05-26 | Refactor: no need for dummy_online_callback | Denis Kenzior | 1 | -13/+2 | |
2010-05-26 | Fix: Don't allow setting online before sim ready | Denis Kenzior | 1 | -6/+9 | |
2010-05-26 | Refactor: Break up set_online_callback | Denis Kenzior | 1 | -19/+21 | |
- Break up into two functions, one for online and one for offline - No longer the need for online_pending variable | |||||
2010-05-26 | Refactor: flush_atoms | Denis Kenzior | 1 | -7/+29 | |
The current implementation did not take care of the case where the head of the list was removed | |||||
2010-05-26 | Refactor: Don't use ofono_ prefix | Denis Kenzior | 1 | -4/+4 | |
Only meant for oFono public API | |||||
2010-05-26 | Refactor: The macros are no longer needed | Denis Kenzior | 1 | -20/+14 | |
2010-05-26 | Refactor: Don't use ofono_ prefix | Denis Kenzior | 1 | -5/+5 | |
Only to be used for ofono public API | |||||
2010-05-26 | Refactor: Don't use ofono_ prefix | Denis Kenzior | 1 | -26/+22 | |
only meant for public API | |||||
2010-05-26 | Refactor: Don't use ofono_ prefix | Denis Kenzior | 1 | -28/+27 | |
ofono_ prefix is meant for public API | |||||
2010-05-26 | Fix: minor style issues | Denis Kenzior | 1 | -1/+1 | |
2010-05-26 | Add: Online property to modem | Pekka Pessi | 1 | -42/+158 | |
The online/offline state is changed with the new set_online() modem driver method. In order to track atoms, there are modem states as follows: - OFONO_MODEM_STATE_POWER_OFF - OFONO_MODEM_STATE_PRE_SIM - OFONO_MODEM_STATE_OFFLINE - OFONO_MODEM_STATE_ONLINE Atoms are added with driver methods pre_sim(), post_sim() and post_online(). Atoms are removed by modem core when the state changes. | |||||
2010-05-19 | core: Trivial whitespace error | Denis Kenzior | 1 | -1/+1 | |
2010-05-19 | Add network time support | Aki Niemi | 1 | -0/+1 | |
Adding a new notify function in the netreg atom for notifying a received Network Identification and Timezone (NITZ) indication. This data is consumed via a nettime plugin, of which there is also an example. | |||||
2010-05-10 | Fix: Don't remove wrong atoms | Andrzej Zaborowski | 1 | -3/+6 | |
When the state goes from INSERTED to NOT PRESENT and we have not advanced past the SIM PIN entry, we remove the pre_sim atoms. Similarly, if we advanced past the SIM PIN stage and subsequently removed the SIM, the pre_sim atom list should not be tampered with. | |||||
2010-04-15 | Fix: Don't crash by calling sim watch too early | Denis Kenzior | 1 | -1/+0 | |
The modem sim watch is only watching for removed and ready conditions, so no need to call it prematurely | |||||
2010-04-15 | Fix: Make distcheck happy | Denis Kenzior | 1 | -1/+0 | |
2010-04-15 | Refactor: Keep separate lists for pre/post atoms | Denis Kenzior | 1 | -53/+33 | |
2010-04-15 | Refactor: use a switch/case to make more readable | Denis Kenzior | 1 | -14/+11 | |
2010-04-15 | Remove post-sim atoms after SIM is extracted. | Andrzej Zaborowski | 1 | -0/+40 | |
2010-04-15 | Add Sim Toolkit atom | Andrzej Zaborowski | 1 | -0/+1 | |
- Add ofono_stk atom in stk.c - Move envelope command from sim driver to stk driver | |||||
2010-04-15 | Extend sim-ready watch with card insert/eject | Andrzej Zaborowski | 1 | -5/+6 | |
2010-02-12 | Fix: Trivial mistake | Denis Kenzior | 1 | -3/+0 | |
2010-02-12 | Add support for modem names | Denis Kenzior | 1 | -0/+25 | |
2010-02-10 | Clean: no error path needed | Inaky Perez-Gonzalez | 1 | -1/+6 | |
Remove unneeded error path and document the rationale behind it in __ofono_modem_get_list() and manager_get_properties(). | |||||
2010-01-06 | Refactor: Allow persisent modem names | Denis Kenzior | 1 | -4/+11 | |
2010-01-01 | Update copyright information | Marcel Holtmann | 1 | -1/+1 | |
2009-12-17 | Style: Fix a few more occurences of if/else | Denis Kenzior | 1 | -1/+2 | |
See Linux coding style document for details | |||||
2009-12-08 | Fix: Be more paranoid even during shutdown | Denis Kenzior | 1 | -1/+1 | |
2009-12-08 | Fix: Print a warning in set_powered | Denis Kenzior | 1 | -4/+8 | |
If ofono_modem_set_powered is used with no driver set, print a warning | |||||
2009-12-08 | Fix remove all atoms in ofono_modem_set_powered | Zhenhua Zhang | 1 | -0/+3 | |
We should remove all atoms when we disable the modem. In function set_powered, we remove all atoms if modem is powered down by dbus call. | |||||
2009-12-08 | Remove: Unused code related to modem powered prefs | Denis Kenzior | 1 | -8/+0 | |
2009-12-08 | Revert: Previous powered patch | Denis Kenzior | 1 | -4/+4 | |
2009-12-08 | Fix a crash during isimodem initialization | Alexander Kanavin | 1 | -4/+4 | |
2009-12-04 | Refactor: call id allocation / release | Denis Kenzior | 1 | -3/+7 | |
2009-12-03 | Fix: Exit right away | Denis Kenzior | 1 | -0/+3 | |
If no plugin needs to run the eventloop to shutdown cleanly, exit right away. | |||||
2009-12-02 | Fix: Paste error | Denis Kenzior | 1 | -2/+0 | |
2009-12-02 | When SIGTERM is received, run the event loop | Denis Kenzior | 1 | -12/+48 | |
This feature will continue running the event loop for another 10 seconds or so or until all the modems have been shut down. This will allow the modem drivers to properly shutdown their respective devices. | |||||
2009-12-02 | Refactor: Set powered to false if disable timedout | Denis Kenzior | 1 | -1/+12 | |
2009-12-02 | Fix: unregister modem when unregistering driver | Denis Kenzior | 1 | -0/+12 | |
2009-12-02 | Refactor: modem de-registration | Denis Kenzior | 1 | -9/+3 | |
2009-12-02 | Fix: Remove all atoms when attempting to power off | Denis Kenzior | 1 | -9/+9 | |
The current behavior is to remove atoms when the modem has powered off successfully. The modem driver must now take special precautions to cancel all pending actions of the atom drivers, since they would have been destroyed. | |||||
2009-11-26 | Fix: Reset call_ids when modem is powered off | Zhenhua Zhang | 1 | -0/+3 | |
2009-11-11 | Fix: Emit Manufacturer, not Serial | Denis Kenzior | 1 | -1/+1 | |
2009-09-28 | Fix: Report registered modems properly | Denis Kenzior | 1 | -2/+2 | |
2009-09-22 | Fix: Comparison should be against negative errno | Denis Kenzior | 1 | -1/+1 | |
2009-09-17 | Split populate modem driver method | Denis Kenzior | 1 | -12/+45 | |
Introduce two new methods - pre_sim - SIM is not inserted or locked. This should populate the modem with atoms that can be used without the SIM. Generally this is the devinfo atom, the sim atom and the voice call atom (emergency calls only) - post_sim - SIM is ready. This method should populate the modem with the remaining atoms |