summaryrefslogtreecommitdiff
path: root/nuttx/configs/Kconfig
diff options
context:
space:
mode:
authorjeditekunum <jeditekunum@gmail.com>2015-01-24 14:31:35 -0600
committerjeditekunum <jeditekunum@gmail.com>2015-01-24 14:31:35 -0600
commit0ae43cf0dae5e57a91dc2ea61cd7a3d0e4dc7f3a (patch)
tree280b7a81988eacfea7545d9e46bd4fca6e4e6ded /nuttx/configs/Kconfig
parentf304e6d9f59548e4fbc483dda5793045ada5fac1 (diff)
downloadnuttx-0ae43cf0dae5e57a91dc2ea61cd7a3d0e4dc7f3a.tar.gz
nuttx-0ae43cf0dae5e57a91dc2ea61cd7a3d0e4dc7f3a.tar.bz2
nuttx-0ae43cf0dae5e57a91dc2ea61cd7a3d0e4dc7f3a.zip
First step at porting to MoteinoMEGA. LED shows assert failure at boot. Appears to be short double blink, short off (~1sec), followed by 250ms toggle cycles. Most of it derived from amber 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 de745686d..dddbabfec 100644
--- a/nuttx/configs/Kconfig
+++ b/nuttx/configs/Kconfig
@@ -318,6 +318,15 @@ config ARCH_BOARD_MICROPENDOUS3
be populated with either an AVR AT90USB646, 647, 1286, or 1287 MCU.
Support is configured for the AT90USB647.
+config ARCH_BOARD_MOTEINO_MEGA
+ bool "LowPowerLab MoteinoMEGA"
+ depends on ARCH_CHIP_ATMEGA1284P
+ select ARCH_HAVE_LEDS
+ ---help---
+ This is placeholder for the LowPowerLab MoteinoMEGA that is based
+ on the Atmel AVR ATMega1284P MCU. There is not much there yet and what is
+ there is untested due to tool-related issues.
+
config ARCH_BOARD_MX1ADS
bool "Motorola MX1ADS development board"
depends on ARCH_CHIP_IMX1
@@ -1065,6 +1074,7 @@ config ARCH_BOARD
default "mcu123-lpc214x" if ARCH_BOARD_MCU123_LPC214X
default "micropendous3" if ARCH_BOARD_MICROPENDOUS3
default "mirtoo" if ARCH_BOARD_MIRTOO
+ default "moteino-mega" if ARCH_BOARD_MOTEINO_MEGA
default "mx1ads" if ARCH_BOARD_MX1ADS
default "ne64badge" if ARCH_BOARD_NE64BADGE
default "ntosd-dm320" if ARCH_BOARD_NTOSD_DM320
@@ -1288,6 +1298,9 @@ endif
if ARCH_BOARD_MIRTOO
source "configs/mirtoo/Kconfig"
endif
+if ARCH_BOARD_MOTEINO_MEGA
+source "configs/moteino-mega/Kconfig"
+endif
if ARCH_BOARD_MX1ADS
source "configs/mx1ads/Kconfig"
endif