summaryrefslogtreecommitdiffstats
path: root/plugins
AgeCommit message (Collapse)AuthorFilesLines
2012-08-30telit: Avoid resetting the SIMChristopher Vogl1-1/+1
Avoid a reset when switching between online and offline (airplane) mode in telit_set_online(). +CFUN accepts a second parameter (0), which disables a reset: AT+CFUN=x,0.
2012-08-21telit: disable auto attach procedures with AUTOATTChristopher Vogl1-0/+7
2012-08-20telit: Fix warningDenis Kenzior1-1/+0
plugins/telit.c: In function ‘rsen_disable_cb’: plugins/telit.c:446:21: error: unused variable ‘data’
2012-08-20telit: add additional port for data connectionChristopher Vogl1-21/+34
Use MDM port for data service and AUX for the AT chat. Disable DCD so that the modem does not hangup after a data connection.
2012-08-20udevng: rename aux port from Data to Aux for telitChristopher Vogl1-1/+1
Telit software user guide says: USB AUX doesn't support any flow control method. Therefore, this port isn't suitable for DATA service port. We recommend this port should be used only for AT command and URC processing.
2012-08-16mbm: Fix crash from processing multiple *EMRDYDenis Kenzior1-3/+11
Sometimes we see the *EMRDY notification before we query, and trigger initialization procedures twice.
2012-08-16mbm: Remove spurious ';'Denis Kenzior1-1/+1
2012-08-16telit: pass vendor at sim atom creationChristopher Vogl1-1/+2
2012-08-16telit: Fix 80 character per line violationDenis Kenzior1-1/+2
2012-08-16telit: move gprs atom into post sim phaseChristopher Vogl1-8/+8
2012-07-15bluetooth: Avoid shadowing of connection variableMarcel Holtmann1-6/+6
2012-07-15stemgr: Avoid shadowing of connection variableMarcel Holtmann1-5/+5
2012-07-02stemgr: watch for signals only on MGR_SERVICELucas De Marchi1-2/+2
2012-07-02bluetooth: watch for signals only on BLUEZ_SERVICELucas De Marchi1-5/+8
2012-06-25gobi: Add support for USSD atom driverMarcel Holtmann1-0/+4
2012-06-25gobi: The location reporting is available even without SIM card presentMarcel Holtmann1-4/+4
2012-06-25gobi: Add support for voice call atom driverMarcel Holtmann1-0/+8
2012-06-25gobi: Cancel all requests and notifications on device shutdownMarcel Holtmann1-0/+3
2012-06-25gobi: Use shared DMS for power and online operationsMarcel Holtmann1-1/+1
2012-06-22bluetooth: ignore error if driver returns -EALREADYLuiz Augusto von Dentz1-1/+1
2012-06-24gobi: Add support for radio settings atom driverMarcel Holtmann1-0/+4
2012-06-24gobi: Disable UIM support for now and allow DMS fallbackMarcel Holtmann1-3/+0
2012-06-21gobi: Use QMI support to drive this modemMarcel Holtmann1-119/+254
2012-05-31wavecom: add support for Wavecom Q2403/Q2686 modemsPablo Neira Ayuso1-2/+19
2012-05-31udev: add Wavecom supportPablo Neira Ayuso1-0/+27
This adds OFONO_WAVECOM_MODEL that can set in the udev rules file to indicate the modem model, eg. ENV{OFONO_WAVECOM_MODEL}="Q2XXX"
2012-05-26gobi: Use the correct modem property for AT command deviceMarcel Holtmann1-1/+1
2012-05-26udev: Fix matching to prefer entries with VID and PIDMarcel Holtmann1-6/+5
2012-05-26udev: Add support for detecting Huawei QMI devicesMarcel Holtmann1-8/+8
2012-05-26udev: Add support for detecting Gobi QMI devicesMarcel Holtmann1-8/+17
2012-05-26udev: Add matching support for CDC WDM device nodesMarcel Holtmann1-9/+24
2012-05-25icera: Select USSD driver based on USSD mode settingMarcel Holtmann1-5/+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-24icera: Use SIM init nofitication instead of pollingMarcel Holtmann1-23/+43
2012-05-24icera: Enable SMS sending and receiving supportMarcel Holtmann1-0/+3
2012-05-24icera: Enable USSD support and ensure default character setMarcel Holtmann1-0/+11
2012-05-22bluetooth: Add Serial interface definitionDaniel Wagner1-0/+1
2012-05-21hfp_hf: Fix up whitespace corruptionDenis Kenzior1-2/+2
2012-05-22icera: Add SIM, network registration and GPRS handlingMarcel Holtmann1-2/+189
2012-05-20Do not set signature and reply in GDBus tablesLucas De Marchi3-19/+14
Use GDBUS_* macros, so signature and reply fields are not set in each method/signal.
2012-05-20Convert GDBus methods to use macro helpersLucas De Marchi3-12/+26
With these macro helpers we can separate in/out arguments and use their own vector.
2012-05-20Constify GDBus method tablesHenrique Dante de Almeida3-3/+3
Constify method tables with the following command: find . -name '*.[ch]' -exec \ sed -i 's/\(GDBusMethodTable .* =\)/const \1/g' {} \;
2012-04-19hfp_hf: Fix modifying hash table while iteratingMikel Astiz1-2/+1
Calling ofono_remove_modem() while iterating the hash table is not safe given that it can modify the table in hfp_remove(). A simple way to reproduce the problem is to pair some Bluetooth phones and remove the Bluetooth adapter, triggering a GLib-CRITICAL assertion. This patch just removes the update of the hash table inside hfp_remove(). This can be safe as long as all calls to ofono_modem_remove() are accompanied by a hash table update. The only example of this kind right now is hfp_agent_release().
2012-04-18zte: Update to new sim_state_query APIGuillaume Zajac1-1/+2
2012-04-18speedup: Update to new sim_state_query APIGuillaume Zajac1-1/+2
2012-04-18samsung: Update to new sim_state_query APIGuillaume Zajac1-1/+2