Added dummy function and simulator stub.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6537 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2005-05-30 06:42:14 +00:00
parent 748c751595
commit c3b1eceff1
2 changed files with 6 additions and 0 deletions

View File

@ -283,6 +283,7 @@ void backlight_set_on_when_charging(bool yesno) {(void)yesno;}
#ifdef HAVE_REMOTE_LCD
void remote_backlight_on(void) {}
void remote_backlight_off(void) {}
void remote_backlight_set_timeout(int index) {(void)index;}
#endif
#endif /* #ifdef CONFIG_BACKLIGHT */

View File

@ -133,6 +133,11 @@ void backlight_set_on_when_charging(bool beep)
(void)beep;
}
void remote_backlight_set_timeout(int index)
{
(void)index;
}
int rtc_read(int address)
{
time_t now = time(NULL);