summaryrefslogtreecommitdiff
path: root/nuttx/configs/Kconfig
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-06-03 15:11:56 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-06-03 15:11:56 -0600
commit5cc921b5ae92b3b354b3e727743e5393607f624c (patch)
treec35d74183d7ccccf0bc89d19faef9901cab33c8a /nuttx/configs/Kconfig
parentccadba524f6e5ff381a5b24397af7124e814866a (diff)
downloadnuttx-5cc921b5ae92b3b354b3e727743e5393607f624c.tar.gz
nuttx-5cc921b5ae92b3b354b3e727743e5393607f624c.tar.bz2
nuttx-5cc921b5ae92b3b354b3e727743e5393607f624c.zip
Add a skeleton configuration that will eventually support the SAM4L Xplained Pro board
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 f7ee6d9c0..e500819bc 100644
--- a/nuttx/configs/Kconfig
+++ b/nuttx/configs/Kconfig
@@ -473,6 +473,15 @@ config ARCH_BOARD_SAM3UEK
---help---
The port of NuttX to the Atmel SAM3U-EK development board.
+config ARCH_BOARD_SAM4L_XPLAINED
+ bool "Atmel SAM4L-Xplained Pro development board"
+ depends on ARCH_CHIP_ATSAM4LC4C
+ select ARCH_HAVE_LEDS
+ select ARCH_HAVE_BUTTONS
+ select ARCH_HAVE_IRQBUTTONS
+ ---help---
+ The port of NuttX to the Atmel SAM4L-Xplained Pro development board.
+
config ARCH_BOARD_SHENZHOU
bool "Shenzhou STM32F107 board"
depends on ARCH_CHIP_STM32F107VC
@@ -772,6 +781,7 @@ config ARCH_BOARD
default "qemu-i486" if ARCH_BOARD_QEMU_I486
default "rgmp" if ARCH_BOARD_RGMP
default "sam3u-ek" if ARCH_BOARD_SAM3UEK
+ default "sam4l-xplained" if ARCH_BOARD_SAM4L_XPLAINED
default "shenzhou" if ARCH_BOARD_SHENZHOU
default "skp16c26" if ARCH_BOARD_SKP16C26
default "stm32_tiny" if ARCH_BOARD_STM32_TINY
@@ -992,6 +1002,9 @@ endif
if ARCH_BOARD_SAM3UEK
source "configs/sam3u-ek/Kconfig"
endif
+if ARCH_BOARD_SAM4L_XPLAINED
+source "configs/sam4l-xplained/Kconfig"
+endif
if ARCH_BOARD_SHENZHOU
source "configs/shenzhou/Kconfig"
endif