Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-11-22 | modem: Don't notify online watches the first time | Denis Kenzior | 1 | -2/+2 | |
We should not notify the online watches when we enter the OFFLINE state for the first time. We should only do so when we go from ONLINE state into the OFFLINE state. | |||||
2010-11-22 | modem: Miscellaneous style fixes | Denis Kenzior | 1 | -4/+7 | |
2010-11-22 | modem: add modem online-offline watch | Andras Domokos | 1 | -0/+46 | |
2010-11-22 | src: coding style fixes - rule M6 | Jeevaka Badrappan | 1 | -4/+4 | |
2010-11-19 | modem: Fix small coding style issue | Marcel Holtmann | 1 | -1/+1 | |
2010-11-17 | modem: Fix up doc typo | Denis Kenzior | 1 | -2/+1 | |
2010-11-15 | Simplify ofono_modem_set_powered() logic | Gustavo F. Padovan | 1 | -22/+25 | |
2010-10-25 | modem: Add ofono_modem_is_registered | Denis Kenzior | 1 | -0/+11 | |
2010-10-21 | modem: add debugs to monitor modem state changes | Petteri Tikander | 1 | -0/+4 | |
2010-09-28 | modem: Add modemwatch watchlist functions | Denis Kenzior | 1 | -0/+50 | |
Used for registering to modem added & removed notifications | |||||
2010-09-28 | modem: Minor style fix | Denis Kenzior | 1 | -6/+8 | |
2010-09-09 | modem: Add __ofono_modem_foreach | Denis Kenzior | 1 | -0/+11 | |
2010-09-09 | manager: Add ModemRemoved signal | Denis Kenzior | 1 | -0/+12 | |
2010-09-09 | manager: Add ModemAdded signal | Denis Kenzior | 1 | -0/+29 | |
2010-09-09 | modem: Remove unneeded functions | Denis Kenzior | 1 | -47/+0 | |
2010-09-09 | modem: Break out append_modem_properties | Denis Kenzior | 1 | -26/+30 | |
2010-08-30 | modem: Skip waiting for sim_ready if no sim atom | Denis Kenzior | 1 | -28/+38 | |
For modems that do not have a SIM atom (e.g. HFP, DUN) we should skip waiting for the sim_ready notification that will never arrive. | |||||
2010-08-30 | sim: Turn around the order of arguments | Denis Kenzior | 1 | -3/+3 | |
The void *user argument was first. It should be last instead to be consistent with the other watch functions. | |||||
2010-08-30 | modem: Reset unregister when atom is unregistered | Denis Kenzior | 1 | -0/+1 | |
2010-08-30 | modem: Fix turning off modem in immediate case | Denis Kenzior | 1 | -0/+2 | |
If the driver does not return EINPROGRESS we don't set the modem to the off state properly | |||||
2010-08-30 | modem: minor style fix | Denis Kenzior | 1 | -2/+2 | |
2010-08-19 | gprs: Update GPRS related DBus interface names | Denis Kenzior | 1 | -1/+1 | |
2010-08-19 | sms: Update SmsManager to MessageManager | Denis Kenzior | 1 | -1/+1 | |
2010-07-21 | Fix: Free modem name in ofono_modem_remove | Zhenhua Zhang | 1 | -0/+1 | |
Avoid the memory leak of modem name. | |||||
2010-07-17 | Add feature identifier for SIM Toolkit | Marcel Holtmann | 1 | -0/+1 | |
2010-06-12 | Just call the feature "net" instead of "netreg" | Marcel Holtmann | 1 | -1/+1 | |
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 |