From deb8652c35a013873582e4a39acdc5d5c9ab0088 Mon Sep 17 00:00:00 2001 From: Rajagopal Aravindan Date: Tue, 24 May 2016 14:14:19 +0530 Subject: [PATCH] test: Added test to disable sofia 3gr tx throttling --- Makefile.am | 3 ++- test/disable-throttling | 18 ++++++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) create mode 100755 test/disable-throttling diff --git a/Makefile.am b/Makefile.am index f94585a8..42116c72 100644 --- a/Makefile.am +++ b/Makefile.am @@ -753,7 +753,8 @@ test_scripts = test/backtrace \ test/set-sms-bearer \ test/get-serving-cell-info \ test/list-allowed-access-points \ - test/enable-throttling + test/enable-throttling \ + test/disable-throttling if TEST testdir = $(pkglibdir)/test diff --git a/test/disable-throttling b/test/disable-throttling new file mode 100755 index 00000000..4d4ac57a --- /dev/null +++ b/test/disable-throttling @@ -0,0 +1,18 @@ +#!/usr/bin/python3 + +import dbus, 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') + modems = manager.GetModems() + path = modems[0][0] + +print("Disabling transmit power throttling of modem %s ..." % path) +thermal_management = dbus.Interface(bus.get_object('org.ofono', path), + 'org.ofono.sofia3gr.ThermalManagement') +thermal_management.SetProperty("TransmitPowerThrottling", dbus.Boolean(0), timeout = 30)