summaryrefslogtreecommitdiff
path: root/nuttx/configs/lincoln60
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-04-13 16:22:22 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-04-13 16:22:22 -0600
commit70b6bb22af51defd713adfd452309f32f0e523aa (patch)
treeb483c578cf6ae76888b89188bedb03f539ab4cd3 /nuttx/configs/lincoln60
parent3cf6b4d6577c2f467dbb25dd0da8cdc6ad32a7b4 (diff)
downloadpx4-nuttx-70b6bb22af51defd713adfd452309f32f0e523aa.tar.gz
px4-nuttx-70b6bb22af51defd713adfd452309f32f0e523aa.tar.bz2
px4-nuttx-70b6bb22af51defd713adfd452309f32f0e523aa.zip
More trailing whilespace removal
Diffstat (limited to 'nuttx/configs/lincoln60')
-rw-r--r--nuttx/configs/lincoln60/README.txt6
-rw-r--r--nuttx/configs/lincoln60/include/board.h2
-rw-r--r--nuttx/configs/lincoln60/nsh/Make.defs2
-rw-r--r--nuttx/configs/lincoln60/src/Makefile4
-rw-r--r--nuttx/configs/lincoln60/src/up_leds.c8
5 files changed, 11 insertions, 11 deletions
diff --git a/nuttx/configs/lincoln60/README.txt b/nuttx/configs/lincoln60/README.txt
index ef2e2bf52..eaf98ef7c 100644
--- a/nuttx/configs/lincoln60/README.txt
+++ b/nuttx/configs/lincoln60/README.txt
@@ -119,7 +119,7 @@ IDEs
NuttX is built using command-line make. It can be used with an IDE, but some
effort will be required to create the project.
-
+
Makefile Build
--------------
Under Eclipse, it is pretty easy to set up an "empty makefile project" and
@@ -214,7 +214,7 @@ NXFLAT Toolchain
tools -- just the NXFLAT tools. The buildroot with the NXFLAT tools can
be downloaded from the NuttX SourceForge download site
(https://sourceforge.net/projects/nuttx/files/).
-
+
This GNU toolchain builds and executes in the Linux or Cygwin environment.
1. You must have already configured Nuttx in <some-dir>/nuttx.
@@ -401,7 +401,7 @@ Lincoln 60 Configuration Options
LPC17xx USB Device Configuration
CONFIG_LPC17_USBDEV_FRAME_INTERRUPT
- Handle USB Start-Of-Frame events.
+ Handle USB Start-Of-Frame events.
Enable reading SOF from interrupt handler vs. simply reading on demand.
Probably a bad idea... Unless there is some issue with sampling the SOF
from hardware asynchronously.
diff --git a/nuttx/configs/lincoln60/include/board.h b/nuttx/configs/lincoln60/include/board.h
index ca6aeb7ba..0eafa454a 100644
--- a/nuttx/configs/lincoln60/include/board.h
+++ b/nuttx/configs/lincoln60/include/board.h
@@ -89,7 +89,7 @@
/* PLL0. PLL0 is used to generate the CPU clock divider input (PLLCLK).
*
* Source clock: Main oscillator
- * PLL0 Multiplier value (M): 20
+ * PLL0 Multiplier value (M): 20
* PLL0 Pre-divider value (N): 1
*
* PLL0CLK = (2 * 20 * SYSCLK) / 1 = 480MHz
diff --git a/nuttx/configs/lincoln60/nsh/Make.defs b/nuttx/configs/lincoln60/nsh/Make.defs
index 5ba93b8c8..560fd794a 100644
--- a/nuttx/configs/lincoln60/nsh/Make.defs
+++ b/nuttx/configs/lincoln60/nsh/Make.defs
@@ -46,7 +46,7 @@ ifeq ($(WINTOOL),y)
ARCHXXINCLUDES = -I. -isystem "${shell cygpath -w $(TOPDIR)/include}" -isystem "${shell cygpath -w $(TOPDIR)/include/cxx}"
ARCHSCRIPT = -T "${shell cygpath -w $(TOPDIR)/configs/$(CONFIG_ARCH_BOARD)/scripts/ld.script}"
else
- # Linux/Cygwin-native toolchain
+ # Linux/Cygwin-native toolchain
MKDEP = $(TOPDIR)/tools/mkdeps.sh
ARCHINCLUDES = -I. -isystem $(TOPDIR)/include
ARCHXXINCLUDES = -I. -isystem $(TOPDIR)/include -isystem $(TOPDIR)/include/cxx
diff --git a/nuttx/configs/lincoln60/src/Makefile b/nuttx/configs/lincoln60/src/Makefile
index 66862306a..1fc01490a 100644
--- a/nuttx/configs/lincoln60/src/Makefile
+++ b/nuttx/configs/lincoln60/src/Makefile
@@ -37,8 +37,8 @@
CFLAGS += -I$(TOPDIR)/sched
-ASRCS =
-CSRCS = up_boot.c up_leds.c
+ASRCS =
+CSRCS = up_boot.c up_leds.c
ifeq ($(CONFIG_NSH_ARCHINIT),y)
CSRCS += up_nsh.c
diff --git a/nuttx/configs/lincoln60/src/up_leds.c b/nuttx/configs/lincoln60/src/up_leds.c
index 59fb8f049..e3b763085 100644
--- a/nuttx/configs/lincoln60/src/up_leds.c
+++ b/nuttx/configs/lincoln60/src/up_leds.c
@@ -96,11 +96,11 @@ debug functionality (where NC means "No Change").
During the boot phases. LED1 and LED2 will show boot status.
- LED1 LED2
-STARTED OFF OFF
-HEAPALLOCATE BLUE OFF
+ LED1 LED2
+STARTED OFF OFF
+HEAPALLOCATE BLUE OFF
IRQSENABLED OFF BLUE
-STACKCREATED OFF OFF
+STACKCREATED OFF OFF
After the system is booted, this logic will no longer use LEDs 1 & 2. They
are available for use by applications using lpc17_led (prototyped below)