2007-03-23 03:24:38 +01:00
|
|
|
|
Board-Specific Configurations
|
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2015-06-29 21:08:42 +02:00
|
|
|
|
|
|
|
|
|
This directory contains the board support for logic for all boards supported
|
|
|
|
|
by NuttX. This directory is retained in a separate repository and is a Sub-
|
2019-08-05 15:24:57 +02:00
|
|
|
|
Module of NuttX and will appear as nuttx/boards when the NuttX repository
|
2015-06-29 21:08:42 +02:00
|
|
|
|
is cloned.
|
|
|
|
|
|
2019-08-05 15:24:57 +02:00
|
|
|
|
The nuttx/boards directory is a part of the internal OS. It should contain
|
2019-07-25 20:10:10 +02:00
|
|
|
|
only OS bring-up logic and driver initialization logic. THERE SHOULD BE NO
|
|
|
|
|
APPLICATION CALLABLE LOGIC IN THIS DIRECTORY.
|
2015-06-29 21:08:42 +02:00
|
|
|
|
|
|
|
|
|
If you have board-specific, application callable logic, that logic should not
|
|
|
|
|
go here. Please consider using a sub-directory under apps/platform instead.
|
|
|
|
|
|
2007-03-23 03:24:38 +01:00
|
|
|
|
Table of Contents
|
|
|
|
|
^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
|
o Board-Specific Configurations
|
|
|
|
|
o Summary of Files
|
2013-04-23 01:36:27 +02:00
|
|
|
|
o Configuration Variables
|
2013-12-21 01:25:36 +01:00
|
|
|
|
o Supported Boards
|
2007-03-23 03:24:38 +01:00
|
|
|
|
o Configuring NuttX
|
2012-09-01 17:33:33 +02:00
|
|
|
|
o Building Symbol Tables
|
2007-03-23 03:24:38 +01:00
|
|
|
|
|
|
|
|
|
Board-Specific Configurations
|
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2007-03-27 23:27:41 +02:00
|
|
|
|
The NuttX configuration consists of:
|
|
|
|
|
|
|
|
|
|
o Processor architecture specific files. These are the files contained
|
2019-08-17 02:26:33 +02:00
|
|
|
|
in the arch/<arch>/ directory.
|
2007-03-27 23:27:41 +02:00
|
|
|
|
|
2019-07-25 20:10:10 +02:00
|
|
|
|
o Chip/SoC specific files. Each processor architecture is embedded
|
|
|
|
|
in a chip or System-on-a-Chip (SoC) architecture. The full chip
|
|
|
|
|
architecture includes the processor architecture plus chip-specific
|
|
|
|
|
interrupt logic, general purpose I/O (GIO) logic, and specialized,
|
|
|
|
|
internal peripherals (such as UARTs, USB, etc.).
|
2007-03-27 23:27:41 +02:00
|
|
|
|
|
|
|
|
|
These chip-specific files are contained within chip-specific
|
2019-08-17 02:26:33 +02:00
|
|
|
|
sub-directories in the arch/<arch>/ directory and are selected
|
2007-03-27 23:27:41 +02:00
|
|
|
|
via the CONFIG_ARCH_name selection
|
|
|
|
|
|
|
|
|
|
o Board specific files. In order to be usable, the chip must be
|
|
|
|
|
contained in a board environment. The board configuration defines
|
|
|
|
|
additional properties of the board including such things as
|
|
|
|
|
peripheral LEDs, external peripherals (such as network, USB, etc.).
|
|
|
|
|
|
|
|
|
|
These board-specific configuration files can be found in the
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/<arch>/<chip>/<board>/ sub-directories and are
|
|
|
|
|
discussed in this README. Additional configuration information may be
|
|
|
|
|
available in board-specific README files at
|
|
|
|
|
boards/<arch>/<chip>/<board>/README.txt files.
|
2007-03-27 23:27:41 +02:00
|
|
|
|
|
2019-08-05 15:13:48 +02:00
|
|
|
|
The boards/ subdirectory contains configuration data for each board. These
|
2007-03-23 03:24:38 +01:00
|
|
|
|
board-specific configurations plus the architecture-specific configurations in
|
2007-03-27 23:27:41 +02:00
|
|
|
|
the arch/ subdirectory completely define a customized port of NuttX.
|
2007-03-23 03:24:38 +01:00
|
|
|
|
|
|
|
|
|
Directory Structure
|
|
|
|
|
^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2019-08-05 15:24:57 +02:00
|
|
|
|
The boards/ directory contains board specific configuration logic. Each
|
2019-08-17 02:26:33 +02:00
|
|
|
|
board must provide a subdirectory <board> under boards/ with the
|
2007-03-23 03:24:38 +01:00
|
|
|
|
following characteristics:
|
|
|
|
|
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
<board>
|
2012-03-10 19:57:44 +01:00
|
|
|
|
|-- README.txt
|
|
|
|
|
|-- include/
|
|
|
|
|
| `-- (board-specific header files)
|
|
|
|
|
|-- src/
|
|
|
|
|
| |-- Makefile
|
|
|
|
|
| `-- (board-specific source files)
|
|
|
|
|
|-- <config1-dir>
|
|
|
|
|
| |-- Make.defs
|
2017-04-26 18:12:13 +02:00
|
|
|
|
| `-- defconfig
|
2012-03-10 19:57:44 +01:00
|
|
|
|
|-- <config2-dir>
|
|
|
|
|
| |-- Make.defs
|
2017-04-26 18:12:13 +02:00
|
|
|
|
| `-- defconfig
|
2012-03-10 19:57:44 +01:00
|
|
|
|
...
|
2011-03-18 18:22:50 +01:00
|
|
|
|
|
2007-03-23 03:24:38 +01:00
|
|
|
|
Summary of Files
|
|
|
|
|
^^^^^^^^^^^^^^^^
|
2007-03-26 18:47:17 +02:00
|
|
|
|
|
2010-10-04 17:24:20 +02:00
|
|
|
|
README.txt -- This text file provides additional information unique to
|
|
|
|
|
each board configuration sub-directory.
|
|
|
|
|
|
2007-03-27 00:14:28 +02:00
|
|
|
|
include/ -- This directory contains board specific header files. This
|
2007-03-26 18:47:17 +02:00
|
|
|
|
directory will be linked as include/arch/board at configuration time and
|
|
|
|
|
can be included via '#include <arch/board/header.h>'. These header file
|
2019-08-17 02:26:33 +02:00
|
|
|
|
can only be included by files in arch/<arch>include/ and
|
|
|
|
|
arch/<arch>/src
|
2007-03-27 00:14:28 +02:00
|
|
|
|
|
|
|
|
|
src/ -- This directory contains board specific drivers. This
|
2019-08-17 02:26:33 +02:00
|
|
|
|
directory will be linked as arch/<arch>/src/board at configuration
|
2007-03-27 00:14:28 +02:00
|
|
|
|
time and will be integrated into the build system.
|
|
|
|
|
|
|
|
|
|
src/Makefile -- This makefile will be invoked to build the board specific
|
|
|
|
|
drivers. It must support the following targets: libext$(LIBEXT), clean,
|
|
|
|
|
and distclean.
|
2007-03-23 03:24:38 +01:00
|
|
|
|
|
2008-02-07 15:41:11 +01:00
|
|
|
|
A board may have various different configurations using these common source
|
2017-04-26 18:12:13 +02:00
|
|
|
|
files. Each board configuration is described by two files: Make.defs and
|
|
|
|
|
defconfig. Typically, each set of configuration files is retained in a
|
|
|
|
|
separate configuration sub-directory (<config1-dir>, <config2-dir>, .. in
|
|
|
|
|
the above diagram).
|
2008-02-07 15:41:11 +01:00
|
|
|
|
|
2007-03-23 03:24:38 +01:00
|
|
|
|
Make.defs -- This makefile fragment provides architecture and
|
|
|
|
|
tool-specific build options. It will be included by all other
|
|
|
|
|
makefiles in the build (once it is installed). This make fragment
|
|
|
|
|
should define:
|
|
|
|
|
|
2012-03-10 19:57:44 +01:00
|
|
|
|
Tools: CC, LD, AR, NM, OBJCOPY, OBJDUMP
|
|
|
|
|
Tool options: CFLAGS, LDFLAGS
|
2007-03-23 03:24:38 +01:00
|
|
|
|
|
|
|
|
|
When this makefile fragment runs, it will be passed TOPDIR which
|
|
|
|
|
is the path to the root directory of the build. This makefile
|
2012-11-15 18:43:29 +01:00
|
|
|
|
fragment should include:
|
|
|
|
|
|
|
|
|
|
$(TOPDIR)/.config : Nuttx configuration
|
|
|
|
|
$(TOPDIR)/tools/Config.mk : Common definitions
|
|
|
|
|
|
|
|
|
|
Definitions in the Make.defs file probably depend on some of the
|
|
|
|
|
settings in the .config file. For example, the CFLAGS will most likely be
|
2016-06-11 22:14:08 +02:00
|
|
|
|
different if CONFIG_DEBUG_FEATURES=y.
|
2007-03-23 03:24:38 +01:00
|
|
|
|
|
2012-11-15 18:43:29 +01:00
|
|
|
|
The included tools/Config.mk file contains additional definitions that may
|
2019-07-25 20:10:10 +02:00
|
|
|
|
be overridden in the architecture-specific Make.defs file as necessary:
|
2012-11-15 18:43:29 +01:00
|
|
|
|
|
|
|
|
|
COMPILE, ASSEMBLE, ARCHIVE, CLEAN, and MKDEP macros
|
|
|
|
|
|
2007-03-23 03:24:38 +01:00
|
|
|
|
defconfig -- This is a configuration file similar to the Linux
|
2008-02-07 15:41:11 +01:00
|
|
|
|
configuration file. In contains variable/value pairs like:
|
2007-03-23 03:24:38 +01:00
|
|
|
|
|
2012-03-10 19:57:44 +01:00
|
|
|
|
CONFIG_VARIABLE=value
|
2007-03-23 03:24:38 +01:00
|
|
|
|
|
|
|
|
|
This configuration file will be used at build time:
|
|
|
|
|
|
2012-03-10 19:57:44 +01:00
|
|
|
|
(1) as a makefile fragment included in other makefiles, and
|
|
|
|
|
(2) to generate include/nuttx/config.h which is included by
|
|
|
|
|
most C files in the system.
|
2007-03-23 03:24:38 +01:00
|
|
|
|
|
2013-04-23 01:36:27 +02:00
|
|
|
|
Configuration Variables
|
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2013-12-21 01:25:36 +01:00
|
|
|
|
At one time, this section provided a list of all NuttX configuration
|
|
|
|
|
variables. However, NuttX has since converted to use the kconfig-frontends
|
2019-09-24 17:52:09 +02:00
|
|
|
|
tools (See https://bitbucket.org/nuttx/tools/src/master/kconfig-frontends/.)
|
|
|
|
|
Now, the NuttX configuration is determined by a self-documenting set of
|
|
|
|
|
Kconfig files.
|
2013-12-21 01:25:36 +01:00
|
|
|
|
|
|
|
|
|
The current NuttX configuration variables are also documented in separate,
|
|
|
|
|
auto-generated configuration variable document. That configuration variable
|
|
|
|
|
document is generated using the kconfig2html tool that can be found in the
|
|
|
|
|
nuttx/tools directory. That tool analyzes the NuttX Kconfig files and
|
|
|
|
|
generates an excruciatingly boring HTML document.
|
|
|
|
|
|
|
|
|
|
The latest boring configuration variable documentation can be regenerated at
|
|
|
|
|
any time using that tool or, more appropriately, the wrapper script at
|
|
|
|
|
nuttx/tools/mkconfigvars.sh. That script will generate the file
|
|
|
|
|
nuttx/Documentation/NuttXConfigVariables.html.
|
|
|
|
|
|
|
|
|
|
The version of NuttXConfigVariables.html for the last released version of
|
|
|
|
|
NuttX can also be found online at:
|
|
|
|
|
http://nuttx.org/Documentation/NuttXConfigVariables.html.
|
2007-03-23 03:24:38 +01:00
|
|
|
|
|
|
|
|
|
Supported Boards
|
|
|
|
|
^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/avr/atmeta/amber
|
2012-03-10 19:57:44 +01:00
|
|
|
|
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.
|
2011-06-09 02:02:24 +02:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/sam34/arduino-due
|
2013-06-27 22:24:27 +02:00
|
|
|
|
This sub-directory holds board support for the Arduino DUE board featuring
|
|
|
|
|
the Atmel ATSAM3X8E MCU running at 84 MHz.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/avr/at32uc3/avr32dev1
|
2012-03-10 19:57:44 +01:00
|
|
|
|
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.
|
2010-10-04 17:24:20 +02:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32/axoloti
|
2019-06-02 20:38:41 +02:00
|
|
|
|
Support for the Axoloti synthesizer board based on the STMicro
|
|
|
|
|
STM32F427IGH6 MCU. See: http://www.axoloti.com/
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32f0l0g0/b-l072z-lrwan1
|
2018-12-19 19:36:35 +01:00
|
|
|
|
STMicro STM32L0 Discovery kit with LoRa/SigFox based on STM32L072CZ MCU.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/lpc43xx/bambino-200e
|
2016-11-01 21:42:54 +01:00
|
|
|
|
Micromint Bambino board. This board is based on the LPC4330FBD144.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/c5471/c5471evm
|
2012-03-10 19:57:44 +01:00
|
|
|
|
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-03-10 19:57:44 +01:00
|
|
|
|
This port is complete and verified.
|
2007-03-23 03:24:38 +01:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/tiva/launchxl_cc1310
|
2019-01-22 22:21:58 +01:00
|
|
|
|
Port to the 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
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/tiva/launchxl_cc1312r1
|
2019-01-22 22:21:58 +01:00
|
|
|
|
Port to the TI SimpleLink CC1312R1 LaunchPad Evaluation Kit (LAUNCHXL-CC1312R1)
|
|
|
|
|
featuring the SimpleLinkCC1312R1 chip.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32/clicker2-stm32
|
2017-03-22 16:46:17 +01:00
|
|
|
|
Mikroe Clicker2 STM32 board based on the STMicro STM32F407VGT6 MCU.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32/cloudctrl
|
2012-11-21 19:19:49 +01:00
|
|
|
|
Darcy's CloudController board. This is a small network relay development
|
|
|
|
|
board. Based on the Shenzhou IV development board design. It is based on
|
|
|
|
|
the STM32F107VC MCU.
|
|
|
|
|
|
2020-01-22 21:11:27 +01:00
|
|
|
|
boards/hc/m9s12/demo9s12ne64
|
2017-02-19 21:58:37 +01:00
|
|
|
|
NXP/FreeScale DMO9S12NE64 board based on the MC9S12NE64 hcs12 cpu. This
|
2012-03-10 19:57:44 +01:00
|
|
|
|
port uses the m9s12x GCC toolchain. STATUS: (Still) under development; it
|
|
|
|
|
is code complete but has not yet been verified.
|
2011-05-26 01:43:40 +02:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/tiva/dk-tm4c129x
|
2014-12-16 22:29:14 +01:00
|
|
|
|
This is the port of NuttX to the Tiva<76> DK-TM4C129x Connected Development Kit. The
|
|
|
|
|
Tiva<76> DK-TM4C129x features the TM4C129XNCZAD MCU.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/lpc31xx/ea3131
|
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-03-10 19:57:44 +01:00
|
|
|
|
STATUS: This port is complete and mature.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/lpc31xx/ea3152
|
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-03-10 19:57:44 +01: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.
|
2010-08-21 13:37:58 +02:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/tiva/eagle100
|
2012-11-06 14:36:51 +01:00
|
|
|
|
Micromint Eagle-100 Development board. This board is based on the
|
2012-03-10 19:57:44 +01: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.
|
2009-05-14 20:55:22 +02:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/efm32/efm32-g8xx-stk
|
2017-05-11 21:35:56 +02:00
|
|
|
|
The port of NuttX to the EFM32 Gecko Starter Kit (EFM32-G8XX-STK).
|
2014-11-03 23:58:22 +01:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/efm32/efm32gg-stk3700
|
2017-05-11 21:35:56 +02:00
|
|
|
|
The port of NuttX to the EFM32 Giant Gecko Starter Kit
|
2014-11-03 23:58:22 +01:00
|
|
|
|
(EFM32GG-STK3700).
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/tiva/ekk-lm3s9b96
|
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.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/xtensa/esp32/esp-core
|
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
|
|
|
|
|
nd peripherals are located on the data bus and/or the instruction bus of
|
|
|
|
|
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.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/z80/ez80/ez80f0910200kitg
|
2012-03-10 19:57:44 +01:00
|
|
|
|
ez80Acclaim! Microcontroller. This port use the Zilog ez80f0910200kitg
|
|
|
|
|
development kit, eZ80F091 part, and the Zilog ZDS-II Windows command line
|
|
|
|
|
tools. The development environment is Cygwin under WinXP.
|
2008-11-05 23:16:22 +01:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/z80/ez80/ez80f0910200zco
|
2012-03-10 19:57:44 +01:00
|
|
|
|
ez80Acclaim! Microcontroller. This port use the Zilog ez80f0910200zco
|
|
|
|
|
development kit, eZ80F091 part, and the Zilog ZDS-II Windows command line
|
|
|
|
|
tools. The development environment is Cygwin under WinXP.
|
2008-12-07 16:46:06 +01:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32/fire-stm32v2
|
2012-09-09 21:13:30 +02:00
|
|
|
|
A configuration for the M3 Wildfire STM32 board. This board is based on the
|
2012-09-21 19:32:30 +02:00
|
|
|
|
STM32F103VET6 chip. See http://firestm32.taobao.com . Version 2 and 3 of
|
|
|
|
|
the boards are supported but only version 2 has been tested.
|
2012-09-09 21:13:30 +02:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/mips/pic32mz/flipnclick-pic32mz
|
2018-01-08 21:21:49 +01:00
|
|
|
|
Board support for 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).
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/sam34/flipnclick-sam3x
|
2018-01-07 00:06:50 +01:00
|
|
|
|
Board support for 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.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/kinetis/freedom-k28f
|
2018-05-02 21:14:32 +02:00
|
|
|
|
This port uses the NXP/FreeScale FREEDOM-K28F development board. This
|
|
|
|
|
board uses the Kinetis K28F MK28FN2M0VMI15 Cortex-M4 MCU.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/kinetis/freedom-k64f
|
2017-02-19 21:58:37 +01:00
|
|
|
|
This port uses the NXP/FreeScale FREEDOM-K64F development board. This board
|
2016-07-02 15:56:43 +02:00
|
|
|
|
uses the Kinetis K64 MK64FN1M0VLL12 Cortex-M4 MCU.
|
2016-07-01 23:42:21 +02:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/kl/freedom-kl25z
|
|
|
|
|
boards/arm/kl/freedom-kl26z
|
2017-02-19 21:58:37 +01:00
|
|
|
|
These configurations are for the NXP/FreeScale Freedom KL25Z and very similar
|
2015-02-11 14:18:06 +01:00
|
|
|
|
KL26Z board. The Freedom-KL25Z features the K25Z120LE3AN chip; the
|
|
|
|
|
Freedom-KL26Z has the K26Z128VLH4 chip. These are separate configurations
|
|
|
|
|
because of minor differences in the on-board logic. Both include a
|
|
|
|
|
built-in SDA debugger.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32/hymini-stm32v
|
2012-03-10 19:57:44 +01:00
|
|
|
|
A configuration for the HY-Mini STM32v board. This board is based on the
|
|
|
|
|
STM32F103VCT chip.
|
2011-12-17 21:07:22 +01:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/kinetis/kwikstik-k40.
|
2017-02-19 21:58:37 +01:00
|
|
|
|
Kinetis K40 Cortex-M4 MCU. This port uses the NXP/FreeScale KwikStik-K40
|
2012-03-10 19:57:44 +01:00
|
|
|
|
development board.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/tms570/launchxl-tms57004
|
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
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/lpc17xx_40xx/lincoln60
|
2012-06-29 21:35:28 +02:00
|
|
|
|
NuttX port to the Micromint Lincoln 60 board.
|
2012-11-06 14:36:51 +01:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/tiva/lm3s6432-s2e
|
2012-03-10 19:57:44 +01:00
|
|
|
|
Stellaris RDK-S2E Reference Design Kit and the MDL-S2E Ethernet to
|
|
|
|
|
Serial module.
|
2011-08-15 16:55:36 +02:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/tiva/lm3s6965-ek
|
2012-11-06 14:36:51 +01:00
|
|
|
|
Stellaris LM3S6965 Evaluation Kit. This board is based on the
|
2012-03-10 19:57:44 +01: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.
|
2010-05-07 06:20:12 +02:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/tiva/lm3s8962-ek
|
2012-03-10 19:57:44 +01:00
|
|
|
|
Stellaris LMS38962 Evaluation Kit.
|
2011-05-26 01:43:40 +02:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/tiva/lm4f120-launchpad
|
2013-03-01 22:41:29 +01:00
|
|
|
|
This is the port of NuttX to the Stellaris LM4F120 LaunchPad. The
|
|
|
|
|
Stellaris<69> LM4F120 LaunchPad Evaluation Board is a low-cost evaluation
|
2014-03-10 18:25:06 +01:00
|
|
|
|
platform for ARM<52> Cortex<65>-M4F-based microcontrollers from Texas
|
2013-03-01 22:41:29 +01:00
|
|
|
|
Instruments.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/lpc17xx_40xx/lpcxpresso-lpc1768
|
2012-03-10 19:57:44 +01:00
|
|
|
|
Embedded Artists base board with NXP LPCExpresso LPC1768. This board
|
|
|
|
|
is based on the NXP LPC1768. The Code Red toolchain is used by default.
|
|
|
|
|
STATUS: Under development.
|
2011-04-10 20:44:31 +02:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/lpc54xx/lpcxpresso-lpc54628
|
2017-12-07 20:30:02 +01:00
|
|
|
|
NXP LPCExpresso LPC54628. This board is based on the NXP LPC54628.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/lpc43xx/lpc4330-xplorer
|
2012-07-04 16:19:49 +02:00
|
|
|
|
NuttX port to the LPC4330-Xplorer board from NGX Technologies featuring
|
|
|
|
|
the NXP LPC4330FET100 MCU
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/lpc43xx/lpc4337-ws
|
2016-01-15 20:12:42 +01:00
|
|
|
|
NuttX port to the WaveShare LPC4337-ws board featuring the NXP LPC4337JBD144
|
|
|
|
|
MCU.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/lpc43xx/lpc4357-evb
|
2014-11-26 23:44:25 +01:00
|
|
|
|
NuttX port to the LPC4357-EVB board from Embest featuring the NXP
|
|
|
|
|
LPC4357FET256 MCU. Based on the LPC4300 Xplorer port and provided by
|
|
|
|
|
Toby Duckworth.
|
2014-11-26 22:37:54 +01:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/lpc43xx/lpc4370-link2
|
2015-09-29 17:21:41 +02:00
|
|
|
|
NuttX port to the NXP LPC4370-Link2 development board featuring the NXP
|
|
|
|
|
LPC4370FET100 MCU. Based on the LPC4300 Xplorer port and provided by
|
|
|
|
|
Lok Tep.
|
|
|
|
|
|
2019-08-30 15:50:46 +02:00
|
|
|
|
boards/arm/lpc17xx_40xx/lx_cpu
|
|
|
|
|
This port uses the PiKRON LX_CPU board. See the
|
|
|
|
|
http://pikron.com/pages/products/cpu_boards/lx_cpu.html for further
|
|
|
|
|
information. This board features the NXP LPC4088 (compatible with
|
|
|
|
|
LPC1788) and Xilinx Spartan 6 XC6SLX9
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/z80/ez80/makerlisp
|
2019-06-04 19:12:17 +02:00
|
|
|
|
This port use the MakerLips machine based on an eZ80F091 ez80Acclaim!
|
|
|
|
|
Microcontroller, and the Zilog ZDS-II Windows command line tools. The
|
|
|
|
|
development environment is Cygwin under Windows. A Windows native
|
|
|
|
|
development environment is available but has not been verified.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32/maple
|
2013-09-13 20:45:33 +02:00
|
|
|
|
NuttX support 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)
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/max326xx/max32660-evsys
|
2018-11-17 20:23:03 +01:00
|
|
|
|
The configurations in this directory support the Maxim Integrated
|
|
|
|
|
MAX32660-EVSYS board.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/lpc17xx_40xx/mbed
|
2012-03-10 19:57:44 +01:00
|
|
|
|
The configurations in this directory support the mbed board (http://mbed.org)
|
|
|
|
|
that features the NXP LPC1768 microcontroller. This OS is also built
|
2012-10-06 01:01:51 +02:00
|
|
|
|
with the arm-nuttx-elf toolchain*. STATUS: Contributed.
|
2010-09-10 03:19:15 +02:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/lpc17xx_40xx/mcb1700
|
2017-11-18 17:57:25 +01:00
|
|
|
|
Board support for the Keil MCB1700
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/samd5e5/metro-m4
|
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
|
|
|
|
Th configurations in this directory are part of 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
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32/mikroe-stm32f4
|
2013-05-01 02:31:47 +02:00
|
|
|
|
This is the port of NuttX to the MikroElektronika Mikromedia for STM32F4
|
|
|
|
|
development board. Contributed by Ken Petit.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/misoc/lm32/misoc
|
2018-06-17 19:31:03 +02:00
|
|
|
|
This directory holds the port to NuttX running on a Qemu LM32 system.
|
|
|
|
|
You can find the Qemu setup at https://bitbucket.org/key2/qemu
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/lpc214x/mcu123-lpc214x
|
2012-03-10 19:57:44 +01:00
|
|
|
|
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-03-10 19:57:44 +01:00
|
|
|
|
toolchain*. The port supports serial, timer0, spi, and usb.
|
2007-04-25 02:09:44 +02:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/avr/at90usb/micropendous3
|
2012-03-10 19:57:44 +01:00
|
|
|
|
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.
|
2011-06-09 02:02:24 +02:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/mips/pic32mx/mirtoo
|
2012-06-20 02:04:56 +02:00
|
|
|
|
This is the port to the DTX1-4000L "Mirtoo" module. This module uses MicroChip
|
|
|
|
|
PIC32MX250F128D. See http://www.dimitech.com/ for further information.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/avr/atmega/moteino-mega
|
2015-01-31 21:10:53 +01:00
|
|
|
|
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.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/moxart/moxa
|
2015-07-29 22:12:15 +02:00
|
|
|
|
Moxa NP51x0 series of 2-port advanced RS-232/422/485 serial device servers.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/hc/mcs92s12ne6/ne64badge
|
2012-03-10 19:57:44 +01:00
|
|
|
|
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.
|
2011-02-25 19:46:06 +01:00
|
|
|
|
|
2019-12-16 19:35:45 +01:00
|
|
|
|
boards/arm/nrf52/nrf52-feather
|
|
|
|
|
Nuttx port to the Adafruit nRF52832 Feather board
|
|
|
|
|
|
|
|
|
|
boards/arm/nrf52/nrf52832-dk
|
|
|
|
|
Nuttx port to the Nordic nRF52832 Development Kit (PCA10040)
|
|
|
|
|
|
|
|
|
|
boards/arm/nrf52/nrf52840-dk
|
|
|
|
|
Nuttx port to the Nordic nRF52840 Development Kit (PCA10056)
|
|
|
|
|
|
|
|
|
|
boards/arm/nrf52/nrf52840-dongle
|
|
|
|
|
Nuttx port to the Nordic nRF52840 Dongle (PCA10059)
|
2018-03-26 18:37:32 +02:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/dm320/ntosd-dm320
|
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-03-10 19:57:44 +01:00
|
|
|
|
toolchain*: see
|
|
|
|
|
|
|
|
|
|
http://wiki.neurostechnology.com/index.php/OSD_1.0_Developer_Home
|
2012-11-06 14:36:51 +01:00
|
|
|
|
|
2012-03-10 19:57:44 +01:00
|
|
|
|
There are some differences between the Dev Board and the currently
|
|
|
|
|
available commercial v1.0 Boards. See
|
|
|
|
|
|
|
|
|
|
http://wiki.neurostechnology.com/index.php/OSD_Developer_Board_v1
|
2010-08-21 13:37:58 +02:00
|
|
|
|
|
2012-03-10 19:57:44 +01: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.
|
2007-03-23 03:24:38 +01:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32f7/nucleo-144
|
2016-06-08 15:52:19 +02:00
|
|
|
|
STMicro Nucleo-144 development board family. Included support for (1) the
|
|
|
|
|
Nucleo-F767ZG board featuring the STM32F746ZGT6U MCU. The STM32F746ZGT6U
|
|
|
|
|
is a 216MHz Cortex-M7 operation with 1024Kb Flash memory and 320Kb SRAM.
|
|
|
|
|
And (2) the Nucleo-F746ZG board featuring the STM32F767ZIT6 MCU. The
|
|
|
|
|
STM32F767ZIT6 is a 216MHz Cortex-M7 operation with 2048Kb Flash memory
|
|
|
|
|
and 512Kb SRAM.
|
2016-05-12 18:01:43 +02:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32f0l0g0/nucleo-f072rb
|
2017-04-18 18:07:03 +02:00
|
|
|
|
STMicro Nucleo F072RB board based on the STMicro STM32F072RBT6 MCU.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32/nucleo-f4x1re
|
2014-10-15 01:32:13 +02:00
|
|
|
|
STMicro ST Nucleo F401RE and F411RE boards. See
|
|
|
|
|
http://mbed.org/platforms/ST-Nucleo-F401RE and
|
|
|
|
|
http://developer.mbed.org/platforms/ST-Nucleo-F411RE for more
|
|
|
|
|
information about these boards.
|
2014-04-20 21:42:23 +02:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32/nucleo-f410rb
|
2017-09-25 20:59:39 +02:00
|
|
|
|
NuttX configuration for the STMicro NucleoF410RB board from ST Micro.
|
|
|
|
|
This board features the STM32F410RB 100MHz Cortex-M4 with 128 KB Flash
|
|
|
|
|
and 32 KB SRAM.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32/nucleo-f303re
|
2015-10-01 21:09:05 +02:00
|
|
|
|
STMicro ST Nucleo F303RE board. Contributed by Paul Alexander Patience.
|
2015-09-10 15:05:42 +02:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32f0l0g0/nucleo-l073rz
|
2018-12-19 19:36:35 +01:00
|
|
|
|
STMicro STM32L0 Discovery kit with LoRa/SigFox based on STM32L072CZ MCU.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/nuc1xx/nutiny-nuc120
|
2013-03-01 22:41:29 +01:00
|
|
|
|
This is the port of NuttX to the NuvoTon NuTiny-SDK-NUC120 board. This
|
|
|
|
|
board has the NUC120LE3AN chip with a built-in NuLink debugger.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/efm32/olimex-efm32g880f128-stk
|
2014-10-20 20:00:37 +02:00
|
|
|
|
This is the port of NuttX to the Olimex EFM32G880F128-STK development
|
|
|
|
|
board.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/lpc17xx_40xx/olimex-lpc1766stk
|
2012-03-10 19:57:44 +01:00
|
|
|
|
This port uses the Olimex LPC1766-STK board and a GNU GCC toolchain* under
|
|
|
|
|
Linux or Cygwin. STATUS: Complete and mature.
|
2010-11-06 18:01:13 +01:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/lpc2378/olimex-lpc2378
|
2012-10-06 01:01:51 +02:00
|
|
|
|
This port uses the Olimex-lpc2378 board and a GNU arm-nuttx-elf toolchain* under
|
2012-03-10 19:57:44 +01:00
|
|
|
|
Linux or Cygwin. STATUS: ostest and NSH configurations available.
|
|
|
|
|
This port for the NXP LPC2378 was contributed by Rommel Marcelo.
|
2010-08-21 13:37:58 +02:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32/olimex-stm32-h405
|
2014-06-03 18:34:36 +02:00
|
|
|
|
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.
|
|
|
|
|
Contributed by Martin Lederhilger.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32/olimex-stm32-h407
|
2016-01-18 15:03:03 +01:00
|
|
|
|
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 (144
|
|
|
|
|
pins). Contributed by Neil Hancock.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32/olimex-stm32-e407
|
2016-06-27 13:41:41 +02:00
|
|
|
|
Olimex STM32 E407 board based on the STMicro STM32F407ZGT6 (144pins).
|
|
|
|
|
Contributed by Mateusz Szafoni.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32/olimex-stm32-p107
|
2012-10-06 01:01:51 +02:00
|
|
|
|
This port uses the Olimex STM32-P107 board (STM32F107VC) and a GNU arm-nuttx-elf
|
2012-08-10 19:07:02 +02:00
|
|
|
|
toolchain* under Linux or Cygwin. See the https://www.olimex.com/dev/stm32-p107.html
|
2013-10-24 16:48:04 +02:00
|
|
|
|
for further information. Contributed by Max Holtzberg.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32/olimex-stm32-p207
|
2013-10-24 16:48:04 +02:00
|
|
|
|
This port uses the Olimex STM32-P207 board (STM32F207ZE) and a GNU arm-nuttx-elf
|
2015-03-21 01:00:10 +01:00
|
|
|
|
toolchain under Linux or Cygwin. See the https://www.olimex.com/dev/stm32-p207.html
|
2013-10-24 16:48:04 +02:00
|
|
|
|
for further information. Contributed by Martin Lederhilger.
|
2012-08-10 19:07:02 +02:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32/olimex-stm32-p407
|
2016-12-21 17:45:36 +01:00
|
|
|
|
This port uses the Olimex STM32-P407 board (STM32F407ZG) and a GNU arm-nuttx-elf
|
|
|
|
|
toolchain under Linux or Cygwin. See the https://www.olimex.com/dev/stm32-p407.html
|
|
|
|
|
for further information.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32/olimexino-stm32
|
2015-03-21 01:00:10 +01:00
|
|
|
|
This port uses the Olimexino STM32 board (STM32F103RBT6) and a GNU arm-nuttx-elf
|
|
|
|
|
toolchain* under Linux or Cygwin. See the http://www.olimex.com for further\
|
2018-07-09 02:24:45 +02:00
|
|
|
|
information. Contributed by David Sidrane.
|
2015-03-21 01:00:10 +01:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/str71x/olimex-strp711
|
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-03-10 19:57:44 +01: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.
|
2007-03-23 03:24:38 +01:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32/omnibusf4
|
2019-03-08 16:37:01 +01:00
|
|
|
|
Flight controllers compatible with the OMINBUSF4 Betaflight target
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/or1k/mor1kx/or1k
|
2018-04-26 19:22:28 +02:00
|
|
|
|
Generic OpenRISC board.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/a1x/pcduino-a10
|
2013-12-07 21:25:35 +01:00
|
|
|
|
This directory contains the port of NuttX to the pcDuino v1 board
|
|
|
|
|
See http://www.pcduino.com/ for information about pcDuino Lite, v1,
|
|
|
|
|
and v2. These boards are based around the Allwinner A10 Cortex-A8 CPU.
|
|
|
|
|
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-08-17 02:26:33 +02:00
|
|
|
|
boards/z80/z180/p112
|
2012-12-11 22:42:15 +01:00
|
|
|
|
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".
|
2011-10-10 21:40:56 +02:00
|
|
|
|
|
2012-12-15 17:03:45 +01:00
|
|
|
|
Dave Brooks was successfully funded through Kickstarter for and another
|
|
|
|
|
run of P112 boards in November of 2012.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32/photon
|
2017-03-10 20:11:53 +01:00
|
|
|
|
A configuration for the Photon Wifi board from Particle Devices
|
|
|
|
|
(https://www.particle.io). This board features the STM32F205RGY6 MCU from
|
|
|
|
|
STMicro.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/mips/pic32mx/pic32mx-starterkit
|
2012-04-22 21:50:33 +02:00
|
|
|
|
This directory contains the port of NuttX to the Microchip PIC32 Ethernet
|
2012-03-10 19:57:44 +01:00
|
|
|
|
Starter Kit (DM320004) with the Multimedia Expansion Board (MEB, DM320005).
|
2012-04-22 21:50:33 +02:00
|
|
|
|
See www.microchip.com for further information.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/mips/pic32mx/pic32mx7mmb
|
2012-04-22 21:50:33 +02:00
|
|
|
|
This directory will (eventually) contain the port of NuttX to the
|
|
|
|
|
Mikroelektronika PIC32MX7 Multimedia Board (MMB). See
|
|
|
|
|
http://www.mikroe.com/ for further information.
|
2012-03-10 19:57:44 +01:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/mips/pic32mz/pic32mz-starterkit
|
2015-02-22 17:53:24 +01:00
|
|
|
|
This directory contains 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.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/lpc17xx_40xx/pnev5180b
|
2019-06-17 23:57:42 +02:00
|
|
|
|
NXP Semiconductors' PN5180 NFC Frontend Development Kit. This board is
|
|
|
|
|
based on the NXP LPC1769 MCU.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/x86/qemu/qemu-i486
|
2012-03-10 19:57:44 +01:00
|
|
|
|
Port of NuttX to QEMU in i486 mode. This port will also run on real i486
|
|
|
|
|
hardwared (Google the Bifferboard).
|
2011-05-12 19:42:01 +02:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/risc-v/nr5m100/nr5m100-nexys4
|
2016-10-16 17:47:07 +02:00
|
|
|
|
Port of NuttX to RISC-V platform on IQ-Analog NR5M100 RISC-V FPGA platform.
|
|
|
|
|
|
2019-08-14 16:47:35 +02:00
|
|
|
|
boards/arm/s32k1xx/s32k118evb
|
|
|
|
|
This directory holds the port of NuttX to the NXP S32K118EVB board
|
|
|
|
|
featuring the S32K118 Cortex-M0+.
|
|
|
|
|
|
2019-08-19 17:14:14 +02:00
|
|
|
|
boards/arm/s32k1xx/s32k146evb
|
|
|
|
|
This directory holds the port of NuttX to the NXP S32K146EVB board
|
|
|
|
|
featuring the S32K146 Cortex-M4F.
|
|
|
|
|
|
2019-08-21 01:02:29 +02:00
|
|
|
|
boards/arm/s32k1xx/s32k148evb
|
|
|
|
|
This directory holds the port of NuttX to the NXP S32K148EVB board
|
|
|
|
|
featuring the S32K148 Cortex-M4F.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/imx6/sabre-6quad
|
2016-02-29 20:16:39 +01:00
|
|
|
|
This directory holds a port of NuttX to the NXP/Freescale Sabre board
|
|
|
|
|
featuring the iMX 6Quad CPU.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/sama5/sama5d2-xult
|
2015-09-05 20:13:12 +02:00
|
|
|
|
This is the port of NuttX to the Atmel SAMA5D2-Xplained Ultra development
|
|
|
|
|
board. This board features the Atmel SAMA5D27. See http://www.atmel.com.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/sama5/sama5d3x-ek
|
2013-07-31 18:46:13 +02:00
|
|
|
|
This is the port of NuttX to the Atmel SAMA5D3x-EK development boards
|
|
|
|
|
(where x=1,3,4, or 5). These boards feature the Atmel SAMA5D3
|
|
|
|
|
microprocessors. Four different SAMA5D3x-EK kits are available
|
|
|
|
|
|
|
|
|
|
- SAMA5D31-EK with the ATSAMA5D1 (http://www.atmel.com/devices/sama5d31.aspx)
|
|
|
|
|
- SAMA5D33-EK with the ATSAMA5D3 (http://www.atmel.com/devices/sama5d33.aspx)
|
|
|
|
|
- SAMA5D34-EK with the ATSAMA5D4 (http://www.atmel.com/devices/sama5d34.aspx)
|
|
|
|
|
- SAMA5D35-EK with the ATSAMA5D5 (http://www.atmel.com/devices/sama5d35.aspx)
|
|
|
|
|
|
|
|
|
|
The each consist of an identical base board with different plug-in modules
|
|
|
|
|
for each CPU. An option 7 inch LCD is also available. All four boards
|
|
|
|
|
are supported by NuttX with a simple reconfiguration of the processor
|
|
|
|
|
type.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/sama5/sama5d3-xplained
|
2014-03-28 22:20:26 +01:00
|
|
|
|
This is the port of NuttX to the Atmel SAMA5D3x-Xplained development board.
|
|
|
|
|
This board features the Atmel SAMA5D36. See
|
|
|
|
|
http://www.atmel.com/devices/sama5d36.aspx.
|
2013-07-19 23:23:03 +02:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/sama5/sama5d4-ek
|
2014-06-06 20:37:36 +02:00
|
|
|
|
This is the port of NuttX to the Atmel SAMA5D4-EK development board.
|
|
|
|
|
This board features the Atmel SAMA5D44. See http://www.atmel.com.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/samd2l2/samd20-xplained
|
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
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/samd2l2/samd21-xplained
|
2015-06-21 15:48:46 +02:00
|
|
|
|
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).
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/sam34/sam3u-ek
|
2012-03-10 19:57:44 +01:00
|
|
|
|
The port of NuttX to the Atmel SAM3U-EK development board.
|
2008-11-05 23:16:22 +01:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/sam34/sam4cmp-db
|
2016-12-04 14:06:17 +01:00
|
|
|
|
The port of NuttX to the Atmel SAM4CMP-DB development board.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/sam34/sam4e-ek
|
2014-03-10 22:18:46 +01:00
|
|
|
|
The port of NuttX to the Atmel SAM4E-EK development board. This board
|
|
|
|
|
features the SAM4E16 MCU running at up to 120MHz.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/sam34/sam4l-xplained
|
2013-06-03 23:11:56 +02:00
|
|
|
|
The port of NuttX to the Atmel SAM4L-Xplained development board.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/sam34/sam4s-xplained
|
2014-04-22 01:34:05 +02:00
|
|
|
|
The port of NuttX to the Atmel SAM4S-Xplained development board.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/sam34/sam4s-xplained-pro
|
2014-04-22 01:34:05 +02:00
|
|
|
|
The port of NuttX to the Atmel SAM4S-Xplained Pro development board.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/samv7/same70-xplained
|
2015-11-18 20:54:57 +01:00
|
|
|
|
The port of NuttX to the Atmel SAME70 Xplained evaluation board.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/samv7/samv71-xult
|
2015-03-06 15:56:44 +01:00
|
|
|
|
The port of NuttX to the Atmel SAMV71 Xplained Ultra evaluation board.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/sim/sim/sim
|
2012-03-10 19:57:44 +01:00
|
|
|
|
A user-mode port of NuttX to the x86 Linux platform is available.
|
|
|
|
|
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.
|
2008-11-05 23:16:22 +01:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32/shenzhou
|
2012-09-07 21:29:21 +02:00
|
|
|
|
This is the port of NuttX to the Shenzhou development board from
|
|
|
|
|
www.armjishu.com. This board features the STMicro STM32F107VCT MCU.
|
|
|
|
|
|
2020-01-22 21:34:28 +01:00
|
|
|
|
boards/renesas/m16c/skp16c26
|
2012-03-10 19:57:44 +01:00
|
|
|
|
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.
|
2009-02-07 16:24:32 +01:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32/stm3210e-eval
|
2012-03-10 19:57:44 +01:00
|
|
|
|
STMicro STM3210E-EVAL development board based on the STMicro STM32F103ZET6
|
|
|
|
|
microcontroller (ARM Cortex-M3). This port uses the GNU Cortex-M3
|
|
|
|
|
toolchain.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32/stm3220g-eval
|
2012-04-16 17:45:33 +02:00
|
|
|
|
STMicro STM3220G-EVAL development board based on the STMicro STM32F407IG
|
|
|
|
|
microcontroller (ARM Cortex-M3).
|
2009-09-23 21:21:00 +02:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32/stm3240g-eval
|
2012-04-16 17:45:33 +02:00
|
|
|
|
STMicro STM3240G-EVAL development board based on the STMicro STM32F103ZET6
|
2012-03-10 19:57:44 +01:00
|
|
|
|
microcontroller (ARM Cortex-M4 with FPU). This port uses a GNU Cortex-M4
|
|
|
|
|
toolchain (such as CodeSourcery).
|
2011-12-20 19:28:50 +01:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32/stm32butterfly2
|
2016-10-20 15:18:23 +02:00
|
|
|
|
Kamami stm32butterfly2 development board with optional ETH phy. See
|
|
|
|
|
https://kamami.pl/zestawy-uruchomieniowe-stm32/178507-stm32butterfly2.html
|
2016-08-14 16:32:11 +02:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32/stm32f051-discovery
|
2017-12-20 14:48:59 +01:00
|
|
|
|
STMicro STM32F051-Discovery board based on the STMicro ARCH_CHIP_STM32F051R8
|
2017-04-14 16:33:52 +02:00
|
|
|
|
MCU.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32/stm32f072-discovery
|
2017-12-20 15:04:11 +01:00
|
|
|
|
STMicro STM32F072-Discovery board based on the STMicro ARCH_CHIP_STM32F072RB
|
|
|
|
|
MCU.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32/stm32f103-minimum
|
2016-05-18 21:33:17 +02:00
|
|
|
|
Generic STM32F103C8T6 Minimum ARM Development Board.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32/stm32f4discovery
|
2012-11-06 14:36:51 +01:00
|
|
|
|
STMicro STM32F4-Discovery board based on the STMIcro STM32F407VGT6 MCU.
|
2012-01-11 15:56:56 +01:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32/stm32f411e-disco
|
2016-05-21 02:12:05 +02:00
|
|
|
|
This is a minimal configuration that supports low-level test of the
|
|
|
|
|
STMicro STM32F411E-Discovery Board.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32/stm32f429i-disco
|
2013-11-07 23:55:45 +01:00
|
|
|
|
STMicro STM32F429I-Discovery board based on the STMicro STM32F429ZIT6 MCU.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32f7/stm32f746g-disco
|
2015-07-16 19:41:40 +02:00
|
|
|
|
STMicro STM32F746G-DISCO development board featuring the STM32F746NGH6
|
|
|
|
|
MCU. The STM32F746NGH6 is a 216MHz Cortex-M7 operation with 1024Kb Flash
|
|
|
|
|
memory and 300Kb SRAM.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32f7/stm32f746g-ws
|
2016-06-17 16:13:22 +02:00
|
|
|
|
Waveshare STM32F746 development board featuring the STM32F746IG MCU.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32l4/stm32l476-mdk
|
2016-09-15 16:06:33 +02:00
|
|
|
|
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.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32f7/stm32f769i-disco
|
2017-07-20 15:39:57 +02:00
|
|
|
|
NuttX configurations for the STMicro STM32F769I-DISCO development board
|
|
|
|
|
featuring the STM32F769NIH6 MCU. The STM32F769NIH6 is a 216MHz Cortex-M7
|
|
|
|
|
operating with 2048K Flash memory and 512Kb SRAM.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32l4/stm32l476vg-disco
|
2016-03-25 22:01:16 +01:00
|
|
|
|
STMicro STM32L476VG_DISCO development board featuring the STM32L476VG
|
|
|
|
|
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.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32/stm32ldiscovery
|
2014-01-13 00:59:38 +01:00
|
|
|
|
STMicro STM32L-Discovery board based on the STMicro STM32L152RB MCU.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32/stm32vldiscovery
|
2014-01-13 00:59:38 +01:00
|
|
|
|
STMicro STM32VL-Discovery board based on the STMicro STM32F100RB MCU.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/mips/pic32mx/sure-pic32mx
|
2012-03-10 19:57:44 +01:00
|
|
|
|
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.
|
2011-07-03 18:31:10 +02:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/avr/at90usb/teensy-2.0
|
2012-04-16 17:45:33 +02:00
|
|
|
|
This is the port of NuttX to the PJRC Teensy++ 2.0 board. This board is
|
2012-03-10 19:57:44 +01:00
|
|
|
|
developed by http://pjrc.com/teensy/. The Teensy++ 2.0 is based
|
|
|
|
|
on an Atmel AT90USB1286 MCU.
|
2011-06-17 01:00:20 +02:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/kinetis/teensy-3.x
|
2015-06-09 23:54:04 +02:00
|
|
|
|
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
|
|
|
|
|
MK30DX128VLH5 with slightly less capability.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/kl/teensy-lc
|
2015-05-07 15:06:50 +02:00
|
|
|
|
This is the port of nuttx for the Teensy LC board. The Teensy LC
|
|
|
|
|
is a DIP style breakout board for the MKL25Z64 and comes with a USB
|
|
|
|
|
based bootloader.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/tiva/tm4c123g-launchpad
|
2014-12-16 22:29:14 +01:00
|
|
|
|
This is the port of NuttX to the Tiva<76> TM4C123G LaunchPad. The
|
2014-03-10 18:25:06 +01:00
|
|
|
|
Tiva<76> TM4C123G LaunchPad Evaluation Board is a low-cost evaluation
|
|
|
|
|
platform for ARM<52> Cortex<65>-M4F-based microcontrollers from Texas
|
|
|
|
|
Instruments.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/tiva/tm4c1294-launchpad
|
2015-02-12 01:27:38 +01:00
|
|
|
|
This is the port of NuttX to the Tiva<76> TM4C1294 LaunchPad. The
|
|
|
|
|
Tiva<76> TM4C123G LaunchPad Evaluation Board is a low-cost evaluation
|
|
|
|
|
platform for ARM<52> Cortex<65>-M4F-based microcontrollers from Texas
|
|
|
|
|
Instruments.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/tmx570/tms570ls31x-usb-kit
|
2018-04-18 17:21:38 +02:00
|
|
|
|
TI Hercules TMS570LS31xx Evaluation Kit (TMDS570ls31xx USB Kit)
|
|
|
|
|
featuring the Hercules TMS570LS3137ZWT chip.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/kinetis/twr-k60n512
|
2012-03-10 19:57:44 +01:00
|
|
|
|
Kinetis K60 Cortex-M4 MCU. This port uses the FreeScale TWR-K60N512
|
|
|
|
|
development board.
|
2011-08-15 16:55:36 +02:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/kinetis/twr-k64f120m
|
2017-02-19 21:58:37 +01:00
|
|
|
|
Kinetis K64 Cortex-M4 MCU. This port uses the FreeScale TWR-K64F120M
|
|
|
|
|
development board.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/mips/pic32mx/ubw32
|
2012-04-26 22:11:46 +02:00
|
|
|
|
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/.
|
|
|
|
|
|
2020-01-22 21:49:50 +01:00
|
|
|
|
boards/renesas/sh1/us7032evb1
|
2012-03-10 19:57:44 +01:00
|
|
|
|
This is a port of the Hitachi SH-1 on the Hitachi SH-1/US7032EVB1 board.
|
|
|
|
|
STATUS: Work has just began on this port.
|
2008-11-05 23:16:22 +01:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/stm32/viewtool-stm32f107
|
2013-11-30 19:14:15 +01:00
|
|
|
|
NuttX configurations for 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/xmc4500-relax
|
|
|
|
|
Infineon XMC4000 Relax Lite v1
|
|
|
|
|
|
2020-01-23 00:26:27 +01:00
|
|
|
|
boards/z16/z16f/z16f2800100zcog
|
2012-03-10 19:57:44 +01:00
|
|
|
|
z16f Microcontroller. This port use the Zilog z16f2800100zcog
|
|
|
|
|
development kit and the Zilog ZDS-II Windows command line tools. The
|
|
|
|
|
development environment is Cygwin under WinXP.
|
2008-01-08 00:13:12 +01:00
|
|
|
|
|
2020-02-21 15:10:54 +01:00
|
|
|
|
boards/z80/ez80/z20x
|
|
|
|
|
Microcontroller. This directory holds the port of NuttX to the z80x board
|
|
|
|
|
based on an ez80Acclaim! eZ80F091 microcontroller.
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/z80/z80/z80sim
|
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).
|
2008-11-05 23:16:22 +01:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/z80/z8/z8encore000zco
|
2012-03-10 19:57:44 +01:00
|
|
|
|
z8Encore! Microcontroller. This port use the Zilog z8encore000zco
|
|
|
|
|
development kit, Z8F6403 part, and the Zilog ZDS-II Windows command line
|
|
|
|
|
tools. The development environment is Cygwin under WinXP.
|
2008-02-11 18:11:20 +01:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/z80/z8/z8f64200100kit
|
2012-03-10 19:57:44 +01:00
|
|
|
|
z8Encore! Microcontroller. This port use the Zilog z8f64200100kit
|
|
|
|
|
development kit, Z8F6423 part, and the Zilog ZDS-II Windows command line
|
|
|
|
|
tools. The development environment is Cygwin under WinXP.
|
2008-03-11 00:37:56 +01:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/lpc214x/zp214xpa
|
2012-12-29 00:40:54 +01:00
|
|
|
|
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
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/arm/lpc17xx_40xx/zkit-arm-1769
|
2013-02-26 15:09:43 +01:00
|
|
|
|
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.
|
|
|
|
|
|
2007-03-23 03:24:38 +01:00
|
|
|
|
Configuring NuttX
|
|
|
|
|
^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
|
Configuring NuttX requires only copying
|
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
boards/<arch>/<chip>/<board>/<config-dir>/Make.def to ${TOPDIR}/Make.defs
|
|
|
|
|
boards/<arch>/<chip>/<board>/<config-dir>/defconfig to ${TOPDIR}/.config
|
2007-03-23 03:24:38 +01:00
|
|
|
|
|
2008-02-07 15:41:11 +01:00
|
|
|
|
tools/configure.sh
|
|
|
|
|
There is a script that automates these steps. The following steps will
|
|
|
|
|
accomplish the same configuration:
|
2007-03-23 03:24:38 +01:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
tools/configure.sh <board>:<config-dir>
|
2011-03-18 18:22:50 +01:00
|
|
|
|
|
2013-01-04 22:37:31 +01:00
|
|
|
|
There is an alternative Windows batch file that can be used in the
|
2020-02-23 09:50:23 +01:00
|
|
|
|
windows native environment like:
|
2012-11-06 14:36:51 +01:00
|
|
|
|
|
2019-08-17 02:26:33 +02:00
|
|
|
|
tools\configure.bat <board>:<config-dir>
|
2013-01-04 22:37:31 +01:00
|
|
|
|
|
|
|
|
|
See tools/README.txt for more information about these scripts.
|
|
|
|
|
|
2014-03-06 20:00:50 +01:00
|
|
|
|
And if your application directory is not in the standard loction (../apps
|
|
|
|
|
or ../apps-<version>), then you should also specify the location of the
|
|
|
|
|
application directory on the command line like:
|
2013-01-04 22:37:31 +01:00
|
|
|
|
|
|
|
|
|
cd tools
|
2019-08-17 02:26:33 +02:00
|
|
|
|
./configure.sh -a <app-dir> <board>:<config-dir>
|
2012-09-01 17:33:33 +02:00
|
|
|
|
|
|
|
|
|
Building Symbol Tables
|
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
|
Symbol tables are needed at several of the binfmt interfaces in order to bind
|
|
|
|
|
a module to the base code. These symbol tables can be tricky to create and
|
|
|
|
|
will probably have to be tailored for any specific application, balancing
|
|
|
|
|
the number of symbols and the size of the symbol table against the symbols
|
|
|
|
|
required by the applications.
|
|
|
|
|
|
|
|
|
|
The top-level System.map file is one good source of symbol information
|
|
|
|
|
(which, or course, was just generated from the top-level nuttx file
|
|
|
|
|
using the GNU 'nm' tool).
|
|
|
|
|
|
|
|
|
|
There are also common-separated value (CSV) values in the source try that
|
|
|
|
|
provide information about symbols. In particular:
|
|
|
|
|
|
|
|
|
|
nuttx/syscall/syscall.csv - Describes the NuttX RTOS interface, and
|
2014-06-27 16:14:07 +02:00
|
|
|
|
nuttx/lib/libc.csv - Describes the NuttX C library interface.
|
2012-09-01 17:33:33 +02:00
|
|
|
|
|
|
|
|
|
There is a tool at nuttx/tools/mksymtab that will use these CSV files as
|
|
|
|
|
input to generate a generic symbol table. See nuttx/tools/README.txt for
|
|
|
|
|
more information about using the mksymtab tool.
|