summaryrefslogtreecommitdiff
path: root/nuttx/configs/Kconfig
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-08-26 15:36:02 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-08-26 15:36:02 -0600
commit00bd2f32bab305d5346f47e7b182782da4c73e04 (patch)
tree1131999513633e67bf652f85c8e8328f7f99080f /nuttx/configs/Kconfig
parent6fe650a0989cc789cd2c7855e208be172684ec9f (diff)
downloadpx4-nuttx-00bd2f32bab305d5346f47e7b182782da4c73e04.tar.gz
px4-nuttx-00bd2f32bab305d5346f47e7b182782da4c73e04.tar.bz2
px4-nuttx-00bd2f32bab305d5346f47e7b182782da4c73e04.zip
Add basic support for the CC3200 Launchpad. From Jim Ewing
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 dd0023009..9b95faf84 100644
--- a/nuttx/configs/Kconfig
+++ b/nuttx/configs/Kconfig
@@ -808,6 +808,15 @@ config ARCH_BOARD_TM4C123G_LAUNCHPAD
---help---
Tiva TM4C123G LaunchPad.
+config ARCH_BOARD_CC3200_LAUNCHPAD
+ bool "Tiva CC3200 Launchpad"
+ depends on ARCH_CHIP_CC3200
+ select ARCH_HAVE_LEDS
+ select ARCH_HAVE_BUTTONS
+ select ARCH_HAVE_IRQBUTTONS
+ ---help---
+ Tiva CC3200 Launchpad.
+
config ARCH_BOARD_TWR_K60N512
bool "FreeScale TWR-K60N512d evelopment board"
depends on ARCH_CHIP_MK60N512VMD100
@@ -1036,6 +1045,7 @@ config ARCH_BOARD
default "sure-pic32mx" if ARCH_BOARD_SUREPIC32MX
default "teensy" if ARCH_BOARD_TEENSY
default "tm4c123g-launchpad" if ARCH_BOARD_TM4C123G_LAUNCHPAD
+ default "cc3200-launchpad" if ARCH_BOARD_CC3200_LAUNCHPAD
default "twr-k60n512" if ARCH_BOARD_TWR_K60N512
default "ubw32" if ARCH_BOARD_UBW32
default "us7032evb1" if ARCH_BOARD_US7032EVB1
@@ -1339,6 +1349,9 @@ endif
if ARCH_BOARD_TM4C123G_LAUNCHPAD
source "configs/tm4c123g-launchpad/Kconfig"
endif
+if ARCH_BOARD_CC3200_LAUNCHPAD
+source "configs/cc3200-launchpad/Kconfig"
+endif
if ARCH_BOARD_TWR_K60N512
source "configs/twr-k60n512/Kconfig"
endif