diff options
Diffstat (limited to 'test')
-rwxr-xr-x | test/enable-cbs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/test/enable-cbs b/test/enable-cbs new file mode 100755 index 00000000..2da57e93 --- /dev/null +++ b/test/enable-cbs @@ -0,0 +1,20 @@ +#!/usr/bin/python + +import dbus +import sys + +bus = dbus.SystemBus() + +if len(sys.argv) == 2: + path = sys.argv[1] +else: + manager = dbus.Interface(bus.get_object('org.ofono', '/'), + 'org.ofono.Manager') + properties = manager.GetProperties() + path = properties["Modems"][0] + +print "Enabling cell broadcast on modem %s..." % path +cbs = dbus.Interface(bus.get_object('org.ofono', path), + 'org.ofono.CbsManager') + +cbs.SetProperty("Powered", dbus.Boolean(1)) |