From f05cdc46f23bf28d31dfc4fc2ebe4d20e4d6f961 Mon Sep 17 00:00:00 2001 From: Thomas Martitz Date: Wed, 1 Sep 2010 23:36:15 +0000 Subject: Android: don't compile powermgmt-sim.c Instead implement a bit of battery monitoring. Currently it only fetches the battery level (in %) every 30s, but it could do more like battery status, charger connected, voltage... Theoretically, we could also exit/quit after some time of inactivity too (perhaps not a bad idea since Rockbox puts a slight but still non-zero CPU load even if doing nothing). Ironically, Rockbox is now the only way to get the exact battery level (at least I haven't found anything yet) on my phone :-) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27974 a1c6a512-1295-4272-9138-f99709370657 --- firmware/SOURCES | 1 + firmware/target/hosted/android/system-android.c | 3 +++ 2 files changed, 4 insertions(+) (limited to 'firmware') diff --git a/firmware/SOURCES b/firmware/SOURCES index 8b71674b36..ac1a3e1be4 100644 --- a/firmware/SOURCES +++ b/firmware/SOURCES @@ -1709,6 +1709,7 @@ target/hosted/android/lc-android.c target/hosted/android/button-android.c target/hosted/android/kernel-android.c target/hosted/android/pcm-android.c +target/hosted/android/powermgmt-android.c target/hosted/android/system-android.c #ifdef APPLICATION target/hosted/android/app/button-application.c diff --git a/firmware/target/hosted/android/system-android.c b/firmware/target/hosted/android/system-android.c index 1fb69b3465..87b6584135 100644 --- a/firmware/target/hosted/android/system-android.c +++ b/firmware/target/hosted/android/system-android.c @@ -55,5 +55,8 @@ Java_org_rockbox_RockboxService_main(JNIEnv *env, jobject this) env_ptr = env; RockboxService_instance = this; RockboxService_class = (*env)->GetObjectClass(env, this); + + + powermgmt_init_target(); main(); } -- cgit v1.2.3