summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2011-10-21hfpmodem: Report features supported by AGMikel Astiz1-0/+1
2011-10-21handsfree: add ofono_handsfree_set_ag_featuresDenis Kenzior1-0/+31
2011-10-21hfpmodem: devinfo atom added to export BT addressMikel Astiz4-0/+115
2011-10-21devinfo: avoid crash if query_model not supportedMikel Astiz1-0/+1
2011-10-21hfpmodem: Avoid segfault in handsfreeMikel Astiz1-1/+7
The use of g_idle_add can cause a segmentation fault if the object is destroyed in the meantime.
2011-10-21hfpmodem: Avoid segfault in call-volumeMikel Astiz1-1/+7
The use of g_idle_add can cause a segmentation fault if the object is destroyed in the meantime.
2011-10-21hfpmodem: Avoid segfault in network-registrationMikel Astiz1-1/+8
The use of g_idle_add can cause a segmentation fault if the object is destroyed in the meantime.
2011-10-21doc: Handsfree exposes supported AG featuresMikel Astiz1-1/+8
2011-10-21hfpmodem: Support for AT+BVRAMikel Astiz1-0/+53
2011-10-21handsfree: Implement voice recognition functionMikel Astiz1-0/+75
2011-10-21include: Voice recognition in handsfree public apiMikel Astiz1-0/+7
2011-10-20include: Add API to set HF AG supported featuresMikel Astiz1-0/+2
2011-10-20doc: Voice recognition function added in HandsfreeMikel Astiz1-0/+7
2011-10-20hfpmodem: minor whitespace fixMikel Astiz1-1/+0
2011-10-20hfpmodem: Support for +BSIR unsolicited responsesMikel Astiz1-0/+19
2011-10-20lookup-apn: Minor style issuesOleg Zhurakivskyy1-12/+11
2011-10-20mbpi: Minor style issuesOleg Zhurakivskyy1-21/+21
2011-10-20lookup-apn: Use mbpi_ap_free()Oleg Zhurakivskyy1-1/+1
2011-10-20mbpi: Rename mbpi_provision_data_free()Oleg Zhurakivskyy3-6/+6
2011-10-20lookup-apn: Add cli option to control duplicatesOleg Zhurakivskyy1-3/+7
2011-10-20lookup-apn: Use mbpi_ap_type()Oleg Zhurakivskyy1-0/+1
2011-10-20mbpi: Add mbpi_ap_type()Oleg Zhurakivskyy3-0/+18
2011-10-20provision: Add provisioning pluginOleg Zhurakivskyy1-0/+117
2011-10-15udev: add a driver name for telitGustavo F. Padovan1-1/+1
telit hardware needs usbserial.
2011-10-15drivers: Some more copyright fixesMarcel Holtmann7-7/+7
2011-10-15core: Some more copyright fixesMarcel Holtmann5-5/+5
2011-10-13doc: Clarifications on voice call behaviorDaniel Wagner2-1/+10
2011-10-13hfp_hf: Switch to permissive AT syntax parserMikel Astiz1-1/+1
Some phones can have trouble when using the strict AT syntax parser for HFP. So far, this has only been evidenced with the Samsung Wave, which works fine with the permissive syntax parser. Several other phones have been tested with the permissive parser and seem to work OK.
2011-10-13handsfree: Removed ASYNC flag from GetPropertiesMikel Astiz1-2/+1
2011-10-13handsfree: Pass the error information to the coreDenis Kenzior1-5/+9
if available. This is the preferred way, so that the core can take into account the error information in the future if required.
2011-10-13hfpmodem: Support of number requests (AT+BINP=1)Mikel Astiz1-0/+59
2011-10-13handsfree: Expose RequestPhoneNumber in D-Bus APIMikel Astiz1-0/+50
2011-10-13doc: Handsfree API support for +BINP=1Mikel Astiz1-0/+13
2011-10-13handsfree: Set in-band ringing before registeringDenis Kenzior1-2/+2
Avoid an extra signal emission
2011-10-13handsfree: Don't emit signals if not registeredDenis Kenzior1-0/+3
2011-10-13hfpmodem: Set initial state for inband ringingMikel Astiz1-0/+6
According to the HFP specification, inband ringing will be enabled by default if the AG supports it. This setting could later be changed by the unsolicited result code +BSIR.
2011-10-13doc: Add initial Handsfree API documentationMikel Astiz1-0/+30
These basic features have already been implemented.
2011-10-13hfpmodem: Copyright statement correctionMikel Astiz1-0/+1
2011-10-13handsfree: Copyright statement correctionMikel Astiz1-0/+1
2011-10-13handsfree: Copyright statement correctionMikel Astiz1-0/+1
2011-10-12hfp_hf: Fix crashDenis Kenzior1-2/+11
If BlueZ exits during an outstanding Connect/Disconnect operation, oFono can crash due to the pending call finishing on an already-removed modem object.
2011-10-12mbpi: Add filename and line information on errorOleg Zhurakivskyy1-21/+40
2011-10-12lookup-apn: Fix crash on no APNs foundOleg Zhurakivskyy1-1/+5
2011-10-12lookup-apn: Remove unused includesOleg Zhurakivskyy1-5/+0
2011-10-12mbpi: Improve mbpi_lookup() error reportingOleg Zhurakivskyy1-3/+6
2011-10-12mbpi: Fix handling of the usage elementOleg Zhurakivskyy1-21/+23
2011-10-12mbpi: Reflow gsm_end()Oleg Zhurakivskyy1-20/+22
2011-10-12mbpi: Split gsm_start() for readabilityOleg Zhurakivskyy1-61/+77
2011-10-12voicecall: Make emulator use release_queueDenis Kenzior1-18/+11
2011-10-12voicecall: Fix HangupAll for HFPDenis Kenzior1-5/+38
HFP does not implement HangupAll natively and most AGs do not support releasing held calls by id. Work around this by using hangup active and then dropping all held calls if no waiting calls exist. Otherwise fall back to releasing calls by id.