summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2010-02-05Fix: Use snprintf instead of sprintf in atmodemDenis Kenzior12-55/+58
2010-02-05Fix: Use snprintf instead of sprintf in the coreDenis Kenzior3-12/+15
2010-02-04Add isimodem radio settings driverAki Niemi4-0/+326
2010-02-04Add PN_GSS codepoints and debuggingAki Niemi4-1/+89
2010-02-04Add radio settings atom and driver APIAki Niemi5-2/+503
This interface exposes a read-write property for radio access technology selection mode.
2010-02-04Fix: No need to check for handsfree_path nowDenis Kenzior1-12/+0
2010-02-04Cleanup: Refactor handling of failed connectionsDenis Kenzior2-42/+23
2010-02-04Cleanup: Modem creationDenis Kenzior1-2/+11
2010-02-04Add function to handle SLC handshake failuresDenis Kenzior1-1/+19
2010-02-04Fix: Don't send undefined values to the coreDenis Kenzior1-3/+4
2010-02-04Fix: Unnecessary initializationsDenis Kenzior1-2/+2
2010-02-04Fix: Dead AssignmentsDenis Kenzior3-6/+4
2010-02-04Fix: missing break statementDenis Kenzior1-0/+2
2010-02-04Fix: Dead AssignmentDenis Kenzior1-3/+2
2010-02-03Fix: Wrong variables useDenis Kenzior1-2/+2
Copy/paste error from above resulted in incorrect variables being used for comparison.
2010-02-03Fix: Check for \r in UCS2 alphabetsDenis Kenzior1-1/+1
2010-02-03Update overview.txtDenis Kenzior1-12/+26
2010-02-03Remove dead assignments at gatchatGustavo F. Padovan1-6/+0
2010-02-02Fix debug dump and unknown codepoint handlingAki Niemi1-26/+26
2010-02-02Fix change state immediately when meet the slashZhenhua Zhang1-15/+5
According to V.250 spec section 5.2.4 Repeating a command line, if the prefix "A/" or "a/" is received, we should execute the last command immediately. No need to meet \r.
2010-02-02Fix: Ignore CBM pdus bigger than 88 bytesDenis Kenzior1-0/+5
2010-02-01Fix: Remove unused labelDenis Kenzior1-1/+0
2010-02-01Fix: Don't leak memoryDenis Kenzior1-5/+2
2010-02-01Fix: Skip whitespace in AT command lineDenis Kenzior1-5/+33
2010-02-01Refactor: Use more flexible parser frameworkDenis Kenzior1-101/+165
2010-02-01Add test case for GAtServerZhenhua Zhang2-1/+427
To implement PTY, TCP, Unix socket example to create GAtServer instance.
2010-02-01Fix: Check if the command is still pendingDenis Kenzior1-0/+3
2010-02-01Style: No need for the extra lineDenis Kenzior1-2/+1
2010-02-01Fix: Don't set variables to NULL/0Denis Kenzior1-7/+1
These were already set to 0 by g_try_new0
2010-02-01Refactor: Support max_read attempts like GAtChatDenis Kenzior1-6/+14
2010-02-01Fix: Use a function instead of a tableDenis Kenzior1-32/+30
2010-02-01Refactor: Make enums follow 27.007 Annex BDenis Kenzior1-9/+10
2010-02-01Fix: Make compileDenis Kenzior1-7/+7
2010-02-01Add GAtServer basic parsing supportZhenhua Zhang3-1/+553
It's the basic skeleton of GAtServer, including new/shutdown, ref/ unref, received_data/parse_buffer and set_discuss/set_debug. GAtServer is to emulate the server side of AT conversation. It complies with V.250 and 27.007 spec to accept AT command like ATV1, ATE0 and extended command like AT+CLCC. Upper layer could create customize server to expose TTY, tcp or unix socket to client side application.
2010-01-30Release 0.17Marcel Holtmann2-1/+8
2010-01-30Check for dbus_connection_can_send_type() functionMarcel Holtmann1-0/+4
2010-01-30Use blocking GAtChat objects for STE modemsMarcel Holtmann1-1/+1
Due to some missing implementation of POLLOUT, the access to the CAIF channels of the STE modems have to be done in a blocking fashion.
2010-01-30Add support for using old CAIF subsystem with character devicesMarcel Holtmann2-18/+34
2010-01-30Use simple driver table for modem configuration setup helpersMarcel Holtmann1-7/+18
2010-01-29Mention João's contributionsDenis Kenzior1-0/+1
2010-01-29Add ability to select modem on test-voicecallJoão Paulo Rechi Vita1-4/+10
2010-01-28Use 3 read attempts when in non-blocking modeMarcel Holtmann1-1/+1
2010-01-28Fix some leftover oudated copyrightsMarcel Holtmann3-3/+3
2010-01-28Fix: Update copyright notice for 2010Denis Kenzior4-4/+4
2010-01-28Style: Various whitespace issuesDenis Kenzior1-9/+14
2010-01-28Style: Put voicecall before gprsDenis Kenzior2-3/+3
2010-01-28Add STE voice call support.Sjur Brændeland5-1/+603
2010-01-28Use blocking GAtChat operation for CAIF unit testMarcel Holtmann1-1/+1
2010-01-28Add new constructor for fully blocking operationMarcel Holtmann4-7/+31
2010-01-28Fix: Take care of uninitialized variable conditionDenis Kenzior1-4/+2
In some (impossible) circumstances rbytes and err might be used uninitialized. Here we make a check that a read was actually attempted before checking those variables.