1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-06-19 06:46:12 +01:00

RTConfig: Added android runtime config

Added a runtime config for android specific settings, currently
supported are screen brightness, rotation and airplane mode.
This commit is contained in:
Marc Bonnici
2017-07-24 17:36:02 +01:00
parent c5b1caa276
commit 51464165c1
2 changed files with 78 additions and 2 deletions

@ -5,7 +5,8 @@ from wa.framework.exception import ConfigError
from wa.framework.target.runtime_config import (SysfileValuesRuntimeConfig,
HotplugRuntimeConfig,
CpufreqRuntimeConfig,
CpuidleRuntimeConfig)
CpuidleRuntimeConfig,
AndroidRuntimeConfig)
from wa.utils.types import obj_dict
@ -17,6 +18,7 @@ class RuntimeParameterManager(object):
HotplugRuntimeConfig,
CpufreqRuntimeConfig,
CpuidleRuntimeConfig,
AndroidRuntimeConfig,
]
def __init__(self, target):