summaryrefslogtreecommitdiff
path: root/nuttx/configs/nutiny-nuc120
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-02-24 00:31:45 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-02-24 00:31:45 +0000
commitd64e8a37f973d1b0394cb582fb6f5e94fd057c1b (patch)
tree23161fb3380e109a419efda8f9ab87e84094d4d9 /nuttx/configs/nutiny-nuc120
parentf2354e6bf2bf123f996fe741b1fcea0ea9c6a4ec (diff)
downloadpx4-nuttx-d64e8a37f973d1b0394cb582fb6f5e94fd057c1b.tar.gz
px4-nuttx-d64e8a37f973d1b0394cb582fb6f5e94fd057c1b.tar.bz2
px4-nuttx-d64e8a37f973d1b0394cb582fb6f5e94fd057c1b.zip
A few more NuTiny-SDK-NUC120 fixes
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5668 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/configs/nutiny-nuc120')
-rw-r--r--nuttx/configs/nutiny-nuc120/README.txt2
-rw-r--r--nuttx/configs/nutiny-nuc120/scripts/ld.script2
-rw-r--r--nuttx/configs/nutiny-nuc120/src/nutiny-nuc120.h4
3 files changed, 5 insertions, 3 deletions
diff --git a/nuttx/configs/nutiny-nuc120/README.txt b/nuttx/configs/nutiny-nuc120/README.txt
index 69cf3c2e0..3333866db 100644
--- a/nuttx/configs/nutiny-nuc120/README.txt
+++ b/nuttx/configs/nutiny-nuc120/README.txt
@@ -90,7 +90,7 @@ LEDs
LED_SIGNAL In a signal handler LED might glow
LED_ASSERTION An assertion failed LED ON while handling the assertion
LED_PANIC The system has crashed LED Blinking at 2Hz
- LED_IDLE NUC1XX is is sleep mode (Optional, not used)
+ LED_IDLE NUC1XX is in sleep mode (Optional, not used)
Serial Console
==============
diff --git a/nuttx/configs/nutiny-nuc120/scripts/ld.script b/nuttx/configs/nutiny-nuc120/scripts/ld.script
index aed7e1b68..a380ba623 100644
--- a/nuttx/configs/nutiny-nuc120/scripts/ld.script
+++ b/nuttx/configs/nutiny-nuc120/scripts/ld.script
@@ -44,7 +44,9 @@ MEMORY
}
OUTPUT_ARCH(arm)
+EXTERN(_vectors)
ENTRY(_stext)
+
SECTIONS
{
.text : {
diff --git a/nuttx/configs/nutiny-nuc120/src/nutiny-nuc120.h b/nuttx/configs/nutiny-nuc120/src/nutiny-nuc120.h
index 55744fb61..dcc2a9590 100644
--- a/nuttx/configs/nutiny-nuc120/src/nutiny-nuc120.h
+++ b/nuttx/configs/nutiny-nuc120/src/nutiny-nuc120.h
@@ -68,10 +68,10 @@
* LED_SIGNAL In a signal handler LED might glow
* LED_ASSERTION An assertion failed LED ON while handling the assertion
* LED_PANIC The system has crashed LED Blinking at 2Hz
- * LED_IDLE NUC1XX is is sleep mode (Optional, not used)
+ * LED_IDLE NUC1XX is in sleep mode (Optional, not used)
*/
-#define GPIO_LED (GPIO_OUTPUT | GPIO_OUTPUT_SET | GPIO_PORTB | GPIO_PIN8)
+#define GPIO_LED (GPIO_OUTPUT | GPIO_OUTPUT_SET | GPIO_PORTB | GPIO_PIN0)
/* Button definitions ***************************************************************/
/* The NuTiny has no buttons */