2006-10-05 10:58:51 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 by Barry Wardell
|
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2006-10-05 10:58:51 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#ifndef BACKLIGHT_TARGET_H
|
|
|
|
#define BACKLIGHT_TARGET_H
|
|
|
|
|
2007-11-12 18:49:53 +00:00
|
|
|
#if defined(IPOD_VIDEO) || defined(IPOD_NANO)
|
|
|
|
|
2015-01-08 23:22:40 +00:00
|
|
|
bool backlight_hw_init(void);
|
|
|
|
void backlight_hw_brightness(int val);
|
2007-11-12 18:49:53 +00:00
|
|
|
void _backlight_led_on(void);
|
|
|
|
void _backlight_led_off(void);
|
|
|
|
void _backlight_hw_enable(bool on);
|
|
|
|
|
2009-02-21 11:10:50 +00:00
|
|
|
#ifdef HAVE_LCD_SLEEP
|
|
|
|
void lcd_awake(void);
|
|
|
|
#endif
|
|
|
|
|
2007-11-12 19:19:38 +00:00
|
|
|
#ifdef BOOTLOADER
|
2015-01-08 23:22:40 +00:00
|
|
|
#define backlight_hw_on() do { _backlight_hw_enable(true); \
|
2007-11-12 19:19:38 +00:00
|
|
|
_backlight_led_on(); } while(0)
|
2015-01-08 23:22:40 +00:00
|
|
|
#define backlight_hw_off() do { _backlight_led_off(); \
|
2007-11-12 19:19:38 +00:00
|
|
|
_backlight_hw_enable(false); } while(0)
|
|
|
|
#else /* !BOOTLOADER */
|
2015-01-12 11:02:24 +00:00
|
|
|
#define _backlight_on_isr() _backlight_led_on()
|
|
|
|
#define _backlight_off_isr() _backlight_led_off()
|
|
|
|
#define _backlight_on_normal() do { _backlight_hw_enable(true); \
|
2007-11-12 18:49:53 +00:00
|
|
|
_backlight_led_on(); } while(0)
|
2015-01-12 11:02:24 +00:00
|
|
|
#define _backlight_off_normal() do { _backlight_led_off(); \
|
2007-11-12 18:49:53 +00:00
|
|
|
_backlight_hw_enable(false); } while(0)
|
|
|
|
#define _BACKLIGHT_FADE_ENABLE
|
2007-11-12 19:19:38 +00:00
|
|
|
#endif /* !BOOTLOADER */
|
2007-11-12 18:49:53 +00:00
|
|
|
|
2007-11-18 14:01:58 +00:00
|
|
|
#elif defined(IPOD_4G) || defined(IPOD_COLOR)
|
|
|
|
|
2015-01-08 23:22:40 +00:00
|
|
|
bool backlight_hw_init(void);
|
|
|
|
void backlight_hw_on(void);
|
|
|
|
void backlight_hw_off(void);
|
|
|
|
void backlight_hw_brightness(int val);
|
2007-11-18 14:01:58 +00:00
|
|
|
|
2009-01-27 00:16:26 +00:00
|
|
|
#elif defined(IPOD_MINI) || defined(IPOD_MINI2G)
|
2007-11-12 18:49:53 +00:00
|
|
|
|
2021-08-29 12:19:02 +00:00
|
|
|
bool backlight_hw_init(void);
|
2015-01-12 11:02:24 +00:00
|
|
|
void backlight_hw_on(void);
|
|
|
|
void backlight_hw_off(void);
|
2007-11-12 18:49:53 +00:00
|
|
|
|
2015-01-12 11:02:24 +00:00
|
|
|
#ifndef BOOTLOADER
|
|
|
|
#define _backlight_on_isr() backlight_hw_on()
|
|
|
|
#define _backlight_off_isr() backlight_hw_off()
|
|
|
|
#define _backlight_on_normal() backlight_hw_on()
|
|
|
|
#define _backlight_off_normal() backlight_hw_off()
|
2007-11-12 19:19:38 +00:00
|
|
|
#endif
|
2007-11-12 18:49:53 +00:00
|
|
|
|
2009-01-27 00:16:26 +00:00
|
|
|
#elif defined(IPOD_1G2G) || defined(IPOD_3G)
|
2007-11-12 18:49:53 +00:00
|
|
|
|
2015-01-08 23:22:40 +00:00
|
|
|
#define backlight_hw_init() true
|
|
|
|
void backlight_hw_on(void);
|
|
|
|
void backlight_hw_off(void);
|
2007-11-12 18:49:53 +00:00
|
|
|
#endif
|
2006-10-05 10:58:51 +00:00
|
|
|
|
|
|
|
#endif
|