Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-02-04 | Fix: No need to check for handsfree_path now | Denis Kenzior | 1 | -12/+0 | |
2010-02-04 | Cleanup: Refactor handling of failed connections | Denis Kenzior | 1 | -41/+23 | |
2010-02-04 | Cleanup: Modem creation | Denis Kenzior | 1 | -2/+11 | |
2010-02-04 | Add function to handle SLC handshake failures | Denis Kenzior | 1 | -1/+19 | |
2010-01-28 | Handle the error path from service_level_connection | Gustavo F. Padovan | 1 | -2/+4 | |
2010-01-28 | Remove unneeded code to disable the modem on hfp | Gustavo F. Padovan | 1 | -3/+0 | |
ofono_modem_remove() already disables the modem. | |||||
2010-01-27 | Style: Various whitespace issues | Denis Kenzior | 1 | -1/+7 | |
2010-01-27 | Style: Don't go over 80 characters | Denis Kenzior | 1 | -2/+4 | |
2010-01-27 | Fix: Remove unused includes | Denis Kenzior | 1 | -11/+0 | |
2010-01-27 | Add copyright note to the HFP plugin | Gustavo F. Padovan | 1 | -0/+1 | |
2010-01-27 | Remove wrong copyright statement within HFP plugin | Marcel Holtmann | 1 | -1/+0 | |
2010-01-27 | Limit HFP plugin loading to D-Bus 1.3 only systems | Marcel Holtmann | 1 | -0/+3 | |
2010-01-27 | Add HFP support through BlueZ | Gustavo F. Padovan | 1 | -15/+462 | |
It uses BlueZ through to get HFP working following the org.bluez.HandsfreeGateway and org.bluez.HandsfreeAgent from the BlueZ D-Bus API. You need the HFP suport into BlueZ and the new D-Bus 1.3 or later with fd-passing support. Many thanks to Zhenhua Zhang <zhenhua.zhang@intel.com> for its prototype on this code. | |||||
2010-01-01 | Update copyright information | Marcel Holtmann | 1 | -1/+1 | |
2009-11-24 | Fix: Move CHLD from voicecall driver to plugin | Zhenhua Zhang | 1 | -4/+60 | |
According HFP v1.5 spec, AT+CHLD=? should be a part of SLC connection. So we should not do it after SLC connection is created. | |||||
2009-11-24 | Fix: Order of CMER and CIND in SLC connection | Zhenhua Zhang | 1 | -20/+20 | |
According to the HFP 1.5 specification the order of commands is actually important. The required sequence is to use CIND=?, CIND? and then CMER. Currently oFono issues commands in the order of CIND=?, CMER, CIND? | |||||
2009-11-11 | Add call volume support for hfpmodem | Zhenhua Zhang | 1 | -0/+2 | |
The call volume driver listens the speaker volume and microphone gain from the AG. It also allow to synchronze the speaker and microphone volume changes with the AG through AT+VGS and AT+VGM. Volume level synchronization from HFP spec 1.5 Section 4.28.2 is performed on startup. | |||||
2009-11-03 | Fix: Minor style issues | Denis Kenzior | 1 | -0/+1 | |
2009-11-03 | Create network registration driver for hfpmodem | Gustavo F. Padovan | 1 | -0/+1 | |
This driver handles phone informations about registration status, signal strength and roaming status listening +CIEV commands. It also gets the Network Operator name with +COPS commands. | |||||
2009-11-01 | Use ofono_info() for AT command debugging | Marcel Holtmann | 1 | -1/+1 | |
2009-10-28 | Add voicecall driver for Bluetooth HFP | Zhenhua Zhang | 1 | -0/+3 | |
HFP voicecall driver uses AT+CIEV indicator to notify call status update according to Bluetooth HFP spec v1.5. This patch only adds single call support. | |||||
2009-10-19 | Rename: drivers/hfpmodem/hfp.[ch] to hfpmodem.[ch] | Denis Kenzior | 1 | -1/+1 | |
Be more consistent with other drivers | |||||
2009-10-19 | Fix: Make 'make distcheck' happy again | Denis Kenzior | 1 | -3/+1 | |
2009-10-19 | Fix: Use debug instead of info | Denis Kenzior | 1 | -1/+1 | |
2009-10-19 | Refactor: Setup the HF features bitmap | Denis Kenzior | 1 | -3/+11 | |
Do not use magic numbers unless strictly necessary | |||||
2009-10-19 | Refactor: Don't store indicator names | Denis Kenzior | 1 | -36/+38 | |
We already know the indicators we're interested in from the specification, malloc/free-ing the indicator names is thus pointless. Instead save off the indicator index positions in an array. Parse the current values instead of storing the unparsed list. | |||||
2009-10-19 | Add initial glue code for hfp driver | Zhenhua Zhang | 1 | -0/+332 | |