1
0
Fork 0
forked from len0rd/rockbox

More accurate runtime estimate calculation for iriver (still not very

accurate with other than 128k mp3 files).


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7021 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Miika Pekkarinen 2005-07-05 07:09:19 +00:00
parent 073406a9c6
commit 72550d94b6

View file

@ -96,7 +96,11 @@ extern charge_state_type charge_state;
# define CURRENT_USB 1 /* host powered in USB mode; avoid zero-div */ # define CURRENT_USB 1 /* host powered in USB mode; avoid zero-div */
# define CURRENT_BACKLIGHT 0 /* no backlight */ # define CURRENT_BACKLIGHT 0 /* no backlight */
#else /* Values for HD based jukeboxes */ #else /* Values for HD based jukeboxes */
# ifdef IRIVER_H100
# define CURRENT_NORMAL 80
# else
# define CURRENT_NORMAL 145 /* usual current in mA when using the AJB including some disk/backlight/... activity */ # define CURRENT_NORMAL 145 /* usual current in mA when using the AJB including some disk/backlight/... activity */
# endif /* not IRIVER_H100 */
# define CURRENT_USB 500 /* usual current in mA in USB mode */ # define CURRENT_USB 500 /* usual current in mA in USB mode */
# define CURRENT_BACKLIGHT 30 /* additional current when backlight is always on */ # define CURRENT_BACKLIGHT 30 /* additional current when backlight is always on */