From 47150651b9c0cd47aeb63a645069720066560e33 Mon Sep 17 00:00:00 2001 From: Michael Giacomelli Date: Mon, 29 Jun 2009 21:40:03 +0000 Subject: 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 --- firmware/export/powermgmt.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'firmware') diff --git a/firmware/export/powermgmt.h b/firmware/export/powermgmt.h index deeed06bd4..c49cd0e790 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 -- cgit v1.2.3