summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
authorHristo Kovachev <bger@rockbox.org>2006-02-07 14:46:03 +0000
committerHristo Kovachev <bger@rockbox.org>2006-02-07 14:46:03 +0000
commit14cfc65414387c96025f2dbbda332dcf1c404fcb (patch)
treea1eb9021e4c737af31cdaf38fff43928e15551b8 /apps/plugin.c
parent88abdd97b25eb458466a84f614a518b7173265a8 (diff)
downloadrockbox-14cfc65414387c96025f2dbbda332dcf1c404fcb.tar.gz
rockbox-14cfc65414387c96025f2dbbda332dcf1c404fcb.zip
1. Updated battery_bench plugin:
1.1 Don't use the plugin_get_buffer() so the playlist viewer should work with this plugin running; 1.2 Added new columns for charger inserted, charging, usb powered; 1.3 Some other small improvements 2. charger_inserted() again returns only the AC/DC charger state on H3x0, doesn't include the usb state; 3. Some ifdefs corrected in power.c and power.h; git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8607 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 3e099253dc..286c36cfb7 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -54,6 +54,10 @@
54#include "pcm_playback.h" 54#include "pcm_playback.h"
55#endif 55#endif
56 56
57#ifdef HAVE_CHARGING
58#include "power.h"
59#endif
60
57#ifdef HAVE_LCD_BITMAP 61#ifdef HAVE_LCD_BITMAP
58#include "peakmeter.h" 62#include "peakmeter.h"
59#include "widgets.h" 63#include "widgets.h"
@@ -385,6 +389,16 @@ static const struct plugin_api rockbox_api = {
385 lcd_bitmap_transparent, 389 lcd_bitmap_transparent,
386#endif 390#endif
387 memmove, 391 memmove,
392#ifdef HAVE_CHARGING
393 charger_inserted,
394# ifdef HAVE_CHARGE_STATE
395 charging_state,
396# endif
397#endif
398#ifdef HAVE_USB_POWER
399 usb_powered,
400#endif
401
388}; 402};
389 403
390int plugin_load(const char* plugin, void* parameter) 404int plugin_load(const char* plugin, void* parameter)