summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Giacomelli <giac2000@hotmail.com>2007-11-01 03:18:01 +0000
committerMichael Giacomelli <giac2000@hotmail.com>2007-11-01 03:18:01 +0000
commit7127199230a1c25ff21526d4a6166d6c056aef67 (patch)
tree25879401394ec1b6f270e144bfbae4a5977fc765
parenta076da6efc3c56df7bdb1ff4ca37449a5e5b8cf4 (diff)
downloadrockbox-7127199230a1c25ff21526d4a6166d6c056aef67.tar.gz
rockbox-7127199230a1c25ff21526d4a6166d6c056aef67.zip
Lets use the measurements Toni took months ago for the Sansa battery, instead of the using the Archos ones.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15389 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/export/powermgmt.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/firmware/export/powermgmt.h b/firmware/export/powermgmt.h
index 858b5015ec..265e723655 100644
--- a/firmware/export/powermgmt.h
+++ b/firmware/export/powermgmt.h
@@ -116,7 +116,11 @@ extern int trickle_sec; /* trickle charge: How many seconds per minute
116#if defined(HAVE_RECORDING) 116#if defined(HAVE_RECORDING)
117# define CURRENT_RECORD 35 /* FIXME: this needs adjusting */ 117# define CURRENT_RECORD 35 /* FIXME: this needs adjusting */
118#endif 118#endif
119#else /* Not iriver H1x0, H3x0, nor Archos Ondio, nor iPODVideo */ 119#elif defined(SANSA_E200) /* Sandisk players */
120# define CURRENT_NORMAL 50 /* Toni's measurements in spring 2007 suggests 50 ma during normal operation */
121# define CURRENT_BACKLIGHT 20 /* seems like a reasonible value for now */
122# define CURRENT_RECORD 35 /* FIXME: this needs adjusting */
123#else /* Not iriver H1x0, H3x0, nor Archos Ondio, nor iPODVideo, nor Sansas */
120# define CURRENT_NORMAL 145 /* usual current in mA when using the AJB including some disk/backlight/... activity */ 124# define CURRENT_NORMAL 145 /* usual current in mA when using the AJB including some disk/backlight/... activity */
121# define CURRENT_BACKLIGHT 30 /* additional current when backlight always on */ 125# define CURRENT_BACKLIGHT 30 /* additional current when backlight always on */
122#if defined(HAVE_RECORDING) 126#if defined(HAVE_RECORDING)