Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-03-22 | Move radio settings interface definition to dbus.h | Denis Kenzior | 2 | -8/+7 | |
2010-03-22 | Move sms interface definition to dbus.h | Denis Kenzior | 2 | -9/+8 | |
2010-03-22 | Move voicecall interface definitions to dbus.h | Denis Kenzior | 2 | -28/+26 | |
2010-03-22 | Add message-waiting api | Denis Kenzior | 1 | -0/+45 | |
2010-03-22 | Add call-volume api | Denis Kenzior | 1 | -0/+42 | |
2010-03-22 | Add cell broadcast API | Denis Kenzior | 1 | -0/+71 | |
2010-03-22 | Add phonebook-api document | Denis Kenzior | 1 | -0/+18 | |
2010-03-22 | Fix: extract line should use S3, not hardcode CR | Denis Kenzior | 1 | -3/+4 | |
2010-03-22 | Refactor: Command line extraction | Denis Kenzior | 1 | -4/+10 | |
2010-03-22 | Refactor: Extended command parsing | Denis Kenzior | 2 | -118/+96 | |
Make the code more bullet proof and easier to follow | |||||
2010-03-22 | Add G_AT_SERVER_RESULT_EXT_ERROR | Zhenhua Zhang | 1 | -0/+1 | |
2010-03-22 | Add g_at_server_register and unregister callback | Zhenhua Zhang | 2 | -0/+54 | |
2010-03-22 | Add notify at command callback | Zhenhua Zhang | 1 | -0/+48 | |
2010-03-22 | Add server at command data structure | Zhenhua Zhang | 2 | -0/+49 | |
2010-03-22 | Add extended command parsing | Zhenhua Zhang | 1 | -2/+69 | |
2010-03-22 | Add framework of server parser | Zhenhua Zhang | 1 | -20/+26 | |
a. The parser fetch and parse one command per loop. The prefix is the command prefix without parameter. For example, the prefix of "AT+CLIP=1" is "+CLIP". b. Search registered notification node in command_list. Invoke the callback if found. c. Termiate the execution if the result is an error. Otherwise, parse next command. | |||||
2010-03-20 | Revert the default statement for PIN type checking | Marcel Holtmann | 2 | -8/+5 | |
Also fix the coding style for the switch statement and remove the number assignment for an internal enum. | |||||
2010-03-19 | Trivial: Add break statement | Denis Kenzior | 1 | -0/+3 | |
In case we ever extend the enum/switch and unwittingly introduce a bug. | |||||
2010-03-19 | Fix: Check password length based on its type | Pekka Pessi | 5 | -22/+48 | |
The different password types have different length requirements, so update is_valid_pin to validate according to the password type being validated (PIN / PUK / NET) | |||||
2010-03-18 | huawei: use GSM permissive parser instead of V1. | João Paulo Rechi Vita | 1 | -1/+1 | |
With V1 parser the driver fails to detect when a SMS is successfully sent and keeps re-trying until Max retries. | |||||
2010-03-18 | Add support for IP based connections to gsmdial | Denis Kenzior | 1 | -1/+51 | |
2010-03-18 | Fix: Echo everything as soon as received | Denis Kenzior | 1 | -4/+5 | |
2010-03-18 | Update sim-api.txt | Denis Kenzior | 1 | -1/+1 | |
2010-03-18 | Refactor add is_basic_command_prefix function | Zhenhua Zhang | 1 | -2/+13 | |
2010-03-18 | Rename parse_v250_settings | Zhenhua Zhang | 1 | -2/+2 | |
To parse_basic_command | |||||
2010-03-18 | Rename parse_at_command | Zhenhua Zhang | 1 | -2/+2 | |
To parse_extended_command | |||||
2010-03-18 | Rename is_at_command_prefix | Zhenhua Zhang | 1 | -2/+2 | |
To is_extended_command_prefix | |||||
2010-03-18 | Rename g_at_server_send_result | Zhenhua Zhang | 1 | -8/+8 | |
To g_at_server_send_final | |||||
2010-03-18 | Doc: Fixup style issues | Denis Kenzior | 1 | -2/+2 | |
2010-03-18 | Added call-barring-api.txt. | Pekka Pessi | 1 | -0/+65 | |
2010-03-18 | Fix: Interrogation of barring does not need pin | Pekka Pessi | 1 | -1/+1 | |
2010-03-18 | Fix: Number of barring services is constant | Pekka Pessi | 1 | -10/+3 | |
2010-03-18 | Style: Remove the now unnecessary braces | Denis Kenzior | 1 | -2/+1 | |
2010-03-18 | Fix: Return newly-queried barring status | Pekka Pessi | 1 | -3/+2 | |
We were returning the contents of the old locks | |||||
2010-03-18 | Fix: call barring can only be (de)activated | Pekka Pessi | 1 | -2/+2 | |
2010-03-16 | Fix: Use g_try_malloc when parsing stk result | Denis Kenzior | 1 | -1/+6 | |
2010-03-16 | Fix: Use g_try_malloc when parsing stk address | Denis Kenzior | 1 | -1/+6 | |
2010-03-16 | Fix: Use g_try_malloc in gisi/pipe.c | Denis Kenzior | 1 | -1/+4 | |
2010-03-16 | Fix: Use g_try_malloc not g_malloc in isi/pep.c | Denis Kenzior | 1 | -2/+6 | |
2010-03-16 | Style: Use newlines to make the code more readable | Denis Kenzior | 1 | -0/+3 | |
2010-03-16 | Style: Always use tab for indentation | Denis Kenzior | 1 | -2/+4 | |
2010-03-16 | Fix: Use g_try_malloc in gatutil | Denis Kenzior | 1 | -1/+4 | |
2010-03-16 | Fix: Use g_try_malloc instead of g_malloc in util | Denis Kenzior | 1 | -3/+3 | |
In these cases we were checking for NULL return, but the function used should have been g_try_malloc instead. | |||||
2010-03-16 | Refactor: create_dirs logic | Denis Kenzior | 1 | -8/+17 | |
- Remove reference to g_malloc and replace with g_try_malloc - Be extra pedantic on the inputs - Refactor the logic to make it slightly easier to follow | |||||
2010-03-16 | Fix: Fixup error paths in sim_op_check_cached | Denis Kenzior | 1 | -1/+7 | |
2010-03-16 | Fix: avoid assigning to return structure on error | Denis Kenzior | 1 | -1/+1 | |
2010-03-16 | Style: Spaces before / after arithmetic operations | Denis Kenzior | 1 | -5/+5 | |
2010-03-16 | Style: Align the enum values to be easier to read | Denis Kenzior | 1 | -213/+213 | |
2010-03-16 | Handle the conversion failure when parsing item | Yang Gu | 1 | -1/+7 | |
2010-03-16 | Fix the structure of stk_subaddress | Yang Gu | 1 | -1/+1 | |