summaryrefslogtreecommitdiff
path: root/nuttx/configs/Kconfig
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-02-26 14:09:43 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-02-26 14:09:43 +0000
commit41ffa0e5976e6dd4969e757097b8ed64a486ab35 (patch)
tree0c042bf3c73f50b5f3bbc9f40243989d3aba770e /nuttx/configs/Kconfig
parent16b331cdc8d014264d17099f7034e45fca0bd7a8 (diff)
downloadpx4-nuttx-41ffa0e5976e6dd4969e757097b8ed64a486ab35.tar.gz
px4-nuttx-41ffa0e5976e6dd4969e757097b8ed64a486ab35.tar.bz2
px4-nuttx-41ffa0e5976e6dd4969e757097b8ed64a486ab35.zip
Add port to Zilogic Systems ZKIT-ARM-1769 board (more coming)
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5673 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/configs/Kconfig')
-rw-r--r--nuttx/configs/Kconfig11
1 files changed, 11 insertions, 0 deletions
diff --git a/nuttx/configs/Kconfig b/nuttx/configs/Kconfig
index 44ed4ce39..7933f48e3 100644
--- a/nuttx/configs/Kconfig
+++ b/nuttx/configs/Kconfig
@@ -653,6 +653,13 @@ config ARCH_BOARD_ZP214XPA
ZPA213X/4XPA development board. Includes support for the
UG-2864AMBAG01 OLED also from The0.net
+config ARCH_BOARD_ZKITARM
+ bool "Zilogic ZKit-ARM-1769 Development Kit"
+ depends on ARCH_CHIP_LPC1768
+ ---help---
+ Zilogic System's ARM development Kit, ZKIT-ARM-1769. This board is based
+ on the NXP LPC1769. The Nuttx Buildroot toolchain is used by default.
+
config ARCH_BOARD_SIM
bool "User mode simulation"
depends on ARCH_SIM
@@ -738,6 +745,7 @@ config ARCH_BOARD
default "z8encore000zco" if ARCH_BOARD_Z8ENCORE000ZCO
default "z8f64200100kit" if ARCH_BOARD_Z8F64200100KIT
default "zp214xpa" if ARCH_BOARD_ZP214XPA
+ default "zkit-arm-1769" if ARCH_BOARD_ZKITARM
default "sim" if ARCH_BOARD_SIM
default "" if ARCH_BOARD_CUSTOM
@@ -982,6 +990,9 @@ endif
if ARCH_BOARD_ZP214XPA
source "configs/zp214xpa/Kconfig"
endif
+if ARCH_BOARD_ZKITARM
+source "configs/zkit-arm-1769/Kconfig"
+endif
if ARCH_BOARD_SIM
source "configs/sim/Kconfig"
endif