summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2014-12-10radio-settings: rework AvailableTechnologies logicDenis Kenzior1-10/+14
Take advantage of the new enum structure to future proof and simplify the logic of generating the AvailableTechnologies property
2014-12-10include: No need for OFONO_FLAG* definesDenis Kenzior1-11/+4
2014-12-10test: Add AvailableTechnologies to list-modemsAlfonso Sanchez-Beato1-1/+2
2014-12-10src: Implement RAT list propertyAlfonso Sanchez-Beato1-1/+46
2014-12-10include: Add method to list RATs to radio-settingsAlfonso Sanchez-Beato1-0/+15
2014-12-09doc: Add AvailableTechnologies propertyAlfonso Sanchez-Beato1-0/+5
This new property in org.ofono.RadioSettings interface will hold the possible values for radio access technology for the modem.
2014-12-04sim: Fix pin retries bogus values on some arch-esDenis Kenzior1-14/+25
On some architectures the SimManager.Retries property was getting bogus values. This is because we were sending an array which pointed to int values instead of the expected unsigned char values. This fix allocates a temporary array of unsigned chars to hold the actual D-Bus values being sent. Additionally, the dictionary array is changed to point to the temporary unsigned char based values instead of the raw 'int' based retry values.
2014-11-24test: Support receiving SMS with non-ASCII charsNeil Jerram1-1/+1
Without this I get the following Python traceback, for an SMS that contains the UK pound sign. ERROR:dbus.connection:Exception in handler for D-Bus signal: Traceback (most recent call last): File "/usr/lib/python2.7/dist-packages/dbus/connection.py", line 230, in maybe_handle_message self._handler(*args, **kwargs) File "./receive-sms", line 9, in incoming_message print("%s" % (message)) UnicodeEncodeError: 'ascii' codec can't encode character u'\xa3' in position 51: ordinal not in range(128)
2014-10-22he910: Update copyrightKuba Pawlak1-1/+1
2014-10-22he910: enable location raporting atomKuba Pawlak1-0/+2
2014-10-22udev: add GPS port definition for HE910Kuba Pawlak1-2/+5
2014-10-22telitmodem: Fix a few coding style violationsDenis Kenzior1-4/+5
2014-10-22AUTHORS: Mention Kuba's contributionsDenis Kenzior1-0/+1
2014-10-22telitmodem: location reporting driverKuba Pawlak4-0/+394
2014-10-22doc: new file doc/telit-modem.txtKuba Pawlak2-1/+21
2014-10-20emulator: Refine +BIND supportDenis Kenzior1-1/+11
2014-10-20hfp_ag_bluez5: Bump HFP version to 1.7Denis Kenzior1-2/+2
2014-10-20emulator_fuzz: Add test pluginDenis Kenzior2-0/+129
This plugin creates an org.ofono.test.EmulatorFuzz interface on path /test. Currently only one method is implemented, SetIndicatorActive. SetIndicatorActive("DistractedDrivingReduction", True|False) allows to activate / deactivate the HF indicator via +BIND unsolicited notification.
2014-10-20emulator: Implement new APIDenis Kenzior1-0/+19
2014-10-20include: Add API to (de)activate HF indicatorsDenis Kenzior1-0/+3
2014-10-20test: Add test/set-ddrDenis Kenzior2-1/+23
Script to set DistractedDrivingReduction property
2014-10-20handsfree: Be extra pedantic with booleansDenis Kenzior1-0/+5
2014-10-20hfp_hf_bluez5: Use latest HFP versionDenis Kenzior1-1/+1
2014-10-20handsfree: Don't try to send a method returnDenis Kenzior1-1/+11
When we are simply updating the AG of HF indicator changes, do not try to send a method return message.
2014-10-20slc: Make sure to initialize variablesDenis Kenzior1-0/+3
2014-10-20hfp: Implement +BIND notificationsDenis Kenzior1-0/+22
2014-10-20hfp: Notify core of HF indicators supported by AGDenis Kenzior1-0/+9
This information was obtained from SLC negotiation
2014-10-20hfp: Track supported / active indicatorsDenis Kenzior2-3/+20
This information is obtained during SLC establishment
2014-10-20handsfree: Implement new HF indicators APIDenis Kenzior1-4/+62
2014-10-20include: Add HF Indicators related APIDenis Kenzior1-0/+7
2014-10-20hfp: Add implementation of +BIEVDenis Kenzior1-0/+20
2014-10-20emulator: Refactor data typesDenis Kenzior1-6/+7
2014-10-20hfp: Add HF Indicators BRSF feature for 1.7Denis Kenzior1-0/+5
If HFP 1.7 client is used, enable the right BRSF feature
2014-10-20handsfree: Skeleton implementation of DDRDenis Kenzior2-2/+46
Distracted Driving Reduction or Enhanced Safety is implemented using HF indicator 0x0001
2014-10-20handsfree: Add new driver method for HF indicatorsDenis Kenzior1-0/+3
2014-10-20hfp: Add initial SLC negotiation for HFP 1.7Denis Kenzior1-1/+94
2014-10-20doc: Add Distracted Driving Reduction to HandsfreeDenis Kenzior1-0/+7
2014-10-20handsfree: Implement new Features property valueDenis Kenzior1-0/+3
2014-10-20doc: Add 'hf-indicators' feature to Handsfree APIDenis Kenzior1-0/+1
2014-10-20emulator: Enable HF Indicator featureDenis Kenzior1-0/+1
2014-10-20emulator: Extend BRSF bitmapDenis Kenzior1-1/+1
The current check of 8 bits is not enough with HFP 1.7
2014-10-20emulator: Add +BIEV implementationDenis Kenzior1-0/+39
2014-10-20emulator: Add +BIND implementationDenis Kenzior1-0/+65
2014-10-20emulator: Fix CHLD=? not treated as part of SLCDenis Kenzior1-7/+37
2014-10-20emulator: Improve SLC establishment logicDenis Kenzior3-1/+43
2014-10-20hfp: Add enum for known HF IndicatorsDenis Kenzior1-0/+4
2014-10-20hfp: Update for new HFP 1.7 valuesDenis Kenzior1-1/+4
2014-10-20doc: Fixup Handsfree APIDenis Kenzior1-1/+3
2014-09-20handsfree-audio: Fix broken coding style in switch statementMarcel Holtmann1-4/+4
2014-09-15gdbus: Fix match rule for NameOwnerChangedAlban Crequy1-1/+2
When subscribing to the D-Bus signal NameOwnerChanged from the bus driver, specify the object path and the sender in the match rule. Otherwise, random connections on the bus could impersonate the bus driver.