blob: 52857455f9cbe37f1d0d472a42f135d48e6b8fc1 [file] [log] [blame]
Robert Hak4db2ded2002-08-13 09:19:21 +00001/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2002 by Robert E. Hak <rhak@ramapo.edu>
11 *
12 * Windows Copyright (C) 2002 by Felix Arends
13 * X11 Copyright (C) 2002 by Daniel Stenberg <daniel@haxx.se>
14 *
Daniel Stenberg2acc0ac2008-06-28 18:10:04 +000015 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version 2
18 * of the License, or (at your option) any later version.
Robert Hak4db2ded2002-08-13 09:19:21 +000019 *
20 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21 * KIND, either express or implied.
22 *
23 ****************************************************************************/
24
Robert Hake7a6a822002-08-13 09:32:56 +000025#include "lcd.h"
Linus Nielsen Feltzingfc72c532006-02-03 15:19:58 +000026#include "lcd-sdl.h"
Daniel Stenberg41cfe302003-12-15 10:25:51 +000027
Jörg Hohensohna5e1d062003-12-20 10:00:37 +000028void lcd_set_flip(bool yesno)
29{
30 (void)yesno;
Jens Arnolde8bb31e2004-04-21 09:44:07 +000031}
32
Daniel Stenbergac31e6a2005-05-23 16:23:25 +000033void lcd_set_invert_display(bool invert)
34{
35 (void)invert;
36}
37
Jens Arnold9051afa2006-07-25 11:15:50 +000038int lcd_default_contrast(void)
Daniel Stenbergac31e6a2005-05-23 16:23:25 +000039{
Jens Arnold9051afa2006-07-25 11:15:50 +000040 return 28;
Daniel Stenbergac31e6a2005-05-23 16:23:25 +000041}
42
Michael Sevakis979c2b72007-07-08 13:13:25 +000043void lcd_sleep(void)
44{
45}
46
Daniel Stenbergac31e6a2005-05-23 16:23:25 +000047#ifdef HAVE_REMOTE_LCD
48void lcd_remote_set_contrast(int val)
49{
50 (void)val;
51}
52void lcd_remote_backlight_on(int val)
53{
54 (void)val;
55}
56void lcd_remote_backlight_off(int val)
57{
58 (void)val;
59}
Jens Arnold22c15b72005-06-17 22:03:56 +000060
61void lcd_remote_set_flip(bool yesno)
62{
63 (void)yesno;
64}
Jens Arnold9051afa2006-07-25 11:15:50 +000065
66void lcd_remote_set_invert_display(bool invert)
67{
68 (void)invert;
69}
Daniel Stenbergac31e6a2005-05-23 16:23:25 +000070#endif