summaryrefslogtreecommitdiff
path: root/bootloader
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2012-01-03 23:44:38 +0000
committerThomas Martitz <kugel@rockbox.org>2012-01-03 23:44:38 +0000
commitc1bd9b0361ba92c29ceef68d74093e70a1a3e481 (patch)
tree1a42acdf2099b7f5ac06eee11e1d488b388c6d9f /bootloader
parent949e6398c89e3c277a4c542f67a5ee788c6f642d (diff)
downloadrockbox-c1bd9b0361ba92c29ceef68d74093e70a1a3e481.tar.gz
rockbox-c1bd9b0361ba92c29ceef68d74093e70a1a3e481.zip
Rework powermgmt to enable code re-use on appliation and sims.
* Introduce CONFIG_BATTERY_MEASURE define, to allow targets (application) to break powermgmt.c's assumption about the ability to read battery voltage. There's now additionally percentage (android) and remaining time measure (maemo). No measure at all also works (sdl app). If voltage can't be measured, then battery_level() is king and it'll be used for power_history and runtime estimation. * Implement target's API in the simulator, i.e. _battery_voltage(), so it doesn't need to implement it's own powermgmt.c and other stubs. Now the sim behaves much more like a native target, although it still changes the simulated battery voltage quickly, * Other changes include include renaming battery_adc_voltage() to _battery_voltage(), for consistency with the new target functions and making some of the apps code aware that voltage and runtime estimation is not always available. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31548 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'bootloader')
-rw-r--r--bootloader/gigabeat-s.c2
-rw-r--r--bootloader/iaudio_coldfire.c2
-rw-r--r--bootloader/iriver_h1x0.c2
-rw-r--r--bootloader/iriver_h300.c2
-rw-r--r--bootloader/mpio_hd200_hd300.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/bootloader/gigabeat-s.c b/bootloader/gigabeat-s.c
index 909194e1b2..04c32423a0 100644
--- a/bootloader/gigabeat-s.c
+++ b/bootloader/gigabeat-s.c
@@ -358,7 +358,7 @@ void main(void)
358 printf("Version " RBVERSION); 358 printf("Version " RBVERSION);
359 359
360 adc_init(); 360 adc_init();
361 batt = battery_adc_voltage(); 361 batt = _battery_voltage();
362 printf("Battery: %d.%03d V", batt / 1000, batt % 1000); 362 printf("Battery: %d.%03d V", batt / 1000, batt % 1000);
363 check_battery_safe(); 363 check_battery_safe();
364 364
diff --git a/bootloader/iaudio_coldfire.c b/bootloader/iaudio_coldfire.c
index 9c829c4a34..b22af0e006 100644
--- a/bootloader/iaudio_coldfire.c
+++ b/bootloader/iaudio_coldfire.c
@@ -110,7 +110,7 @@ void check_battery(void)
110{ 110{
111 int battery_voltage, batt_int, batt_frac; 111 int battery_voltage, batt_int, batt_frac;
112 112
113 battery_voltage = battery_adc_voltage(); 113 battery_voltage = _battery_voltage();
114 batt_int = battery_voltage / 1000; 114 batt_int = battery_voltage / 1000;
115 batt_frac = (battery_voltage % 1000) / 10; 115 batt_frac = (battery_voltage % 1000) / 10;
116 116
diff --git a/bootloader/iriver_h1x0.c b/bootloader/iriver_h1x0.c
index 1afbafa830..9042737406 100644
--- a/bootloader/iriver_h1x0.c
+++ b/bootloader/iriver_h1x0.c
@@ -170,7 +170,7 @@ void check_battery(void)
170{ 170{
171 int battery_voltage, batt_int, batt_frac; 171 int battery_voltage, batt_int, batt_frac;
172 172
173 battery_voltage = battery_adc_voltage(); 173 battery_voltage = _battery_voltage();
174 batt_int = battery_voltage / 1000; 174 batt_int = battery_voltage / 1000;
175 batt_frac = (battery_voltage % 1000) / 10; 175 batt_frac = (battery_voltage % 1000) / 10;
176 176
diff --git a/bootloader/iriver_h300.c b/bootloader/iriver_h300.c
index 893532cac7..b6d7da20fa 100644
--- a/bootloader/iriver_h300.c
+++ b/bootloader/iriver_h300.c
@@ -112,7 +112,7 @@ void check_battery(void)
112{ 112{
113 int battery_voltage, batt_int, batt_frac; 113 int battery_voltage, batt_int, batt_frac;
114 114
115 battery_voltage = battery_adc_voltage(); 115 battery_voltage = _battery_voltage();
116 batt_int = battery_voltage / 1000; 116 batt_int = battery_voltage / 1000;
117 batt_frac = (battery_voltage % 1000) / 10; 117 batt_frac = (battery_voltage % 1000) / 10;
118 118
diff --git a/bootloader/mpio_hd200_hd300.c b/bootloader/mpio_hd200_hd300.c
index be36daf2ef..3e4ba76c83 100644
--- a/bootloader/mpio_hd200_hd300.c
+++ b/bootloader/mpio_hd200_hd300.c
@@ -160,7 +160,7 @@ static void check_battery(void)
160 160
161 int battery_voltage, batt_int, batt_frac; 161 int battery_voltage, batt_int, batt_frac;
162 162
163 battery_voltage = battery_adc_voltage(); 163 battery_voltage = _battery_voltage();
164 batt_int = battery_voltage / 1000; 164 batt_int = battery_voltage / 1000;
165 batt_frac = (battery_voltage % 1000) / 10; 165 batt_frac = (battery_voltage % 1000) / 10;
166 166