1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2006 by Barry Wardell
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 "backlight-target.h"
25 #include "backlight.h"
29 void _backlight_set_brightness(int brightness
)
31 ascodec_write(AS3514_DCDC15
, brightness
);
34 void _backlight_on(void)
36 #ifdef HAVE_LCD_ENABLE
37 lcd_enable(true); /* power on lcd + visible display */
39 #if (CONFIG_BACKLIGHT_FADING != BACKLIGHT_FADING_SW_SETTING) /* in bootloader/sim */
40 /* if we set the brightness to the settings value, then fading up
42 _backlight_set_brightness(backlight_brightness
);
46 void _backlight_off(void)
48 _backlight_set_brightness(0);
49 #ifdef HAVE_LCD_ENABLE
50 lcd_enable(false); /* power off visible display */
54 void _buttonlight_on(void)
56 GPIO_SET_BITWISE(GPIOG_OUTPUT_VAL
, 0x80);
58 GPIO_SET_BITWISE(GPIOB_OUTPUT_VAL
, 0x10); /* The "menu" backlight */
62 void _buttonlight_off(void)
64 GPIO_CLEAR_BITWISE(GPIOG_OUTPUT_VAL
, 0x80);
66 GPIO_CLEAR_BITWISE(GPIOB_OUTPUT_VAL
, 0x10); /* The "menu" backlight */