summaryrefslogtreecommitdiff
path: root/nuttx/configs/Kconfig
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-12-28 17:51:11 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-12-28 17:51:11 -0600
commit8619e77941e970786913526ff34cf8b8bbb61372 (patch)
tree8bc8fd045fbe11a9c38d7a3518699d72b4433738 /nuttx/configs/Kconfig
parent7e4a040f31d7f807eeaa388b36291a6ef1e5ffef (diff)
downloadnuttx-8619e77941e970786913526ff34cf8b8bbb61372.tar.gz
nuttx-8619e77941e970786913526ff34cf8b8bbb61372.tar.bz2
nuttx-8619e77941e970786913526ff34cf8b8bbb61372.zip
Cloudctrl: Add missing configuration logic
Diffstat (limited to 'nuttx/configs/Kconfig')
-rw-r--r--nuttx/configs/Kconfig7
1 files changed, 7 insertions, 0 deletions
diff --git a/nuttx/configs/Kconfig b/nuttx/configs/Kconfig
index 8328bd5e6..544a14dbf 100644
--- a/nuttx/configs/Kconfig
+++ b/nuttx/configs/Kconfig
@@ -56,6 +56,9 @@ config ARCH_BOARD_C5471EVM
config ARCH_BOARD_CLOUDCTRL
bool "Darcy's CloudController stm32f10x board"
depends on ARCH_CHIP_STM32F107VC
+ select ARCH_HAVE_LEDS
+ select ARCH_HAVE_BUTTONS
+ select ARCH_HAVE_IRQBUTTONS
---help---
Small network relay development board. Based on the Shenzhou IV development
board design.
@@ -1029,6 +1032,7 @@ config ARCH_BOARD
default "arduino-due" if ARCH_BOARD_ARDUINO_DUE
default "avr32dev1" if ARCH_BOARD_AVR32DEV1
default "c5471evm" if ARCH_BOARD_C5471EVM
+ default "cloudctrl" if ARCH_BOARD_CLOUDCTRL
default "compal_e86" if ARCH_BOARD_COMPALE86
default "compal_e88" if ARCH_BOARD_COMPALE88
default "compal_e99" if ARCH_BOARD_COMPALE99
@@ -1190,6 +1194,9 @@ endif
if ARCH_BOARD_C5471EVM
source "configs/c5471evm/Kconfig"
endif
+if ARCH_BOARD_CLOUDCTRL
+source "configs/cloudctrl/Kconfig"
+endif
if ARCH_BOARD_COMPALE86
source "configs/compal_e86/Kconfig"
endif