diff options
author | Michael Giacomelli <giac2000@hotmail.com> | 2010-03-16 18:06:21 +0000 |
---|---|---|
committer | Michael Giacomelli <giac2000@hotmail.com> | 2010-03-16 18:06:21 +0000 |
commit | f28a1ea1117a411d2966e32dfe291e56ae482c20 (patch) | |
tree | e52314208d885a123afd13038be21b5c04881f4a | |
parent | 589abcd416165827f935c49e5c05582b2c35e9eb (diff) |
Add basic runtime estimation for the c200v2 (taken from Clipv1) and e200v2 (taken from fuzev1).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25223 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | firmware/export/config/sansac200v2.h | 4 | ||||
-rw-r--r-- | firmware/export/config/sansae200v2.h | 7 |
2 files changed, 8 insertions, 3 deletions
diff --git a/firmware/export/config/sansac200v2.h b/firmware/export/config/sansac200v2.h index ca3cb9c5e3..aef789380d 100644 --- a/firmware/export/config/sansac200v2.h +++ b/firmware/export/config/sansac200v2.h @@ -150,6 +150,10 @@ /* Sansa can't be powered off while charging */ /* #define HAVE_POWEROFF_WHILE_CHARGING */ +#define CURRENT_NORMAL 50 +#define CURRENT_BACKLIGHT 25 +#define CURRENT_RECORD CURRENT_NORMAL + /* The start address index for ROM builds */ #define ROM_START 0x00000000 diff --git a/firmware/export/config/sansae200v2.h b/firmware/export/config/sansae200v2.h index 110555aec5..b06aba1f8d 100644 --- a/firmware/export/config/sansae200v2.h +++ b/firmware/export/config/sansae200v2.h @@ -157,9 +157,10 @@ /* Define this if you want to use the AS2525 i2c interface */ #define CONFIG_I2C I2C_AS3525 -/* define this if the hardware can be powered off while charging */ -/* Sansa can't be powered off while charging */ -/* #define HAVE_POWEROFF_WHILE_CHARGING */ +/* define current usage levels (based on battery bench) */ +#define CURRENT_NORMAL 65 +#define CURRENT_BACKLIGHT 30 +#define CURRENT_RECORD CURRENT_NORMAL /* The start address index for ROM builds */ #define ROM_START 0x00000000 |