summaryrefslogtreecommitdiffstats
path: root/doc/radio-settings-api.txt
diff options
context:
space:
mode:
authorAki Niemi <aki.niemi@nokia.com>2010-02-03 21:55:55 +0200
committerAki Niemi <aki.niemi@nokia.com>2010-02-04 23:43:18 +0200
commit8d4004d1828eb69d606216711830b3d01f7e3015 (patch)
tree044c40a9734c9ef8932136cb957a3bbd4d84cd0a /doc/radio-settings-api.txt
parent7bab47f07b2fd1a2c176e5dab4f21a51271cf2eb (diff)
downloadofono-8d4004d1828eb69d606216711830b3d01f7e3015.tar.bz2
Add radio settings atom and driver API
This interface exposes a read-write property for radio access technology selection mode.
Diffstat (limited to 'doc/radio-settings-api.txt')
-rw-r--r--doc/radio-settings-api.txt43
1 files changed, 43 insertions, 0 deletions
diff --git a/doc/radio-settings-api.txt b/doc/radio-settings-api.txt
new file mode 100644
index 00000000..cd64ad64
--- /dev/null
+++ b/doc/radio-settings-api.txt
@@ -0,0 +1,43 @@
+Radio settings hierarchy
+========================
+
+Service org.ofono
+Interface org.ofono.RadioSettings
+Object path [variable prefix]/{modem0,modem1,...}
+
+Methods dict GetProperties()
+
+ Returns all radio access properties. See the
+ properties section for available properties.
+
+ Possible Errors: [service].Error.InvalidArguments
+
+ void SetProperty(string name, variant value)
+
+ Changes the value of the specified property. Only
+ properties that are listed as read-write are
+ changeable. On success a PropertyChanged signal
+ will be emitted.
+
+ Possible Errors: [service].Error.InvalidArguments
+ [service].Error.DoesNotExist
+ [service].Error.InProgress
+
+Signals PropertyChanged(string property, variant value)
+
+ This signal indicates a changed value of the given
+ property.
+
+Properties string TechnologyPreference [read-write]
+
+ The current radio access selection mode, also known
+ as network preference.
+
+ The possible values are:
+ "any" Radio access technology
+ selection is done automatically,
+ based on reception and
+ availability.
+ "2g" Only GSM used for radio access.
+ "3g" Only UMTS used for radio access.
+ "4g" Only LTE used for radio acccess.