From c63430e93523c090cd12002ad00d1cdb078ba07d Mon Sep 17 00:00:00 2001 From: Christian Gmeiner Date: Fri, 15 Apr 2005 12:55:31 +0000 Subject: IRiver: extended plugin api with current remote lcd functions git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6295 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugin.c | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'apps/plugin.c') 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, -- cgit v1.1