plugin to test remote lcd
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6297 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
d0a94912bd
commit
4dabec4df7
3 changed files with 7 additions and 0 deletions
|
@ -138,6 +138,7 @@ static const struct plugin_api rockbox_api = {
|
|||
lcd_remote_backlight_off,
|
||||
lcd_remote_set_contrast,
|
||||
lcd_remote_update,
|
||||
lcd_remote_bitmap,
|
||||
&lcd_remote_framebuffer[0][0],
|
||||
#endif
|
||||
/* button */
|
||||
|
|
|
@ -180,6 +180,8 @@ struct plugin_api {
|
|||
void (*remote_backlight_off)(void);
|
||||
void (*remote_set_contrast)(int val);
|
||||
void (*remote_update)(void);
|
||||
void (*remote_bitmap) (const unsigned char *src, int x, int y,
|
||||
int nx, int ny, bool clear);
|
||||
unsigned char* lcd_remote_framebuffer;
|
||||
#endif
|
||||
|
||||
|
|
|
@ -77,3 +77,7 @@ mpc2wav.c
|
|||
midi2wav.c
|
||||
iriverify.c
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_REMOTE_LCD
|
||||
remotelcd.c
|
||||
#endif
|
Loading…
Reference in a new issue