summaryrefslogtreecommitdiff
path: root/nuttx/configs/Kconfig
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-12-16 15:29:14 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-12-16 15:29:14 -0600
commit9806c32a001d2ddf24782d0279e7b38abfd3e43c (patch)
tree2856539e1474a5c70bec6a27f312c0179f4f5097 /nuttx/configs/Kconfig
parent7727d5ac4ae9f8d20fb191493027e90cb5c6c683 (diff)
downloadnuttx-9806c32a001d2ddf24782d0279e7b38abfd3e43c.tar.gz
nuttx-9806c32a001d2ddf24782d0279e7b38abfd3e43c.tar.bz2
nuttx-9806c32a001d2ddf24782d0279e7b38abfd3e43c.zip
Add basic board support for the DK-TM4C129X Connected Development Kit. The initial commit is simply the TM4C123G Launchpad with naming changes
Diffstat (limited to 'nuttx/configs/Kconfig')
-rw-r--r--nuttx/configs/Kconfig14
1 files changed, 14 insertions, 0 deletions
diff --git a/nuttx/configs/Kconfig b/nuttx/configs/Kconfig
index 8bbed2a07..2a0eedb65 100644
--- a/nuttx/configs/Kconfig
+++ b/nuttx/configs/Kconfig
@@ -96,6 +96,16 @@ config ARCH_BOARD_DEMOS92S12NEC64
port uses the m9s12x GCC toolchain. STATUS: (Still) under development; it
is code complete but has not yet been verified.
+config ARCH_BOARD_DK_TM4C129X
+ bool "Tiva DK-TM4C129x Connected Development Kit"
+ depends on ARCH_CHIP_TM4C129XNCZAD
+ select ARCH_HAVE_LEDS
+ select ARCH_HAVE_BUTTONS
+ select ARCH_HAVE_IRQBUTTONS
+ ---help---
+ Tiva DK-TM4C129x Connected Development Kit featuring the
+ TM4C129XNCZAD MCU.
+
config ARCH_BOARD_EA3131
bool "Embedded Artists EA3131 Development board"
depends on ARCH_CHIP_LPC3131
@@ -1023,6 +1033,7 @@ config ARCH_BOARD
default "compal_e88" if ARCH_BOARD_COMPALE88
default "compal_e99" if ARCH_BOARD_COMPALE99
default "demo9s12ne64" if ARCH_BOARD_DEMOS92S12NEC64
+ default "dk-tm4c129x" if ARCH_BOARD_DK_TM4C129X
default "ea3131" if ARCH_BOARD_EA3131
default "ea3152" if ARCH_BOARD_EA3152
default "eagle100" if ARCH_BOARD_EAGLE100
@@ -1191,6 +1202,9 @@ endif
if ARCH_BOARD_DEMOS92S12NEC64
source "configs/demo9s12ne64/Kconfig"
endif
+if ARCH_BOARD_DK_TM4C129X
+source "configs/dk-tm4c129x/Kconfig"
+endif
if ARCH_BOARD_EA3131
source "configs/ea3131/Kconfig"
endif