2012-04-06 17:58:25 +02:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 16:08:57 +02:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2012-04-06 17:58:25 +02:00
|
|
|
#
|
2012-04-16 17:45:33 +02:00
|
|
|
|
|
|
|
choice
|
|
|
|
prompt "Select target board"
|
|
|
|
default ARCH_BOARD_CUSTOM
|
|
|
|
---help---
|
2014-10-22 22:32:25 +02:00
|
|
|
Select the board hosting the architecture. You must first select the
|
2012-04-16 17:45:33 +02:00
|
|
|
exact MCU part number, then the boards supporting that part will
|
|
|
|
be available for selection. Use ARCH_BOARD_CUSTOM to create a new
|
|
|
|
board configuration.
|
|
|
|
|
|
|
|
config ARCH_BOARD_AMBER
|
|
|
|
bool "Amber Web Server"
|
|
|
|
depends on ARCH_CHIP_ATMEGA128
|
|
|
|
---help---
|
|
|
|
This is placeholder for the SoC Robotics Amber Web Server that is based
|
|
|
|
on the Atmel AVR ATMega128 MCU. There is not much there yet and what is
|
|
|
|
there is untested due to tool-related issues.
|
|
|
|
|
2015-12-29 18:26:48 +01:00
|
|
|
config ARCH_BOARD_ARDUINO_MEGA2560
|
|
|
|
bool "Arduino Mega 2560"
|
|
|
|
depends on ARCH_CHIP_ATMEGA2560
|
|
|
|
---help---
|
2016-01-28 20:00:15 +01:00
|
|
|
This option selects the Arduino Mega 2560 board featuring the Atmel
|
2016-03-25 22:01:16 +01:00
|
|
|
Atmega2560 MCU running at 16 MHz.
|
2015-12-29 18:26:48 +01:00
|
|
|
|
2013-06-27 22:24:27 +02:00
|
|
|
config ARCH_BOARD_ARDUINO_DUE
|
|
|
|
bool "Arduino Due"
|
|
|
|
depends on ARCH_CHIP_ATSAM3X8E
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
---help---
|
|
|
|
This options selects the Arduino DUE board featuring the Atmel
|
|
|
|
ATSAM3X8E MCU running at 84 MHz.
|
|
|
|
|
2012-04-16 17:45:33 +02:00
|
|
|
config ARCH_BOARD_AVR32DEV1
|
|
|
|
bool "Atmel AVR32DEV1 board"
|
|
|
|
depends on ARCH_CHIP_AT32UC3B0256
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
2017-12-18 13:57:38 +01:00
|
|
|
# select ARCH_HAVE_BUTTONS
|
|
|
|
# select ARCH_HAVE_IRQBUTTONS
|
2012-04-16 17:45:33 +02:00
|
|
|
---help---
|
|
|
|
This is a port of NuttX to the Atmel AVR32DEV1 board. That board is
|
|
|
|
based on the Atmel AT32UC3B0256 MCU and uses a specially patched
|
|
|
|
version of the GNU toolchain: The patches provide support for the
|
|
|
|
AVR32 family. That patched GNU toolchain is available only from the
|
|
|
|
Atmel website. STATUS: This port is functional but very basic. There
|
|
|
|
are configurations for NSH and the OS test.
|
|
|
|
|
|
|
|
config ARCH_BOARD_C5471EVM
|
|
|
|
bool "Spectrum Digital C5471 evaluation board"
|
|
|
|
depends on ARCH_CHIP_C5471
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
2012-04-16 17:45:33 +02:00
|
|
|
---help---
|
|
|
|
This is a port to the Spectrum Digital C5471 evaluation board. The
|
|
|
|
TMS320C5471 is a dual core processor from TI with an ARM7TDMI general
|
2012-11-06 14:36:51 +01:00
|
|
|
purpose processor and a c54 DSP. It is also known as TMS320DA180 or just DA180.
|
2012-10-06 01:01:51 +02:00
|
|
|
NuttX runs on the ARM core and is built with a GNU arm-nuttx-elf toolchain*.
|
2012-04-16 17:45:33 +02:00
|
|
|
This port is complete and verified.
|
|
|
|
|
2017-03-22 16:46:17 +01:00
|
|
|
config ARCH_BOARD_CLICKER2_STM32
|
2018-07-09 02:24:45 +02:00
|
|
|
bool "Mikroe Clicker2 STM32"
|
2017-03-22 16:46:17 +01:00
|
|
|
depends on ARCH_CHIP_STM32F407VG
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
Mikroe Clicker2 STM32 board based on the STMicro STM32F407VGT6 MCU.
|
|
|
|
|
2012-11-21 19:19:49 +01:00
|
|
|
config ARCH_BOARD_CLOUDCTRL
|
|
|
|
bool "Darcy's CloudController stm32f10x board"
|
|
|
|
depends on ARCH_CHIP_STM32F107VC
|
2014-12-29 00:51:11 +01:00
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
2012-11-21 19:19:49 +01:00
|
|
|
---help---
|
2013-10-24 16:48:04 +02:00
|
|
|
Small network relay development board. Based on the Shenzhou IV development
|
2012-11-21 19:19:49 +01:00
|
|
|
board design.
|
|
|
|
|
2012-04-16 17:45:33 +02:00
|
|
|
config ARCH_BOARD_DEMOS92S12NEC64
|
2017-02-19 21:58:37 +01:00
|
|
|
bool "NXP/FreeScale DMO9S12NE64 board"
|
2012-04-16 17:45:33 +02:00
|
|
|
depends on ARCH_CHIP_MCS92S12NEC64
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
2012-04-16 17:45:33 +02:00
|
|
|
---help---
|
2017-02-19 21:58:37 +01:00
|
|
|
NXP/FreeScale DMO9S12NE64 board based on the MC9S12NE64 hcs12 cpu. This
|
2012-04-16 17:45:33 +02:00
|
|
|
port uses the m9s12x GCC toolchain. STATUS: (Still) under development; it
|
|
|
|
is code complete but has not yet been verified.
|
|
|
|
|
2014-12-16 22:29:14 +01:00
|
|
|
config ARCH_BOARD_DK_TM4C129X
|
|
|
|
bool "Tiva DK-TM4C129x Connected Development Kit"
|
2014-12-16 23:22:52 +01:00
|
|
|
depends on ARCH_CHIP_TM4C129XNC
|
2014-12-16 22:29:14 +01:00
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
Tiva DK-TM4C129x Connected Development Kit featuring the
|
|
|
|
TM4C129XNCZAD MCU.
|
|
|
|
|
2012-04-16 17:45:33 +02:00
|
|
|
config ARCH_BOARD_EA3131
|
|
|
|
bool "Embedded Artists EA3131 Development board"
|
|
|
|
depends on ARCH_CHIP_LPC3131
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
2012-04-16 17:45:33 +02:00
|
|
|
---help---
|
2012-11-06 14:36:51 +01:00
|
|
|
Embedded Artists EA3131 Development board. This board is based on the
|
2012-10-06 01:01:51 +02:00
|
|
|
an NXP LPC3131 MCU. This OS is built with the arm-nuttx-elf toolchain*.
|
2012-04-16 17:45:33 +02:00
|
|
|
STATUS: This port is complete and mature.
|
|
|
|
|
|
|
|
config ARCH_BOARD_EA3152
|
|
|
|
bool "Embedded Artists EA3152 Development board"
|
|
|
|
depends on ARCH_CHIP_LPC3152
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
2012-04-16 17:45:33 +02:00
|
|
|
---help---
|
2012-11-06 14:36:51 +01:00
|
|
|
Embedded Artists EA3152 Development board. This board is based on the
|
2012-10-06 01:01:51 +02:00
|
|
|
an NXP LPC3152 MCU. This OS is built with the arm-nuttx-elf toolchain*.
|
2012-04-16 17:45:33 +02:00
|
|
|
STATUS: This port is has not be exercised well, but since it is
|
|
|
|
a simple derivative of the ea3131, it should be fully functional.
|
|
|
|
|
|
|
|
config ARCH_BOARD_EAGLE100
|
|
|
|
bool "Micromint Eagle-100 Development board"
|
|
|
|
depends on ARCH_CHIP_LM3S6918
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
2012-04-16 17:45:33 +02:00
|
|
|
---help---
|
2012-11-06 14:36:51 +01:00
|
|
|
Micromint Eagle-100 Development board. This board is based on the
|
2012-04-16 17:45:33 +02:00
|
|
|
an ARM Cortex-M3 MCU, the Luminary LM3S6918. This OS is built with the
|
2012-10-06 01:01:51 +02:00
|
|
|
arm-nuttx-elf toolchain*. STATUS: This port is complete and mature.
|
2012-04-16 17:45:33 +02:00
|
|
|
|
2014-10-17 17:25:52 +02:00
|
|
|
config ARCH_BOARD_EFM32G8XXSTK
|
|
|
|
bool "EFM32 Gecko Starter Kit"
|
|
|
|
depends on ARCH_CHIP_EFM32G890F128
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
---help---
|
2014-11-03 23:58:22 +01:00
|
|
|
This option selects the EFM32 Gecko Starter Kit (EFM32-G8XX-STK).
|
|
|
|
|
|
|
|
config ARCH_BOARD_EFM32GG_STK3700
|
|
|
|
bool "EFM32 Giant Gecko Starter Kit"
|
|
|
|
depends on ARCH_CHIP_EFM32GG990F1024
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
---help---
|
|
|
|
This option selects the EFM32 Giant Gecko Starter Kit (EFM32GG-STK3700).
|
2014-10-17 17:25:52 +02:00
|
|
|
|
2013-02-22 22:24:11 +01:00
|
|
|
config ARCH_BOARD_EKKLM3S9B96
|
2012-06-30 02:53:54 +02:00
|
|
|
bool "TI/Stellaris EKK-LM3S9B96"
|
|
|
|
depends on ARCH_CHIP_LM3S9B96
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
2012-06-30 02:53:54 +02:00
|
|
|
---help---
|
2012-11-06 14:36:51 +01:00
|
|
|
TI/Stellaris EKK-LM3S9B96 board. This board is based on the
|
2012-06-30 02:53:54 +02:00
|
|
|
an EKK-LM3S9B96 which is a Cortex-M3.
|
|
|
|
|
2016-10-12 23:27:34 +02:00
|
|
|
config ARCH_BOARD_ESP32CORE
|
|
|
|
bool "Expressif ESP32 Core board V2"
|
|
|
|
depends on ARCH_CHIP_ESP32
|
2012-04-16 17:45:33 +02:00
|
|
|
---help---
|
2016-10-12 23:27:34 +02:00
|
|
|
The ESP32 is a dual-core system from Expressif with two Harvard
|
|
|
|
architecture Xtensa LX6 CPUs. All embedded memory, external memory
|
|
|
|
and peripherals are located on the data bus and/or the instruction
|
|
|
|
bus of these CPUs. With some minor exceptions, the address mapping
|
|
|
|
of two CPUs is symmetric, meaning they use the same addresses to
|
|
|
|
access the same memory.
|
2012-04-16 17:45:33 +02:00
|
|
|
|
2017-03-09 17:50:46 +01:00
|
|
|
config ARCH_BOARD_EZ80F910200KITG
|
|
|
|
bool "ZiLOG ez80f910200kitg development kit"
|
|
|
|
depends on ARCH_CHIP_EZ80F91
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
---help---
|
|
|
|
ez80Acclaim! Microcontroller. This port use the Zilog ez80f910200kitg
|
|
|
|
development kit, eZ80F091 part, and the Zilog ZDS-II Windows command line
|
|
|
|
tools. The development environment is Cygwin under WinXP.
|
|
|
|
|
2012-04-16 17:45:33 +02:00
|
|
|
config ARCH_BOARD_EZ80F910200ZCO
|
2012-11-20 22:19:36 +01:00
|
|
|
bool "ZiLOG ez80f910200zco development kit"
|
2012-04-16 17:45:33 +02:00
|
|
|
depends on ARCH_CHIP_EZ80F91
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
2012-04-16 17:45:33 +02:00
|
|
|
---help---
|
2012-11-20 22:19:36 +01:00
|
|
|
ez80Acclaim! Microcontroller. This port use the Zilog ez80f910200zco
|
2012-04-16 17:45:33 +02:00
|
|
|
development kit, eZ80F091 part, and the Zilog ZDS-II Windows command line
|
|
|
|
tools. The development environment is Cygwin under WinXP.
|
|
|
|
|
2014-12-29 01:29:13 +01:00
|
|
|
config ARCH_BOARD_FIRE_STM32
|
2014-12-31 14:31:49 +01:00
|
|
|
bool "M3 Wildfire STM32 board"
|
2014-12-29 01:29:13 +01:00
|
|
|
depends on ARCH_CHIP_STM32F103VE
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
Support for the M3 Wildfire STM32 board. This board is based on the
|
|
|
|
STM32F103VET6 chip. See http://firestm32.taobao.com . Version 2
|
|
|
|
and 3 of the boards are supported but only version 2 has been
|
|
|
|
tested.
|
|
|
|
|
2018-01-08 21:21:49 +01:00
|
|
|
config ARCH_BOARD_FLIPNCLICK_PIC32MZ
|
|
|
|
bool "Mikroe Flip&Click PIC32MZ"
|
|
|
|
depends on ARCH_CHIP_PIC32MZ2048EFH
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
This options selects the Mikroe Flip&Click PIC32MZ board. This
|
|
|
|
board is an chipKit Arduino-compatible board (but can also be used
|
|
|
|
with the Mikroe bootloader). It has with four Mikroe Click bus
|
|
|
|
interfaces in addition to standard Arduino connectors. This board
|
|
|
|
features the Microchip PIC32MZ2048EFH100 MCU running at 200 MHz
|
|
|
|
(252Mhz capable).
|
|
|
|
|
2018-01-07 00:06:50 +01:00
|
|
|
config ARCH_BOARD_FLIPNCLICK_SAM3X
|
|
|
|
bool "Mikroe Flip&Click SAM3X"
|
|
|
|
depends on ARCH_CHIP_ATSAM3X8E
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
---help---
|
|
|
|
This options selects the Mikroe Flip&Click STM32X board. This board
|
|
|
|
is an Arduino-Due work-alike with four Mikroe Click bus interfaces.
|
|
|
|
Like the Arduino DUE, this board features the Atmel ATSAM3X8E MCU
|
|
|
|
running at 84 MHz.
|
|
|
|
|
2018-05-02 21:14:32 +02:00
|
|
|
config ARCH_BOARD_FREEDOM_K28F
|
|
|
|
bool "NXP Freedom-k28f development board"
|
|
|
|
depends on ARCH_CHIP_MK28FN2M0VMI15
|
2018-05-05 21:01:23 +02:00
|
|
|
select ARCH_HAVE_LEDS if !RGBLED
|
2018-05-02 21:14:32 +02:00
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
2018-05-13 01:12:58 +02:00
|
|
|
select KINETIS_SDHC_PULLUP if KINETIS_SDHC # REVISIT
|
2018-05-02 21:14:32 +02:00
|
|
|
---help---
|
|
|
|
development board.
|
|
|
|
This port uses the NXP/FreeScale FREEDOM-K28F development board. This
|
|
|
|
board uses the Kinetis K28F MK28FN2M0VMI15 Cortex-M4 MCU.
|
|
|
|
|
2016-07-01 23:42:21 +02:00
|
|
|
config ARCH_BOARD_FREEDOM_K64F
|
|
|
|
bool "NXP Freedom-k64f development board"
|
|
|
|
depends on ARCH_CHIP_MK64FN1M0VLL12
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
2018-05-13 01:12:58 +02:00
|
|
|
select KINETIS_SDHC_PULLUP if KINETIS_SDHC
|
2016-07-01 23:42:21 +02:00
|
|
|
---help---
|
|
|
|
development board.
|
2017-02-19 21:58:37 +01:00
|
|
|
This port uses the NXP/FreeScale FREEDOM-K64F development board. This
|
2016-07-02 15:56:43 +02:00
|
|
|
board uses the Kinetis K64 MK64FN1M0VLL12 Cortex-M4 MCU.
|
2016-07-01 23:42:21 +02:00
|
|
|
|
2017-02-08 00:41:34 +01:00
|
|
|
config ARCH_BOARD_FREEDOM_K66F
|
|
|
|
bool "NXP Freedom-k66f development board"
|
|
|
|
depends on ARCH_CHIP_MK66FN2M0VMD18
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
2018-05-13 01:12:58 +02:00
|
|
|
select KINETIS_SDHC_PULLUP if KINETIS_SDHC
|
2017-02-08 00:41:34 +01:00
|
|
|
---help---
|
|
|
|
development board.
|
2017-02-19 21:58:37 +01:00
|
|
|
This port uses the NXP/FreeScale FREEDOM-K66F development board. This
|
2017-02-08 00:41:34 +01:00
|
|
|
board uses the Kinetis K66 MK66FN2M0VMD18 Cortex-M4 MCU.
|
|
|
|
|
2013-04-16 17:53:15 +02:00
|
|
|
config ARCH_BOARD_FREEDOM_KL25Z
|
2017-02-19 21:58:37 +01:00
|
|
|
bool "NXP/FreeScale Freedom KL25Z"
|
2013-04-16 17:53:15 +02:00
|
|
|
depends on ARCH_CHIP_MKL25Z128
|
2012-09-09 21:13:30 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
---help---
|
2017-02-19 21:58:37 +01:00
|
|
|
This is the configuration for the NXP/FreeScale Freedom KL25Z board. This
|
2013-04-16 17:53:15 +02:00
|
|
|
board has the K25Z120LE3AN chip with a built-in SDA debugger.
|
2012-09-09 21:13:30 +02:00
|
|
|
|
2015-02-11 14:18:06 +01:00
|
|
|
config ARCH_BOARD_FREEDOM_KL26Z
|
2017-02-19 21:58:37 +01:00
|
|
|
bool "NXP/FreeScale Freedom KL26Z"
|
2015-02-11 14:18:06 +01:00
|
|
|
depends on ARCH_CHIP_MKL26Z128
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
---help---
|
2017-02-19 21:58:37 +01:00
|
|
|
This is the configuration for the NXP/FreeScale Freedom KL26Z board. This
|
2015-02-11 14:18:06 +01:00
|
|
|
board has the K26Z128VLH4 chip with a built-in SDA debugger.
|
|
|
|
|
2018-10-30 16:38:50 +01:00
|
|
|
config ARCH_BOARD_GAPUINO
|
|
|
|
bool "GWT gapuino board"
|
|
|
|
depends on ARCH_CHIP_GAP8
|
|
|
|
select UART_SERIALDRIVER
|
|
|
|
---help---
|
|
|
|
Nuttx port for gapuino, a GAP8 evaluation board.
|
|
|
|
|
2018-04-20 00:36:35 +02:00
|
|
|
config ARCH_BOARD_HYMINI_STM32V
|
|
|
|
bool "HY-Mini STM32v board"
|
|
|
|
depends on ARCH_CHIP_STM32F103VC
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
A configuration for the HY-Mini STM32v board. This board is based on the
|
|
|
|
STM32F103VCT6 chip.
|
|
|
|
|
2018-04-12 17:31:09 +02:00
|
|
|
config ARCH_BOARD_IMXRT1050_EVK
|
|
|
|
bool "NXP i.MX RT 1050 EVK"
|
|
|
|
depends on ARCH_CHIP_MIMXRT1052DVL6A
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
2012-04-16 17:45:33 +02:00
|
|
|
---help---
|
2018-07-09 02:24:45 +02:00
|
|
|
This is the board configuration for the port of NuttX to the NXP i.MXRT
|
2018-04-12 17:31:09 +02:00
|
|
|
evaluation kit, MIMXRT1050-EVKB. This board features the MIMXRT1052DVL6A MCU.
|
2012-04-16 17:45:33 +02:00
|
|
|
|
2018-11-09 14:56:02 +01:00
|
|
|
config ARCH_BOARD_IMXRT1060_EVK
|
|
|
|
bool "NXP i.MX RT 1060 EVK"
|
|
|
|
depends on ARCH_CHIP_MIMXRT1062DVL6A
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
This is the board configuration for the port of NuttX to the NXP i.MXRT
|
|
|
|
evaluation kit, MIMXRT1060-EVK. This board features the MIMXRT1062DVL6A MCU.
|
|
|
|
|
2017-08-02 14:05:07 +02:00
|
|
|
config ARCH_BOARD_LC823450_XGEVK
|
|
|
|
bool "ON Semiconductor LC823450-XGEVK development board"
|
|
|
|
depends on ARCH_CHIP_LC823450
|
2017-11-09 12:36:33 +01:00
|
|
|
select ARCH_HAVE_LEDS
|
2017-08-02 14:05:07 +02:00
|
|
|
---help---
|
|
|
|
This port uses the ON Semiconductor LC823450-XGEVK development board.
|
|
|
|
|
2012-06-29 21:35:28 +02:00
|
|
|
config ARCH_BOARD_LINCOLN60
|
|
|
|
bool "Micromint Lincoln 60 board"
|
|
|
|
depends on ARCH_CHIP_LPC1769
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
2012-06-29 21:35:28 +02:00
|
|
|
---help---
|
|
|
|
Micromint Lincoln 60 board using the NXP LPC1769 MCU.
|
|
|
|
|
2012-04-16 17:45:33 +02:00
|
|
|
config ARCH_BOARD_KWIKSTIK_K40
|
2017-02-19 21:58:37 +01:00
|
|
|
bool "NXP/FreeScale KwikStik-K40 development board"
|
2012-04-16 17:45:33 +02:00
|
|
|
depends on ARCH_CHIP_MK40X256VLQ100
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
2012-04-16 17:45:33 +02:00
|
|
|
---help---
|
2017-02-19 21:58:37 +01:00
|
|
|
Kinetis K40 Cortex-M4 MCU. This port uses the NXP/FreeScale KwikStik-K40
|
2012-04-16 17:45:33 +02:00
|
|
|
development board.
|
|
|
|
|
2019-01-22 22:21:58 +01:00
|
|
|
config ARCH_BOARD_LAUNCHXL_CC1310
|
|
|
|
bool "TI LaunchXL-CC1310"
|
|
|
|
depends on ARCH_CHIP_CC1310
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
TI SimpleLink CC1310 LaunchPad Evaluation Kit (LAUNCHXL-CC1310)
|
2019-01-23 00:36:14 +01:00
|
|
|
featuring the SimpleLinkCC1310 chip. This board features the
|
|
|
|
CC1310F128 part with 128Kb of FLASH and 20Kb of SRAM.
|
2019-01-22 22:21:58 +01:00
|
|
|
|
2018-12-03 18:40:57 +01:00
|
|
|
config ARCH_BOARD_LAUNCHXL_CC1312R1
|
|
|
|
bool "TI LaunchXL-CC1312R1"
|
|
|
|
depends on ARCH_CHIP_CC1312R1
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
TI SimpleLink CC1312R1 LaunchPad Evaluation Kit (LAUNCHXL-CC1312R1)
|
|
|
|
featuring the SimpleLinkCC1312R1 chip.
|
|
|
|
|
2015-12-16 00:19:35 +01:00
|
|
|
config ARCH_BOARD_LAUNCHXL_TMS57004
|
|
|
|
bool "TI LaunchXL-TMS57004"
|
2015-12-16 19:45:35 +01:00
|
|
|
depends on ARCH_CHIP_TMS570LS0432PZ
|
2015-12-25 22:19:09 +01:00
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
2015-12-16 00:19:35 +01:00
|
|
|
---help---
|
2015-12-16 19:45:35 +01:00
|
|
|
TI Hercules TMS570LS04x/03x LaunchPad Evaluation Kit (LAUNCHXL-
|
|
|
|
TMS57004) featuring the Hercules TMS570LS0432PZ chip.
|
2015-12-16 00:19:35 +01:00
|
|
|
|
2012-04-16 17:45:33 +02:00
|
|
|
config ARCH_BOARD_LM3S6432S2E
|
|
|
|
bool "Stellaris RDK-S2E Reference Design Kit"
|
|
|
|
depends on ARCH_CHIP_LM3S6432
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
2012-04-16 17:45:33 +02:00
|
|
|
---help---
|
|
|
|
Stellaris RDK-S2E Reference Design Kit and the MDL-S2E Ethernet to
|
|
|
|
Serial module.
|
|
|
|
|
|
|
|
config ARCH_BOARD_LM3S6965EK
|
|
|
|
bool "Stellaris LM3S6965 Evaluation Kit"
|
|
|
|
depends on ARCH_CHIP_LM3S6965
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
2012-04-16 17:45:33 +02:00
|
|
|
---help---
|
2012-11-06 14:36:51 +01:00
|
|
|
Stellaris LM3S6965 Evaluation Kit. This board is based on the
|
2012-04-16 17:45:33 +02:00
|
|
|
an ARM Cortex-M3 MCU, the Luminary/TI LM3S6965. This OS is built with the
|
2012-10-06 01:01:51 +02:00
|
|
|
arm-nuttx-elf toolchain*. STATUS: This port is complete and mature.
|
2012-04-16 17:45:33 +02:00
|
|
|
|
|
|
|
config ARCH_BOARD_LM3S8962EK
|
|
|
|
bool "Stellaris LMS38962 Evaluation Kit"
|
|
|
|
depends on ARCH_CHIP_LM3S8962
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
2012-04-16 17:45:33 +02:00
|
|
|
---help---
|
|
|
|
Stellaris LMS38962 Evaluation Kit.
|
|
|
|
|
2013-03-01 22:41:29 +01:00
|
|
|
config ARCH_BOARD_LM4F120_LAUNCHPAD
|
|
|
|
bool "Stellaris LM4F120 LaunchPad"
|
|
|
|
depends on ARCH_CHIP_LM4F120
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
Stellaris LM4F120 LaunchPad.
|
|
|
|
|
2015-05-22 22:12:30 +02:00
|
|
|
config ARCH_BOARD_LPCXPRESSO_LPC1115
|
|
|
|
bool "NXP LPCXpresso LPC1115"
|
|
|
|
depends on ARCH_CHIP_LPC1115
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
---help---
|
2015-05-26 02:29:43 +02:00
|
|
|
The Embedded Artists LPCXpresso LPC1115 board featuring the NXP
|
|
|
|
LPC1115 MCU.
|
2015-05-22 22:12:30 +02:00
|
|
|
|
2012-04-16 17:45:33 +02:00
|
|
|
config ARCH_BOARD_LPCXPRESSO
|
|
|
|
bool "NXP LPCExpresso LPC1768"
|
|
|
|
depends on ARCH_CHIP_LPC1768
|
2013-03-02 01:11:43 +01:00
|
|
|
select ARCH_HAVE_LEDS
|
2012-04-16 17:45:33 +02:00
|
|
|
---help---
|
|
|
|
Embedded Artists base board with NXP LPCExpresso LPC1768. This board
|
|
|
|
is based on the NXP LPC1768. The Code Red toolchain is used by default.
|
2012-07-04 00:42:27 +02:00
|
|
|
|
2017-12-07 20:30:02 +01:00
|
|
|
config ARCH_BOARD_LPCXPRESSO_LPC54628
|
|
|
|
bool "NXP LPCXpresso LPC54628"
|
|
|
|
depends on ARCH_CHIP_LPC54628
|
|
|
|
select ARCH_HAVE_LEDS
|
2017-12-16 20:00:06 +01:00
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
2017-12-07 20:30:02 +01:00
|
|
|
---help---
|
|
|
|
LPCXpresso LPC54626 board featuring the NXP LPC54628 MCU.
|
|
|
|
|
2016-11-01 21:42:54 +01:00
|
|
|
config ARCH_BOARD_BAMBINO_200E
|
|
|
|
bool "Micromint Bambino 200E"
|
|
|
|
depends on ARCH_CHIP_LPC4330FBD144
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
Micromint Bambino board. This board is based on the LPC4330FBD144.
|
|
|
|
|
2012-07-04 00:42:27 +02:00
|
|
|
config ARCH_BOARD_LPC4330_XPLORER
|
2012-07-11 00:27:51 +02:00
|
|
|
bool "NXG LPC4330-Xplorer"
|
2012-07-04 00:42:27 +02:00
|
|
|
depends on ARCH_CHIP_LPC4330FET100
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
2012-07-04 00:42:27 +02:00
|
|
|
---help---
|
2014-11-26 22:18:24 +01:00
|
|
|
NXG Technologies LPC4330 Xplorer board. This board is based on the
|
2012-07-04 00:42:27 +02:00
|
|
|
LPC4330FET100. The Code Red toolchain is used by default.
|
2012-04-16 17:45:33 +02:00
|
|
|
|
2016-01-15 20:12:42 +01:00
|
|
|
config ARCH_BOARD_LPC4337_WS
|
|
|
|
bool "WaveShare LPC4337-WS"
|
|
|
|
depends on ARCH_CHIP_LPC4337JBD144
|
|
|
|
---help---
|
|
|
|
The WaveShare LPC4337-ws board featuring the NXP LPC4337JBD144 MCU.
|
|
|
|
|
2014-11-26 22:18:24 +01:00
|
|
|
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.
|
|
|
|
|
2015-09-29 15:53:49 +02:00
|
|
|
config ARCH_BOARD_LPC4370_LINK2
|
|
|
|
bool "NXP LPC4370-Link2"
|
|
|
|
depends on ARCH_CHIP_LPC4370FET100
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
---help---
|
|
|
|
NXP LPC4370 Link2 board. This board is based on the
|
|
|
|
LPC4370FET100. The Code Red toolchain is used by default.
|
|
|
|
|
2018-11-17 20:23:03 +01:00
|
|
|
config ARCH_BOARD_MAX32660_EVSYS
|
|
|
|
bool "Maxim Integrated MAX32660-EVSYS"
|
|
|
|
depends on ARCH_CHIP_MAX32660
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
This option enables support the Maxim Integrated MAX32660-EVSYS
|
|
|
|
board.
|
|
|
|
|
2012-04-16 17:45:33 +02:00
|
|
|
config ARCH_BOARD_MBED
|
|
|
|
bool "mbed LCP1768"
|
|
|
|
depends on ARCH_CHIP_LPC1768
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
2012-04-16 17:45:33 +02:00
|
|
|
---help---
|
2018-11-17 20:23:03 +01:00
|
|
|
This option enables support the mbed board (http://mbed.org)
|
|
|
|
that features the NXP LPC1768 microcontroller. This OS is also
|
|
|
|
built with the arm-nuttx-elf toolchain*. STATUS: Contributed.
|
2012-04-16 17:45:33 +02:00
|
|
|
|
2017-11-18 17:57:25 +01:00
|
|
|
config ARCH_BOARD_MCB1700
|
|
|
|
bool "Keil MCB1700"
|
|
|
|
depends on ARCH_CHIP_LPC1768
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
---help---
|
|
|
|
The configurations in this directory support the Keil MCB1700.
|
|
|
|
|
2014-03-03 22:40:18 +01:00
|
|
|
config ARCH_BOARD_MCU123_LPC214X
|
2012-04-16 17:45:33 +02:00
|
|
|
bool "mcu123.com LPC2148 Development Board"
|
2014-03-03 22:40:18 +01:00
|
|
|
depends on ARCH_CHIP_LPC214X
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
2012-04-16 17:45:33 +02:00
|
|
|
---help---
|
|
|
|
This port is for the NXP LPC2148 as provided on the mcu123.com
|
2012-10-06 01:01:51 +02:00
|
|
|
lpc214x development board. This OS is also built with the arm-nuttx-elf
|
2012-04-16 17:45:33 +02:00
|
|
|
toolchain*. The port supports serial, timer0, spi, and usb.
|
|
|
|
|
This is the initial commit the port to the SAMD5x/E5x MCU family and also support for the Adafruit Metro M4 board. It port is untested and unfinished. It currently will not even link due to some missing clock related logic.
Squashed commit of the following:
arch/arm/src/samd5e5: Clean-up EIC logic.
arch/arm/src/samd5e5: Fix some compilation issues; Still issues with the EIC logic from samd2x.
arch/arm/src/samd5e5: Fix some compilation issues; bring in some EIC logic from samd2x.
arch/arm/src/samd5e5: Add NVMCTRL header file, fix some compiler problems, misc. clean-up.
configs/metro-m4: Add LED support.
arch/arm/src/samd5e5: Bring in SAML21 clock configuration. This is a WIP; it cannot possible even compile yet.
arch/arm/src/samd5e5: Leverage Cortex-M4 interrupt and SysTick logic from the SAM3/4.
arch/arm/src/samd5e5: Add SERCOM utility function.
arch/arm/src/samd5e5: Bring all SERCOM USART logic from SAMD2L2 to SAMD5E5. This is a brute coy with nothing more than more that name changes and extension from 5 to 7 SERCOMs.
arch/arm/src/samd5e5: Add sam_config.h header file
arch/arm/src/samd5e5/: Add Generic Clock (GCLK) utility functions.
arch/arm/src/samd5e5: Add EVSYS register definition file
arch/arm/src/samd5e5 and configs/metro-m4: Use SERCOM3 for the Arduino serial shield as console.
arch/arm/src/samd5e5/chip: Add SERCOM USART, SPI, I2C master, and slave register defintions header files
arch/arm/src/samd5e5/chip: Add AES, PM, TRNG, and WDT header files.
arch/arm/src/samd5e5/chip: Add pin multiplexing header files.
Various fixes to configuration system; fix metro-m4/nsh defconfig file.
configs/metro-m4: Add initial support for the Adafruit Metro M4 board.
arch/arm/src/samd5e5: Add peripheral clock helpers.
arch/arm/src/samd5e5/chip: Add PAC register definition header file. Fix some errors in the memory map header file.
arch/arm/src/samd5e5: Add chip.h headerf file.
arch/arm/src/samd5e5: Add PORT register definitions and support from SAML21.
arch/arm/include/samd5e5: Add interrupt vector definitions.
arch/arm/src/samd5e5: Add some boilerplate files. Correct some typos.
arch/arm/src/samd5e5/chip/sam_eic.h: Add EIC register definitions.
arch/arm/src/samd5e5/chip: Add OSC32KCTRL and OSCCTRL register definitions.
arch/arm/src/samd5e5/chip: Add GCLK, MCLK, and RSTC header files.
arch/arm/src/samd5e5/chip/sam_cmcc.h: Add CMCC register definitions
arch/arm/src/samd5e5/chip/sam_supc.h: Add SUPC header file.
arch/arm/src/samd5e5: Add start-up logic.
arch/arm/src/samd5e5: Add Make.defs file
arch/arm/src/samd5e5/chip: Add memory map header file.
arch/arm/include/samd5e5: Add chip.h header file.
arch/arm/Kconfig and arch/arm/src/samd5e5/Kconfig: Add configuration logic for the SAMD5x/Ex family.
2018-07-26 20:08:58 +02:00
|
|
|
config ARCH_BOARD_METRO_M4
|
|
|
|
bool "Adafruit M4 Metro"
|
|
|
|
depends on ARCH_CHIP_SAMD51J19
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
---help---
|
|
|
|
---help---
|
|
|
|
This configuration is the port of NuttX to the Adafruit Metro M4.
|
|
|
|
The Metro M4 uses a Arduino form factor and and pinout. It's powered
|
|
|
|
with an ATSAMD51J19
|
|
|
|
|
2012-08-20 18:14:57 +02:00
|
|
|
config ARCH_BOARD_MICROPENDOUS3
|
2012-04-16 17:45:33 +02:00
|
|
|
bool "Opendous Micropendous 3 board"
|
|
|
|
depends on ARCH_CHIP_AT90USB646 || ARCH_CHIP_AT90USB647 || ARCH_CHIP_AT90USB1286 || ARCH_CHIP_AT90USB1287
|
|
|
|
---help---
|
|
|
|
This is a port to the Opendous Micropendous 3 board. This board may
|
|
|
|
be populated with either an AVR AT90USB646, 647, 1286, or 1287 MCU.
|
|
|
|
Support is configured for the AT90USB647.
|
|
|
|
|
2019-02-07 16:41:18 +01:00
|
|
|
config ARCH_BOARD_MISOC_QEMU
|
2018-06-17 19:31:03 +02:00
|
|
|
bool "Qemu LM32 demo"
|
|
|
|
depends on ARCH_CHIP_LM32
|
|
|
|
---help---
|
|
|
|
This configuration is port to NuttX running on a Qemu LM32 system.
|
|
|
|
You can find the Qemu setup at https://bitbucket.org/key2/qemu
|
|
|
|
|
2019-02-07 16:41:18 +01:00
|
|
|
config ARCH_BOARD_MISOC_VERILATOR
|
|
|
|
bool "Verilator Misoc demo"
|
|
|
|
depends on ARCH_CHIP_LM32 || ARCH_CHIP_MINERVA
|
|
|
|
---help---
|
|
|
|
This configuration is port to NuttX running on Verilator.
|
|
|
|
|
2015-01-24 21:31:35 +01:00
|
|
|
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.
|
|
|
|
|
2012-04-16 17:45:33 +02:00
|
|
|
config ARCH_BOARD_NE64BADGE
|
|
|
|
bool "FEG NE64 /PoE Badge board"
|
|
|
|
depends on ARCH_CHIP_MCS92S12NEC64
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
2012-04-16 17:45:33 +02:00
|
|
|
---help---
|
|
|
|
Future Electronics Group NE64 /PoE Badge board based on the
|
|
|
|
MC9S12NE64 hcs12 cpu. This port uses the m9s12x GCC toolchain.
|
|
|
|
STATUS: Under development. The port is code-complete but has
|
|
|
|
not yet been fully tested.
|
|
|
|
|
|
|
|
config ARCH_BOARD_NTOSD_DM320
|
|
|
|
bool "Neuros OSD v1.0 Dev Board"
|
|
|
|
depends on ARCH_CHIP_DM320
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
2012-04-16 17:45:33 +02:00
|
|
|
---help---
|
2012-10-06 01:01:51 +02:00
|
|
|
This port uses the Neuros OSD v1.0 Dev Board with a GNU arm-nuttx-elf
|
2012-04-16 17:45:33 +02:00
|
|
|
toolchain*: see
|
|
|
|
|
2013-04-22 17:10:58 +02:00
|
|
|
http://wiki.neurostechnology.com/index.php/OSD_1.0_Developer_Home
|
2012-11-06 14:36:51 +01:00
|
|
|
|
2012-04-16 17:45:33 +02:00
|
|
|
There are some differences between the Dev Board and the currently
|
|
|
|
available commercial v1.0 Boards. See
|
|
|
|
|
2013-04-22 17:10:58 +02:00
|
|
|
http://wiki.neurostechnology.com/index.php/OSD_Developer_Board_v1
|
2012-04-16 17:45:33 +02:00
|
|
|
|
|
|
|
NuttX operates on the ARM9EJS of this dual core processor.
|
|
|
|
STATUS: This port is code complete, verified, and included in the
|
|
|
|
NuttX 0.2.1 release.
|
|
|
|
|
2018-03-26 18:37:32 +02:00
|
|
|
config ARCH_BOARD_NRF52_PCA10040
|
|
|
|
bool "NRF52 PCA10040 eval board"
|
|
|
|
depends on ARCH_CHIP_NRF52
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
---help---
|
|
|
|
PCA10040 Evaluation board
|
|
|
|
|
2018-11-18 14:51:24 +01:00
|
|
|
config ARCH_BOARD_NRF52_GENERIC
|
|
|
|
bool "Generic NRF52832 board"
|
|
|
|
depends on ARCH_CHIP_NRF52
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
---help---
|
|
|
|
NuttX port to the a generic NRF52832 board. Support is in place for
|
|
|
|
the NRF PCA10040 board from Nordic Semiconductor or for the Adafruit
|
|
|
|
NRF52 feather and can be simply extended to other board based on the
|
|
|
|
NRF52832 MCU.
|
|
|
|
|
2012-04-16 17:45:33 +02:00
|
|
|
config ARCH_BOARD_LPC1766STK
|
|
|
|
bool "Olimex LPC1766-STK board"
|
|
|
|
depends on ARCH_CHIP_LPC1766
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
2012-04-16 17:45:33 +02:00
|
|
|
---help---
|
|
|
|
This port uses the Olimex LPC1766-STK board and a GNU GCC toolchain* under
|
|
|
|
Linux or Cygwin. STATUS: Complete and mature.
|
|
|
|
|
2013-10-02 16:24:46 +02:00
|
|
|
config ARCH_BOARD_MAPLE
|
|
|
|
bool "maple board"
|
|
|
|
depends on ARCH_CHIP_STM32F103RB || ARCH_CHIP_STM32F103CB
|
|
|
|
select ARCH_HAVE_LEDS
|
2013-10-16 16:20:57 +02:00
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
2013-10-02 16:24:46 +02:00
|
|
|
---help---
|
|
|
|
A configuration for the LeafLab's Maple and Maple Mini boards.
|
|
|
|
These boards are based on the STM32F103RBT6 chip for the standard
|
|
|
|
version and on the STM32F103CBT6 for the mini version
|
|
|
|
(See http://leaflabs.com/docs/hardware/maple.html)
|
|
|
|
|
2012-06-20 02:04:56 +02:00
|
|
|
config ARCH_BOARD_MIRTOO
|
|
|
|
bool "Mirtoo PIC32 Module from Dimitech"
|
|
|
|
depends on ARCH_CHIP_PIC32MX250F128D
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
2012-06-20 02:04:56 +02:00
|
|
|
---help---
|
|
|
|
This is the port to the DTX1-4000L "Mirtoo" module. This module uses MicroChip
|
2012-07-04 00:42:27 +02:00
|
|
|
PIC32MX250F128D. See http://www.dimitech.com/ for further information.
|
2012-06-20 02:04:56 +02:00
|
|
|
|
2016-06-24 15:45:59 +02:00
|
|
|
config ARCH_BOARD_MOXA
|
|
|
|
bool "Moxa board"
|
|
|
|
depends on ARCH_CHIP_MOXART
|
|
|
|
---help---
|
|
|
|
Moxa
|
|
|
|
|
2013-02-16 19:13:12 +01:00
|
|
|
config ARCH_BOARD_NUTINY_NUC120
|
|
|
|
bool "Nuvoton NuTiny NUC120"
|
|
|
|
depends on ARCH_CHIP_NUC120LE3AN
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
---help---
|
2013-10-24 16:48:04 +02:00
|
|
|
This is the port to the Nuvoton NuTiny EVB 120 board. This board uses a
|
2013-02-16 19:13:12 +01:00
|
|
|
Nuvoton NUC120 chip, specifically the NUC120LE3AN. See http://www.nuvoton.com/
|
|
|
|
for further information.
|
|
|
|
|
2014-10-20 20:00:37 +02:00
|
|
|
config ARCH_BOARD_OLIMEX_EFM32G880F128_STK
|
|
|
|
bool "Olimex EFM32G880F128 STK"
|
|
|
|
depends on ARCH_CHIP_EFM32G880F128
|
|
|
|
select ARCH_HAVE_BUTTONS
|
2014-10-21 21:51:30 +02:00
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
2014-10-20 20:00:37 +02:00
|
|
|
---help---
|
|
|
|
This options selects the Olimex EFM32G880F128 STK
|
|
|
|
|
2012-04-16 17:45:33 +02:00
|
|
|
config ARCH_BOARD_OLIMEXLPC2378
|
|
|
|
bool "Olimex-lpc2378 board"
|
|
|
|
depends on ARCH_CHIP_LPC2378
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
2012-04-16 17:45:33 +02:00
|
|
|
---help---
|
2012-10-06 01:01:51 +02:00
|
|
|
This port uses the Olimex-lpc2378 board and a GNU arm-nuttx-elf toolchain* under
|
2012-04-16 17:45:33 +02:00
|
|
|
Linux or Cygwin. STATUS: ostest and NSH configurations available.
|
|
|
|
This port for the NXP LPC2378 was contributed by Rommel Marcelo.
|
|
|
|
|
2013-11-18 21:51:38 +01:00
|
|
|
config ARCH_BOARD_OLIMEX_LPC_H3131
|
|
|
|
bool "Olimex LPC-H3131 Development board"
|
|
|
|
depends on ARCH_CHIP_LPC3131
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
---help---
|
2017-05-11 21:35:56 +02:00
|
|
|
Olimex LPC-H3131 development board. This board is based on the
|
2013-11-18 21:51:38 +01:00
|
|
|
NXP LPC3131 MCU.
|
|
|
|
|
2012-04-16 17:45:33 +02:00
|
|
|
config ARCH_BOARD_OLIMEX_STRP711
|
|
|
|
bool "Olimex STR-P711 board"
|
|
|
|
depends on ARCH_CHIP_STR71X
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
2012-04-16 17:45:33 +02:00
|
|
|
---help---
|
2012-10-06 01:01:51 +02:00
|
|
|
This port uses the Olimex STR-P711 board and a GNU arm-nuttx-elf toolchain* under
|
2012-04-16 17:45:33 +02:00
|
|
|
Linux or Cygwin. See the http://www.olimex.com/dev/str-p711.html" for
|
|
|
|
further information. STATUS: Configurations for the basic OS test and NSH
|
|
|
|
are complete and verified.
|
|
|
|
|
2014-06-03 18:34:36 +02:00
|
|
|
config ARCH_BOARD_OLIMEX_STM32H405
|
|
|
|
bool "Olimex STM32 H405 board"
|
|
|
|
depends on ARCH_CHIP_STM32F405RG
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
This port uses the Olimex STM32 H405 board and a GNU arm-nuttx-elf
|
|
|
|
toolchain* under Linux or Cygwin. See the http://www.olimex.com for
|
|
|
|
further information. This board features the STMicro STM32F405RGT6
|
|
|
|
MCU.
|
|
|
|
|
2016-01-16 01:49:27 +01:00
|
|
|
config ARCH_BOARD_OLIMEX_STM32H407
|
|
|
|
bool "Olimex STM32 H407 board"
|
|
|
|
depends on ARCH_CHIP_STM32F407ZG
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
This port uses the Olimex STM32 H407 board and a GNU arm-nuttx-elf
|
|
|
|
toolchain* under Linux or Cygwin. See the http://www.olimex.com for
|
|
|
|
further information. This board features the STMicro STM32F407ZGT6 (144pins).
|
|
|
|
|
2016-06-27 13:41:41 +02:00
|
|
|
config ARCH_BOARD_OLIMEX_STM32E407
|
|
|
|
bool "Olimex STM32 E407 board"
|
|
|
|
depends on ARCH_CHIP_STM32F407ZG
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
Olimex STM32 E407 board based on the STMicro STM32F407ZGT6 (144pins).
|
|
|
|
|
2012-09-08 04:10:56 +02:00
|
|
|
config ARCH_BOARD_OLIMEX_STM32P107
|
|
|
|
bool "Olimex STM32 P107 board"
|
|
|
|
depends on ARCH_CHIP_STM32F107VC
|
|
|
|
---help---
|
2012-10-06 01:01:51 +02:00
|
|
|
This port uses the Olimex STM32 P107 board and a GNU arm-nuttx-elf toolchain* under
|
2012-09-08 04:10:56 +02:00
|
|
|
Linux or Cygwin. See the http://www.olimex.com for further information. This
|
|
|
|
board features the STMicro STM32F107VC MCU
|
|
|
|
|
2013-10-24 16:48:04 +02:00
|
|
|
config ARCH_BOARD_OLIMEX_STM32P207
|
|
|
|
bool "Olimex STM32 P207 board"
|
|
|
|
depends on ARCH_CHIP_STM32F207ZE
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
2015-03-21 01:00:10 +01:00
|
|
|
This port uses the Olimex STM32 P207 board and a GNU arm-nuttx-elf
|
|
|
|
toolchain under Linux or Cygwin. See the http://www.olimex.com for
|
|
|
|
further information. This board features the STMicro STM32F207ZE MCU
|
|
|
|
|
2016-12-21 17:45:36 +01:00
|
|
|
config ARCH_BOARD_OLIMEX_STM32P407
|
|
|
|
bool "Olimex STM32 P407 board"
|
|
|
|
depends on ARCH_CHIP_STM32F407ZG
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
This port uses the Olimex STM32 P407 board and a GNU arm-nuttx-elf
|
|
|
|
toolchain under Linux or Cygwin. See the http://www.olimex.com for
|
|
|
|
further information. This board features the STMicro STM32F407ZG MCU
|
|
|
|
|
2015-03-21 01:00:10 +01:00
|
|
|
config ARCH_BOARD_OLIMEXINO_STM32
|
|
|
|
bool "Olimexino STM32 board"
|
|
|
|
depends on ARCH_CHIP_STM32F103RB
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
This port uses the Olimexino STM32 board and a GNU arm-nuttx-elf
|
|
|
|
toolchain under Linux or Cygwin. See the http://www.olimex.com for
|
|
|
|
further information. This board features the STMicro STM32F103RBT6 MCU.
|
2018-07-09 02:24:45 +02:00
|
|
|
Contributed by David Sidrane.
|
2013-10-24 16:48:04 +02:00
|
|
|
|
2013-01-18 23:42:37 +01:00
|
|
|
config ARCH_BOARD_OPEN1788
|
|
|
|
bool "Wave Share Open1788"
|
|
|
|
depends on ARCH_CHIP_LPC1788
|
2013-03-05 02:26:02 +01:00
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
2013-01-18 23:42:37 +01:00
|
|
|
---help---
|
|
|
|
This port uses the Wave Share Open1788 board. See the
|
|
|
|
http://wvshare.com/product/Open1788-Standard.htm for further
|
|
|
|
information. This board features the NXP LPC1788 MCU
|
|
|
|
|
2018-04-26 19:22:28 +02:00
|
|
|
config ARCH_BOARD_OR1K
|
|
|
|
bool "OpenRISC generic board"
|
|
|
|
depends on ARCH_CHIP_MOR1KX
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
---help---
|
|
|
|
Generic OpenRISC board.
|
|
|
|
|
2012-12-11 22:42:15 +01:00
|
|
|
config ARCH_BOARD_P112
|
|
|
|
bool "P112 Z180-based platform"
|
|
|
|
depends on ARCH_CHIP_Z8018216FSG
|
|
|
|
---help---
|
|
|
|
The P112 is notable because it was the first of the hobbyist single board
|
|
|
|
computers to reach the production stage. The P112 hobbyist computers
|
|
|
|
were relatively widespread and inspired other hobbyist centered home brew
|
|
|
|
computing projects such as N8VEM home brew computing project. The P112
|
|
|
|
project still maintains many devoted enthusiasts and has an online
|
|
|
|
repository of software and other information.
|
|
|
|
|
|
|
|
The P112 computer originated as a commercial product of "D-X Designs Pty
|
|
|
|
Ltd" of Australia. They describe the computer as "The P112 is a stand-alone
|
|
|
|
8-bit CPU board. Typically running CP/M (tm) or a similar operating system,
|
|
|
|
it provides a Z80182 (Z-80 upgrade) CPU with up to 1MB of memory, serial,
|
|
|
|
parallel and diskette IO, and realtime clock, in a 3.5-inch drive form factor.
|
|
|
|
Powered solely from 5V, it draws 150mA (nominal: not including disk drives)
|
|
|
|
with a 16MHz CPU clock. Clock speeds up to 24.576MHz are possible."
|
|
|
|
|
|
|
|
The P112 board was last available new in 1996 by Dave Brooks. In late 2004
|
|
|
|
on the Usenet Newsgroup comp.os.cpm, talk about making another run of P112
|
|
|
|
boards was discussed. David Griffith decided to produce additional P112 kits
|
|
|
|
with Dave Brooks blessing and the assistance of others. In addition Terry
|
|
|
|
Gulczynski makes additional P112 derivative hobbyist home brew computers.
|
|
|
|
Hal Bower was very active in the mid 1990's on the P112 project and ported
|
|
|
|
the "Banked/Portable BIOS".
|
|
|
|
|
2013-12-07 21:25:35 +01:00
|
|
|
config ARCH_BOARD_PCDUINO_A10
|
|
|
|
bool "pcDuino A10"
|
|
|
|
depends on ARCH_CHIP_A10
|
2013-12-07 23:44:23 +01:00
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
2013-12-07 21:25:35 +01:00
|
|
|
---help---
|
|
|
|
This is the port of NuttX to the Allwinner A10-based pcDuino v1
|
|
|
|
board. See http://www.pcduino.com/ for information about pcDuino Lite, v1,
|
|
|
|
and v2. I have not compared these boards in detail, but I believe that
|
|
|
|
the differences are cosmetic. This port was developed on the v1 board,
|
|
|
|
but the others may be compatible.
|
|
|
|
|
2019-01-06 16:05:38 +01:00
|
|
|
config ARCH_BOARD_BEAGLEBONE_BLACK
|
|
|
|
bool "beaglebone black"
|
|
|
|
depends on ARCH_CHIP_AM335X
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
This is the port of NuttX to the TI Beaglebone Black board.
|
|
|
|
|
2015-02-22 01:41:17 +01:00
|
|
|
config ARCH_BOARD_PIC32MX_STARTERKIT
|
2015-02-22 17:53:24 +01:00
|
|
|
bool "Microchip PIC32MX Ethernet Starter Kit (DM320004)"
|
2012-04-16 17:45:33 +02:00
|
|
|
depends on ARCH_CHIP_PIC32MX795F512L
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
2012-04-16 17:45:33 +02:00
|
|
|
---help---
|
2012-04-22 21:50:33 +02:00
|
|
|
This is the port of NuttX to the Microchip PIC32 Ethernet Starter Kit
|
|
|
|
(DM320004) with the Multimedia Expansion Board (MEB, DM320005).
|
|
|
|
See www.microchip.com for further information.
|
|
|
|
|
2014-03-01 19:00:56 +01:00
|
|
|
config ARCH_BOARD_PIC32MX7MMB
|
2012-04-22 21:50:33 +02:00
|
|
|
bool "Mikroelektronika PIC32MX7 MMB"
|
|
|
|
depends on ARCH_CHIP_PIC32MX795F512L
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
2012-04-22 21:50:33 +02:00
|
|
|
---help---
|
|
|
|
This is the port NuttX to the Mikroelektronika PIC32MX7 Multimedia Board
|
|
|
|
(MMB). See http://www.mikroe.com/ for further information.
|
2012-04-16 17:45:33 +02:00
|
|
|
|
2015-02-22 17:53:24 +01:00
|
|
|
config ARCH_BOARD_PIC32MZ_STARTERKIT
|
|
|
|
bool "Microchip PIC32MZ Ethernet Starter Kit ((DM320006)"
|
|
|
|
depends on ARCH_CHIP_PIC32MZ2048ECH || ARCH_CHIP_PIC32MZ2048ECM
|
|
|
|
select ARCH_HAVE_LEDS
|
2015-03-02 17:01:10 +01:00
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS if PIC32MZ_GPIOIRQ_PORTB
|
2015-02-22 17:53:24 +01:00
|
|
|
---help---
|
|
|
|
This is the port of NuttX to the Microchip PIC32MZ Embedded
|
|
|
|
Connectivity (EC) Starter Kit. There are two configurations of the
|
|
|
|
starter kit:
|
|
|
|
|
|
|
|
1) The PIC32MZ Embedded Connectivity Starter Kit based on the
|
|
|
|
PIC32MZ2048ECH144-I/PH chip (DM320006), and
|
|
|
|
2) The PIC32MZ Embedded Connectivity Starter Kit based on the
|
|
|
|
PIC32MZ2048ECM144-I/PH w/Crypto Engine (DM320006-C)
|
|
|
|
|
|
|
|
See www.microchip.com for further information.
|
|
|
|
|
2016-10-16 17:47:07 +02:00
|
|
|
config ARCH_BOARD_NR5M100_NEXYS4
|
|
|
|
bool "NEXT RISC-V NR5M100 on Nexys-4 board"
|
|
|
|
depends on ARCH_CHIP_NR5M100
|
|
|
|
select UART_SERIALDRIVER
|
|
|
|
---help---
|
|
|
|
This is the port NuttX to the NEXT RISC-V processor runnining on a Digilent
|
|
|
|
Nexys-4 (non DDR version) FPGA board.
|
|
|
|
|
2016-05-12 17:47:54 +02:00
|
|
|
config ARCH_BOARD_NUCLEO_144
|
|
|
|
bool "STMicro NUCLEO-144"
|
2017-11-18 14:55:50 +01:00
|
|
|
depends on ARCH_CHIP_STM32F722ZE || ARCH_CHIP_STM32F746ZG || ARCH_CHIP_STM32F767ZI
|
2016-05-12 17:47:54 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
2016-06-08 16:02:32 +02:00
|
|
|
STMicro Nucleo-144 development board featuring STMicroelectronics
|
2017-05-02 14:36:18 +02:00
|
|
|
F2, F3, F4, F7 and L4 MCU families. The board is a "Hardware pattern"
|
2016-06-08 16:02:32 +02:00
|
|
|
that can be populated with the 144 pin package of the following MCUs:
|
|
|
|
|
|
|
|
Target STM32 Order code
|
|
|
|
STM32F207ZGT6 NUCLEO-F207ZG
|
|
|
|
STM32F303ZET6 NUCLEO-F303ZE
|
|
|
|
STM32F429ZIT6 NUCLEO-F429ZI
|
|
|
|
STM32F446ZET6 NUCLEO-F446ZE
|
2017-11-18 14:55:50 +01:00
|
|
|
STM32F722ZET6 NUCLEO-F722ZE
|
2017-05-02 14:36:18 +02:00
|
|
|
STM32F746ZGT6 NUCLEO-F746ZG
|
|
|
|
STM32F767ZIT6 NUCLEO-F767ZI
|
|
|
|
STM32L496ZGT6 NUCLEO-L496ZG
|
|
|
|
STM32L496ZGT6P NUCLEO-L496ZG-P
|
2016-06-08 16:02:32 +02:00
|
|
|
|
2017-05-02 14:36:18 +02:00
|
|
|
Supported in this configuration are:
|
2016-06-08 16:02:32 +02:00
|
|
|
|
2017-11-18 14:55:50 +01:00
|
|
|
NUCLEO-F722ZE - STM32F722ZET6 a 216MHz Cortex-M7, w/FPU -
|
|
|
|
512KiB Flash memory and 256KiB SRAM.
|
2017-05-02 14:36:18 +02:00
|
|
|
NUCLEO-F746ZG - STM32F746ZGT6 a 216MHz Cortex-M7, w/FPU -
|
|
|
|
1024KiB Flash memory and 320KiB SRAM.
|
2016-06-08 16:02:32 +02:00
|
|
|
NUCLEO-F767ZI - STM32F767ZIT6 a 216MHz Cortex-M7, w/DPFPU -
|
|
|
|
2048KiB Flash memory and 512KiB SRAM.
|
2016-05-12 17:47:54 +02:00
|
|
|
|
2018-12-19 19:36:35 +01:00
|
|
|
config ARCH_BOARD_NUCLEO_L073RZ
|
|
|
|
bool "STM32L073RZU6 Nucleo L073RZ"
|
|
|
|
depends on ARCH_CHIP_STM32L073RZ
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
STMicro Nucleo L073RZ board based on the STMicro STM32L073RZU6 MCU.
|
|
|
|
|
2017-05-02 14:36:18 +02:00
|
|
|
config ARCH_BOARD_NUCLEO_L496ZG
|
|
|
|
bool "STM32L496 Nucleo L496ZG"
|
|
|
|
depends on ARCH_CHIP_STM32L496ZG
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
STMicro Nucleo-144 development board featuring STMicroelectronics
|
|
|
|
F2, F3, F4, F7 and L4 MCU families. The board is a "Hardware pattern"
|
|
|
|
that can be populated with the 144 pin package of the following MCUs:
|
|
|
|
|
|
|
|
Target STM32 Order code
|
|
|
|
STM32F207ZGT6 NUCLEO-F207ZG
|
|
|
|
STM32F303ZET6 NUCLEO-F303ZE
|
|
|
|
STM32F429ZIT6 NUCLEO-F429ZI
|
|
|
|
STM32F446ZET6 NUCLEO-F446ZE
|
|
|
|
STM32F746ZGT6 NUCLEO-F746ZG
|
|
|
|
STM32F767ZIT6 NUCLEO-F767ZI
|
|
|
|
STM32L496ZGT6 NUCLEO-L496ZG
|
|
|
|
STM32L496ZGT6P NUCLEO-L496ZG-P
|
|
|
|
|
|
|
|
Supported in this configuration are:
|
|
|
|
|
|
|
|
NUCLEO-L496ZG - STM32L496ZGT6 a 80MHz Cortex-M4, w/FPU -
|
|
|
|
1024KiB Flash memory and 320KiB SRAM.
|
|
|
|
|
2017-04-18 18:07:03 +02:00
|
|
|
config ARCH_BOARD_NUCLEO_F072RB
|
|
|
|
bool "STM32F072 Nucleo F072RB"
|
|
|
|
depends on ARCH_CHIP_STM32F072RB
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
STMicro Nucleo F072RB board based on the STMicro STM32F072RBT6 MCU.
|
|
|
|
|
2017-05-02 14:39:54 +02:00
|
|
|
config ARCH_BOARD_NUCLEO_F091RC
|
|
|
|
bool "STM32F091 Nucleo F091RC"
|
|
|
|
depends on ARCH_CHIP_STM32F091RC
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
STMicro Nucleo F091RC board based on the STMicro STM32F091RCT6 MCU.
|
|
|
|
|
2018-12-01 13:22:05 +01:00
|
|
|
config ARCH_BOARD_NUCLEO_F103RB
|
|
|
|
bool "STM32F103 Nucleo F103RB"
|
|
|
|
depends on ARCH_CHIP_STM32F103RB
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
STMicro Nucleo F103RB board based on the STMicro STM32F103RBT6 MCU.
|
|
|
|
|
|
|
|
config ARCH_BOARD_NUCLEO_F207ZG
|
|
|
|
bool "STM32F207 Nucleo F207ZG"
|
|
|
|
depends on ARCH_CHIP_STM32F207ZG
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
STMicro Nucleo F207ZG board based on the STMicro STM32F207ZGT6 MCU.
|
|
|
|
|
2018-10-05 15:02:49 +02:00
|
|
|
config ARCH_BOARD_NUCLEO_F302R8
|
|
|
|
bool "STM32F303 Nucleo F302R8"
|
|
|
|
depends on ARCH_CHIP_STM32F302R8
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
STMicro Nucleo F302R8 board based on the STMicro STM32F302R8T6 MCU.
|
|
|
|
|
2015-09-10 06:30:04 +02:00
|
|
|
config ARCH_BOARD_NUCLEO_F303RE
|
|
|
|
bool "STM32F303 Nucleo F303RE"
|
|
|
|
depends on ARCH_CHIP_STM32F303RE
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
STMicro Nucleo F303RE board based on the STMicro STM32F303RET6 MCU.
|
|
|
|
|
2018-10-28 17:39:56 +01:00
|
|
|
config ARCH_BOARD_NUCLEO_F303ZE
|
|
|
|
bool "STM32F303 Nucleo F303ZE"
|
|
|
|
depends on ARCH_CHIP_STM32F303ZE
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
STMicro Nucleo F303ZE board based on the STMicro STM32F303ZET6 MCU.
|
|
|
|
|
2017-02-26 12:42:43 +01:00
|
|
|
config ARCH_BOARD_NUCLEO_F334R8
|
|
|
|
bool "STM32F334 Nucleo F334R8"
|
|
|
|
depends on ARCH_CHIP_STM32F334R8
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
STMicro Nucleo F334R8 board based on the STMicro STM32F334R8 MCU.
|
|
|
|
|
2014-04-20 21:42:23 +02:00
|
|
|
config ARCH_BOARD_NUCLEO_F401RE
|
|
|
|
bool "STM32F401 Nucleo F401RE"
|
|
|
|
depends on ARCH_CHIP_STM32F401RE
|
2014-04-22 20:55:31 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
2014-04-20 21:42:23 +02:00
|
|
|
---help---
|
|
|
|
This is a minimal configuration that supports low-level test of the
|
|
|
|
Nucleo F401RE in the NuttX source tree.
|
|
|
|
|
2017-09-25 20:59:39 +02:00
|
|
|
config ARCH_BOARD_NUCLEO_F410RB
|
|
|
|
bool "STM32F410 Nucleo F410RB"
|
|
|
|
depends on ARCH_CHIP_STM32F410RB
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
This is a minimal configuration that supports low-level test of the
|
|
|
|
Nucleo F410RB in the NuttX source tree.
|
|
|
|
|
2014-10-15 01:32:13 +02:00
|
|
|
config ARCH_BOARD_NUCLEO_F411RE
|
|
|
|
bool "STM32F411 Nucleo F411RE"
|
|
|
|
depends on ARCH_CHIP_STM32F411RE
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
This is a minimal configuration that supports low-level test of the
|
|
|
|
Nucleo F411RE in the NuttX source tree.
|
|
|
|
|
2019-03-15 19:45:13 +01:00
|
|
|
config ARCH_BOARD_NUCLEO_F446RE
|
|
|
|
bool "STM32F446 Nucleo F446RE"
|
|
|
|
depends on ARCH_CHIP_STM32F446R
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
This is a minimal configuration that supports low-level test of the
|
|
|
|
Nucleo F446RE in the NuttX source tree.
|
|
|
|
|
2018-06-17 00:59:34 +02:00
|
|
|
config ARCH_BOARD_NUCLEO_H743ZI
|
|
|
|
bool "STM32H743 Nucleo H743ZI"
|
|
|
|
depends on ARCH_CHIP_STM32H743ZI
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
# TODO: select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
STMicro Nucleo H743ZI board based on the STMicro STM32H743ZI MCU.
|
|
|
|
|
2018-12-01 13:22:05 +01:00
|
|
|
config ARCH_BOARD_NUCLEO_L152RE
|
|
|
|
bool "STM32L152 Nucleo L152RE"
|
|
|
|
depends on ARCH_CHIP_STM32L152RE
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
STMicro Nucleo L152RE board based on the STMicro STM32L152REU6 MCU.
|
|
|
|
|
2017-05-09 09:00:37 +02:00
|
|
|
config ARCH_BOARD_NUCLEO_L432KC
|
|
|
|
bool "STM32L432 Nucleo-32 L432KC"
|
|
|
|
depends on ARCH_CHIP_STM32L432KC
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
STMicro Nucleo-32 L432KC board based on the STMicro STM32L432KCU6 MCU.
|
|
|
|
|
2017-05-04 13:45:37 +02:00
|
|
|
config ARCH_BOARD_NUCLEO_L452RE
|
|
|
|
bool "STM32L452 Nucleo L452RE"
|
|
|
|
depends on ARCH_CHIP_STM32L452RE
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
STMicro Nucleo L452RE board based on the STMicro STM32L452RET6 MCU.
|
|
|
|
|
2016-03-10 18:21:35 +01:00
|
|
|
config ARCH_BOARD_NUCLEO_L476RG
|
|
|
|
bool "STM32L476 Nucleo L476RG"
|
|
|
|
depends on ARCH_CHIP_STM32L476RG
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
STMicro Nucleo L476RG board based on the STMicro STM32L476RGT6 MCU.
|
|
|
|
|
2012-04-16 17:45:33 +02:00
|
|
|
config ARCH_BOARD_QEMU_I486
|
|
|
|
bool "Qemu i486 Mode"
|
2012-09-08 20:57:57 +02:00
|
|
|
depends on ARCH_X86 || ARCH_I486
|
2012-04-16 17:45:33 +02:00
|
|
|
---help---
|
|
|
|
Port of NuttX to QEMU in i486 mode. This port will also run on real i486
|
|
|
|
hardwared (Google the Bifferboard).
|
|
|
|
|
2016-02-29 20:16:39 +01:00
|
|
|
config ARCH_BOARD_SABRE_6QUAD
|
|
|
|
bool "NXP/Freescale i.MX6 Sabre-6Quad board"
|
|
|
|
depends on ARCH_CHIP_IMX6_6QUAD
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
This options selects support for NuttX on the NXP/Freescale Sabre
|
|
|
|
board featuring the iMX 6Quad CPU.
|
|
|
|
|
2015-09-05 20:13:12 +02:00
|
|
|
config ARCH_BOARD_SAMA5D2_XULT
|
|
|
|
bool "Atmel SAMA5D2 Xplained Ultra development board"
|
|
|
|
depends on ARCH_CHIP_ATSAMA5D27
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
The port of NuttX to the Atmel SAMA5D2-XULT development board
|
|
|
|
|
2013-07-19 23:23:03 +02:00
|
|
|
config ARCH_BOARD_SAMA5D3X_EK
|
|
|
|
bool "Atmel SAMA5D3x-EK development board"
|
|
|
|
depends on ARCH_CHIP_ATSAMA5D31 || ARCH_CHIP_ATSAMA5D33 || ARCH_CHIP_ATSAMA5D34 || ARCH_CHIP_ATSAMA5D35
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
2014-08-24 20:55:51 +02:00
|
|
|
select ARCH_PHY_INTERRUPT if NETDEVICES
|
2013-07-19 23:23:03 +02:00
|
|
|
---help---
|
|
|
|
The port of NuttX to the Atmel SAMA5D3x-EK development board (where x=1,3,4, or 5).
|
|
|
|
|
2014-03-28 22:20:26 +01:00
|
|
|
config ARCH_BOARD_SAMA5D3_XPLAINED
|
|
|
|
bool "Atmel SAMA5D3 Xplained development board"
|
|
|
|
depends on ARCH_CHIP_ATSAMA5D36
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
2014-08-24 20:55:51 +02:00
|
|
|
select ARCH_PHY_INTERRUPT if NETDEVICES
|
2014-03-28 22:20:26 +01:00
|
|
|
---help---
|
|
|
|
The port of NuttX to the Atmel SAMA5D3 Xplained development board.
|
|
|
|
|
2014-06-06 20:37:36 +02:00
|
|
|
config ARCH_BOARD_SAMA5D4_EK
|
|
|
|
bool "Atmel SAMA5D4-EK development board"
|
|
|
|
depends on ARCH_CHIP_ATSAMA5D44
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
2014-08-24 20:55:51 +02:00
|
|
|
select ARCH_PHY_INTERRUPT if NETDEVICES
|
2014-06-06 20:37:36 +02:00
|
|
|
---help---
|
|
|
|
The port of NuttX to the Atmel SAMA5D4-EK development board
|
|
|
|
|
2014-02-13 00:50:58 +01:00
|
|
|
config ARCH_BOARD_SAMD20_XPLAINED
|
|
|
|
bool "Atmel SAMD20-Xplained Pro development board"
|
|
|
|
depends on ARCH_CHIP_SAMD20J18
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
2014-02-18 23:19:14 +01:00
|
|
|
The port of NuttX to the Atmel SAMD20-Xplained Pro development board.
|
|
|
|
This board features the ATSAMD20J18A MCU (Cortex-M0+ with 256KB of FLASH
|
|
|
|
and 32KB of SRAM).
|
2014-02-13 00:50:58 +01:00
|
|
|
|
2015-06-21 15:48:46 +02:00
|
|
|
config ARCH_BOARD_SAMD21_XPLAINED
|
|
|
|
bool "Atmel SAMD21-Xplained Pro development board"
|
|
|
|
depends on ARCH_CHIP_SAMD21J18A
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
The port of NuttX to the Atmel SAMD21-Xplained Pro development board.
|
|
|
|
This board features the ATSAMD21J18A MCU (Cortex-M0+ with 256KB of FLASH
|
|
|
|
and 32KB of SRAM).
|
|
|
|
|
2015-05-18 21:16:32 +02:00
|
|
|
config ARCH_BOARD_SAML21_XPLAINED
|
|
|
|
bool "Atmel SAML21-Xplained Pro development board"
|
|
|
|
depends on ARCH_CHIP_SAML21J18
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
The port of NuttX to the Atmel SAML21-Xplained Pro development board.
|
|
|
|
This board features the ATSAML21J18A MCU (Cortex-M0+ with 256KB of FLASH
|
|
|
|
and 32KB of SRAM).
|
|
|
|
|
2012-04-16 17:45:33 +02:00
|
|
|
config ARCH_BOARD_SAM3UEK
|
|
|
|
bool "Atmel SAM3U-EK development board"
|
2013-06-27 22:24:27 +02:00
|
|
|
depends on ARCH_CHIP_ATSAM3U4E
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
2012-04-16 17:45:33 +02:00
|
|
|
---help---
|
|
|
|
The port of NuttX to the Atmel SAM3U-EK development board.
|
|
|
|
|
2016-12-04 14:06:17 +01:00
|
|
|
config ARCH_BOARD_SAM4CMP_DB
|
|
|
|
bool "Atmel SAM4CMP-DB development board"
|
|
|
|
depends on ARCH_CHIP_ATSAM4CMP16B
|
|
|
|
---help---
|
|
|
|
The port of NuttX to the Atmel SAM4CMP-DB development board.
|
|
|
|
|
2014-03-10 22:18:46 +01:00
|
|
|
config ARCH_BOARD_SAM4EEK
|
|
|
|
bool "Atmel SAM4E-EK development board"
|
|
|
|
depends on ARCH_CHIP_ATSAM4E16E
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
2014-11-25 15:08:58 +01:00
|
|
|
select ARCH_PHY_INTERRUPT if NETDEVICES
|
2014-03-10 22:18:46 +01:00
|
|
|
---help---
|
|
|
|
The port of NuttX to the Atmel SAM4E-EK development board. This
|
|
|
|
board features the SAM4E16 MCU running at up to 120MHz.
|
|
|
|
|
2013-06-03 23:11:56 +02:00
|
|
|
config ARCH_BOARD_SAM4L_XPLAINED
|
|
|
|
bool "Atmel SAM4L-Xplained Pro development board"
|
|
|
|
depends on ARCH_CHIP_ATSAM4LC4C
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
The port of NuttX to the Atmel SAM4L-Xplained Pro development board.
|
|
|
|
|
2015-03-06 15:56:44 +01:00
|
|
|
config ARCH_BOARD_SAM4S_XPLAINED
|
|
|
|
bool "Atmel SAM4S-Xplained development board"
|
|
|
|
depends on ARCH_CHIP_ATSAM4S16C
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
The port of NuttX to the Atmel SAM4S-Xplained development board.
|
|
|
|
|
2014-04-22 01:34:05 +02:00
|
|
|
config ARCH_BOARD_SAM4S_XPLAINED_PRO
|
|
|
|
bool "Atmel SAM4S-Xplained Pro development board"
|
|
|
|
depends on ARCH_CHIP_ATSAM4SD32C
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
The port of NuttX to the Atmel SAM4S-Xplained Pro development board.
|
|
|
|
|
2015-11-18 20:54:57 +01:00
|
|
|
config ARCH_BOARD_SAME70_XPLAINED
|
|
|
|
bool "Atmel SAME70 Xplained evaluation board"
|
|
|
|
depends on ARCH_CHIP_SAME70Q21
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
select ARCH_PHY_INTERRUPT if NETDEVICES
|
|
|
|
---help---
|
|
|
|
The port of NuttX to the Atmel SAME70 Xplained evaluation board.
|
|
|
|
|
2015-03-06 15:56:44 +01:00
|
|
|
config ARCH_BOARD_SAMV71_XULT
|
2015-11-18 20:54:57 +01:00
|
|
|
bool "Atmel SAMV71 Xplained Ultra evaluation board"
|
2015-03-06 15:56:44 +01:00
|
|
|
depends on ARCH_CHIP_SAMV71Q21
|
2013-06-12 00:29:59 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
2015-09-29 16:19:17 +02:00
|
|
|
select ARCH_PHY_INTERRUPT if NETDEVICES
|
2013-06-12 00:29:59 +02:00
|
|
|
---help---
|
2015-11-18 20:54:57 +01:00
|
|
|
The port of NuttX to the Atmel SAMV71 Xplained Ultra evaluation board.
|
2013-06-12 00:29:59 +02:00
|
|
|
|
2012-09-08 04:10:56 +02:00
|
|
|
config ARCH_BOARD_SHENZHOU
|
|
|
|
bool "Shenzhou STM32F107 board"
|
|
|
|
depends on ARCH_CHIP_STM32F107VC
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
2012-09-08 04:10:56 +02:00
|
|
|
---help---
|
2012-10-06 01:01:51 +02:00
|
|
|
This port uses the Shenzhou STM32 F107 board and a GNU arm-nuttx-elf toolchain* under
|
2012-09-08 04:10:56 +02:00
|
|
|
Linux or Cygwin. See the http://www.armjishu.com for further information. This
|
|
|
|
board features the STMicro STM32F107VC MCU
|
|
|
|
|
2012-04-16 17:45:33 +02:00
|
|
|
config ARCH_BOARD_SKP16C26
|
|
|
|
bool "Renesas SKP16C26 StarterKit"
|
|
|
|
depends on ARCH_CHIP_M30262F8
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
2012-04-16 17:45:33 +02:00
|
|
|
---help---
|
|
|
|
Renesas M16C processor on the Renesas SKP16C26 StarterKit. This port
|
|
|
|
uses the GNU m32c toolchain. STATUS: The port is complete but untested
|
|
|
|
due to issues with compiler internal errors.
|
|
|
|
|
2017-03-10 19:39:21 +01:00
|
|
|
config ARCH_BOARD_PHOTON
|
|
|
|
bool "Photon wifi board"
|
|
|
|
depends on ARCH_CHIP_STM32F205RG
|
2017-03-11 17:51:45 +01:00
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
2017-03-10 19:39:21 +01:00
|
|
|
---help---
|
|
|
|
A configuration for the Photon from Particle Devices
|
|
|
|
(https://www.particle.io). This board features the STM32F205RGY6
|
|
|
|
MCU from STMicro.
|
|
|
|
|
2016-08-14 16:32:11 +02:00
|
|
|
config ARCH_BOARD_STM32_BUTTERFLY2
|
2016-08-18 19:29:48 +02:00
|
|
|
bool "Kamami STM32Butterfly2 development board"
|
|
|
|
depends on ARCH_CHIP_STM32F107VC
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
---help---
|
|
|
|
A configuration for the Kamami STM32Butterfly2 development board
|
|
|
|
based on STM32F107VC micro-controler chip with optional ETH
|
2016-10-20 15:18:23 +02:00
|
|
|
board. See
|
|
|
|
https://kamami.pl/zestawy-uruchomieniowe-stm32/178507-stm32butterfly2.html
|
2016-08-14 16:32:11 +02:00
|
|
|
|
2013-05-28 22:24:17 +02:00
|
|
|
config ARCH_BOARD_STM32_TINY
|
|
|
|
bool "STM32-Tiny board"
|
|
|
|
depends on ARCH_CHIP_STM32F103C8
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
---help---
|
|
|
|
A configuration for the STM32 Tiny board. This board is based on a
|
|
|
|
STM32F103C8T6 micro-controller chip, and is (always ?) bundled with
|
|
|
|
an nRF24L01+ wireless module.
|
|
|
|
|
2016-05-18 21:33:17 +02:00
|
|
|
config ARCH_BOARD_STM32F103_MINIMUM
|
|
|
|
bool "STM32F103C8T6 Minimum ARM Development Board"
|
|
|
|
depends on ARCH_CHIP_STM32F103C8
|
|
|
|
select ARCH_HAVE_LEDS
|
2016-10-11 22:03:10 +02:00
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
2016-05-18 21:33:17 +02:00
|
|
|
---help---
|
|
|
|
A configuration for the STM32F103 Minimum board.
|
|
|
|
|
2012-04-16 17:45:33 +02:00
|
|
|
config ARCH_BOARD_STM3210E_EVAL
|
|
|
|
bool "STMicro STM3210E-EVAL development board"
|
2014-05-07 20:54:27 +02:00
|
|
|
depends on ARCH_CHIP_STM32F103ZE
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
2012-04-16 17:45:33 +02:00
|
|
|
---help---
|
|
|
|
STMicro STM3210E-EVAL development board based on the STMicro STM32F103ZET6
|
|
|
|
microcontroller (ARM Cortex-M3). This port uses the GNU Cortex-M3
|
|
|
|
toolchain.
|
|
|
|
|
|
|
|
config ARCH_BOARD_STM3220G_EVAL
|
|
|
|
bool "STMicro STM3220G-EVAL development board"
|
|
|
|
depends on ARCH_CHIP_STM32F207IG
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
2012-04-16 17:45:33 +02:00
|
|
|
---help---
|
|
|
|
STMicro STM3220G-EVAL development board based on the STMicro STM32F407IG
|
|
|
|
microcontroller (ARM Cortex-M3).
|
|
|
|
|
|
|
|
config ARCH_BOARD_STM3240G_EVAL
|
2012-04-27 00:10:40 +02:00
|
|
|
bool "STMicro STM3240G-EVAL development board"
|
2012-04-16 17:45:33 +02:00
|
|
|
depends on ARCH_CHIP_STM32F407IG
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
2012-04-16 17:45:33 +02:00
|
|
|
---help---
|
|
|
|
STMicro STM3240G-EVAL development board based on the STMicro STM32F103ZET6
|
|
|
|
microcontroller (ARM Cortex-M4 with FPU). This port uses a GNU Cortex-M4
|
|
|
|
toolchain (such as CodeSourcery).
|
|
|
|
|
2017-12-20 14:48:59 +01:00
|
|
|
config ARCH_BOARD_STM32F051_DISCOVERY
|
|
|
|
bool "STMicro STM32F051-Discovery board"
|
2017-04-14 16:33:52 +02:00
|
|
|
depends on ARCH_CHIP_STM32F051R8
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
2017-12-20 15:04:11 +01:00
|
|
|
STMicro STM32F051-Discovery board based on the STMicro ARCH_CHIP_STM32F051R8 MCU.
|
|
|
|
|
|
|
|
config ARCH_BOARD_STM32F072_DISCOVERY
|
|
|
|
bool "STMicro STM32F072-Discovery board"
|
|
|
|
depends on ARCH_CHIP_STM32F072RB
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
STMicro STM32F072-Discovery board based on the STMicro ARCH_CHIP_STM32F072RB MCU.
|
2017-04-14 16:33:52 +02:00
|
|
|
|
2013-02-07 00:09:09 +01:00
|
|
|
config ARCH_BOARD_STM32F3_DISCOVERY
|
|
|
|
bool "STMicro STM32F3-Discovery board"
|
|
|
|
depends on ARCH_CHIP_STM32F303VC
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
2013-05-19 19:04:19 +02:00
|
|
|
STMicro STM32F3-Discovery board based on the STMicro STM32F303VCT6 MCU.
|
2013-02-07 00:09:09 +01:00
|
|
|
|
2017-07-21 18:01:20 +02:00
|
|
|
config ARCH_BOARD_STM32F334_DISCO
|
|
|
|
bool "STMicro STM32F334-Discovery board"
|
|
|
|
depends on ARCH_CHIP_STM32F334C8
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
STMicro STM32F334-Discovery board based on the STMicro STM32F334C8T6 MCU.
|
|
|
|
|
2019-03-08 16:37:01 +01:00
|
|
|
config ARCH_BOARD_OMNIBUSF4
|
|
|
|
bool "OMNIBUSF4 flight controller"
|
|
|
|
depends on ARCH_CHIP_STM32F405RG
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
---help---
|
|
|
|
Flight controllers compatible with the OMINBUSF4 Betaflight target
|
|
|
|
|
2012-04-16 17:45:33 +02:00
|
|
|
config ARCH_BOARD_STM32F4_DISCOVERY
|
|
|
|
bool "STMicro STM32F4-Discovery board"
|
|
|
|
depends on ARCH_CHIP_STM32F407VG
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
2012-04-16 17:45:33 +02:00
|
|
|
---help---
|
2012-11-06 14:36:51 +01:00
|
|
|
STMicro STM32F4-Discovery board based on the STMicro STM32F407VGT6 MCU.
|
2012-04-16 17:45:33 +02:00
|
|
|
|
2016-05-21 02:12:05 +02:00
|
|
|
config ARCH_BOARD_STM32F411E_DISCO
|
|
|
|
bool "STMicro STM32F411E-Discovery board"
|
|
|
|
depends on ARCH_CHIP_STM32F411VE
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
This is a minimal configuration that supports low-level test of the
|
|
|
|
STMicro STM32F411E-Discovery Board.
|
|
|
|
|
2013-11-07 23:55:45 +01:00
|
|
|
config ARCH_BOARD_STM32F429I_DISCO
|
|
|
|
bool "STMicro STM32F429I-Discovery board"
|
|
|
|
depends on ARCH_CHIP_STM32F429Z
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
STMicro STM32F429I-Discovery board based on the STMicro STM32F429ZIT6 MCU.
|
|
|
|
|
2015-07-16 19:41:40 +02:00
|
|
|
config ARCH_BOARD_STM32F746G_DISCO
|
|
|
|
bool "STMicro STM32F746G-Discovery board"
|
2016-06-17 16:13:22 +02:00
|
|
|
depends on ARCH_CHIP_STM32F746NG
|
2015-07-16 19:41:40 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
2016-03-25 22:01:16 +01:00
|
|
|
STMicro STM32F746G-DISCO development board featuring the STM32F746NGH6
|
2015-07-16 19:41:40 +02:00
|
|
|
MCU. The STM32F746NGH6 is a 216MHz Cortex-M7 operation with 1024Kb Flash
|
2016-05-12 17:47:54 +02:00
|
|
|
memory and 320Kb SRAM.
|
2015-07-16 19:41:40 +02:00
|
|
|
|
2017-07-15 01:59:17 +02:00
|
|
|
config ARCH_BOARD_STM32F769I_DISCO
|
|
|
|
bool "STMicro STM32F769I-Discovery board"
|
|
|
|
depends on ARCH_CHIP_STM32F769NI
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
STMicro STM32F769I-DISCO development board featuring the STM32F769NIH6
|
2017-07-20 10:26:45 +02:00
|
|
|
MCU. The STM32F769NIH6 is a 216MHz Cortex-M7 with 2048Kb Flash
|
|
|
|
memory and 512Kb SRAM.
|
2017-07-15 01:59:17 +02:00
|
|
|
|
2016-06-17 16:13:22 +02:00
|
|
|
config ARCH_BOARD_STM32F746_WS
|
|
|
|
bool "Waveshare STM32F746 board"
|
|
|
|
depends on ARCH_CHIP_STM32F746IG
|
|
|
|
---help---
|
|
|
|
Waveshare STM32F746 development board featuring the STM32F746IG MCU.
|
|
|
|
|
2018-12-19 19:36:35 +01:00
|
|
|
config ARCH_BOARD_B_L072Z_LRWAN1
|
|
|
|
bool "B-L072Z-LRWAN1"
|
|
|
|
depends on ARCH_CHIP_STM32L072CZ
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
STMicro STM32L0 Discovery kit with LoRa/SigFox based on STM32L072CZ MCU.
|
|
|
|
|
2017-07-09 19:48:28 +02:00
|
|
|
config ARCH_BOARD_B_L475E_IOT01A
|
|
|
|
bool "STMicro IoT Discovery kit"
|
|
|
|
depends on ARCH_CHIP_STM32L475VG
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
---help---
|
|
|
|
STMicro IoT development board featuring the STM32L475VG
|
|
|
|
MCU. The STM32L475VG is a Cortex-M4 optimised for low-power operation
|
|
|
|
at up to 80MHz operation with 1024Kb Flash memory and 96+32Kb SRAM.
|
|
|
|
|
2016-03-25 21:21:24 +01:00
|
|
|
config ARCH_BOARD_STM32L476VG_DISCO
|
2016-06-17 23:38:21 +02:00
|
|
|
bool "STMicro STM32L476VG -Discovery board"
|
2016-03-25 21:21:24 +01:00
|
|
|
depends on ARCH_CHIP_STM32L476RG
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
2016-03-25 22:01:16 +01:00
|
|
|
STMicro STM32L476VG_DISCO development board featuring the STM32L476VG
|
2016-03-25 21:21:24 +01:00
|
|
|
MCU. The STM32L476VG is a Cortex-M4 optimised for low-power operation
|
|
|
|
at up to 80MHz operation with 1024Kb Flash memory and 96+32Kb SRAM.
|
|
|
|
|
2018-08-13 15:16:33 +02:00
|
|
|
config ARCH_BOARD_STM32L4R9AI_DISCO
|
|
|
|
bool "STMicro STM32L4R9AI -Discovery board"
|
|
|
|
depends on ARCH_CHIP_STM32L4R9AI
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
STMicro STM32L4R9AI_DISCO development board featuring the STM32L4R9AI
|
|
|
|
MCU. The STM32L4R9AI is a Cortex-M4 optimised for low-power operation
|
|
|
|
at up to 120MHz operation with 2048Kb Flash memory and 192+64+384Kb SRAM.
|
|
|
|
|
2016-08-17 16:55:02 +02:00
|
|
|
config ARCH_BOARD_STM32L476_MDK
|
|
|
|
bool "Motorola Mods Development Kit (MDK)"
|
|
|
|
depends on ARCH_CHIP_STM32L476RG
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
Motorola Mods Development Board (MDK) features STM32L476ME MCU.
|
|
|
|
The STM32L476ME is a Cortex-M4 optimised for low-power operation
|
|
|
|
at up to 80MHz operation with 1024Kb Flash memory and 96+32Kb SRAM.
|
|
|
|
|
2013-05-19 19:04:19 +02:00
|
|
|
config ARCH_BOARD_STM32L_DISCOVERY
|
|
|
|
bool "STMicro STM32L-Discovery board"
|
2018-05-18 19:34:55 +02:00
|
|
|
depends on ARCH_CHIP_STM32L152RB || ARCH_CHIP_STM32L152RC
|
2013-05-19 19:04:19 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
2018-05-18 19:34:55 +02:00
|
|
|
STMicro STM32L-Discovery board based on the STMicro STM32L152RBT6 or
|
|
|
|
STM32L1 MCUs.
|
2013-05-19 19:04:19 +02:00
|
|
|
|
2014-01-13 00:59:38 +01:00
|
|
|
config ARCH_BOARD_STM32VL_DISCOVERY
|
|
|
|
bool "STMicro STM32VL-Discovery board"
|
|
|
|
depends on ARCH_CHIP_STM32F100RB
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
STMicro STM32VL-Discovery board based on the STMicro STM32F100RB MCU.
|
|
|
|
|
2013-05-01 02:31:47 +02:00
|
|
|
config ARCH_BOARD_MIKROE_STM32F4
|
|
|
|
bool "MikroElektronika Mikromedia for STM32F4 board"
|
|
|
|
depends on ARCH_CHIP_STM32F407VG
|
|
|
|
---help---
|
|
|
|
This is the port NuttX to the Mikroelektronika Mikromedia for STM32F4 Multimedia Board
|
|
|
|
(MMB). See http://www.mikroe.com/ for further information.
|
|
|
|
|
2012-04-16 17:45:33 +02:00
|
|
|
config ARCH_BOARD_SUREPIC32MX
|
|
|
|
bool "Sure PIC32MX boards"
|
|
|
|
depends on ARCH_CHIP_PIC32MX440F512H
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
2012-04-16 17:45:33 +02:00
|
|
|
---help---
|
|
|
|
The "Advanced USB Storage Demo Board," Model DB-DP11215, from Sure
|
|
|
|
Electronics (http://www.sureelectronics.net/). This board features
|
|
|
|
the MicroChip PIC32MX440F512H. See also
|
|
|
|
http://www.sureelectronics.net/goods.php?id=1168 for further
|
|
|
|
information about the Sure DB-DP11215 board.
|
|
|
|
|
2015-05-26 02:29:43 +02:00
|
|
|
config ARCH_BOARD_TEENSY_20
|
2012-04-16 17:45:33 +02:00
|
|
|
bool "PJRC Teensy++ 2.0 board"
|
|
|
|
depends on ARCH_CHIP_AT90USB1286
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
2012-04-16 17:45:33 +02:00
|
|
|
---help---
|
|
|
|
This is the port of NuttX to the PJRC Teensy++ 2.0 board. This board is
|
|
|
|
developed by http://pjrc.com/teensy/. The Teensy++ 2.0 is based
|
|
|
|
on an Atmel AT90USB1286 MCU.
|
|
|
|
|
2015-06-09 23:54:04 +02:00
|
|
|
config ARCH_BOARD_TEENSY_3X
|
|
|
|
bool "PJRC Teensy++ 3.1 board"
|
2015-06-10 19:45:53 +02:00
|
|
|
depends on ARCH_CHIP_MK20DX256VLH7 || ARCH_CHIP_MK20DX128VLH5
|
2015-06-09 23:54:04 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
---help---
|
|
|
|
This is the port of NuttX to the PJRC Teensy++ 2.0 board. This board is
|
|
|
|
developed by http://pjrc.com/teensy/. The Teensy++ 2.0 is based
|
|
|
|
on an Atmel AT90USB1286 MCU.
|
|
|
|
|
|
|
|
This is the port of NuttX to the Teensy-3.1 from PJRC
|
|
|
|
(https://www.pjrc.com/). The Teensy-3.1 features the Freescale
|
|
|
|
MK30DX256VLH7 chip (now NXP). The MK30DX256VLH7 is a 64-pin Cortex-M4
|
|
|
|
running at 72MHz. It has 256KiB of program FLASH memory and 64KiB of
|
|
|
|
SRAM. For more information about the Teensy 3.1, see
|
|
|
|
|
|
|
|
https://www.pjrc.com/teensy/teensy31.html
|
|
|
|
https://www.pjrc.com/store/teensy31.html
|
|
|
|
|
|
|
|
This board configuration can also be used with the older Teensy-3.0. The
|
|
|
|
Teensy-3.0 has the same schematic (although some pins are not used on the
|
|
|
|
Teensy-3.0). the primary difference is that the Teensy 3.0 has a
|
2015-06-10 19:45:53 +02:00
|
|
|
MK20DX128VLH5 with slightly less capability.
|
2015-06-09 23:54:04 +02:00
|
|
|
|
2015-05-07 15:06:50 +02:00
|
|
|
config ARCH_BOARD_TEENSY_LC
|
|
|
|
bool "Teensy LC"
|
|
|
|
depends on ARCH_CHIP_MKL25Z64
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
---help---
|
|
|
|
This is the configuration for the Teensy LC board.
|
|
|
|
See https://www.pjrc.com/teensy/teensyLC.html. The
|
|
|
|
Teensy LC is based on the Freescale KL25Z.
|
|
|
|
|
2014-03-10 18:25:06 +01:00
|
|
|
config ARCH_BOARD_TM4C123G_LAUNCHPAD
|
2014-03-18 18:21:31 +01:00
|
|
|
bool "Tiva TM4C123G LaunchPad"
|
|
|
|
depends on ARCH_CHIP_TM4C123GH6PMI
|
2014-03-10 18:25:06 +01:00
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
Tiva TM4C123G LaunchPad.
|
|
|
|
|
2015-02-12 00:30:38 +01:00
|
|
|
config ARCH_BOARD_TM4C1294_LAUNCHPAD
|
|
|
|
bool "Tiva EK-TM4C1294XL LaunchPad"
|
|
|
|
depends on ARCH_CHIP_TM4C1294NC
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
2019-01-01 00:07:09 +01:00
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
2015-02-12 00:30:38 +01:00
|
|
|
---help---
|
|
|
|
Tiva EK-TM4C1294XL LaunchPad.
|
|
|
|
|
2018-04-18 17:21:38 +02:00
|
|
|
config ARCH_BOARD_TMS570LS31X_USB_KIT
|
|
|
|
bool "TI TMS570LS31X_USB_KIT"
|
|
|
|
depends on ARCH_CHIP_TMS570LS3137ZWT
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
TI Hercules TMS570LS31xx Evaluation Kit (TMDS570ls31xx USB Kit)
|
|
|
|
featuring the Hercules TMS570LS3137ZWT chip.
|
|
|
|
|
2012-04-16 17:45:33 +02:00
|
|
|
config ARCH_BOARD_TWR_K60N512
|
2017-02-19 21:20:56 +01:00
|
|
|
bool "FreeScale TWR-K60N512 development board"
|
2012-04-16 17:45:33 +02:00
|
|
|
depends on ARCH_CHIP_MK60N512VMD100
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
2012-04-16 17:45:33 +02:00
|
|
|
---help---
|
|
|
|
Kinetis K60 Cortex-M4 MCU. This port uses the FreeScale TWR-K60N512
|
|
|
|
development board.
|
|
|
|
|
2017-02-19 21:20:56 +01:00
|
|
|
config ARCH_BOARD_TWR_K64F120M
|
|
|
|
bool "Freescale TWR-K64F120M development board"
|
|
|
|
depends on ARCH_CHIP_MK64FN1M0VMD12
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
Kinetis K64 Cortex-M4 MCU. This port uses the Freescale TWR-K64F120M
|
|
|
|
development board.
|
|
|
|
|
2016-01-31 15:49:30 +01:00
|
|
|
config ARCH_BOARD_U_BLOX_C027
|
|
|
|
bool "u-blox C027"
|
|
|
|
depends on ARCH_CHIP_LPC1768
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
---help---
|
|
|
|
u-blox GSM and GPS module evaluation board with NXP LPCExpresso
|
|
|
|
LPC1768. The GSM module is one of LISA-C200, LISA-U200 or SARA-G350.
|
|
|
|
The GPS module is one of MAX-M7 or MAX-M8.
|
|
|
|
|
2012-04-26 22:11:46 +02:00
|
|
|
config ARCH_BOARD_UBW32
|
|
|
|
bool "UBW32 v2.4 board from Sparkfun"
|
|
|
|
depends on ARCH_CHIP_PIC32MX460F512L
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
2012-04-26 22:11:46 +02:00
|
|
|
---help---
|
|
|
|
This is the port to the Sparkfun UBW32 board. This port uses the original v2.4
|
|
|
|
board which is based on the MicroChip PIC32MX460F512L. See
|
|
|
|
http://www.sparkfun.com/products/8971. This older version has been replaced
|
|
|
|
with this board http://www.sparkfun.com/products/9713. See also
|
|
|
|
http://www.schmalzhaus.com/UBW32/.
|
|
|
|
|
2012-04-16 17:45:33 +02:00
|
|
|
config ARCH_BOARD_US7032EVB1
|
|
|
|
bool "Hitachi SH-1/US7032EVB1 board"
|
|
|
|
depends on ARCH_CHIP_SH7032
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
2014-03-06 16:17:11 +01:00
|
|
|
select ARCH_HAVE_BUTTONS
|
2012-04-16 17:45:33 +02:00
|
|
|
---help---
|
|
|
|
This is a port of the Hitachi SH-1 on the Hitachi SH-1/US7032EVB1 board.
|
|
|
|
STATUS: Work has just began on this port.
|
|
|
|
|
2013-11-30 19:14:15 +01:00
|
|
|
config ARCH_BOARD_VIEWTOOL_STM32F107
|
2013-12-22 17:12:26 +01:00
|
|
|
bool "ViewTool STM32F103/F107"
|
2014-05-07 20:54:27 +02:00
|
|
|
depends on ARCH_CHIP_STM32F107VC || ARCH_CHIP_STM32F103VC
|
2013-11-30 19:14:15 +01:00
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
---help---
|
|
|
|
This port uses the ViewTool STM32F103/F107 V1.2 board. This
|
|
|
|
board may be fitted with either: (1) STM32F107VCT6 or (2) STM32F103VCT6.
|
|
|
|
See http://www.viewtool.com/ for further information.
|
|
|
|
|
2017-03-16 17:52:01 +01:00
|
|
|
config ARCH_BOARD_XMC4500RELAX
|
|
|
|
bool "Infineon XMC4500 Relax"
|
|
|
|
depends on ARCH_CHIP_XMC4500
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
select ARCH_HAVE_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
Infineon XMC4000 Relax Lite v1
|
|
|
|
|
2012-04-16 17:45:33 +02:00
|
|
|
config ARCH_BOARD_Z16F2800100ZCOG
|
|
|
|
bool "Zilog Z16F2800100ZCOG Development Kit"
|
2012-11-29 19:44:02 +01:00
|
|
|
depends on ARCH_CHIP_Z16F2811
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
2012-04-16 17:45:33 +02:00
|
|
|
---help---
|
2018-07-09 02:24:45 +02:00
|
|
|
z16f Microcontroller. This port uses the ZiLOG z16f2800100zcog
|
2012-04-16 17:45:33 +02:00
|
|
|
development kit and the Zilog ZDS-II Windows command line tools. The
|
|
|
|
development environment is Cygwin under WinXP.
|
|
|
|
|
|
|
|
config ARCH_BOARD_Z80SIM
|
|
|
|
bool "Z80 Instruction Set Simulator"
|
|
|
|
depends on ARCH_CHIP_Z80
|
2016-05-25 18:45:01 +02:00
|
|
|
select UART_SERIALDRIVER
|
2012-04-16 17:45:33 +02:00
|
|
|
---help---
|
2015-06-28 16:08:57 +02:00
|
|
|
z80 Microcontroller. This port uses a Z80 instruction set simulator
|
|
|
|
called z80sim. This port also uses the SDCC toolchain
|
|
|
|
(http://sdcc.sourceforge.net/") (verified with version 2.6.0).
|
2012-04-16 17:45:33 +02:00
|
|
|
|
|
|
|
config ARCH_BOARD_Z8ENCORE000ZCO
|
2012-11-28 18:50:28 +01:00
|
|
|
bool "ZiLOG Z8ENCORE000ZCO Development Kit"
|
2012-04-16 17:45:33 +02:00
|
|
|
depends on ARCH_CHIP_Z8F6403
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
2012-04-16 17:45:33 +02:00
|
|
|
---help---
|
2012-11-28 18:50:28 +01:00
|
|
|
z8Encore! Microcontroller. This port use the ZiLOG Z8ENCORE000ZCO
|
2012-04-16 17:45:33 +02:00
|
|
|
development kit, Z8F6403 part, and the Zilog ZDS-II Windows command line
|
|
|
|
tools. The development environment is Cygwin under WinXP.
|
|
|
|
|
2012-11-28 18:50:28 +01:00
|
|
|
config ARCH_BOARD_Z8F64200100KIT
|
2012-04-16 17:45:33 +02:00
|
|
|
bool "ZiLOG Z8F64200100KIT Development Kit"
|
2012-11-28 18:50:28 +01:00
|
|
|
depends on ARCH_CHIP_Z8F6423
|
2012-09-08 05:31:46 +02:00
|
|
|
select ARCH_HAVE_LEDS
|
2012-04-16 17:45:33 +02:00
|
|
|
---help---
|
2012-11-28 18:50:28 +01:00
|
|
|
z8Encore! Microcontroller. This port use the Zilog Z8F64200100KIT
|
2012-04-16 17:45:33 +02:00
|
|
|
development kit, Z8F6423 part, and the Zilog ZDS-II Windows command line
|
|
|
|
tools. The development environment is Cygwin under WinXP.
|
|
|
|
|
2012-12-29 00:40:54 +01:00
|
|
|
config ARCH_BOARD_ZP214XPA
|
|
|
|
bool "The0.net LPC2148 Development Board"
|
2014-03-03 22:40:18 +01:00
|
|
|
depends on ARCH_CHIP_LPC214X
|
2012-12-29 00:40:54 +01:00
|
|
|
---help---
|
|
|
|
This port is for the NXP LPC2148 as provided on the The0.net
|
|
|
|
ZPA213X/4XPA development board. Includes support for the
|
|
|
|
UG-2864AMBAG01 OLED also from The0.net
|
|
|
|
|
2013-02-26 15:09:43 +01:00
|
|
|
config ARCH_BOARD_ZKITARM
|
|
|
|
bool "Zilogic ZKit-ARM-1769 Development Kit"
|
|
|
|
depends on ARCH_CHIP_LPC1768
|
2013-03-02 01:11:43 +01:00
|
|
|
select ARCH_HAVE_LEDS
|
2013-02-26 15:09:43 +01:00
|
|
|
---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.
|
|
|
|
|
2012-04-16 17:45:33 +02:00
|
|
|
config ARCH_BOARD_SIM
|
|
|
|
bool "User mode simulation"
|
|
|
|
depends on ARCH_SIM
|
|
|
|
---help---
|
2012-04-17 23:23:10 +02:00
|
|
|
A user-mode port of NuttX to the x86 Linux/Cygwin platform is available.
|
2012-04-16 17:45:33 +02:00
|
|
|
The purpose of this port is primarily to support OS feature development.
|
|
|
|
This port does not support interrupts or a real timer (and hence no
|
|
|
|
round robin scheduler) Otherwise, it is complete.
|
|
|
|
|
|
|
|
config ARCH_BOARD_CUSTOM
|
|
|
|
bool "Custom development board"
|
|
|
|
---help---
|
|
|
|
Select this option if there is no directory for the board under configs/.
|
|
|
|
|
|
|
|
Don't see the board you want? You must first select the exact MCU part
|
|
|
|
number, then the boards supporting that part will be available for selection.
|
|
|
|
|
|
|
|
endchoice
|
|
|
|
|
2016-06-24 15:54:41 +02:00
|
|
|
if ARCH_BOARD_CUSTOM
|
2014-10-24 17:57:32 +02:00
|
|
|
menu "Custom Board Configuration"
|
|
|
|
|
2016-06-25 17:42:29 +02:00
|
|
|
config ARCH_BOARD_CUSTOM_NAME
|
|
|
|
string "Custom board name"
|
|
|
|
default ""
|
|
|
|
---help---
|
|
|
|
This is a name for the board. It is not used except to return the
|
|
|
|
information via the NSH uname command.
|
|
|
|
|
2014-01-16 17:42:54 +01:00
|
|
|
config ARCH_BOARD_CUSTOM_DIR
|
|
|
|
string "Custom board directory"
|
2016-06-25 17:42:29 +02:00
|
|
|
default ""
|
2014-01-16 17:42:54 +01:00
|
|
|
---help---
|
|
|
|
If the custom board configuration is selected, then it is necessary
|
|
|
|
to also tell the build system where it can find the board directory
|
2015-05-22 19:39:19 +02:00
|
|
|
for the custom board.
|
|
|
|
|
2017-05-11 21:35:56 +02:00
|
|
|
In this case, the board directory is assume to lie outside the
|
2015-05-22 19:39:19 +02:00
|
|
|
NuttX directory. The provided path must then be a full, absolute
|
|
|
|
path to some location outside of the NuttX source tree (like
|
2014-01-16 17:42:54 +01:00
|
|
|
"~/projects/myboard").
|
|
|
|
|
2015-12-08 17:05:15 +01:00
|
|
|
config ARCH_BOARD_CUSTOM_DIR_RELPATH
|
|
|
|
bool "Relative custom board directory"
|
2016-06-24 15:45:59 +02:00
|
|
|
default y
|
2015-12-08 17:05:15 +01:00
|
|
|
---help---
|
|
|
|
Specifies that the board directory is relative to the NuttX directory.
|
|
|
|
|
2014-10-24 17:57:32 +02:00
|
|
|
config BOARD_CUSTOM_LEDS
|
|
|
|
bool "Custom board LEDs"
|
|
|
|
default n
|
|
|
|
select ARCH_HAVE_LEDS
|
|
|
|
|
|
|
|
config BOARD_CUSTOM_BUTTONS
|
|
|
|
bool "Custom board buttons"
|
|
|
|
default n
|
|
|
|
select ARCH_HAVE_BUTTONS
|
2014-10-30 15:18:58 +01:00
|
|
|
select ARCH_BUTTONS
|
2014-10-24 17:57:32 +02:00
|
|
|
|
|
|
|
config BOARD_CUSTOM_IRQBUTTONS
|
|
|
|
bool "Custom Board IRQ buttons"
|
|
|
|
default n
|
|
|
|
depends on BOARD_CUSTOM_BUTTONS
|
|
|
|
select ARCH_HAVE_IRQBUTTONS
|
|
|
|
select ARCH_IRQBUTTONS
|
|
|
|
|
|
|
|
config BOARD_CUSTOM_INTERRUPT
|
|
|
|
bool "Custom board PHY interrupts"
|
|
|
|
default n
|
|
|
|
depends on NETDEVICES
|
|
|
|
select ARCH_PHY_INTERRUPT if NETDEVICES
|
|
|
|
|
2016-06-24 15:45:59 +02:00
|
|
|
endmenu # Custom Board Configuration
|
2016-06-24 15:54:41 +02:00
|
|
|
endif #ARCH_BOARD_CUSTOM
|
2014-10-24 17:57:32 +02:00
|
|
|
|
2012-04-16 17:45:33 +02:00
|
|
|
config ARCH_BOARD
|
2014-01-16 23:37:23 +01:00
|
|
|
string
|
2014-10-20 20:00:37 +02:00
|
|
|
default "amber" if ARCH_BOARD_AMBER
|
2015-12-29 18:26:48 +01:00
|
|
|
default "arduino-mega2560" if ARCH_BOARD_ARDUINO_MEGA2560
|
2014-10-20 20:00:37 +02:00
|
|
|
default "arduino-due" if ARCH_BOARD_ARDUINO_DUE
|
|
|
|
default "avr32dev1" if ARCH_BOARD_AVR32DEV1
|
2016-11-01 21:42:54 +01:00
|
|
|
default "bambino-200e" if ARCH_BOARD_BAMBINO_200E
|
2014-10-20 20:00:37 +02:00
|
|
|
default "c5471evm" if ARCH_BOARD_C5471EVM
|
2017-03-22 16:46:17 +01:00
|
|
|
default "clicker2-stm32" if ARCH_BOARD_CLICKER2_STM32
|
2014-12-29 00:51:11 +01:00
|
|
|
default "cloudctrl" if ARCH_BOARD_CLOUDCTRL
|
2014-10-20 20:00:37 +02:00
|
|
|
default "demo9s12ne64" if ARCH_BOARD_DEMOS92S12NEC64
|
2014-12-26 15:37:27 +01:00
|
|
|
default "dk-tm4c129x" if ARCH_BOARD_DK_TM4C129X
|
2014-10-20 20:00:37 +02:00
|
|
|
default "ea3131" if ARCH_BOARD_EA3131
|
|
|
|
default "ea3152" if ARCH_BOARD_EA3152
|
|
|
|
default "eagle100" if ARCH_BOARD_EAGLE100
|
|
|
|
default "efm32-g8xx-stk" if ARCH_BOARD_EFM32G8XXSTK
|
2014-11-03 23:58:22 +01:00
|
|
|
default "efm32gg-stk3700" if ARCH_BOARD_EFM32GG_STK3700
|
2014-10-20 20:00:37 +02:00
|
|
|
default "ekk-lm3s9b96" if ARCH_BOARD_EKKLM3S9B96
|
2016-10-12 23:27:34 +02:00
|
|
|
default "esp32-core" if ARCH_BOARD_ESP32CORE
|
2014-10-20 20:00:37 +02:00
|
|
|
default "ez80f910200kitg" if ARCH_BOARD_EZ80F910200KITG
|
|
|
|
default "ez80f910200zco" if ARCH_BOARD_EZ80F910200ZCO
|
|
|
|
default "fire-stm32v2" if ARCH_BOARD_FIRE_STM32
|
2018-01-08 21:21:49 +01:00
|
|
|
default "flipnclick-pic32mz" if ARCH_BOARD_FLIPNCLICK_PIC32MZ
|
2018-01-07 00:06:50 +01:00
|
|
|
default "flipnclick-sam3x" if ARCH_BOARD_FLIPNCLICK_SAM3X
|
2018-05-02 21:14:32 +02:00
|
|
|
default "freedom-k28f" if ARCH_BOARD_FREEDOM_K28F
|
2016-07-01 23:42:21 +02:00
|
|
|
default "freedom-k64f" if ARCH_BOARD_FREEDOM_K64F
|
2017-02-08 00:41:34 +01:00
|
|
|
default "freedom-k66f" if ARCH_BOARD_FREEDOM_K66F
|
2014-10-20 20:00:37 +02:00
|
|
|
default "freedom-kl25z" if ARCH_BOARD_FREEDOM_KL25Z
|
2015-02-11 14:18:06 +01:00
|
|
|
default "freedom-kl26z" if ARCH_BOARD_FREEDOM_KL26Z
|
2018-10-30 16:38:50 +01:00
|
|
|
default "gapuino" if ARCH_BOARD_GAPUINO
|
2014-10-20 20:00:37 +02:00
|
|
|
default "hymini-stm32v" if ARCH_BOARD_HYMINI_STM32V
|
2018-04-12 17:31:09 +02:00
|
|
|
default "imxrt1050-evk" if ARCH_BOARD_IMXRT1050_EVK
|
2018-11-09 14:56:02 +01:00
|
|
|
default "imxrt1060-evk" if ARCH_BOARD_IMXRT1060_EVK
|
2014-10-20 20:00:37 +02:00
|
|
|
default "kwikstik-k40" if ARCH_BOARD_KWIKSTIK_K40
|
2019-01-22 22:21:58 +01:00
|
|
|
default "launchxl-cc1310" if ARCH_BOARD_LAUNCHXL_CC1310
|
2018-12-03 18:40:57 +01:00
|
|
|
default "launchxl-cc1312r1" if ARCH_BOARD_LAUNCHXL_CC1312R1
|
2015-12-16 00:19:35 +01:00
|
|
|
default "launchxl-tms57004" if ARCH_BOARD_LAUNCHXL_TMS57004
|
2017-08-02 14:05:07 +02:00
|
|
|
default "lc823450-xgevk" if ARCH_BOARD_LC823450_XGEVK
|
2014-10-20 20:00:37 +02:00
|
|
|
default "lincoln60" if ARCH_BOARD_LINCOLN60
|
|
|
|
default "lm3s6432-s2e" if ARCH_BOARD_LM3S6432S2E
|
|
|
|
default "lm3s6965-ek" if ARCH_BOARD_LM3S6965EK
|
|
|
|
default "lm3s8962-ek" if ARCH_BOARD_LM3S8962EK
|
|
|
|
default "lm4f120-launchpad" if ARCH_BOARD_LM4F120_LAUNCHPAD
|
|
|
|
default "lpc4330-xplorer" if ARCH_BOARD_LPC4330_XPLORER
|
2016-01-15 20:12:42 +01:00
|
|
|
default "lpc4337-ws" if ARCH_BOARD_LPC4337_WS
|
2014-11-26 22:18:24 +01:00
|
|
|
default "lpc4357-evb" if ARCH_BOARD_LPC4357_EVB
|
2015-09-29 15:53:49 +02:00
|
|
|
default "lpc4370-link2" if ARCH_BOARD_LPC4370_LINK2
|
2015-05-22 22:12:30 +02:00
|
|
|
default "lpcxpresso-lpc1115" if ARCH_BOARD_LPCXPRESSO_LPC1115
|
2014-10-20 20:00:37 +02:00
|
|
|
default "lpcxpresso-lpc1768" if ARCH_BOARD_LPCXPRESSO
|
2017-12-07 20:30:02 +01:00
|
|
|
default "lpcxpresso-lpc54628" if ARCH_BOARD_LPCXPRESSO_LPC54628
|
2014-10-20 20:00:37 +02:00
|
|
|
default "maple" if ARCH_BOARD_MAPLE
|
2018-11-17 20:23:03 +01:00
|
|
|
default "max32660-evsys" if ARCH_BOARD_MAX32660_EVSYS
|
2014-10-20 20:00:37 +02:00
|
|
|
default "mbed" if ARCH_BOARD_MBED
|
2017-11-18 17:57:25 +01:00
|
|
|
default "mcb1700" if ARCH_BOARD_MCB1700
|
2014-10-20 20:00:37 +02:00
|
|
|
default "mcu123-lpc214x" if ARCH_BOARD_MCU123_LPC214X
|
This is the initial commit the port to the SAMD5x/E5x MCU family and also support for the Adafruit Metro M4 board. It port is untested and unfinished. It currently will not even link due to some missing clock related logic.
Squashed commit of the following:
arch/arm/src/samd5e5: Clean-up EIC logic.
arch/arm/src/samd5e5: Fix some compilation issues; Still issues with the EIC logic from samd2x.
arch/arm/src/samd5e5: Fix some compilation issues; bring in some EIC logic from samd2x.
arch/arm/src/samd5e5: Add NVMCTRL header file, fix some compiler problems, misc. clean-up.
configs/metro-m4: Add LED support.
arch/arm/src/samd5e5: Bring in SAML21 clock configuration. This is a WIP; it cannot possible even compile yet.
arch/arm/src/samd5e5: Leverage Cortex-M4 interrupt and SysTick logic from the SAM3/4.
arch/arm/src/samd5e5: Add SERCOM utility function.
arch/arm/src/samd5e5: Bring all SERCOM USART logic from SAMD2L2 to SAMD5E5. This is a brute coy with nothing more than more that name changes and extension from 5 to 7 SERCOMs.
arch/arm/src/samd5e5: Add sam_config.h header file
arch/arm/src/samd5e5/: Add Generic Clock (GCLK) utility functions.
arch/arm/src/samd5e5: Add EVSYS register definition file
arch/arm/src/samd5e5 and configs/metro-m4: Use SERCOM3 for the Arduino serial shield as console.
arch/arm/src/samd5e5/chip: Add SERCOM USART, SPI, I2C master, and slave register defintions header files
arch/arm/src/samd5e5/chip: Add AES, PM, TRNG, and WDT header files.
arch/arm/src/samd5e5/chip: Add pin multiplexing header files.
Various fixes to configuration system; fix metro-m4/nsh defconfig file.
configs/metro-m4: Add initial support for the Adafruit Metro M4 board.
arch/arm/src/samd5e5: Add peripheral clock helpers.
arch/arm/src/samd5e5/chip: Add PAC register definition header file. Fix some errors in the memory map header file.
arch/arm/src/samd5e5: Add chip.h headerf file.
arch/arm/src/samd5e5: Add PORT register definitions and support from SAML21.
arch/arm/include/samd5e5: Add interrupt vector definitions.
arch/arm/src/samd5e5: Add some boilerplate files. Correct some typos.
arch/arm/src/samd5e5/chip/sam_eic.h: Add EIC register definitions.
arch/arm/src/samd5e5/chip: Add OSC32KCTRL and OSCCTRL register definitions.
arch/arm/src/samd5e5/chip: Add GCLK, MCLK, and RSTC header files.
arch/arm/src/samd5e5/chip/sam_cmcc.h: Add CMCC register definitions
arch/arm/src/samd5e5/chip/sam_supc.h: Add SUPC header file.
arch/arm/src/samd5e5: Add start-up logic.
arch/arm/src/samd5e5: Add Make.defs file
arch/arm/src/samd5e5/chip: Add memory map header file.
arch/arm/include/samd5e5: Add chip.h header file.
arch/arm/Kconfig and arch/arm/src/samd5e5/Kconfig: Add configuration logic for the SAMD5x/Ex family.
2018-07-26 20:08:58 +02:00
|
|
|
default "metro-m4" if ARCH_BOARD_METRO_M4
|
2014-10-20 20:00:37 +02:00
|
|
|
default "micropendous3" if ARCH_BOARD_MICROPENDOUS3
|
|
|
|
default "mirtoo" if ARCH_BOARD_MIRTOO
|
2019-02-07 16:41:18 +01:00
|
|
|
default "misoc" if ARCH_BOARD_MISOC_QEMU || ARCH_BOARD_MISOC_VERILATOR
|
2015-01-24 21:31:35 +01:00
|
|
|
default "moteino-mega" if ARCH_BOARD_MOTEINO_MEGA
|
2014-10-20 20:00:37 +02:00
|
|
|
default "ne64badge" if ARCH_BOARD_NE64BADGE
|
2018-11-18 14:51:24 +01:00
|
|
|
default "nrf52-generic" if ARCH_BOARD_NRF52_GENERIC
|
2014-10-20 20:00:37 +02:00
|
|
|
default "ntosd-dm320" if ARCH_BOARD_NTOSD_DM320
|
2017-10-07 01:38:04 +02:00
|
|
|
default "nucleo-144" if ARCH_BOARD_NUCLEO_144
|
|
|
|
default "nucleo-f072rb" if ARCH_BOARD_NUCLEO_F072RB
|
|
|
|
default "nucleo-f091rc" if ARCH_BOARD_NUCLEO_F091RC
|
2018-12-01 13:22:05 +01:00
|
|
|
default "nucleo-f103rb" if ARCH_BOARD_NUCLEO_F103RB
|
|
|
|
default "nucleo-f207zg" if ARCH_BOARD_NUCLEO_F207ZG
|
2018-10-05 15:02:49 +02:00
|
|
|
default "nucleo-f302r8" if ARCH_BOARD_NUCLEO_F302R8
|
2017-10-07 01:38:04 +02:00
|
|
|
default "nucleo-f303re" if ARCH_BOARD_NUCLEO_F303RE
|
2018-10-28 17:39:56 +01:00
|
|
|
default "nucleo-f303ze" if ARCH_BOARD_NUCLEO_F303ZE
|
2017-10-07 01:38:04 +02:00
|
|
|
default "nucleo-f334r8" if ARCH_BOARD_NUCLEO_F334R8
|
|
|
|
default "nucleo-f4x1re" if ARCH_BOARD_NUCLEO_F401RE || ARCH_BOARD_NUCLEO_F411RE
|
2019-03-15 19:45:13 +01:00
|
|
|
default "nucleo-f446re" if ARCH_BOARD_NUCLEO_F446RE
|
2017-10-07 01:38:04 +02:00
|
|
|
default "nucleo-f410rb" if ARCH_BOARD_NUCLEO_F410RB
|
2018-06-17 00:59:34 +02:00
|
|
|
default "nucleo-h743zi" if ARCH_BOARD_NUCLEO_H743ZI
|
2018-12-19 19:36:35 +01:00
|
|
|
default "nucleo-l073rz" if ARCH_BOARD_NUCLEO_L073RZ
|
2018-12-01 13:22:05 +01:00
|
|
|
default "nucleo-l152re" if ARCH_BOARD_NUCLEO_L152RE
|
2017-10-07 01:38:04 +02:00
|
|
|
default "nucleo-l432kc" if ARCH_BOARD_NUCLEO_L432KC
|
|
|
|
default "nucleo-l452re" if ARCH_BOARD_NUCLEO_L452RE
|
|
|
|
default "nucleo-l476rg" if ARCH_BOARD_NUCLEO_L476RG
|
|
|
|
default "nucleo-l496zg" if ARCH_BOARD_NUCLEO_L496ZG
|
2014-10-20 20:00:37 +02:00
|
|
|
default "nutiny-nuc120" if ARCH_BOARD_NUTINY_NUC120
|
2016-10-16 17:47:07 +02:00
|
|
|
default "nr5m100-nexys4" if ARCH_BOARD_NR5M100_NEXYS4
|
2014-10-20 20:00:37 +02:00
|
|
|
default "olimex-efm32g880f128-stk" if ARCH_BOARD_OLIMEX_EFM32G880F128_STK
|
|
|
|
default "olimex-lpc1766stk" if ARCH_BOARD_LPC1766STK
|
|
|
|
default "olimex-lpc2378" if ARCH_BOARD_OLIMEXLPC2378
|
|
|
|
default "olimex-lpc-h3131" if ARCH_BOARD_OLIMEX_LPC_H3131
|
|
|
|
default "olimex-stm32-h405" if ARCH_BOARD_OLIMEX_STM32H405
|
2016-01-18 05:12:48 +01:00
|
|
|
default "olimex-stm32-h407" if ARCH_BOARD_OLIMEX_STM32H407
|
2016-06-27 13:41:41 +02:00
|
|
|
default "olimex-stm32-e407" if ARCH_BOARD_OLIMEX_STM32E407
|
2014-10-20 20:00:37 +02:00
|
|
|
default "olimex-stm32-p107" if ARCH_BOARD_OLIMEX_STM32P107
|
|
|
|
default "olimex-stm32-p207" if ARCH_BOARD_OLIMEX_STM32P207
|
2016-12-21 17:45:36 +01:00
|
|
|
default "olimex-stm32-p407" if ARCH_BOARD_OLIMEX_STM32P407
|
2014-10-20 20:00:37 +02:00
|
|
|
default "olimex-strp711" if ARCH_BOARD_OLIMEX_STRP711
|
2015-03-21 01:00:10 +01:00
|
|
|
default "olimexino-stm32" if ARCH_BOARD_OLIMEXINO_STM32
|
2019-03-08 16:37:01 +01:00
|
|
|
default "omnibusf4" if ARCH_BOARD_OMNIBUSF4
|
2014-10-20 20:00:37 +02:00
|
|
|
default "open1788" if ARCH_BOARD_OPEN1788
|
2018-04-26 19:22:28 +02:00
|
|
|
default "or1k" if ARCH_BOARD_OR1K
|
2014-10-20 20:00:37 +02:00
|
|
|
default "p112" if ARCH_BOARD_P112
|
|
|
|
default "pcduino-a10" if ARCH_BOARD_PCDUINO_A10
|
2019-01-06 16:05:38 +01:00
|
|
|
default "beaglebone-black" if ARCH_BOARD_BEAGLEBONE_BLACK
|
2015-02-22 01:41:17 +01:00
|
|
|
default "pic32mx-starterkit" if ARCH_BOARD_PIC32MX_STARTERKIT
|
2014-10-20 20:00:37 +02:00
|
|
|
default "pic32mx7mmb" if ARCH_BOARD_PIC32MX7MMB
|
2015-02-22 17:53:24 +01:00
|
|
|
default "pic32mz-starterkit" if ARCH_BOARD_PIC32MZ_STARTERKIT
|
2014-10-20 20:00:37 +02:00
|
|
|
default "qemu-i486" if ARCH_BOARD_QEMU_I486
|
2016-02-29 20:16:39 +01:00
|
|
|
default "sabre-6quad" if ARCH_BOARD_SABRE_6QUAD
|
2015-09-05 20:13:12 +02:00
|
|
|
default "sama5d2-xult" if ARCH_BOARD_SAMA5D2_XULT
|
2014-10-20 20:00:37 +02:00
|
|
|
default "sama5d3x-ek" if ARCH_BOARD_SAMA5D3X_EK
|
|
|
|
default "sama5d3-xplained" if ARCH_BOARD_SAMA5D3_XPLAINED
|
|
|
|
default "sama5d4-ek" if ARCH_BOARD_SAMA5D4_EK
|
|
|
|
default "samd20-xplained" if ARCH_BOARD_SAMD20_XPLAINED
|
2015-06-21 15:48:46 +02:00
|
|
|
default "samd21-xplained" if ARCH_BOARD_SAMD21_XPLAINED
|
2015-05-18 21:16:32 +02:00
|
|
|
default "saml21-xplained" if ARCH_BOARD_SAML21_XPLAINED
|
2014-10-20 20:00:37 +02:00
|
|
|
default "sam3u-ek" if ARCH_BOARD_SAM3UEK
|
2016-12-04 14:06:17 +01:00
|
|
|
default "sam4cmp-db" if ARCH_BOARD_SAM4CMP_DB
|
2014-10-20 20:00:37 +02:00
|
|
|
default "sam4e-ek" if ARCH_BOARD_SAM4EEK
|
|
|
|
default "sam4l-xplained" if ARCH_BOARD_SAM4L_XPLAINED
|
|
|
|
default "sam4s-xplained" if ARCH_BOARD_SAM4S_XPLAINED
|
|
|
|
default "sam4s-xplained-pro" if ARCH_BOARD_SAM4S_XPLAINED_PRO
|
2015-11-18 20:54:57 +01:00
|
|
|
default "same70-xplained" if ARCH_BOARD_SAME70_XPLAINED
|
2015-03-06 15:56:44 +01:00
|
|
|
default "samv71-xult" if ARCH_BOARD_SAMV71_XULT
|
2014-10-20 20:00:37 +02:00
|
|
|
default "shenzhou" if ARCH_BOARD_SHENZHOU
|
|
|
|
default "skp16c26" if ARCH_BOARD_SKP16C26
|
2017-03-10 19:39:21 +01:00
|
|
|
default "photon" if ARCH_BOARD_PHOTON
|
2016-08-14 16:32:11 +02:00
|
|
|
default "stm32butterfly2" if ARCH_BOARD_STM32_BUTTERFLY2
|
2014-10-20 20:00:37 +02:00
|
|
|
default "stm32_tiny" if ARCH_BOARD_STM32_TINY
|
2017-12-20 14:48:59 +01:00
|
|
|
default "stm32f051-discovery" if ARCH_BOARD_STM32F051_DISCOVERY
|
2017-12-20 15:04:11 +01:00
|
|
|
default "stm32f072-discovery" if ARCH_BOARD_STM32F072_DISCOVERY
|
2016-05-18 21:33:17 +02:00
|
|
|
default "stm32f103-minimum" if ARCH_BOARD_STM32F103_MINIMUM
|
2014-10-20 20:00:37 +02:00
|
|
|
default "stm3210e-eval" if ARCH_BOARD_STM3210E_EVAL
|
|
|
|
default "stm3220g-eval" if ARCH_BOARD_STM3220G_EVAL
|
|
|
|
default "stm3240g-eval" if ARCH_BOARD_STM3240G_EVAL
|
|
|
|
default "stm32f3discovery" if ARCH_BOARD_STM32F3_DISCOVERY
|
2017-07-21 18:01:20 +02:00
|
|
|
default "stm32f334-disco" if ARCH_BOARD_STM32F334_DISCO
|
2014-10-20 20:00:37 +02:00
|
|
|
default "stm32f4discovery" if ARCH_BOARD_STM32F4_DISCOVERY
|
2016-05-21 02:12:05 +02:00
|
|
|
default "stm32f411e-disco" if ARCH_BOARD_STM32F411E_DISCO
|
2014-10-20 20:00:37 +02:00
|
|
|
default "stm32f429i-disco" if ARCH_BOARD_STM32F429I_DISCO
|
2015-07-16 19:41:40 +02:00
|
|
|
default "stm32f746g-disco" if ARCH_BOARD_STM32F746G_DISCO
|
2017-07-15 01:59:17 +02:00
|
|
|
default "stm32f769i-disco" if ARCH_BOARD_STM32F769I_DISCO
|
2016-06-17 16:13:22 +02:00
|
|
|
default "stm32f746-ws" if ARCH_BOARD_STM32F746_WS
|
2018-12-19 19:36:35 +01:00
|
|
|
default "b-l072z-lrwan1" if ARCH_BOARD_B_L072Z_LRWAN1
|
2017-07-09 19:48:28 +02:00
|
|
|
default "b-l475e-iot01a" if ARCH_BOARD_B_L475E_IOT01A
|
2016-03-25 21:21:24 +01:00
|
|
|
default "stm32l476vg-disco" if ARCH_BOARD_STM32L476VG_DISCO
|
2016-08-17 16:55:02 +02:00
|
|
|
default "stm32l476-mdk" if ARCH_BOARD_STM32L476_MDK
|
2018-08-13 15:16:33 +02:00
|
|
|
default "stm32l4r9ai-disco" if ARCH_BOARD_STM32L4R9AI_DISCO
|
2014-10-20 20:00:37 +02:00
|
|
|
default "stm32ldiscovery" if ARCH_BOARD_STM32L_DISCOVERY
|
|
|
|
default "stm32vldiscovery" if ARCH_BOARD_STM32VL_DISCOVERY
|
|
|
|
default "mikroe-stm32f4" if ARCH_BOARD_MIKROE_STM32F4
|
|
|
|
default "sure-pic32mx" if ARCH_BOARD_SUREPIC32MX
|
2015-05-26 02:29:43 +02:00
|
|
|
default "teensy-2.0" if ARCH_BOARD_TEENSY_20
|
2015-06-09 23:54:04 +02:00
|
|
|
default "teensy-3.x" if ARCH_BOARD_TEENSY_3X
|
2015-05-07 15:06:50 +02:00
|
|
|
default "teensy-lc" if ARCH_BOARD_TEENSY_LC
|
2014-10-20 20:00:37 +02:00
|
|
|
default "tm4c123g-launchpad" if ARCH_BOARD_TM4C123G_LAUNCHPAD
|
2015-02-12 00:30:38 +01:00
|
|
|
default "tm4c1294-launchpad" if ARCH_BOARD_TM4C1294_LAUNCHPAD
|
2018-04-18 17:21:38 +02:00
|
|
|
default "tms570ls31x-usb-kit" if ARCH_BOARD_TMS570LS31X_USB_KIT
|
2014-10-20 20:00:37 +02:00
|
|
|
default "twr-k60n512" if ARCH_BOARD_TWR_K60N512
|
2017-02-19 21:20:56 +01:00
|
|
|
default "twr-k64f120m" if ARCH_BOARD_TWR_K64F120M
|
2016-03-25 22:01:16 +01:00
|
|
|
default "u-blox-c027" if ARCH_BOARD_U_BLOX_C027
|
2014-10-20 20:00:37 +02:00
|
|
|
default "ubw32" if ARCH_BOARD_UBW32
|
|
|
|
default "us7032evb1" if ARCH_BOARD_US7032EVB1
|
|
|
|
default "viewtool-stm32f107" if ARCH_BOARD_VIEWTOOL_STM32F107
|
2017-03-16 17:52:01 +01:00
|
|
|
default "xmc4500-relax" if ARCH_BOARD_XMC4500RELAX
|
2014-10-20 20:00:37 +02:00
|
|
|
default "z16f2800100zcog" if ARCH_BOARD_Z16F2800100ZCOG
|
|
|
|
default "z80sim" if ARCH_BOARD_Z80SIM
|
|
|
|
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
|
2015-07-24 21:26:29 +02:00
|
|
|
default "moxa" if ARCH_BOARD_MOXA
|
2012-04-16 17:45:33 +02:00
|
|
|
|
2012-09-08 05:31:46 +02:00
|
|
|
comment "Common Board Options"
|
|
|
|
|
|
|
|
config ARCH_HAVE_LEDS
|
|
|
|
bool
|
|
|
|
|
|
|
|
config ARCH_LEDS
|
2016-10-11 22:29:27 +02:00
|
|
|
bool "Board LED Status support"
|
2012-09-08 05:31:46 +02:00
|
|
|
default y
|
|
|
|
depends on ARCH_HAVE_LEDS
|
|
|
|
---help---
|
|
|
|
Use board LEDs to show NuttX execution status state. Unique to boards that have LEDs
|
|
|
|
|
|
|
|
config ARCH_HAVE_BUTTONS
|
|
|
|
bool
|
|
|
|
|
|
|
|
config ARCH_BUTTONS
|
|
|
|
bool "Board button support"
|
|
|
|
default n
|
|
|
|
depends on ARCH_HAVE_BUTTONS
|
|
|
|
---help---
|
|
|
|
"Support interfaces to use buttons provided by the board."
|
|
|
|
|
2012-09-08 06:29:48 +02:00
|
|
|
config ARCH_HAVE_IRQBUTTONS
|
|
|
|
bool
|
|
|
|
|
2012-09-08 05:31:46 +02:00
|
|
|
config ARCH_IRQBUTTONS
|
|
|
|
bool "Button interrupt support"
|
|
|
|
default n
|
|
|
|
depends on ARCH_BUTTONS && ARCH_HAVE_IRQBUTTONS
|
|
|
|
---help---
|
|
|
|
"Support interrupts on button presses and releases."
|
|
|
|
|
|
|
|
comment "Board-Specific Options"
|
|
|
|
|
2016-06-24 15:45:59 +02:00
|
|
|
|
2012-07-11 00:27:51 +02:00
|
|
|
if ARCH_BOARD_AMBER
|
2012-04-16 17:45:33 +02:00
|
|
|
source "configs/amber/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
2015-12-29 18:26:48 +01:00
|
|
|
if ARCH_BOARD_ARDUINO_MEGA2560
|
|
|
|
source "configs/arduino-mega2560/Kconfig"
|
|
|
|
endif
|
2013-06-27 22:24:27 +02:00
|
|
|
if ARCH_BOARD_ARDUINO_DUE
|
|
|
|
source "configs/arduino-due/Kconfig"
|
|
|
|
endif
|
2012-07-11 00:27:51 +02:00
|
|
|
if ARCH_BOARD_AVR32DEV1
|
2012-04-16 17:45:33 +02:00
|
|
|
source "configs/avr32dev1/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
2016-11-01 21:42:54 +01:00
|
|
|
if ARCH_BOARD_BAMBINO_200E
|
|
|
|
source "configs/bambino-200e/Kconfig"
|
|
|
|
endif
|
2012-07-11 00:27:51 +02:00
|
|
|
if ARCH_BOARD_C5471EVM
|
2012-04-16 17:45:33 +02:00
|
|
|
source "configs/c5471evm/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
2017-03-22 16:46:17 +01:00
|
|
|
if ARCH_BOARD_CLICKER2_STM32
|
|
|
|
source "configs/clicker2-stm32/Kconfig"
|
|
|
|
endif
|
2014-12-29 00:51:11 +01:00
|
|
|
if ARCH_BOARD_CLOUDCTRL
|
|
|
|
source "configs/cloudctrl/Kconfig"
|
|
|
|
endif
|
2012-07-11 00:27:51 +02:00
|
|
|
if ARCH_BOARD_DEMOS92S12NEC64
|
2012-04-16 17:45:33 +02:00
|
|
|
source "configs/demo9s12ne64/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
2014-12-16 22:29:14 +01:00
|
|
|
if ARCH_BOARD_DK_TM4C129X
|
|
|
|
source "configs/dk-tm4c129x/Kconfig"
|
|
|
|
endif
|
2012-07-11 00:27:51 +02:00
|
|
|
if ARCH_BOARD_EA3131
|
2012-04-16 17:45:33 +02:00
|
|
|
source "configs/ea3131/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
|
|
|
if ARCH_BOARD_EA3152
|
2012-04-16 17:45:33 +02:00
|
|
|
source "configs/ea3152/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
|
|
|
if ARCH_BOARD_EAGLE100
|
2012-04-16 17:45:33 +02:00
|
|
|
source "configs/eagle100/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
2014-10-17 17:25:52 +02:00
|
|
|
if ARCH_BOARD_EFM32G8XXSTK
|
|
|
|
source "configs/efm32-g8xx-stk/Kconfig"
|
|
|
|
endif
|
2014-11-03 23:58:22 +01:00
|
|
|
if ARCH_BOARD_EFM32GG_STK3700
|
|
|
|
source "configs/efm32gg-stk3700/Kconfig"
|
|
|
|
endif
|
2013-02-22 22:24:11 +01:00
|
|
|
if ARCH_BOARD_EKKLM3S9B96
|
2012-06-30 02:53:54 +02:00
|
|
|
source "configs/ekk-lm3s9b96/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
2016-10-12 23:27:34 +02:00
|
|
|
if ARCH_BOARD_ESP32CORE
|
|
|
|
source "configs/esp32-core/Kconfig"
|
|
|
|
endif
|
2012-07-11 00:27:51 +02:00
|
|
|
if ARCH_BOARD_EZ80F910200KITG
|
2012-04-16 17:45:33 +02:00
|
|
|
source "configs/ez80f910200kitg/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
|
|
|
if ARCH_BOARD_EZ80F910200ZCO
|
2012-04-16 17:45:33 +02:00
|
|
|
source "configs/ez80f910200zco/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
2012-09-21 19:32:30 +02:00
|
|
|
if ARCH_BOARD_FIRE_STM32
|
2012-09-09 21:13:30 +02:00
|
|
|
source "configs/fire-stm32v2/Kconfig"
|
|
|
|
endif
|
2018-01-08 21:21:49 +01:00
|
|
|
if ARCH_BOARD_FLIPNCLICK_PIC32MZ
|
|
|
|
source "configs/flipnclick-pic32mz/Kconfig"
|
|
|
|
endif
|
2018-01-07 00:06:50 +01:00
|
|
|
if ARCH_BOARD_FLIPNCLICK_SAM3X
|
|
|
|
source "configs/flipnclick-sam3x/Kconfig"
|
|
|
|
endif
|
2018-05-02 21:14:32 +02:00
|
|
|
if ARCH_BOARD_FREEDOM_K28F
|
|
|
|
source "configs/freedom-k28f/Kconfig"
|
|
|
|
endif
|
2016-07-01 23:42:21 +02:00
|
|
|
if ARCH_BOARD_FREEDOM_K64F
|
|
|
|
source "configs/freedom-k64f/Kconfig"
|
|
|
|
endif
|
2017-02-08 00:41:34 +01:00
|
|
|
if ARCH_BOARD_FREEDOM_K66F
|
|
|
|
source "configs/freedom-k66f/Kconfig"
|
|
|
|
endif
|
2015-02-11 14:18:06 +01:00
|
|
|
if ARCH_BOARD_FREEDOM_KL25Z
|
|
|
|
source "configs/freedom-kl25z/Kconfig"
|
|
|
|
endif
|
|
|
|
if ARCH_BOARD_FREEDOM_KL26Z
|
|
|
|
source "configs/freedom-kl26z/Kconfig"
|
|
|
|
endif
|
2018-10-30 16:38:50 +01:00
|
|
|
if ARCH_BOARD_GAPUINO
|
|
|
|
source "configs/gapuino/Kconfig"
|
|
|
|
endif
|
2012-07-11 00:27:51 +02:00
|
|
|
if ARCH_BOARD_HYMINI_STM32V
|
2012-04-16 17:45:33 +02:00
|
|
|
source "configs/hymini-stm32v/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
2018-04-12 17:31:09 +02:00
|
|
|
if ARCH_BOARD_IMXRT1050_EVK
|
|
|
|
source "configs/imxrt1050-evk/Kconfig"
|
|
|
|
endif
|
2018-11-09 14:56:02 +01:00
|
|
|
if ARCH_BOARD_IMXRT1060_EVK
|
|
|
|
source "configs/imxrt1060-evk/Kconfig"
|
|
|
|
endif
|
2012-07-11 00:27:51 +02:00
|
|
|
if ARCH_BOARD_KWIKSTIK_K40
|
2012-04-16 17:45:33 +02:00
|
|
|
source "configs/kwikstik-k40/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
2019-01-22 22:21:58 +01:00
|
|
|
if ARCH_BOARD_LAUNCHXL_CC1310
|
|
|
|
source "configs/launchxl-cc1310/Kconfig"
|
|
|
|
endif
|
2018-12-03 18:40:57 +01:00
|
|
|
if ARCH_BOARD_LAUNCHXL_CC1312R1
|
|
|
|
source "configs/launchxl-cc1312r1/Kconfig"
|
|
|
|
endif
|
2015-12-16 00:19:35 +01:00
|
|
|
if ARCH_BOARD_LAUNCHXL_TMS57004
|
|
|
|
source "configs/launchxl-tms57004/Kconfig"
|
|
|
|
endif
|
2017-08-02 14:05:07 +02:00
|
|
|
if ARCH_BOARD_LC823450_XGEVK
|
|
|
|
source "configs/lc823450-xgevk/Kconfig"
|
|
|
|
endif
|
2012-07-11 00:27:51 +02:00
|
|
|
if ARCH_BOARD_LINCOLN60
|
2012-06-30 02:53:54 +02:00
|
|
|
source "configs/lincoln60/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
|
|
|
if ARCH_BOARD_LM3S6432S2E
|
2012-04-16 17:45:33 +02:00
|
|
|
source "configs/lm3s6432-s2e/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
|
|
|
if ARCH_BOARD_LM3S6965EK
|
2012-04-16 17:45:33 +02:00
|
|
|
source "configs/lm3s6965-ek/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
|
|
|
if ARCH_BOARD_LM3S8962EK
|
2012-04-16 17:45:33 +02:00
|
|
|
source "configs/lm3s8962-ek/Kconfig"
|
2013-03-01 22:41:29 +01:00
|
|
|
endif
|
|
|
|
if ARCH_BOARD_LM3S8962EK
|
|
|
|
source "configs/lm4f120-launchpad/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
|
|
|
if ARCH_BOARD_LPC4330_XPLORER
|
2012-07-04 00:42:27 +02:00
|
|
|
source "configs/lpc4330-xplorer/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
2016-01-15 20:12:42 +01:00
|
|
|
if ARCH_BOARD_LPC4337_WS
|
|
|
|
source "configs/lpc4337-ws/Kconfig"
|
|
|
|
endif
|
2014-11-26 22:18:24 +01:00
|
|
|
if ARCH_BOARD_LPC4357_EVB
|
|
|
|
source "configs/lpc4357-evb/Kconfig"
|
|
|
|
endif
|
2015-09-29 15:53:49 +02:00
|
|
|
if ARCH_BOARD_LPC4370_LINK2
|
|
|
|
source "configs/lpc4370-link2/Kconfig"
|
|
|
|
endif
|
2012-07-11 00:27:51 +02:00
|
|
|
if ARCH_BOARD_LPCXPRESSO
|
|
|
|
source "configs/lpcxpresso-lpc1768/Kconfig"
|
|
|
|
endif
|
2017-12-07 20:30:02 +01:00
|
|
|
if ARCH_BOARD_LPCXPRESSO_LPC54628
|
|
|
|
source "configs/lpcxpresso-lpc54628/Kconfig"
|
|
|
|
endif
|
2013-10-02 16:24:46 +02:00
|
|
|
if ARCH_BOARD_MAPLE
|
|
|
|
source "configs/maple/Kconfig"
|
|
|
|
endif
|
2018-11-17 20:23:03 +01:00
|
|
|
if ARCH_BOARD_MAX32660_EVSYS
|
|
|
|
source "configs/max32660-evsys/Kconfig"
|
|
|
|
endif
|
2012-07-11 00:27:51 +02:00
|
|
|
if ARCH_BOARD_MBED
|
2012-04-16 17:45:33 +02:00
|
|
|
source "configs/mbed/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
2017-11-18 17:57:25 +01:00
|
|
|
if ARCH_BOARD_MCB1700
|
|
|
|
source "configs/mcb1700/Kconfig"
|
|
|
|
endif
|
2014-03-03 22:40:18 +01:00
|
|
|
if ARCH_BOARD_MCU123_LPC214X
|
2012-04-16 17:45:33 +02:00
|
|
|
source "configs/mcu123-lpc214x/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
This is the initial commit the port to the SAMD5x/E5x MCU family and also support for the Adafruit Metro M4 board. It port is untested and unfinished. It currently will not even link due to some missing clock related logic.
Squashed commit of the following:
arch/arm/src/samd5e5: Clean-up EIC logic.
arch/arm/src/samd5e5: Fix some compilation issues; Still issues with the EIC logic from samd2x.
arch/arm/src/samd5e5: Fix some compilation issues; bring in some EIC logic from samd2x.
arch/arm/src/samd5e5: Add NVMCTRL header file, fix some compiler problems, misc. clean-up.
configs/metro-m4: Add LED support.
arch/arm/src/samd5e5: Bring in SAML21 clock configuration. This is a WIP; it cannot possible even compile yet.
arch/arm/src/samd5e5: Leverage Cortex-M4 interrupt and SysTick logic from the SAM3/4.
arch/arm/src/samd5e5: Add SERCOM utility function.
arch/arm/src/samd5e5: Bring all SERCOM USART logic from SAMD2L2 to SAMD5E5. This is a brute coy with nothing more than more that name changes and extension from 5 to 7 SERCOMs.
arch/arm/src/samd5e5: Add sam_config.h header file
arch/arm/src/samd5e5/: Add Generic Clock (GCLK) utility functions.
arch/arm/src/samd5e5: Add EVSYS register definition file
arch/arm/src/samd5e5 and configs/metro-m4: Use SERCOM3 for the Arduino serial shield as console.
arch/arm/src/samd5e5/chip: Add SERCOM USART, SPI, I2C master, and slave register defintions header files
arch/arm/src/samd5e5/chip: Add AES, PM, TRNG, and WDT header files.
arch/arm/src/samd5e5/chip: Add pin multiplexing header files.
Various fixes to configuration system; fix metro-m4/nsh defconfig file.
configs/metro-m4: Add initial support for the Adafruit Metro M4 board.
arch/arm/src/samd5e5: Add peripheral clock helpers.
arch/arm/src/samd5e5/chip: Add PAC register definition header file. Fix some errors in the memory map header file.
arch/arm/src/samd5e5: Add chip.h headerf file.
arch/arm/src/samd5e5: Add PORT register definitions and support from SAML21.
arch/arm/include/samd5e5: Add interrupt vector definitions.
arch/arm/src/samd5e5: Add some boilerplate files. Correct some typos.
arch/arm/src/samd5e5/chip/sam_eic.h: Add EIC register definitions.
arch/arm/src/samd5e5/chip: Add OSC32KCTRL and OSCCTRL register definitions.
arch/arm/src/samd5e5/chip: Add GCLK, MCLK, and RSTC header files.
arch/arm/src/samd5e5/chip/sam_cmcc.h: Add CMCC register definitions
arch/arm/src/samd5e5/chip/sam_supc.h: Add SUPC header file.
arch/arm/src/samd5e5: Add start-up logic.
arch/arm/src/samd5e5: Add Make.defs file
arch/arm/src/samd5e5/chip: Add memory map header file.
arch/arm/include/samd5e5: Add chip.h header file.
arch/arm/Kconfig and arch/arm/src/samd5e5/Kconfig: Add configuration logic for the SAMD5x/Ex family.
2018-07-26 20:08:58 +02:00
|
|
|
if ARCH_BOARD_METRO_M4
|
|
|
|
source "configs/metro-m4/Kconfig"
|
|
|
|
endif
|
2012-08-20 18:14:57 +02:00
|
|
|
if ARCH_BOARD_MICROPENDOUS3
|
2012-04-16 17:45:33 +02:00
|
|
|
source "configs/micropendous3/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
2013-05-05 01:57:02 +02:00
|
|
|
if ARCH_BOARD_MIKROE_STM32F4
|
|
|
|
source "configs/mikroe-stm32f4/Kconfig"
|
|
|
|
endif
|
2012-07-11 00:27:51 +02:00
|
|
|
if ARCH_BOARD_MIRTOO
|
2012-06-30 02:53:54 +02:00
|
|
|
source "configs/mirtoo/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
2019-02-07 16:41:18 +01:00
|
|
|
if ARCH_BOARD_MISOC_QEMU || ARCH_BOARD_MISOC_VERILATOR
|
2018-06-17 19:31:03 +02:00
|
|
|
source "configs/misoc/Kconfig"
|
|
|
|
endif
|
2015-01-24 21:31:35 +01:00
|
|
|
if ARCH_BOARD_MOTEINO_MEGA
|
|
|
|
source "configs/moteino-mega/Kconfig"
|
|
|
|
endif
|
2016-06-24 15:45:59 +02:00
|
|
|
if ARCH_BOARD_MOXA
|
|
|
|
source "configs/moxa/Kconfig"
|
|
|
|
endif
|
2012-07-11 00:27:51 +02:00
|
|
|
if ARCH_BOARD_NE64BADGE
|
2012-04-16 17:45:33 +02:00
|
|
|
source "configs/ne64badge/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
2018-11-18 14:51:24 +01:00
|
|
|
if ARCH_BOARD_NRF52_GENERIC
|
|
|
|
source "configs/nrf52-generic/Kconfig"
|
2018-03-26 18:37:32 +02:00
|
|
|
endif
|
2012-07-11 00:27:51 +02:00
|
|
|
if ARCH_BOARD_NTOSD_DM320
|
2012-04-16 17:45:33 +02:00
|
|
|
source "configs/ntosd-dm320/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
2017-10-07 01:38:04 +02:00
|
|
|
if ARCH_BOARD_NUCLEO_144
|
|
|
|
source "configs/nucleo-144/Kconfig"
|
|
|
|
endif
|
|
|
|
if ARCH_BOARD_NUCLEO_F072RB
|
|
|
|
source "configs/nucleo-f072rb/Kconfig"
|
|
|
|
endif
|
|
|
|
if ARCH_BOARD_NUCLEO_F091RC
|
|
|
|
source "configs/nucleo-f091rc/Kconfig"
|
|
|
|
endif
|
2018-12-01 13:22:05 +01:00
|
|
|
if ARCH_BOARD_NUCLEO_F103RB
|
|
|
|
source "configs/nucleo-f103rb/Kconfig"
|
|
|
|
endif
|
|
|
|
if ARCH_BOARD_NUCLEO_F207ZG
|
|
|
|
source "configs/nucleo-f207zg/Kconfig"
|
|
|
|
endif
|
2018-11-24 00:33:45 +01:00
|
|
|
if ARCH_BOARD_NUCLEO_F302R8
|
|
|
|
source "configs/nucleo-f302r8/Kconfig"
|
|
|
|
endif
|
2017-10-07 01:38:04 +02:00
|
|
|
if ARCH_BOARD_NUCLEO_F303RE
|
|
|
|
source "configs/nucleo-f303re/Kconfig"
|
|
|
|
endif
|
2018-10-28 17:39:56 +01:00
|
|
|
if ARCH_BOARD_NUCLEO_F303ZE
|
|
|
|
source "configs/nucleo-f303ze/Kconfig"
|
|
|
|
endif
|
2017-10-07 01:38:04 +02:00
|
|
|
if ARCH_BOARD_NUCLEO_F334R8
|
|
|
|
source "configs/nucleo-f334r8/Kconfig"
|
|
|
|
endif
|
|
|
|
if ARCH_BOARD_NUCLEO_F401RE || ARCH_BOARD_NUCLEO_F411RE
|
|
|
|
source "configs/nucleo-f4x1re/Kconfig"
|
|
|
|
endif
|
2019-03-15 19:45:13 +01:00
|
|
|
if ARCH_BOARD_NUCLEO_F44RE
|
|
|
|
source "configs/nucleo-f446re/Kconfig"
|
|
|
|
endif
|
2017-10-07 01:38:04 +02:00
|
|
|
if ARCH_BOARD_NUCLEO_F410RB
|
|
|
|
source "configs/nucleo-f410rb/Kconfig"
|
|
|
|
endif
|
2018-06-17 00:59:34 +02:00
|
|
|
if ARCH_BOARD_NUCLEO_H743ZI
|
|
|
|
source "configs/nucleo-h743zi/Kconfig"
|
|
|
|
endif
|
2018-12-19 19:36:35 +01:00
|
|
|
if ARCH_BOARD_NUCLEO_L073RZ
|
|
|
|
source "configs/nucleo-l073rz/Kconfig"
|
|
|
|
endif
|
2018-12-01 13:22:05 +01:00
|
|
|
if ARCH_BOARD_NUCLEO_L152RE
|
|
|
|
source "configs/nucleo-l152re/Kconfig"
|
|
|
|
endif
|
2017-10-07 01:38:04 +02:00
|
|
|
if ARCH_BOARD_NUCLEO_L432KC
|
|
|
|
source "configs/nucleo-l432kc/Kconfig"
|
|
|
|
endif
|
|
|
|
if ARCH_BOARD_NUCLEO_L452RE
|
|
|
|
source "configs/nucleo-l452re/Kconfig"
|
|
|
|
endif
|
|
|
|
if ARCH_BOARD_NUCLEO_L476RG
|
|
|
|
source "configs/nucleo-l476rg/Kconfig"
|
|
|
|
endif
|
|
|
|
if ARCH_BOARD_NUCLEO_L496ZG
|
|
|
|
source "configs/nucleo-l496zg/Kconfig"
|
|
|
|
endif
|
2013-02-16 19:13:12 +01:00
|
|
|
if ARCH_BOARD_NUTINY_NUC120
|
|
|
|
source "configs/nutiny-nuc120/Kconfig"
|
|
|
|
endif
|
2014-10-20 20:00:37 +02:00
|
|
|
if ARCH_BOARD_OLIMEX_EFM32G880F128_STK
|
|
|
|
source "configs/olimex-efm32g880f128-stk/Kconfig"
|
|
|
|
endif
|
2012-07-11 00:27:51 +02:00
|
|
|
if ARCH_BOARD_LPC1766STK
|
2012-04-16 17:45:33 +02:00
|
|
|
source "configs/olimex-lpc1766stk/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
|
|
|
if ARCH_BOARD_OLIMEXLPC2378
|
2012-04-16 17:45:33 +02:00
|
|
|
source "configs/olimex-lpc2378/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
2013-11-18 21:51:38 +01:00
|
|
|
if ARCH_BOARD_OLIMEX_LPC_H3131
|
|
|
|
source "configs/olimex-lpc-h3131/Kconfig"
|
|
|
|
endif
|
2014-06-03 18:34:36 +02:00
|
|
|
if ARCH_BOARD_OLIMEX_STM32H405
|
|
|
|
source "configs/olimex-stm32-h405/Kconfig"
|
|
|
|
endif
|
2016-01-18 05:12:48 +01:00
|
|
|
if ARCH_BOARD_OLIMEX_STM32H407
|
|
|
|
source "configs/olimex-stm32-h407/Kconfig"
|
|
|
|
endif
|
2016-06-27 13:41:41 +02:00
|
|
|
if ARCH_BOARD_OLIMEX_STM32E407
|
|
|
|
source "configs/olimex-stm32-e407/Kconfig"
|
|
|
|
endif
|
2012-09-08 04:10:56 +02:00
|
|
|
if ARCH_BOARD_OLIMEX_STM32P107
|
|
|
|
source "configs/olimex-stm32-p107/Kconfig"
|
|
|
|
endif
|
2013-10-24 16:48:04 +02:00
|
|
|
if ARCH_BOARD_OLIMEX_STM32P207
|
|
|
|
source "configs/olimex-stm32-p207/Kconfig"
|
|
|
|
endif
|
2016-12-21 17:45:36 +01:00
|
|
|
if ARCH_BOARD_OLIMEX_STM32P407
|
|
|
|
source "configs/olimex-stm32-p407/Kconfig"
|
|
|
|
endif
|
2012-07-11 00:27:51 +02:00
|
|
|
if ARCH_BOARD_OLIMEX_STRP711
|
2012-04-16 17:45:33 +02:00
|
|
|
source "configs/olimex-strp711/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
2015-03-21 01:00:10 +01:00
|
|
|
if ARCH_BOARD_OLIMEXINO_STM32
|
|
|
|
source "configs/olimexino-stm32/Kconfig"
|
|
|
|
endif
|
2019-03-08 16:37:01 +01:00
|
|
|
if ARCH_BOARD_OMNIBUSF4
|
|
|
|
source "configs/omnibusf4/Kconfig"
|
|
|
|
endif
|
2013-01-18 23:42:37 +01:00
|
|
|
if ARCH_BOARD_OPEN1788
|
|
|
|
source "configs/open1788/Kconfig"
|
|
|
|
endif
|
2018-04-26 19:22:28 +02:00
|
|
|
if ARCH_BOARD_OR1K
|
|
|
|
source "configs/or1k/Kconfig"
|
|
|
|
endif
|
2013-12-07 21:25:35 +01:00
|
|
|
if ARCH_BOARD_PCDUINO_A10
|
|
|
|
source "configs/pcduino-a10/Kconfig"
|
|
|
|
endif
|
2019-01-06 16:05:38 +01:00
|
|
|
if ARCH_BOARD_BEAGLEBONE_BLACK
|
|
|
|
source "configs/beaglebone-black/Kconfig"
|
|
|
|
endif
|
2015-02-22 01:41:17 +01:00
|
|
|
if ARCH_BOARD_PIC32MX_STARTERKIT
|
|
|
|
source "configs/pic32mx-starterkit/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
2014-03-01 19:00:56 +01:00
|
|
|
if ARCH_BOARD_PIC32MX7MMB
|
2012-04-22 21:50:33 +02:00
|
|
|
source "configs/pic32mx7mmb/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
2015-02-22 17:53:24 +01:00
|
|
|
if ARCH_BOARD_PIC32MZ_STARTERKIT
|
|
|
|
source "configs/pic32mz-starterkit/Kconfig"
|
|
|
|
endif
|
2012-07-11 00:27:51 +02:00
|
|
|
if ARCH_BOARD_QEMU_I486
|
2012-04-16 17:45:33 +02:00
|
|
|
source "configs/qemu-i486/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
2016-02-29 20:16:39 +01:00
|
|
|
if ARCH_BOARD_SABRE_6QUAD
|
|
|
|
source "configs/sabre-6quad/Kconfig"
|
|
|
|
endif
|
2015-09-05 20:13:12 +02:00
|
|
|
if ARCH_BOARD_SAMA5D2_XULT
|
|
|
|
source "configs/sama5d2-xult/Kconfig"
|
|
|
|
endif
|
2013-07-19 23:23:03 +02:00
|
|
|
if ARCH_BOARD_SAMA5D3X_EK
|
2014-06-10 22:23:57 +02:00
|
|
|
source "configs/sama5d3x-ek/Kconfig"
|
2013-07-19 23:23:03 +02:00
|
|
|
endif
|
2014-03-28 22:20:26 +01:00
|
|
|
if ARCH_BOARD_SAMA5D3_XPLAINED
|
|
|
|
source "configs/sama5d3-xplained/Kconfig"
|
|
|
|
endif
|
2014-06-06 20:37:36 +02:00
|
|
|
if ARCH_BOARD_SAMA5D4_EK
|
|
|
|
source "configs/sama5d4-ek/Kconfig"
|
|
|
|
endif
|
2014-02-13 00:50:58 +01:00
|
|
|
if ARCH_BOARD_SAMD20_XPLAINED
|
|
|
|
source "configs/samd20-xplained/Kconfig"
|
|
|
|
endif
|
2015-06-21 15:48:46 +02:00
|
|
|
if ARCH_BOARD_SAMD21_XPLAINED
|
|
|
|
source "configs/samd21-xplained/Kconfig"
|
|
|
|
endif
|
2015-05-18 21:16:32 +02:00
|
|
|
if ARCH_BOARD_SAML21_XPLAINED
|
|
|
|
source "configs/saml21-xplained/Kconfig"
|
|
|
|
endif
|
2012-07-11 00:27:51 +02:00
|
|
|
if ARCH_BOARD_SAM3UEK
|
2012-04-16 17:45:33 +02:00
|
|
|
source "configs/sam3u-ek/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
2016-12-04 14:06:17 +01:00
|
|
|
if ARCH_BOARD_SAM4CMP_DB
|
|
|
|
source "configs/sam4cmp-db/Kconfig"
|
|
|
|
endif
|
2014-03-10 22:18:46 +01:00
|
|
|
if ARCH_BOARD_SAM4EEK
|
|
|
|
source "configs/sam4e-ek/Kconfig"
|
|
|
|
endif
|
2013-06-03 23:11:56 +02:00
|
|
|
if ARCH_BOARD_SAM4L_XPLAINED
|
|
|
|
source "configs/sam4l-xplained/Kconfig"
|
|
|
|
endif
|
2013-06-12 00:29:59 +02:00
|
|
|
if ARCH_BOARD_SAM4S_XPLAINED
|
|
|
|
source "configs/sam4s-xplained/Kconfig"
|
|
|
|
endif
|
2014-04-22 01:34:05 +02:00
|
|
|
if ARCH_BOARD_SAM4S_XPLAINED_PRO
|
|
|
|
source "configs/sam4s-xplained-pro/Kconfig"
|
|
|
|
endif
|
2015-11-18 20:54:57 +01:00
|
|
|
if ARCH_BOARD_SAME70_XPLAINED
|
|
|
|
source "configs/same70-xplained/Kconfig"
|
|
|
|
endif
|
2015-03-06 15:56:44 +01:00
|
|
|
if ARCH_BOARD_SAMV71_XULT
|
|
|
|
source "configs/samv71-xult/Kconfig"
|
|
|
|
endif
|
2012-09-08 04:10:56 +02:00
|
|
|
if ARCH_BOARD_SHENZHOU
|
|
|
|
source "configs/shenzhou/Kconfig"
|
|
|
|
endif
|
2012-07-11 00:27:51 +02:00
|
|
|
if ARCH_BOARD_SKP16C26
|
2012-04-16 17:45:33 +02:00
|
|
|
source "configs/skp16c26/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
2017-03-10 19:39:21 +01:00
|
|
|
if ARCH_BOARD_PHOTON
|
|
|
|
source "configs/photon/Kconfig"
|
|
|
|
endif
|
2016-08-14 16:32:11 +02:00
|
|
|
if ARCH_BOARD_STM32_BUTTERFLY2
|
|
|
|
source "configs/stm32butterfly2/Kconfig"
|
|
|
|
endif
|
2013-05-28 22:24:17 +02:00
|
|
|
if ARCH_BOARD_STM32_TINY
|
|
|
|
source "configs/stm32_tiny/Kconfig"
|
|
|
|
endif
|
2017-12-20 14:48:59 +01:00
|
|
|
if ARCH_BOARD_STM32F051_DISCOVERY
|
|
|
|
source "configs/stm32f051-discovery/Kconfig"
|
2017-04-14 16:33:52 +02:00
|
|
|
endif
|
2017-12-20 15:04:11 +01:00
|
|
|
if ARCH_BOARD_STM32F072_DISCOVERY
|
|
|
|
source "configs/stm32f072-discovery/Kconfig"
|
|
|
|
endif
|
2016-05-18 21:33:17 +02:00
|
|
|
if ARCH_BOARD_STM32F103_MINIMUM
|
|
|
|
source "configs/stm32f103-minimum/Kconfig"
|
|
|
|
endif
|
2012-07-11 00:27:51 +02:00
|
|
|
if ARCH_BOARD_STM3210E_EVAL
|
2012-04-16 17:45:33 +02:00
|
|
|
source "configs/stm3210e-eval/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
|
|
|
if ARCH_BOARD_STM3220G_EVAL
|
2012-04-16 17:45:33 +02:00
|
|
|
source "configs/stm3220g-eval/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
|
|
|
if ARCH_BOARD_STM3240G_EVAL
|
2012-04-16 17:45:33 +02:00
|
|
|
source "configs/stm3240g-eval/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
2017-07-21 18:01:20 +02:00
|
|
|
if ARCH_BOARD_STM32F334_DISCO
|
|
|
|
source "configs/stm32f334-disco/Kconfig"
|
|
|
|
endif
|
2012-07-11 00:27:51 +02:00
|
|
|
if ARCH_BOARD_STM32F4_DISCOVERY
|
2012-04-16 17:45:33 +02:00
|
|
|
source "configs/stm32f4discovery/Kconfig"
|
2016-05-21 02:12:05 +02:00
|
|
|
endif
|
|
|
|
if ARCH_BOARD_STM32F411E_DISCO
|
|
|
|
source "configs/stm32f411e-disco/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
2013-12-12 16:25:31 +01:00
|
|
|
if ARCH_BOARD_STM32F429I_DISCO
|
2013-11-07 23:55:45 +01:00
|
|
|
source "configs/stm32f429i-disco/Kconfig"
|
|
|
|
endif
|
2015-07-16 19:41:40 +02:00
|
|
|
if ARCH_BOARD_STM32F746G_DISCO
|
|
|
|
source "configs/stm32f746g-disco/Kconfig"
|
|
|
|
endif
|
2017-07-15 01:59:17 +02:00
|
|
|
if ARCH_BOARD_STM32F769I_DISCO
|
|
|
|
source "configs/stm32f769i-disco/Kconfig"
|
|
|
|
endif
|
2018-12-19 19:36:35 +01:00
|
|
|
if ARCH_BOARD_B_L072Z_LRWAN1
|
|
|
|
source "configs/b-l072z-lrwan1/Kconfig"
|
|
|
|
endif
|
2017-07-09 19:48:28 +02:00
|
|
|
if ARCH_BOARD_B_L475E_IOT01A
|
|
|
|
source "configs/b-l475e-iot01a/Kconfig"
|
|
|
|
endif
|
2016-06-17 16:13:22 +02:00
|
|
|
if ARCH_BOARD_STM32F746_WS
|
|
|
|
source "configs/stm32f746-ws/Kconfig"
|
|
|
|
endif
|
2016-03-25 21:21:24 +01:00
|
|
|
if ARCH_BOARD_STM32L476VG_DISCO
|
|
|
|
source "configs/stm32l476vg-disco/Kconfig"
|
|
|
|
endif
|
2016-08-17 16:55:02 +02:00
|
|
|
if ARCH_BOARD_STM32L476_MDK
|
|
|
|
source "configs/stm32l476-mdk/Kconfig"
|
|
|
|
endif
|
2013-05-19 19:04:19 +02:00
|
|
|
if ARCH_BOARD_STM32L_DISCOVERY
|
|
|
|
source "configs/stm32ldiscovery/Kconfig"
|
|
|
|
endif
|
2014-01-13 00:59:38 +01:00
|
|
|
if ARCH_BOARD_STM32VL_DISCOVERY
|
|
|
|
source "configs/stm32vldiscovery/Kconfig"
|
|
|
|
endif
|
2012-07-11 00:27:51 +02:00
|
|
|
if ARCH_BOARD_SUREPIC32MX
|
2012-04-16 17:45:33 +02:00
|
|
|
source "configs/sure-pic32mx/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
2015-05-26 02:29:43 +02:00
|
|
|
if ARCH_BOARD_TEENSY_20
|
|
|
|
source "configs/teensy-2.0/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
2015-06-09 23:54:04 +02:00
|
|
|
if ARCH_BOARD_TEENSY_3X
|
|
|
|
source "configs/teensy-3.x/Kconfig"
|
|
|
|
endif
|
2015-05-07 15:06:50 +02:00
|
|
|
if ARCH_BOARD_TEENSY_LC
|
|
|
|
source "configs/teensy-lc/Kconfig"
|
|
|
|
endif
|
2014-03-10 18:25:06 +01:00
|
|
|
if ARCH_BOARD_TM4C123G_LAUNCHPAD
|
|
|
|
source "configs/tm4c123g-launchpad/Kconfig"
|
|
|
|
endif
|
2015-02-12 01:27:38 +01:00
|
|
|
if ARCH_BOARD_TM4C1294_LAUNCHPAD
|
|
|
|
source "configs/tm4c1294-launchpad/Kconfig"
|
|
|
|
endif
|
2018-04-18 17:21:38 +02:00
|
|
|
if ARCH_BOARD_TMS570LS31X_USB_KIT
|
|
|
|
source "configs/tms570ls31x-usb-kit/Kconfig"
|
|
|
|
endif
|
2012-07-11 00:27:51 +02:00
|
|
|
if ARCH_BOARD_TWR_K60N512
|
2012-04-16 17:45:33 +02:00
|
|
|
source "configs/twr-k60n512/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
2017-02-19 21:20:56 +01:00
|
|
|
if ARCH_BOARD_TWR_K64F120M
|
|
|
|
source "configs/twr-k64f120m/Kconfig"
|
|
|
|
endif
|
2016-01-31 15:49:30 +01:00
|
|
|
if ARCH_BOARD_U_BLOX_C027
|
|
|
|
source "configs/u-blox-c027/Kconfig"
|
|
|
|
endif
|
2012-07-11 00:27:51 +02:00
|
|
|
if ARCH_BOARD_UBW32
|
|
|
|
source "configs/ubw32/Kconfig"
|
|
|
|
endif
|
|
|
|
if ARCH_BOARD_US7032EVB1
|
2012-04-16 17:45:33 +02:00
|
|
|
source "configs/us7032evb1/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
2013-11-30 19:14:15 +01:00
|
|
|
if ARCH_BOARD_VIEWTOOL_STM32F107
|
|
|
|
source "configs/viewtool-stm32f107/Kconfig"
|
|
|
|
endif
|
2017-03-16 17:52:01 +01:00
|
|
|
if ARCH_BOARD_XMC4500RELAX
|
|
|
|
source "configs/xmc4500-relax/Kconfig"
|
|
|
|
endif
|
2012-07-11 00:27:51 +02:00
|
|
|
if ARCH_BOARD_Z16F2800100ZCOG
|
2012-04-16 17:45:33 +02:00
|
|
|
source "configs/z16f2800100zcog/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
|
|
|
if ARCH_BOARD_Z80SIM
|
2012-04-16 17:45:33 +02:00
|
|
|
source "configs/z80sim/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
|
|
|
if ARCH_BOARD_Z8ENCORE000ZCO
|
2012-04-16 17:45:33 +02:00
|
|
|
source "configs/z8encore000zco/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
2012-11-28 18:50:28 +01:00
|
|
|
if ARCH_BOARD_Z8F64200100KIT
|
2012-04-16 17:45:33 +02:00
|
|
|
source "configs/z8f64200100kit/Kconfig"
|
2012-07-11 00:27:51 +02:00
|
|
|
endif
|
2012-12-29 00:40:54 +01:00
|
|
|
if ARCH_BOARD_ZP214XPA
|
|
|
|
source "configs/zp214xpa/Kconfig"
|
|
|
|
endif
|
2013-02-26 15:09:43 +01:00
|
|
|
if ARCH_BOARD_ZKITARM
|
|
|
|
source "configs/zkit-arm-1769/Kconfig"
|
|
|
|
endif
|
2012-07-11 00:27:51 +02:00
|
|
|
if ARCH_BOARD_SIM
|
|
|
|
source "configs/sim/Kconfig"
|
|
|
|
endif
|
2016-06-29 19:53:00 +02:00
|
|
|
if ARCH_BOARD_CUSTOM
|
|
|
|
source "configs/dummy/Kconfig"
|
|
|
|
endif
|
2015-03-31 18:21:31 +02:00
|
|
|
|
2016-06-24 15:45:59 +02:00
|
|
|
config BOARD_CRASHDUMP
|
|
|
|
bool "Enable Board level logging of crash dumps"
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
If selected up_assert will call out to board_crashdump, in the case
|
|
|
|
of an assertion failure, prior to calling exit. Or in the
|
|
|
|
case of a hardfault prior to looping indefinitely. board_crashdump
|
|
|
|
then has a chance to save the state of the machine.
|
|
|
|
|
|
|
|
The purpose of board_crashdump is to save as much information as it can
|
|
|
|
about the cause of the fault and then most likely reset the system.
|
|
|
|
|
|
|
|
N.B. There is limited system resources that can be used, who knows
|
|
|
|
what memory is trashed? So all we can expect to do is save the
|
|
|
|
"machine state" in a place where on the next reset can write it
|
|
|
|
to more sophisticated storage in a sane operating environment.
|
|
|
|
|
2017-03-30 15:38:37 +02:00
|
|
|
config BOARD_ENTROPY_POOL
|
|
|
|
bool "Enable Board level storing of entropy pool structure"
|
|
|
|
default n
|
|
|
|
depends on CRYPTO_RANDOM_POOL
|
|
|
|
---help---
|
|
|
|
Entropy pool structure can be provided by board source.
|
|
|
|
Use for this is, for example, to allocate entropy pool
|
|
|
|
from special area of RAM which content is kept over
|
|
|
|
system reset.
|
|
|
|
|
|
|
|
config BOARD_INITRNGSEED
|
|
|
|
bool "Enable Board level initial seeding of entropy pool RNG"
|
|
|
|
default n
|
|
|
|
depends on CRYPTO_RANDOM_POOL
|
|
|
|
---help---
|
|
|
|
If enabled, entropy pool random number generator will call
|
|
|
|
board_init_rndseed() upon initialization. This function
|
|
|
|
can then provide early entropy seed to the pool through
|
|
|
|
entropy injection APIs provided at 'nuttx/random.h'.
|
|
|
|
#endif
|
|
|
|
|
2015-03-31 18:21:31 +02:00
|
|
|
config LIB_BOARDCTL
|
2015-05-24 18:27:37 +02:00
|
|
|
bool "Enable boardctl() interface"
|
2015-03-31 18:21:31 +02:00
|
|
|
default n
|
2015-07-03 14:53:32 +02:00
|
|
|
---help---
|
|
|
|
Enables support for the boardctl() interface. Architecture
|
|
|
|
specific logic must provide board_app_initialize() interface.
|
2015-03-31 21:21:25 +02:00
|
|
|
|
2015-03-31 23:00:23 +02:00
|
|
|
if LIB_BOARDCTL
|
|
|
|
|
2018-08-28 23:34:31 +02:00
|
|
|
config BOARDCTL_FINALINIT
|
|
|
|
bool "Enable board app final init"
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Enables support for the BOARDIOC_FINALINIT boardctl() command.
|
|
|
|
Architecture specific logic must provide board_app_finalinitialize()
|
|
|
|
interface.
|
|
|
|
|
2015-07-03 01:09:16 +02:00
|
|
|
config BOARDCTL_POWEROFF
|
2015-07-04 18:36:47 +02:00
|
|
|
bool "Enable power off interfaces"
|
2015-07-03 01:09:16 +02:00
|
|
|
default n
|
2015-07-03 14:53:32 +02:00
|
|
|
depends on ARCH_HAVE_POWEROFF
|
|
|
|
---help---
|
|
|
|
Enables support for the BOARDIOC_POWEROFF boardctl() command.
|
2015-07-04 18:36:47 +02:00
|
|
|
Architecture specific logic must provide the board_power_off()
|
|
|
|
interface.
|
|
|
|
|
|
|
|
config BOARDCTL_RESET
|
|
|
|
bool "Enable reset interfaces"
|
|
|
|
default n
|
|
|
|
depends on ARCH_HAVE_RESET
|
|
|
|
---help---
|
|
|
|
Enables support for the BOARDIOC_RESET boardctl() command.
|
|
|
|
Architecture specific logic must provide the board_reset()
|
2015-07-03 14:53:32 +02:00
|
|
|
interface.
|
2015-07-03 01:09:16 +02:00
|
|
|
|
2018-08-23 00:20:50 +02:00
|
|
|
config BOARD_RESET_ON_ASSERT
|
|
|
|
int "Enable Board Reset after assert"
|
|
|
|
default 0
|
|
|
|
depends on BOARDCTL_RESET
|
|
|
|
---help---
|
|
|
|
== 0 up_assert never reset the machine
|
|
|
|
>= 1 up_assert from interrupt handler or IDLE thread will reset the
|
|
|
|
machine
|
|
|
|
>= 2 up_assert from user or kernel thread will reset the machine.
|
|
|
|
The default behavior is just to kill the asserting thread.
|
|
|
|
|
2018-11-10 21:06:46 +01:00
|
|
|
config BOARD_ASSERT_RESET_VALUE
|
|
|
|
int "Board reset argument"
|
|
|
|
default 0
|
|
|
|
depends on BOARDCTL_RESET
|
|
|
|
---help---
|
|
|
|
Parameter that will be passed to board_reset() by when an
|
|
|
|
assertion occurs. This may be used by board_reset()
|
|
|
|
implementations to handle the reset differently for the
|
|
|
|
case of a crash.
|
|
|
|
|
2015-11-18 14:31:23 +01:00
|
|
|
config BOARDCTL_UNIQUEID
|
|
|
|
bool "Return board unique ID"
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Enables support for the BOARDIOC_UNIQUEID boardctl() command.
|
|
|
|
Architecture specific logic must provide the board_uniqueid()
|
|
|
|
interface.
|
|
|
|
|
|
|
|
config BOARDCTL_UNIQUEID_SIZE
|
|
|
|
int "Size of the board unique ID (bytes)"
|
|
|
|
default 16
|
|
|
|
depends on BOARDCTL_UNIQUEID
|
|
|
|
---help---
|
|
|
|
Provides the size of the memory buffer that must be provided by the
|
|
|
|
caller of board_uniqueid() in which to receive the board unique ID.
|
|
|
|
|
2015-12-13 15:13:15 +01:00
|
|
|
config BOARDCTL_APP_SYMTAB
|
|
|
|
bool "Enable application symbol table interfaces"
|
2015-08-23 20:17:10 +02:00
|
|
|
default n
|
|
|
|
---help---
|
2015-12-13 15:13:15 +01:00
|
|
|
Enables support for the BOARDIOC_APP_SYMTAB boardctl() command.
|
|
|
|
|
|
|
|
config BOARDCTL_OS_SYMTAB
|
|
|
|
bool "Enable kernel module symbol table interfaces"
|
|
|
|
default n
|
|
|
|
depends on MODULE
|
|
|
|
---help---
|
|
|
|
Enables support for the BOARDIOC_OS_SYMTAB boardctl() command.
|
2015-08-23 20:17:10 +02:00
|
|
|
|
2016-03-25 17:51:57 +01:00
|
|
|
config BOARDCTL_USBDEVCTRL
|
|
|
|
bool "Enable USB device controls"
|
|
|
|
default n
|
|
|
|
depends on USBDEV
|
|
|
|
---help---
|
|
|
|
Enables support for the BOARDIOC_USBDEV_CONTROL boardctl() command.
|
|
|
|
|
2019-03-04 21:22:50 +01:00
|
|
|
config BOARDCTL_TESTSET
|
|
|
|
bool "Architecture-specific test/set operation"
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Enables support for the BOARDIOC_SPINLOCK boardctl() command.
|
|
|
|
Architecture specific logic must provide up_testset() interface.
|
|
|
|
|
2015-03-31 23:00:23 +02:00
|
|
|
config BOARDCTL_IOCTL
|
|
|
|
bool "Board-specific boardctl() commands"
|
|
|
|
default n
|
2015-07-03 14:53:32 +02:00
|
|
|
---help---
|
|
|
|
Enables support for the BOARDIOC_POWEROFF boardctl() command.
|
|
|
|
Architecture specific logic must provide board_ioctl() interface.
|
2015-03-31 23:00:23 +02:00
|
|
|
|
|
|
|
endif # LIB_BOARDCTL
|