summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Purchase <shotofadds@rockbox.org>2009-07-10 19:09:38 +0000
committerRob Purchase <shotofadds@rockbox.org>2009-07-10 19:09:38 +0000
commitd633a9fbeed791c9e8a2656d12da8a8e11f8f30c (patch)
tree7690a5b5c67008156cfdf2e4057d16a03cd407c6
parent755de6a3de69968fa52dc08855edc7b542979d90 (diff)
downloadrockbox-d633a9fbeed791c9e8a2656d12da8a8e11f8f30c.tar.gz
rockbox-d633a9fbeed791c9e8a2656d12da8a8e11f8f30c.zip
D2: Update the battery discharge curve to observed values, and add a crude runtime estimation (this is based on playback from SD card, other usage will vary).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21754 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/export/config-cowond2.h5
-rw-r--r--firmware/target/arm/tcc780x/cowond2/powermgmt-cowond2.c14
2 files changed, 12 insertions, 7 deletions
diff --git a/firmware/export/config-cowond2.h b/firmware/export/config-cowond2.h
index 5389f71736..08d3baae10 100644
--- a/firmware/export/config-cowond2.h
+++ b/firmware/export/config-cowond2.h
@@ -135,6 +135,11 @@
135/* Hardware controlled charging */ 135/* Hardware controlled charging */
136#define CONFIG_CHARGING CHARGING_SIMPLE 136#define CONFIG_CHARGING CHARGING_SIMPLE
137 137
138/* Define current usage levels. */
139#define CURRENT_NORMAL 88 /* 18 hours from a 1600 mAh battery */
140#define CURRENT_BACKLIGHT 30 /* TBD */
141#define CURRENT_RECORD 0 /* no recording yet */
142
138#ifndef SIMULATOR 143#ifndef SIMULATOR
139/* Define this if you have a TCC7801 */ 144/* Define this if you have a TCC7801 */
140#define CONFIG_CPU TCC7801 145#define CONFIG_CPU TCC7801
diff --git a/firmware/target/arm/tcc780x/cowond2/powermgmt-cowond2.c b/firmware/target/arm/tcc780x/cowond2/powermgmt-cowond2.c
index 751e45eb6a..683c1c3be7 100644
--- a/firmware/target/arm/tcc780x/cowond2/powermgmt-cowond2.c
+++ b/firmware/target/arm/tcc780x/cowond2/powermgmt-cowond2.c
@@ -26,32 +26,32 @@
26#include "pcf50606.h" 26#include "pcf50606.h"
27 27
28unsigned short current_voltage = 3910; 28unsigned short current_voltage = 3910;
29 29
30const unsigned short battery_level_dangerous[BATTERY_TYPES_COUNT] = 30const unsigned short battery_level_dangerous[BATTERY_TYPES_COUNT] =
31{ 31{
32 /* FIXME: calibrate value */
33 3380 32 3380
34}; 33};
35 34
36const unsigned short battery_level_shutoff[BATTERY_TYPES_COUNT] = 35const unsigned short battery_level_shutoff[BATTERY_TYPES_COUNT] =
37{ 36{
38 /* FIXME: calibrate value */
39 3300 37 3300
40}; 38};
41 39
42/* voltages (millivolt) of 0%, 10%, ... 100% when charging disabled */ 40/* voltages (millivolt) of 0%, 10%, ... 100% when charging disabled */
43const unsigned short percent_to_volt_discharge[BATTERY_TYPES_COUNT][11] = 41const unsigned short percent_to_volt_discharge[BATTERY_TYPES_COUNT][11] =
44{ 42{
45 /* FIXME: calibrate values. Table is "inherited" from iPod-PCF / H100 */ 43 /* Standard D2 internal battery */
46 { 3370, 3650, 3700, 3740, 3780, 3820, 3870, 3930, 4000, 4080, 4160 } 44 { 3370, 3690, 3750, 3775, 3790, 3820, 3880, 3940, 3980, 4090, 4170 }
45
46 /* TODO: DIY replacements eg. Nokia BP-4L ? */
47}; 47};
48 48
49#if CONFIG_CHARGING 49#if CONFIG_CHARGING
50/* voltages (millivolt) of 0%, 10%, ... 100% when charging enabled */ 50/* voltages (millivolt) of 0%, 10%, ... 100% when charging enabled */
51const unsigned short percent_to_volt_charge[11] = 51const unsigned short percent_to_volt_charge[11] =
52{ 52{
53 /* FIXME: calibrate values. Table is "inherited" from iPod-PCF / H100 */ 53 /* FIXME: voltages seem to be offset during charging (eg. 4500+) */
54 3370, 3650, 3700, 3740, 3780, 3820, 3870, 3930, 4000, 4080, 4160 54 3370, 3690, 3750, 3775, 3790, 3820, 3880, 3940, 3980, 4090, 4170
55}; 55};
56#endif /* CONFIG_CHARGING */ 56#endif /* CONFIG_CHARGING */
57 57