summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2005-07-09 07:54:40 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2005-07-09 07:54:40 +0000
commit557308e68e175140358b49720f9f4b95b812c693 (patch)
tree3ca66cd0d3e62521f009db57582f33fd04fdef09
parent62c768c0db601fa1cc8532bb583060f2a8080453 (diff)
downloadrockbox-557308e68e175140358b49720f9f4b95b812c693.tar.gz
rockbox-557308e68e175140358b49720f9f4b95b812c693.zip
Wrong iriver model check
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7083 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/export/powermgmt.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/export/powermgmt.h b/firmware/export/powermgmt.h
index e4c7d65d45..ecd22f4643 100644
--- a/firmware/export/powermgmt.h
+++ b/firmware/export/powermgmt.h
@@ -96,11 +96,11 @@ extern charge_state_type charge_state;
96# define CURRENT_USB 1 /* host powered in USB mode; avoid zero-div */ 96# define CURRENT_USB 1 /* host powered in USB mode; avoid zero-div */
97# define CURRENT_BACKLIGHT 0 /* no backlight */ 97# define CURRENT_BACKLIGHT 0 /* no backlight */
98#else /* Values for HD based jukeboxes */ 98#else /* Values for HD based jukeboxes */
99# ifdef IRIVER_H100 99# ifdef IRIVER_H100_SERIES
100# define CURRENT_NORMAL 80 100# define CURRENT_NORMAL 80
101# else 101# else
102# define CURRENT_NORMAL 145 /* usual current in mA when using the AJB including some disk/backlight/... activity */ 102# define CURRENT_NORMAL 145 /* usual current in mA when using the AJB including some disk/backlight/... activity */
103# endif /* not IRIVER_H100 */ 103# endif /* not IRIVER_H100_SERIES */
104# define CURRENT_USB 500 /* usual current in mA in USB mode */ 104# define CURRENT_USB 500 /* usual current in mA in USB mode */
105# define CURRENT_BACKLIGHT 30 /* additional current when backlight is always on */ 105# define CURRENT_BACKLIGHT 30 /* additional current when backlight is always on */
106 106