diff --git a/configs/nutiny-nuc120/README.txt b/configs/nutiny-nuc120/README.txt index 69cf3c2e068..3333866db1b 100644 --- a/configs/nutiny-nuc120/README.txt +++ b/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/configs/nutiny-nuc120/scripts/ld.script b/configs/nutiny-nuc120/scripts/ld.script index aed7e1b68e9..a380ba62376 100644 --- a/configs/nutiny-nuc120/scripts/ld.script +++ b/configs/nutiny-nuc120/scripts/ld.script @@ -44,7 +44,9 @@ MEMORY } OUTPUT_ARCH(arm) +EXTERN(_vectors) ENTRY(_stext) + SECTIONS { .text : { diff --git a/configs/nutiny-nuc120/src/nutiny-nuc120.h b/configs/nutiny-nuc120/src/nutiny-nuc120.h index 55744fb61bc..dcc2a959043 100644 --- a/configs/nutiny-nuc120/src/nutiny-nuc120.h +++ b/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 */