diff --git a/configs/eagle100/src/eagle100_internal.h b/configs/eagle100/src/eagle100_internal.h index 173f5e274b..68a64bde19 100644 --- a/configs/eagle100/src/eagle100_internal.h +++ b/configs/eagle100/src/eagle100_internal.h @@ -2,7 +2,7 @@ * configs/eagle100/src/eagle100_internal.h * arch/arm/src/board/eagle100_internal.n * - * Copyright (C) 2009 Gregory Nutt. All rights reserved. + * Copyright (C) 2009-2010 Gregory Nutt. All rights reserved. * Author: Gregory Nutt * * Redistribution and use in source and binary forms, with or without @@ -89,6 +89,18 @@ extern void weak_function lm3s_ssiinitialize(void); +/**************************************************************************** + * Name: up_ledinit + * + * Description: + * Initialize on-board LEDs. + * + ****************************************************************************/ + +#ifdef CONFIG_ARCH_LEDS +extern void up_ledinit(void); +#endif + #endif /* __ASSEMBLY__ */ #endif /* __CONFIGS_EAGLE100_SRC_EAGLE100_INTERNAL_H */ diff --git a/configs/eagle100/src/up_boot.c b/configs/eagle100/src/up_boot.c index a545f7e0dc..61dab16532 100644 --- a/configs/eagle100/src/up_boot.c +++ b/configs/eagle100/src/up_boot.c @@ -2,7 +2,7 @@ * configs/eagle100/src/up_boot.c * arch/arm/src/board/up_boot.c * - * Copyright (C) 2009 Gregory Nutt. All rights reserved. + * Copyright (C) 2009-2010 Gregory Nutt. All rights reserved. * Author: Gregory Nutt * * Redistribution and use in source and binary forms, with or without diff --git a/configs/eagle100/src/up_leds.c b/configs/eagle100/src/up_leds.c index c080bf6748..e567955b34 100644 --- a/configs/eagle100/src/up_leds.c +++ b/configs/eagle100/src/up_leds.c @@ -2,7 +2,7 @@ * configs/eagle100/src/up_leds.c * arch/arm/src/board/up_leds.c * - * Copyright (C) 2009 Gregory Nutt. All rights reserved. + * Copyright (C) 2009-2010 Gregory Nutt. All rights reserved. * Author: Gregory Nutt * * Redistribution and use in source and binary forms, with or without @@ -93,6 +93,10 @@ static uint8_t g_nest; /**************************************************************************** * Name: up_ledinit + * + * Description: + * Initialize on-board LEDs. + * ****************************************************************************/ #ifdef CONFIG_ARCH_LEDS