Remove an #ifdef SIMULATOR in favor of using a stub
[kugel-rb/myfork.git] / uisimulator / common / backlight-sim.c
blobe8bce8ff7a5b02469e6e8f2fb47ecc009054b4ed
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2009 by Thomas Martitz
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
22 #include <stdbool.h>
23 #include "config.h"
24 #include "backlight.h"
25 #include "lcd.h"
27 #ifdef HAVE_LCD_SLEEP
28 extern void lcd_awake(void);
29 #endif
30 /* in uisimulator/sdl/lcd-bitmap.c and lcd-charcell.c */
31 extern void sim_backlight(int value);
33 bool _backlight_init(void)
35 return true;
38 void _backlight_on(void)
40 sim_backlight(100);
41 #if defined(HAVE_LCD_ENABLE)
42 lcd_enable(true);
43 #elif defined(HAVE_LCD_SLEEP)
44 lcd_awake();
45 #endif
48 void _backlight_off(void)
50 sim_backlight(0);
51 #ifdef HAVE_LCD_ENABLE
52 lcd_enable(false);
53 #endif
56 #ifdef HAVE_BACKLIGHT_BRIGHTNESS
57 void _backlight_set_brightness(int val)
59 (void)val;
61 #endif /* HAVE_BACKLIGHT_BRIGHTNESS */
62 #ifdef HAVE_BUTTON_LIGHT
63 void _buttonlight_on(void)
67 void _buttonlight_off(void)
71 #ifdef HAVE_BUTTONLIGHT_BRIGHTNESS
72 void _buttonlight_set_brightness(int val)
74 (void)val;
76 #endif /* HAVE_BUTTONLIGHT_BRIGHTNESS */
77 #endif /* HAVE_BUTTON_LIGHT */
79 #ifdef HAVE_REMOTE_LCD
80 void _remote_backlight_on(void)
82 sim_remote_backlight(100);
85 void _remote_backlight_off(void)
87 sim_remote_backlight(0);
89 #endif /* HAVE_REMOTE_LCD */