summaryrefslogtreecommitdiff
path: root/nuttx/configs/us7032evb1/src
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-11-07 16:28:17 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-11-07 16:28:17 +0000
commita113aa53d96d039d28e3e54ba79b2aae6a524ca5 (patch)
tree2a263e225aed1319765ec57c0f9115481a873fd7 /nuttx/configs/us7032evb1/src
parent971e5a51bbaa3f4799d61e3c28de810cb2bf7a6c (diff)
downloadpx4-nuttx-a113aa53d96d039d28e3e54ba79b2aae6a524ca5.tar.gz
px4-nuttx-a113aa53d96d039d28e3e54ba79b2aae6a524ca5.tar.bz2
px4-nuttx-a113aa53d96d039d28e3e54ba79b2aae6a524ca5.zip
Basic SCI support
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1152 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/configs/us7032evb1/src')
-rw-r--r--nuttx/configs/us7032evb1/src/up_leds.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/nuttx/configs/us7032evb1/src/up_leds.c b/nuttx/configs/us7032evb1/src/up_leds.c
index fb2eda376..2e711471a 100644
--- a/nuttx/configs/us7032evb1/src/up_leds.c
+++ b/nuttx/configs/us7032evb1/src/up_leds.c
@@ -67,7 +67,9 @@
#ifdef CONFIG_ARCH_LEDS
void up_ledinit(void)
{
-#warning "To be provided"
+ /* The SH1_LPEVB has no user controllable LEDs. This is provided only
+ * in the event that CONFIG_ARCH_LEDs is enabled.
+ */
}
/****************************************************************************
@@ -76,7 +78,9 @@ void up_ledinit(void)
void up_ledon(int led)
{
-#warning "To be provided"
+ /* The SH1_LPEVB has no user controllable LEDs. This is provided only
+ * in the event that CONFIG_ARCH_LEDs is enabled.
+ */
}
/****************************************************************************
@@ -85,6 +89,8 @@ void up_ledon(int led)
void up_ledoff(int led)
{
-#warning "To be provided"
+ /* The SH1_LPEVB has no user controllable LEDs. This is provided only
+ * in the event that CONFIG_ARCH_LEDs is enabled.
+ */
}
#endif /* CONFIG_ARCH_LEDS */