diff --git a/Documentation/NuttX.html b/Documentation/NuttX.html
index 78864a2cc7..95050becc0 100644
--- a/Documentation/NuttX.html
+++ b/Documentation/NuttX.html
@@ -8,7 +8,7 @@
NuttX RTOS
- Last Updated: February 10, 2014
+ Last Updated: February 28, 2014
|
@@ -1202,7 +1202,7 @@
ARM926EJS (4)
ARM Cortex-A5 (1)
ARM Cortex-A8 (1)
- ARM Cortex-M0/M0+ (2)
+ ARM Cortex-M0/M0+ (3)
ARM Cortex-M3 (25)
ARM Cortex-M4 (10)
@@ -1270,6 +1270,7 @@
AVR ATMega128 (8-bit AVR)
AVR AT90USB64x and AT90USB6128x (8-bit AVR)
AVR32 AT32UC3BXXX (32-bit AVR32)
+ Atmel SAMD20 (ARM Cortex-M0+)
Atmel SAM3U (ARM Cortex-M3)
Atmel SAM3X (ARM Cortex-M3)
Atmel SAM4L (ARM Cortex-M4)
@@ -1882,7 +1883,7 @@
|
- ARM Cortex-M0.
+ ARM Cortex-M0/M0+.
|
@@ -1965,6 +1966,30 @@ nsh>
+
+
|
+
|
+
+
+
|
+
+
+ Atmel SAMD20.
+ 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).
+
+
+
+ This is a work-in-progress.
+ As of this writing (2014-2-18), there is a functional NuttShell (NSH) configuration.
+ An SPI driver to support the the added on OLED1 and I/O1 modules is in-work.
+ STATUS.
+ Refer to the SAMD20 Explained Pro board README file for further information.
+
+
+ |
+
+
|
diff --git a/configs/Kconfig b/configs/Kconfig
index 2ad333ba2f..94b6330f5c 100644
--- a/configs/Kconfig
+++ b/configs/Kconfig
@@ -551,7 +551,9 @@ config ARCH_BOARD_SAMD20_XPLAINED
select ARCH_HAVE_BUTTONS
select ARCH_HAVE_IRQBUTTONS
---help---
- The port of NuttX to the Atmel SAMD20-Xplained Pro development board
+ 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).
config ARCH_BOARD_SAM3UEK
bool "Atmel SAM3U-EK development board"
diff --git a/configs/README.txt b/configs/README.txt
index ceee34cf70..aae71edc57 100644
--- a/configs/README.txt
+++ b/configs/README.txt
@@ -478,7 +478,9 @@ configs/sama5d3x-ek
board, all four CPU modules, and the LCD.
configs/samd20-xplained
- The port of NuttX to the Atmel SAMD20-Xplained development board.
+ 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).
configs/sam3u-ek
The port of NuttX to the Atmel SAM3U-EK development board.
|