2002-03-28 15:09:10 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 by Alan Korr
|
|
|
|
*
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __LED_H__
|
|
|
|
#define __LED_H__
|
|
|
|
|
2002-05-13 12:29:34 +00:00
|
|
|
#include <stdbool.h>
|
2002-03-28 15:09:10 +00:00
|
|
|
|
2002-04-26 09:05:36 +00:00
|
|
|
extern void led( bool on );
|
2005-06-04 23:15:52 +00:00
|
|
|
#if CONFIG_LED == LED_VIRTUAL
|
2005-02-19 14:44:31 +00:00
|
|
|
extern bool led_read(int delayticks); /* read for status bar */
|
2005-02-19 00:34:15 +00:00
|
|
|
#endif
|
2002-03-28 15:09:10 +00:00
|
|
|
|
|
|
|
#endif
|