Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-10-10 | drivers: Update copyright information | Marcel Holtmann | 1 | -13/+13 | |
2011-07-29 | atmodem: Handle SIM busy condition gracefully for phonebooks | Marcel Holtmann | 1 | -8/+43 | |
Before the phonebook is ready, the SIM card needs certain amount of time. Something between 20-30 seconds in general. So if the modem returns an error indicating the SIM is busy, then try again in regular intervals. | |||||
2011-03-11 | atmodem: fix PB reading when fields are omitted | Paavo Leinonen | 1 | -2/+2 | |
Fix SIM PB reading when numeric fields have been omitted. | |||||
2011-01-29 | atmodem: remove NULL check | Jeevaka Badrappan | 1 | -4/+0 | |
2011-01-12 | atmodem: M15 coding style fix | Jeevaka Badrappan | 1 | -3/+3 | |
2010-11-29 | drivers: explicitly compare pointers to NULL | Lucas De Marchi | 1 | -2/+2 | |
This patch was generated by the following semantic patch (http://coccinelle.lip6.fr/) // <smpl> @fix disable is_null,isnt_null1@ expression *E; @@ - !E + E == NULL // </smpl> | |||||
2010-10-21 | atmodem: Add support for IFX specific phonebook ready notification | Marcel Holtmann | 1 | -15/+50 | |
2010-08-30 | phonebook: Trivial style / wording fixes | Denis Kenzior | 1 | -4/+5 | |
2010-08-30 | atmodem/phonebook: parse text as hexstring | Thadeu Lima de Souza Cascardo | 1 | -72/+66 | |
Some modems omit the quotes when dumping strings in UCS2. Parsing them as hexstring already does the hex decoding and accepts missing quotes. | |||||
2010-08-16 | atmodem: Remove useless NULL checks before g_free | Marcel Holtmann | 1 | -2/+1 | |
2010-08-12 | atmodem: Use g_at_chat_clone | Denis Kenzior | 1 | -1/+2 | |
2010-02-08 | Refactor: Remove atutil dump_response | Denis Kenzior | 1 | -10/+0 | |
No longer needed now that we have nice AT command tracing using OFONO_AT_DEBUG=1 | |||||
2010-02-05 | Fix: Use snprintf instead of sprintf in atmodem | Denis Kenzior | 1 | -4/+5 | |
2010-01-28 | Fix some leftover oudated copyrights | Marcel Holtmann | 1 | -1/+1 | |
2009-12-17 | Style: Repeat for drivers | Denis Kenzior | 1 | -1/+2 | |
2009-11-11 | Fix: Set data to NULL in drivers | Denis Kenzior | 1 | -0/+2 | |
2009-09-11 | Rework DECLARE_FAILURE to be a bit nicer | Denis Kenzior | 1 | -8/+2 | |
2009-09-04 | Rename at.h to atmodem.h | Denis Kenzior | 1 | -1/+1 | |
2009-09-01 | Rename generic_at drivers to atmodem | Denis Kenzior | 1 | -1/+1 | |
Be more consistent with directory naming | |||||
2009-09-01 | Make remove functions not return anything | Denis Kenzior | 1 | -3/+1 | |
2009-09-01 | change int vendor to unsigned int vendor | Denis Kenzior | 1 | -1/+1 | |
2009-09-01 | Add vendor flag capability to phonebook | Denis Kenzior | 1 | -2/+3 | |
2009-08-20 | Fix unused variable pbd | Denis Kenzior | 1 | -1/+0 | |
2009-08-19 | Remove modem member from cb_data | Denis Kenzior | 1 | -1/+1 | |
2009-08-14 | Update the at phonebook driver to the new API | Denis Kenzior | 1 | -99/+105 | |
2009-08-12 | Warn when (potentially) invalid input encountered | Denis Kenzior | 1 | -0/+10 | |
2009-07-29 | Rename ofono_modem_userdata | Denis Kenzior | 1 | -13/+14 | |
2009-07-29 | Experimental support for modems with no UCS2/UTF8 | Denis Kenzior | 1 | -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-27 | Fix phonebook comment to report CSCS | Yang Gu | 1 | -1/+1 | |
2009-07-27 | Fix phonebook problem when charset is in a list | Yang Gu | 1 | -1/+1 | |
2009-07-16 | Refactor phonebook code | Denis Kenzior | 1 | -249/+208 | |
2009-07-16 | Fix style issue | Denis Kenzior | 1 | -1/+0 | |
2009-07-16 | Add character set support in phonebook | Yang Gu | 1 | -29/+338 | |
2009-06-22 | Merge phonebook entries belong to one person | Yang Gu | 1 | -1/+1 | |
2009-06-16 | Refactor phonebook code | Denis Kenzior | 1 | -101/+59 | |
Use immediate mode reporting, which means that the individual CPBR lines are reported up to the core immediately. This has a couple advantages: - We do not need to malloc/free a bunch of single variables and copy them over. Helps performance. - The lines are not buffered up and given to the plugin in one shot, instead processing is performed piecemeal. This helps with keeping memory consumption down to a minimum | |||||
2009-06-16 | Use library functions appropriately | Denis Kenzior | 1 | -22/+20 | |
Instead of using custom parsing, use the existing library functionality in result iter open_list, next_range and close_list | |||||
2009-06-16 | Don't use spaces and use tabs instead | Denis Kenzior | 1 | -7/+8 | |
2009-06-16 | Make const-correct | Denis Kenzior | 1 | -7/+1 | |
2009-06-16 | Export phonebook as vCard 3.0 format | Yang Gu | 1 | -0/+303 | |