Initial support for the LPC4357-EVB provided by Toby Duckworth

This commit is contained in:
Gregory Nutt
2014-11-26 15:18:24 -06:00
parent f6f8575de3
commit 0a57df4410
21 changed files with 4201 additions and 1 deletions
Executable → Regular
+15 -1
View File
@@ -254,9 +254,19 @@ config ARCH_BOARD_LPC4330_XPLORER
select ARCH_HAVE_BUTTONS
select ARCH_HAVE_IRQBUTTONS
---help---
NXG Technologoies LPC4330 Xplorer board. This board is based on the
NXG Technologies LPC4330 Xplorer board. This board is based on the
LPC4330FET100. The Code Red toolchain is used by default.
config ARCH_BOARD_LPC4357_EVB
bool "NXP LPC4357-EVB"
depends on ARCH_CHIP_LPC4357FET256
select ARCH_HAVE_LEDS
select ARCH_HAVE_BUTTONS
select ARCH_HAVE_IRQBUTTONS
---help---
NXP Technologies LPC4357 EVB board. This board is based on the
LPC4357FET256.
config ARCH_BOARD_MBED
bool "mbed LCP1768"
depends on ARCH_CHIP_LPC1768
@@ -1031,6 +1041,7 @@ config ARCH_BOARD
default "lm3s8962-ek" if ARCH_BOARD_LM3S8962EK
default "lm4f120-launchpad" if ARCH_BOARD_LM4F120_LAUNCHPAD
default "lpc4330-xplorer" if ARCH_BOARD_LPC4330_XPLORER
default "lpc4357-evb" if ARCH_BOARD_LPC4357_EVB
default "lpcxpresso-lpc1768" if ARCH_BOARD_LPCXPRESSO
default "maple" if ARCH_BOARD_MAPLE
default "mbed" if ARCH_BOARD_MBED
@@ -1231,6 +1242,9 @@ endif
if ARCH_BOARD_LPC4330_XPLORER
source "configs/lpc4330-xplorer/Kconfig"
endif
if ARCH_BOARD_LPC4357_EVB
source "configs/lpc4357-evb/Kconfig"
endif
if ARCH_BOARD_LPCXPRESSO
source "configs/lpcxpresso-lpc1768/Kconfig"
endif