forked from len0rd/rockbox
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:
parent
748c751595
commit
c3b1eceff1
2 changed files with 6 additions and 0 deletions
|
|
@ -283,6 +283,7 @@ void backlight_set_on_when_charging(bool yesno) {(void)yesno;}
|
||||||
#ifdef HAVE_REMOTE_LCD
|
#ifdef HAVE_REMOTE_LCD
|
||||||
void remote_backlight_on(void) {}
|
void remote_backlight_on(void) {}
|
||||||
void remote_backlight_off(void) {}
|
void remote_backlight_off(void) {}
|
||||||
|
void remote_backlight_set_timeout(int index) {(void)index;}
|
||||||
#endif
|
#endif
|
||||||
#endif /* #ifdef CONFIG_BACKLIGHT */
|
#endif /* #ifdef CONFIG_BACKLIGHT */
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -133,6 +133,11 @@ void backlight_set_on_when_charging(bool beep)
|
||||||
(void)beep;
|
(void)beep;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void remote_backlight_set_timeout(int index)
|
||||||
|
{
|
||||||
|
(void)index;
|
||||||
|
}
|
||||||
|
|
||||||
int rtc_read(int address)
|
int rtc_read(int address)
|
||||||
{
|
{
|
||||||
time_t now = time(NULL);
|
time_t now = time(NULL);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue