Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2009-11-23 | Add mpty field to ofono_call | Zhenhua Zhang | 1 | -0/+1 | |
A field 'mpty' is added to ofono_call so that we can know whether the call belongs to multiparty call or not. According to 27.007 7.18, it is a defined return value of AT+CLCC. | |||||
2009-11-17 | Support returning settings from context activation | Denis Kenzior | 1 | -1/+5 | |
2009-11-17 | Add ofono_gprs_context_get_modem | Martin Xu | 1 | -0/+2 | |
2009-11-13 | Update some internal documentation | Denis Kenzior | 1 | -0/+12 | |
2009-11-05 | Add SMS history capability | Denis Kenzior | 1 | -0/+16 | |
2009-10-29 | Update the netreg driver to use mcc/mnc | Denis Kenzior | 1 | -2/+2 | |
Don't use the ofono_network_operator structure anymore | |||||
2009-10-27 | Refactor: replace netreg get_operator with mcc/mnc | Denis Kenzior | 1 | -2/+2 | |
The full operator information is useless as only mcc/mnc are really required. The internal structures will be changing soon | |||||
2009-10-26 | Fix: notify_attached was only used when detached | Denis Kenzior | 1 | -1/+1 | |
The standard only specifies that the context might have been detached by the network / mobile equipment. Not attached. | |||||
2009-10-23 | Fix: Connect up gprs and gprs_context | Denis Kenzior | 1 | -0/+3 | |
2009-10-23 | Add implementation of GPRS context atom | Denis Kenzior | 1 | -2/+1 | |
2009-10-23 | Refactor/Implement basic activate logic | Denis Kenzior | 1 | -1/+2 | |
Not yet tested | |||||
2009-10-23 | Fix: Typos | Denis Kenzior | 1 | -4/+4 | |
2009-10-23 | Add CID range function | Denis Kenzior | 1 | -0/+2 | |
2009-10-23 | Refactor: Split up GPRS into two atoms | Denis Kenzior | 2 | -30/+79 | |
Split up GPRS into two atoms: GPRS and GPRS Context. GPRS will handle the areas of GPRS network registration, basic GPRS capability detection and attach / detach. GPRS Context will handle setting up / activating / deactivating the indicidual contexts. This will allow us to use the generic GPRS atom for most devices while customizing the GPRS context accordingly. | |||||
2009-10-23 | Refactor: First round of renaming | Denis Kenzior | 2 | -54/+55 | |
2009-10-23 | Refactor: rename data-connection to gprs | Denis Kenzior | 1 | -0/+0 | |
Keep the name specific to GSM, other implementations will probably require their own interfaces | |||||
2009-10-23 | Add GPRS support | Andrzej Zaborowski | 2 | -0/+99 | |
This commit implements the GPRS context setup and teardown according to doc/dataconnectionmanager-api.txt One issue with the AT implementation of the api is that "Powered" (a read-write property) can be set independently of "Attached" (read-only property) and remain set when "Attached" is clear. The semantics would be that the network doesn't have resources to let the modem attach, but the modem waits for the resources to become available and then attaches. On AT the modem is in this state only when executing +CGATT, so currently the code will rerun +CGATT as soon as the previous one returns with error, probably starving other commands. A possible workaround would be for "Powered" to flip back to False after the modem fails to attach once, or give up on having separate properties. Alternatively we could re-try to attach periodically but on one modem I've tried +CGATT fails after about 1 minute (that's the Calypso) and on another only about 0.5s (Nokia phones with AT emulation). When "Powered" is set and "RoamingAllowed" is clear and we manage to attach and find that we're roaming, ofono resets "Powered". We may want to catch the user trying to dial *99***1# which is the backwards compatibility quirk for old modems (same way ofono parses USSD strings). | |||||
2009-10-02 | Refactor: Move elementary file type checking | Denis Kenzior | 1 | -3/+2 | |
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-09-29 | Add Muted property to CallVolume atom | Denis Kenzior | 1 | -0/+3 | |
2009-09-29 | Refactor: Break up call volume notify | Denis Kenzior | 1 | -2/+4 | |
2009-09-29 | Cleanup: Do not expose DBus details to drivers | Denis Kenzior | 1 | -8/+4 | |
2009-09-29 | Add call volume interface to adjust speaker and mic volume | Zhenhua Zhang | 1 | -0/+74 | |
2009-09-23 | Add plugin interface for getting PIN lock state. | Andrzej Zaborowski | 1 | -0/+6 | |
It may be useful to have the information of whether card is currently locked and emit events when this changes but if we want to have it as a property, we would need properties for all types of locks and it wouldn't be all that useful. | |||||
2009-09-22 | Refactor: Do not use int instead of enum | Denis Kenzior | 1 | -3/+4 | |
27.007 does not define an enumeration for SIM PIN/PUK values. This should be handled by ofono enum instead | |||||
2009-09-22 | Rearrange sim password enum | Denis Kenzior | 1 | -18/+20 | |
2009-09-22 | Move some stuff around | Denis Kenzior | 2 | -20/+19 | |
2009-09-22 | Do PIN authentication | Andrzej Zaborowski | 2 | -0/+39 | |
This adds checking whether PIN is required during SIM initialisation and delaying the sim ready notifications until after correct PIN is given. | |||||
2009-09-17 | Split populate modem driver method | Denis Kenzior | 1 | -2/+5 | |
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 | |||||
2009-09-10 | Add netreg getter functions | Denis Kenzior | 1 | -0/+7 | |
- Get Location, CellID - Current Operator - Registration Status - Technology | |||||
2009-09-10 | Fix cut-paste error | Denis Kenzior | 1 | -1/+1 | |
2009-09-10 | Add initial Cell Broadcast atom implementation | Denis Kenzior | 1 | -0/+65 | |
2009-09-08 | Add modem properties for booleans | Marcel Holtmann | 1 | -0/+6 | |
2009-09-02 | Get rid of node argument in ofono_modem_create | Denis Kenzior | 1 | -1/+1 | |
2009-09-02 | Add modem property capability | Denis Kenzior | 1 | -0/+8 | |
Add ofono_modem_set_string & ofono_modem_get_string Add ofono_modem_set_integer & ofono_modem_get_integer | |||||
2009-09-01 | populate should return void | Denis Kenzior | 1 | -1/+1 | |
2009-09-01 | Make remove functions not return anything | Denis Kenzior | 13 | -13/+13 | |
2009-09-01 | change int vendor to unsigned int vendor | Denis Kenzior | 12 | -25/+39 | |
2009-09-01 | Add vendor flag capability to voicecalls | Denis Kenzior | 1 | -1/+2 | |
2009-09-01 | Add vendor flag capability to ussd | Denis Kenzior | 1 | -2/+2 | |
2009-09-01 | Add vendor flag capability to ssn | Denis Kenzior | 1 | -2/+2 | |
2009-09-01 | Add vendor flag capability for sms | Denis Kenzior | 1 | -2/+2 | |
2009-09-01 | Add vendor flag capability to sim | Denis Kenzior | 1 | -2/+2 | |
2009-09-01 | Add vendor flag capability to phonebook | Denis Kenzior | 1 | -1/+2 | |
2009-09-01 | Add vendor flag capability to netreg | Denis Kenzior | 1 | -2/+2 | |
2009-09-01 | Add vendor flag capability to devinfo | Denis Kenzior | 1 | -1/+2 | |
2009-09-01 | Add vendor flag to call-settings | Denis Kenzior | 1 | -1/+2 | |
2009-09-01 | Add vendor parameter to call-meter | Denis Kenzior | 1 | -1/+2 | |
2009-09-01 | Add vendor flag to call-forwarding | Denis Kenzior | 1 | -1/+2 | |
2009-09-01 | Introduce vendor parameter to call-barring | Denis Kenzior | 1 | -1/+2 | |
2009-08-31 | Expose service dialling numbers stored on SIM through SimManager. | Andrzej Zaborowski | 1 | -0/+9 | |