summaryrefslogtreecommitdiff
path: root/nuttx/configs/Kconfig
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-04-21 17:34:05 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-04-21 17:34:05 -0600
commit764a214919850394d1c4029600fa57bc7df58b9f (patch)
tree19444d9f99ae51c27f9f0ece4a90d00870d842e1 /nuttx/configs/Kconfig
parent9f43a102d35462247d27e5ee3d568c5294960686 (diff)
downloadnuttx-764a214919850394d1c4029600fa57bc7df58b9f.tar.gz
nuttx-764a214919850394d1c4029600fa57bc7df58b9f.tar.bz2
nuttx-764a214919850394d1c4029600fa57bc7df58b9f.zip
Support for the Atmel SAM4S Xplaiend Board from Bob Doison
Diffstat (limited to 'nuttx/configs/Kconfig')
-rw-r--r--nuttx/configs/Kconfig13
1 files changed, 13 insertions, 0 deletions
diff --git a/nuttx/configs/Kconfig b/nuttx/configs/Kconfig
index cb8a5ee3a..1a2d90aa8 100644
--- a/nuttx/configs/Kconfig
+++ b/nuttx/configs/Kconfig
@@ -599,6 +599,15 @@ config ARCH_BOARD_SAM4L_XPLAINED
---help---
The port of NuttX to the Atmel SAM4L-Xplained Pro development board.
+config ARCH_BOARD_SAM4S_XPLAINED_PRO
+ bool "Atmel SAM4S-Xplained Pro development board"
+ depends on ARCH_CHIP_ATSAM4SD32C
+ select ARCH_HAVE_LEDS
+ select ARCH_HAVE_BUTTONS
+ select ARCH_HAVE_IRQBUTTONS
+ ---help---
+ The port of NuttX to the Atmel SAM4S-Xplained Pro development board.
+
config ARCH_BOARD_SAM4S_XPLAINED
bool "Atmel SAM4S-Xplained development board"
depends on ARCH_CHIP_ATSAM4S16C
@@ -980,6 +989,7 @@ config ARCH_BOARD
default "sam4e-ek" if ARCH_BOARD_SAM4EEK
default "sam4l-xplained" if ARCH_BOARD_SAM4L_XPLAINED
default "sam4s-xplained" if ARCH_BOARD_SAM4S_XPLAINED
+ default "sam4s-xplained-pro" if ARCH_BOARD_SAM4S_XPLAINED_PRO
default "shenzhou" if ARCH_BOARD_SHENZHOU
default "skp16c26" if ARCH_BOARD_SKP16C26
default "spark" if ARCH_BOARD_SPARK
@@ -1246,6 +1256,9 @@ endif
if ARCH_BOARD_SAM4S_XPLAINED
source "configs/sam4s-xplained/Kconfig"
endif
+if ARCH_BOARD_SAM4S_XPLAINED_PRO
+source "configs/sam4s-xplained-pro/Kconfig"
+endif
if ARCH_BOARD_SHENZHOU
source "configs/shenzhou/Kconfig"
endif