diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2011-12-31 13:34:56 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2011-12-31 13:34:56 +0000 |
| commit | 05f12e08772d1ca03101b176e329bfd313daf673 (patch) | |
| tree | 56ce125d3bd3c2c1d3e5588b2a3ddab1b8a460ab /apps/plugin.h | |
| parent | 07605a659e06efaedb325e9a91214be503188f06 (diff) | |
| download | rockbox-05f12e08772d1ca03101b176e329bfd313daf673.zip rockbox-05f12e08772d1ca03101b176e329bfd313daf673.tar.gz rockbox-05f12e08772d1ca03101b176e329bfd313daf673.tar.bz2 rockbox-05f12e08772d1ca03101b176e329bfd313daf673.tar.xz | |
ypr0: Enable battery voltage read-out, charging monitoring and charger detection.
Voltage can be read using as3543 adc (i.e. ascodec api, on this target implemented
via ioctl()). TODO: Look into possibly controlling charging more by re-using
powermgmt-ascodec.c. However, charging seems to be controlled by the kernel,
so may not be needed.
Charger state can be read using /dev/minivet. It allows to differentiate between
wall charger and usb charging, but that's not implemented (is it even worthwhile?)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31470 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
| -rw-r--r-- | apps/plugin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index 3644e64..0bb7262 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -794,7 +794,7 @@ struct plugin_api { int (*battery_level)(void); bool (*battery_level_safe)(void); int (*battery_time)(void); -#if (CONFIG_PLATFORM & PLATFORM_NATIVE) +#if (CONFIG_PLATFORM & PLATFORM_NATIVE) || defined(SAMSUNG_YPR0) unsigned int (*battery_voltage)(void); #endif #if CONFIG_CHARGING |