1
0
Fork 0
forked from len0rd/rockbox

Do the CONFIG_LED define

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12383 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonathan Gordon 2007-02-18 05:07:19 +00:00
parent ac61951452
commit bd47d48c21
13 changed files with 30 additions and 27 deletions

View file

@ -7,7 +7,7 @@
* \/ \/ \/ \/ \/
* $Id$
*
* Copyright (C) 2002 by Björn Stenberg
* Copyright (C) 2002 by Bj<EFBFBD>n Stenberg
*
* 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.
@ -561,7 +561,7 @@ int main(void)
app_main();
while(1) {
#if defined(CONFIG_LED) && (CONFIG_LED == LED_REAL)
#if (CONFIG_LED == LED_REAL)
led(true); sleep(HZ/10);
led(false); sleep(HZ/10);
#endif