summaryrefslogtreecommitdiff
path: root/firmware/export/config/archosrecorder.h
diff options
context:
space:
mode:
authorMichael Giacomelli <giac2000@hotmail.com>2010-03-16 16:03:48 +0000
committerMichael Giacomelli <giac2000@hotmail.com>2010-03-16 16:03:48 +0000
commit74bd14fa72e15be3b480d619c7b8ae60b7ab21b0 (patch)
treec7939031a2a3e29d2edba5a2608c52fade81c305 /firmware/export/config/archosrecorder.h
parent04937cb20760ee38237c9d016f87a4c2c8d390b5 (diff)
downloadrockbox-74bd14fa72e15be3b480d619c7b8ae60b7ab21b0.tar.gz
rockbox-74bd14fa72e15be3b480d619c7b8ae60b7ab21b0.zip
Remove some old archos code that caused runtime estimation to be off on AMS players while not actually working on Archos.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25220 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/config/archosrecorder.h')
-rw-r--r--firmware/export/config/archosrecorder.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/firmware/export/config/archosrecorder.h b/firmware/export/config/archosrecorder.h
index ef9f523c49..505a039afe 100644
--- a/firmware/export/config/archosrecorder.h
+++ b/firmware/export/config/archosrecorder.h
@@ -80,7 +80,11 @@
80#define BATTERY_CAPACITY_INC 50 /* capacity increment */ 80#define BATTERY_CAPACITY_INC 50 /* capacity increment */
81#define BATTERY_TYPES_COUNT 1 /* only one type */ 81#define BATTERY_TYPES_COUNT 1 /* only one type */
82 82
83#define CURRENT_NORMAL 145 /* usual current in mA */ 83if MEM < 8
84 #define CURRENT_NORMAL 145 /* usual current in mA */
85#else
86 #define CURRENT_NORMAL 145 *100 / 122 /* assuming 192 kbps, the running time is 22% longer with 8MB */
87#endif
84#define CURRENT_RECORD 35 /* additional recording current */ 88#define CURRENT_RECORD 35 /* additional recording current */
85#define CURRENT_USB 500 /* usual current in mA in USB mode */ 89#define CURRENT_USB 500 /* usual current in mA in USB mode */
86 90