summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2012-05-25icera: Select USSD driver based on USSD mode settingMarcel Holtmann1-5/+7
2012-05-25iceramodem: Handle context deactivation responsesMarcel Holtmann1-2/+7
2012-05-25udev: Add detection for Nokia 21M-01 modemsMarcel Holtmann1-0/+2
2012-05-25udev: Add detection for Samsung GT-Y3300 modemsMarcel Holtmann1-0/+2
2012-05-25udev: Extend port mapping for Icera modemsMarcel Holtmann1-1/+9
2012-05-25icera: Request USSD mode and firmware detailsMarcel Holtmann1-1/+54
2012-05-25icera: Query initial state of SIM init statusMarcel Holtmann1-13/+52
2012-05-25icera: Enable support for radio settings handlingMarcel Holtmann1-0/+3
2012-05-25iceramodem: Add support special radio settings handlingMarcel Holtmann4-1/+223
2012-05-24icera: Use SIM init nofitication instead of pollingMarcel Holtmann1-23/+43
2012-05-24atmodem: Add support for Icera network status updatesMarcel Holtmann1-0/+53
2012-05-24atmodem: Add support for Icera network time handlingMarcel Holtmann1-1/+42
2012-05-24icera: Enable SMS sending and receiving supportMarcel Holtmann1-0/+3
2012-05-24atmodem: Icera devices don't support SMS ACK PDUs eitherMarcel Holtmann1-0/+1
2012-05-24icera: Enable USSD support and ensure default character setMarcel Holtmann1-0/+11
2012-05-24atmodem: Fix issue with AT+CREG=? and AT+CGREG=? handlingMarcel Holtmann2-2/+4
Some modems might see an interim +CREG: or +CGREG: notification when querying the supported modes. Aux: > AT+CFUN=1\r Aux: < \r\nOK\r\n Aux: > AT+CREG=?\r Aux: < \r\n+CREG: 2\r\n Aux: < \r\n+CREG: (0-2)\r\nOK\r\n Unable to initialize Network Registration To make this work, skip to the first line with an actual range value.
2012-05-22gdbus: Fix incorrectly discarded signalsMikel Astiz1-7/+3
Signals with no arguments were incorrectly filtered out due to the NULL inequality check.
2012-05-22dundee: Add Bluetooth DUN driverDaniel Wagner4-3/+298
2012-05-22dundee: Add PPP handling code to deviceDaniel Wagner2-3/+253
2012-05-22dundee: Add device D-Bus interfaceDaniel Wagner2-0/+226
2012-05-22dundee: Add driver helper functionsDaniel Wagner2-0/+23
2012-05-22dundee: Add device un/registerDaniel Wagner2-1/+89
2012-05-22dundee: Add callback helpersDaniel Wagner1-0/+44
2012-05-22dundee: Manager append devicesDaniel Wagner1-0/+22
2012-05-22dundee: Add skeleton implementation for deviceDaniel Wagner4-2/+119
2012-05-22dundee: Add Manager interfaceDaniel Wagner4-7/+111
2012-05-22dundee: Add systemd configuration fileDaniel Wagner3-1/+19
2012-05-22dundee: Add D-Bus configuration fileDaniel Wagner2-0/+29
2012-05-22dundee: Add D-Bus error messagesDaniel Wagner3-1/+49
2012-05-22dundee: Add skeleton implementationDaniel Wagner5-0/+318
2012-05-22dundee: Add test scriptsDaniel Wagner3-0/+149
2012-05-22dundee: Add documentationDaniel Wagner1-0/+76
2012-05-22bluetooth: Add Serial interface definitionDaniel Wagner1-0/+1
2012-05-21hfp_hf: Fix up whitespace corruptionDenis Kenzior1-2/+2
2012-05-21test: Add timeout to be compliant with GCFGuillaume Zajac2-2/+2
With some GCF test cases, default python script timeout is too short to pass the tests.
2012-05-22iceramodem: Add special GPRS context driverMarcel Holtmann4-0/+497
2012-05-22icera: Add SIM, network registration and GPRS handlingMarcel Holtmann1-2/+189
2012-05-22atmodem: The Icera modem does not support CIND reportingMarcel Holtmann1-0/+1
2012-05-22atmodem: Add specific quirk for Icera modemsMarcel Holtmann1-0/+1
2012-05-20gdbus: do not check signature twiceLucas De Marchi1-5/+0
Message signature is already checked in generic_message(), so there's no need to check again in the callback.
2012-05-20gdbus: add Method.NoReply annotation in introspectionLucas De Marchi1-1/+6
2012-05-20gdbus: add Deprecated annotation in introspectionLucas De Marchi1-2/+17
2012-05-20gdbus: remove signature and reply from tablesLucas De Marchi2-61/+1
2012-05-20Do not set signature and reply in GDBus tablesLucas De Marchi31-254/+240
Use GDBUS_* macros, so signature and reply fields are not set in each method/signal.
2012-05-20gdbus: loop over args to check message signatureLucas De Marchi1-7/+27
2012-05-20gdbus: use GDBusArgInfo to generate introspectionLucas De Marchi1-61/+14
By using GDBusArgInfo in methods and signals, the introspection generation is much simpler and we can add each argument name.
2012-05-20Convert GDBus methods to use macro helpersLucas De Marchi31-234/+406
With these macro helpers we can separate in/out arguments and use their own vector.
2012-05-20gdbus: add and use helpers for table declarationsLucas De Marchi2-1/+104
2012-05-20gdbus: add argument info to methods and signalsLucas De Marchi1-0/+8
2012-05-20Constify GDBus signal tablesHenrique Dante de Almeida27-30/+30
Constify signal tables with the following command: find . -name '*.[ch]' -exec \ sed -i 's/\(GDBusSignalTable .* =\)/const \1/g' {} \;