diff options
| author | Christian Gmeiner <christian.gmeiner@gmail.com> | 2005-04-15 12:55:31 +0000 |
|---|---|---|
| committer | Christian Gmeiner <christian.gmeiner@gmail.com> | 2005-04-15 12:55:31 +0000 |
| commit | c63430e93523c090cd12002ad00d1cdb078ba07d (patch) | |
| tree | 7596247baa347c6306a9510271d6f947c26e42b3 /apps/plugin.c | |
| parent | 7e01562114e447212680054acb20bf4a51e15321 (diff) | |
| download | rockbox-c63430e93523c090cd12002ad00d1cdb078ba07d.zip rockbox-c63430e93523c090cd12002ad00d1cdb078ba07d.tar.gz rockbox-c63430e93523c090cd12002ad00d1cdb078ba07d.tar.bz2 rockbox-c63430e93523c090cd12002ad00d1cdb078ba07d.tar.xz | |
IRiver: extended plugin api with current remote lcd functions
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6295 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
| -rw-r--r-- | apps/plugin.c | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index 7a9875a..e9274ad 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -54,6 +54,10 @@ #include "widgets.h" #endif +#ifdef HAVE_REMOTE_LCD +#include "lcd-remote.h" +#endif + #if MEM >= 32 #define PLUGIN_BUFFER_SIZE 0xC0000 #else @@ -128,7 +132,14 @@ static const struct plugin_api rockbox_api = { backlight_off, backlight_set_timeout, splash, - +#ifdef HAVE_REMOTE_LCD + lcd_remote_clear_display, + lcd_remote_backlight_on, + lcd_remote_backlight_off, + lcd_remote_set_contrast, + lcd_remote_update, + &lcd_remote_framebuffer[0][0], +#endif /* button */ button_get, button_get_w_tmo, |