2002-08-13 09:19:21 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 by Robert E. Hak <rhak@ramapo.edu>
|
|
|
|
*
|
|
|
|
* Windows Copyright (C) 2002 by Felix Arends
|
|
|
|
* X11 Copyright (C) 2002 by Daniel Stenberg <daniel@haxx.se>
|
|
|
|
*
|
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.
|
2002-08-13 09:19:21 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2002-08-13 09:32:56 +00:00
|
|
|
#include "lcd.h"
|
2006-02-03 15:19:58 +00:00
|
|
|
#include "lcd-sdl.h"
|
2003-12-15 10:25:51 +00:00
|
|
|
|
2003-12-20 10:00:37 +00:00
|
|
|
void lcd_set_flip(bool yesno)
|
|
|
|
{
|
|
|
|
(void)yesno;
|
2004-04-21 09:44:07 +00:00
|
|
|
}
|
|
|
|
|
2005-05-23 16:23:25 +00:00
|
|
|
void lcd_set_invert_display(bool invert)
|
|
|
|
{
|
|
|
|
(void)invert;
|
|
|
|
}
|
|
|
|
|
2006-07-25 11:15:50 +00:00
|
|
|
int lcd_default_contrast(void)
|
2005-05-23 16:23:25 +00:00
|
|
|
{
|
2006-07-25 11:15:50 +00:00
|
|
|
return 28;
|
2005-05-23 16:23:25 +00:00
|
|
|
}
|
|
|
|
|
2007-07-08 13:13:25 +00:00
|
|
|
void lcd_sleep(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2005-05-23 16:23:25 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
void lcd_remote_set_contrast(int val)
|
|
|
|
{
|
|
|
|
(void)val;
|
|
|
|
}
|
|
|
|
void lcd_remote_backlight_on(int val)
|
|
|
|
{
|
|
|
|
(void)val;
|
|
|
|
}
|
|
|
|
void lcd_remote_backlight_off(int val)
|
|
|
|
{
|
|
|
|
(void)val;
|
|
|
|
}
|
2005-06-17 22:03:56 +00:00
|
|
|
|
|
|
|
void lcd_remote_set_flip(bool yesno)
|
|
|
|
{
|
|
|
|
(void)yesno;
|
|
|
|
}
|
2006-07-25 11:15:50 +00:00
|
|
|
|
|
|
|
void lcd_remote_set_invert_display(bool invert)
|
|
|
|
{
|
|
|
|
(void)invert;
|
|
|
|
}
|
2005-05-23 16:23:25 +00:00
|
|
|
#endif
|