aboutsummaryrefslogtreecommitdiff
path: root/nuttx/arch
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-09-06 22:25:51 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-09-06 22:25:51 +0000
commite74b6c382cd285dbb749c688ec4082570c3b00d3 (patch)
tree2ec19fec1d76067cfa129ca30439907487baa216 /nuttx/arch
parent941daa511e106c1c50e2b077160c1bc9a2495bc8 (diff)
downloadpx4-firmware-e74b6c382cd285dbb749c688ec4082570c3b00d3.tar.gz
px4-firmware-e74b6c382cd285dbb749c688ec4082570c3b00d3.tar.bz2
px4-firmware-e74b6c382cd285dbb749c688ec4082570c3b00d3.zip
Repairs needed after Kconfig changes for LPC31
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@5105 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'nuttx/arch')
-rw-r--r--nuttx/arch/arm/src/lpc31xx/Kconfig22
1 files changed, 20 insertions, 2 deletions
diff --git a/nuttx/arch/arm/src/lpc31xx/Kconfig b/nuttx/arch/arm/src/lpc31xx/Kconfig
index 51c087998..53691f494 100644
--- a/nuttx/arch/arm/src/lpc31xx/Kconfig
+++ b/nuttx/arch/arm/src/lpc31xx/Kconfig
@@ -68,6 +68,12 @@ config LPC31_EXTSDRAMSIZE
---help---
Size of the external SDRAM.
+config LPC31_SDRAMHCLK
+ int "External SDRAM HCLK"
+ depends on LPC31_EXTSDRAM
+ ---help---
+ The SDRAM HCLK may be specified here (if not, it will be calculated).
+
config LPC31_EXTSRAM0
bool "Map external SRAM0"
default n
@@ -115,6 +121,18 @@ config LPC31_UART
default n
select ARCH_HAS_UART
+config LPC31_SPI
+ bool "SPI"
+ default n
+
+config LPC31_USB
+ bool "USB"
+ default n
+
+config LPC31_MCI
+ bool "MCI"
+ default n
+
endmenu
menu "LPC31xx UART Configuration"
@@ -174,8 +192,8 @@ endmenu
menu "SPI device driver options"
config LPC31_SPI_REGDEBUG
- bool "Register level debug"
- depends on DEBUG
+ bool "SPI Register level debug"
+ depends on LPC31_SPI && DEBUG
default n
---help---
Output detailed register-level SPI device debug information. Requires also DEBUG.