Patch #1381872 by Brandon Low - Add virtual HDD LED to WPS

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8299 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2006-01-03 12:08:21 +00:00
parent 88f4c11789
commit 8d888cf76e

View file

@ -38,6 +38,7 @@
#include "splash.h"
#include "scrollbar.h"
#include "led.h"
#ifdef HAVE_LCD_BITMAP
#include "peakmeter.h"
/* Image stuff */
@ -662,6 +663,21 @@ static char* get_tag(struct wps_data* wps_data,
}
break;
#if (CONFIG_LED == LED_VIRTUAL) || defined(HAVE_REMOTE_LCD)
case 'l': /* VIRTUAL_LED */
{
switch(tag[1])
{
case 'h': /* Only one we have so far HDD LED */
if(led_read(HZ/2))
return "h";
else
return NULL;
}
}
break;
#endif
case 'D': /* Directory path information */
id3 = nid3; /* next song please! */
*flags |= WPS_REFRESH_DYNAMIC;