diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2004-03-16 07:33:12 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2004-03-16 07:33:12 +0000 |
| commit | 4b7c742fbeaab964d183113d18b6abb0fc55b3b9 (patch) | |
| tree | 1d0a09afe73d1feab2ad962945a74c7f95576c60 | |
| parent | c3745910f184c441d23695155295eea6bdbd1019 (diff) | |
| download | rockbox-4b7c742fbeaab964d183113d18b6abb0fc55b3b9.zip rockbox-4b7c742fbeaab964d183113d18b6abb0fc55b3b9.tar.gz rockbox-4b7c742fbeaab964d183113d18b6abb0fc55b3b9.tar.bz2 rockbox-4b7c742fbeaab964d183113d18b6abb0fc55b3b9.tar.xz | |
Increased the maximum battery capacity
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4388 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/export/powermgmt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/export/powermgmt.h b/firmware/export/powermgmt.h index c772195..72a36b0 100644 --- a/firmware/export/powermgmt.h +++ b/firmware/export/powermgmt.h @@ -33,7 +33,7 @@ #endif #define BATTERY_RANGE (BATTERY_LEVEL_FULL - BATTERY_LEVEL_EMPTY) -#define BATTERY_CAPACITY_MAX 2400 /* max. capacity that can be selected in settings menu, min. is always 1500 */ +#define BATTERY_CAPACITY_MAX 3200 /* max. capacity that can be selected in settings menu, min. is always 1500 */ #define POWER_HISTORY_LEN 2*60 /* 2 hours of samples, one per minute */ #define POWER_AVG_N 4 /* how many samples to take for each measurement */ |