summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Giacomelli <giac2000@hotmail.com>2009-06-29 21:40:03 +0000
committerMichael Giacomelli <giac2000@hotmail.com>2009-06-29 21:40:03 +0000
commit47150651b9c0cd47aeb63a645069720066560e33 (patch)
tree7f1f39cee7dc5a034f615f619897e324ae19d074
parent05a4e6710138a71668f66278252dda33c636147c (diff)
downloadrockbox-47150651b9c0cd47aeb63a645069720066560e33.zip
rockbox-47150651b9c0cd47aeb63a645069720066560e33.tar.gz
rockbox-47150651b9c0cd47aeb63a645069720066560e33.tar.bz2
rockbox-47150651b9c0cd47aeb63a645069720066560e33.tar.xz
1 mA gets rounded to 0 during computation, so use 2 mA as the default.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21572 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/export/powermgmt.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/firmware/export/powermgmt.h b/firmware/export/powermgmt.h
index deeed06..c49cd0e 100644
--- a/firmware/export/powermgmt.h
+++ b/firmware/export/powermgmt.h
@@ -81,23 +81,23 @@ extern unsigned int power_thread_inputs;
* to define the correct values in the proper header*/
#ifndef CURRENT_NORMAL
-#define CURRENT_NORMAL 1 /* usual current in mA */
+#define CURRENT_NORMAL 5 /* usual current in mA */
#endif
#ifndef CURRENT_BACKLIGHT
-#define CURRENT_BACKLIGHT 1 /* additional current when backlight always on */
+#define CURRENT_BACKLIGHT 5 /* additional current when backlight always on */
#endif
#if defined(HAVE_RECORDING) && !defined(CURRENT_RECORD)
-#define CURRENT_RECORD 1 /* additional recording current */
+#define CURRENT_RECORD 2 /* additional recording current */
#endif /* HAVE_RECORDING && !CURRENT_RECORD*/
#ifndef CURRENT_USB
-#define CURRENT_USB 1 /* usual current in mA in USB mode */
+#define CURRENT_USB 2 /* usual current in mA in USB mode */
#endif
#if defined(HAVE_REMOTE_LCD) && !defined(CURRENT_REMOTE)
-#define CURRENT_REMOTE 1 /* additional current when remote connected */
+#define CURRENT_REMOTE 2 /* additional current when remote connected */
#endif /* CURRENT_REMOTE && !HAVE_REMOTE_LCD */
#if CONFIG_CHARGING