summaryrefslogtreecommitdiff
path: root/nuttx/configs/ekk-lm3s9b96
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-08 19:27:38 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-08 19:27:38 +0000
commit6e6b69155e425d81c6f92761bf80cf85ac79c808 (patch)
tree6755cf33710b3243c6d7e028c231d8be97466a8a /nuttx/configs/ekk-lm3s9b96
parent3af495539591a849500e79917822ef955d62663d (diff)
downloadpx4-nuttx-6e6b69155e425d81c6f92761bf80cf85ac79c808.tar.gz
px4-nuttx-6e6b69155e425d81c6f92761bf80cf85ac79c808.tar.bz2
px4-nuttx-6e6b69155e425d81c6f92761bf80cf85ac79c808.zip
Eliminate arch/arc/src/lm3s/lm3s_internal.h; replace with several header files
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5494 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/configs/ekk-lm3s9b96')
-rw-r--r--nuttx/configs/ekk-lm3s9b96/nsh/defconfig1
-rw-r--r--nuttx/configs/ekk-lm3s9b96/ostest/defconfig1
-rw-r--r--nuttx/configs/ekk-lm3s9b96/src/ekklm3s9b96_internal.h1
-rw-r--r--nuttx/configs/ekk-lm3s9b96/src/up_leds.c2
-rw-r--r--nuttx/configs/ekk-lm3s9b96/src/up_ssi.c2
5 files changed, 5 insertions, 2 deletions
diff --git a/nuttx/configs/ekk-lm3s9b96/nsh/defconfig b/nuttx/configs/ekk-lm3s9b96/nsh/defconfig
index 82ad3ce5d..d8ae63cff 100644
--- a/nuttx/configs/ekk-lm3s9b96/nsh/defconfig
+++ b/nuttx/configs/ekk-lm3s9b96/nsh/defconfig
@@ -40,6 +40,7 @@ CONFIG_ARCH="arm"
CONFIG_ARCH_ARM=y
CONFIG_ARCH_CORTEXM3=y
CONFIG_ARCH_CHIP="lm3s"
+CONFIG_ARCH_CHIP_LM3S=y
CONFIG_ARCH_CHIP_LM3S9B96=y
CONFIG_ARCH_BOARD="ekk-lm3s9b96"
CONFIG_ARCH_BOARD_EKKLM3S9B96=y
diff --git a/nuttx/configs/ekk-lm3s9b96/ostest/defconfig b/nuttx/configs/ekk-lm3s9b96/ostest/defconfig
index bcf2a9426..62a092d1f 100644
--- a/nuttx/configs/ekk-lm3s9b96/ostest/defconfig
+++ b/nuttx/configs/ekk-lm3s9b96/ostest/defconfig
@@ -40,6 +40,7 @@ CONFIG_ARCH="arm"
CONFIG_ARCH_ARM=y
CONFIG_ARCH_CORTEXM3=y
CONFIG_ARCH_CHIP="lm3s"
+CONFIG_ARCH_CHIP_LM3S=y
CONFIG_ARCH_CHIP_LM3S9B96=y
CONFIG_ARCH_BOARD="ekk-lm3s9b96"
CONFIG_ARCH_BOARD_EKKLM3S9B96=y
diff --git a/nuttx/configs/ekk-lm3s9b96/src/ekklm3s9b96_internal.h b/nuttx/configs/ekk-lm3s9b96/src/ekklm3s9b96_internal.h
index fd8ff3adb..bb3315f5b 100644
--- a/nuttx/configs/ekk-lm3s9b96/src/ekklm3s9b96_internal.h
+++ b/nuttx/configs/ekk-lm3s9b96/src/ekklm3s9b96_internal.h
@@ -46,6 +46,7 @@
#include <nuttx/compiler.h>
#include "chip.h"
+#include "lm_gpio.h"
/************************************************************************************
* Definitions
diff --git a/nuttx/configs/ekk-lm3s9b96/src/up_leds.c b/nuttx/configs/ekk-lm3s9b96/src/up_leds.c
index 5ed84c2d2..7628fcfe0 100644
--- a/nuttx/configs/ekk-lm3s9b96/src/up_leds.c
+++ b/nuttx/configs/ekk-lm3s9b96/src/up_leds.c
@@ -49,7 +49,7 @@
#include "chip.h"
#include "up_arch.h"
#include "up_internal.h"
-#include "lm3s_internal.h"
+#include "lm_gpio.h"
#include "ekklm3s9b96_internal.h"
/****************************************************************************
diff --git a/nuttx/configs/ekk-lm3s9b96/src/up_ssi.c b/nuttx/configs/ekk-lm3s9b96/src/up_ssi.c
index 2fe3b81c8..8f297e7a7 100644
--- a/nuttx/configs/ekk-lm3s9b96/src/up_ssi.c
+++ b/nuttx/configs/ekk-lm3s9b96/src/up_ssi.c
@@ -50,7 +50,7 @@
#include "up_arch.h"
#include "chip.h"
-#include "lm3s_internal.h"
+#include "lm_gpio.h"
#include "ekklm3s9b96_internal.h"
#if !defined(CONFIG_SSI0_DISABLE) || !defined(CONFIG_SSI1_DISABLE)