Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2009-09-16 | Check received PDUs fit in the buffer, fix buffer size. | Andrzej Zaborowski | 1 | -3/+14 | |
2009-09-11 | Rework DECLARE_FAILURE to be a bit nicer | Denis Kenzior | 13 | -267/+85 | |
2009-09-10 | Ensure CBS is in a known state at startup | Denis Kenzior | 1 | -4/+7 | |
2009-09-10 | Add atmodem cell broadcast driver | Denis Kenzior | 4 | -17/+206 | |
2009-09-08 | Read messages left over in ME storage on startup. | Andrzej Zaborowski | 1 | -0/+125 | |
On modems that don't support +CMT (or for class 2 SMSes) the messages are stored in the modem and then read and deleted from there in two separate steps with no warranty that deletion succeeds or (more likely) power is cut before the deletion happens. Over time the memory may become full and if we don't want to deal with this condition we need to check on startup if there are messages we haven't deleted. We can't differentiate between those messages and those the user already had on the SIM / modem before installing ofono or switching phones, so we might want to deliver messages with REC READ status with some kind of indication that these are potentially old so the UI doesn't emit spurious alerts. We don't do this now and just deliver as usual. | |||||
2009-09-04 | Rename at.h to atmodem.h | Denis Kenzior | 14 | -13/+13 | |
2009-09-04 | Break common at utilities to atutils.c/.h | Denis Kenzior | 4 | -55/+110 | |
2009-09-04 | Remove unused declaration | Denis Kenzior | 1 | -2/+0 | |
2009-09-04 | Remove unused structure | Denis Kenzior | 1 | -7/+0 | |
2009-09-03 | Add quirk for network-registration for calypso | Denis Kenzior | 2 | -7/+43 | |
Support calypso-specific AT%CSQ notifications | |||||
2009-09-02 | G1: Add an SMS quirk for CNMI mode | Andres Salomon | 2 | -5/+15 | |
The G1 doesn't support mode2, despite advertising it. The G1 chokes w/ an "Error 303" when we specify NMI mode 2. Adding a quirk to drop that mode from the supported list (just use mode 1) allows the G1 to properly deal with SMS. | |||||
2009-09-01 | Rename generic_at drivers to atmodem | Denis Kenzior | 12 | -12/+12 | |
Be more consistent with directory naming | |||||
2009-09-01 | Make remove functions not return anything | Denis Kenzior | 12 | -28/+12 | |
2009-09-01 | change int vendor to unsigned int vendor | Denis Kenzior | 12 | -15/+22 | |
2009-09-01 | Add stub vendor.h file | Denis Kenzior | 1 | -0/+24 | |
2009-09-01 | Add vendor flag capability to voicecalls | Denis Kenzior | 1 | -2/+3 | |
2009-09-01 | Add vendor flag capability to ussd | Denis Kenzior | 1 | -1/+4 | |
2009-09-01 | Add vendor flag capability to ssn | Denis Kenzior | 1 | -1/+4 | |
2009-09-01 | Add vendor flag capability for sms | Denis Kenzior | 1 | -2/+4 | |
2009-09-01 | Add vendor flag capability to sim | Denis Kenzior | 1 | -1/+4 | |
2009-09-01 | Add vendor flag capability to phonebook | Denis Kenzior | 1 | -2/+3 | |
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 | -3/+5 | |
2009-09-01 | Add vendor flag to call-settings | Denis Kenzior | 1 | -1/+5 | |
2009-09-01 | Add vendor parameter to call-meter | Denis Kenzior | 1 | -2/+4 | |
2009-09-01 | Add vendor flag to call-forwarding | Denis Kenzior | 1 | -1/+5 | |
2009-09-01 | Introduce vendor parameter to call-barring | Denis Kenzior | 1 | -1/+5 | |
2009-08-24 | Convert to fully non-recursive build system | Marcel Holtmann | 2 | -1/+1 | |
2009-08-21 | Remove org.ofono.at.Manager | Denis Kenzior | 3 | -617/+0 | |
2009-08-21 | Remove unused function | Denis Kenzior | 1 | -6/+0 | |
2009-08-20 | Rename ofono_modem_*_userdata | Denis Kenzior | 1 | -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-20 | Fix unused variable pbd | Denis Kenzior | 1 | -1/+0 | |
2009-08-20 | Fix unused variable chat | Denis Kenzior | 1 | -1/+0 | |
2009-08-20 | Fix implicit declaration of ofono_netreg_create | Denis Kenzior | 1 | -0/+1 | |
2009-08-20 | Update the AT modem driver to the new devinfo api | Denis Kenzior | 3 | -170/+232 | |
2009-08-19 | Remove modem member from cb_data | Denis Kenzior | 11 | -45/+42 | |
2009-08-19 | Fix release specific not reporting proper reason | Denis Kenzior | 1 | -1/+1 | |
The proper disconnect reason was not being reported in the at modem voicecall plugin | |||||
2009-08-19 | Remove poll_clcc variable | Denis Kenzior | 1 | -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-19 | Update the AT modem voicecall driver for new API | Denis Kenzior | 3 | -223/+247 | |
2009-08-19 | Remove dead code in voicecall at driver | Denis Kenzior | 1 | -31/+0 | |
2009-08-19 | Update netreg AT modem driver to the new API | Denis Kenzior | 3 | -96/+109 | |
2009-08-19 | Port AT modem driver to the new MWI api | Denis Kenzior | 1 | -0/+15 | |
2009-08-19 | Remove unneeded function call | Denis Kenzior | 1 | -1/+0 | |
2009-08-19 | Update SIM AT driver to the new API | Denis Kenzior | 3 | -43/+69 | |
2009-08-19 | Port SMS AT modem driver to the new API | Denis Kenzior | 3 | -179/+178 | |
2009-08-19 | Remove unused member | Denis Kenzior | 1 | -1/+0 | |
2009-08-17 | Port the USSD at driver to the new API | Denis Kenzior | 3 | -23/+47 | |
2009-08-14 | Update the AT modem SSN driver to the new API | Denis Kenzior | 4 | -65/+146 | |
2009-08-14 | Update the at phonebook driver to the new API | Denis Kenzior | 3 | -103/+111 | |
2009-08-14 | Update at call settings driver to new API | Denis Kenzior | 3 | -46/+71 | |