From 1fca8b083e9eecae41c9030b7513c94323b13698 Mon Sep 17 00:00:00 2001 From: patacongo Date: Wed, 4 Jan 2012 22:27:35 +0000 Subject: [PATCH] Add suport for the Stellaris LM3S6432S2E and the TI RDK-S2E git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4260 42af7a65-404d-4744-a932-0658087f49c3 --- Documentation/NuttX.html | 60 ++++++++++++++++++++++++++++++++++------ 1 file changed, 52 insertions(+), 8 deletions(-) diff --git a/Documentation/NuttX.html b/Documentation/NuttX.html index be0d3c9c2d..473c221223 100644 --- a/Documentation/NuttX.html +++ b/Documentation/NuttX.html @@ -8,7 +8,7 @@

NuttX RTOS

-

Last Updated: January 1, 2012

+

Last Updated: January 4, 2012

@@ -981,7 +981,7 @@
  • ARM7TDMI (4)
  • ARM920T (1)
  • ARM926EJS (3)
  • -
  • ARM Cortex-M3 (11)
  • +
  • ARM Cortex-M3 (12)
  • ARM Cortex-M4 (4)
  • Atmel AVR @@ -1281,7 +1281,7 @@

    - Luminary/TI LM3S6918. + Luminary/TI Stellaris LM3S6918. This port uses the Micromint Eagle-100 development board with a GNU arm-elf toolchain* under either Linux or Cygwin.

    @@ -1312,7 +1312,7 @@

    - Luminary/TI LM3S6965. + Luminary/TI Stellaris LM3S6965. This port uses the Stellaris LM3S6965 Ethernet Evalution Kit with a GNU arm-elf toolchain* under either Linux or Cygwin.

    @@ -1346,7 +1346,7 @@

    - Luminary/TI LM3S8962. + Luminary/TI Stellaris LM3S8962. This port uses the Stellaris EKC-LM3S8962 Ethernet+CAN Evalution Kit with a GNU arm-elf toolchain* under either Linux or Cygwin. Contributed by Larry Arnold. @@ -1368,7 +1368,7 @@

    - Luminary/TI LM3S9B96. + Luminary/TI Stellaris LM3S9B96. Header file support was contributed by Tiago Maluta for this part. However, no complete board support configuration is available as of this writing.

    @@ -1378,6 +1378,30 @@

    + +
    + +

    + TI Stellaris LM3S6432S2E. + This port uses Serial-to-Ethernet Reference Design Kit (RDK-S2E) + and has similar support as for the other Stellaris family members. + Configurations are available for the OS test and for the NuttShell (NSH) + (see the NSH User Guide). + The NSH configuration including networking support with a Telnet NSH console. + This port was contributed by Mike Smith. +

    + + + + +
    +
    +
    @@ -2789,14 +2813,34 @@ nuttx-6.14 2012-xx-xx Gregory Nutt <gnutt@nuttx.org> on the Olimex LPC1766-STK board. * Makefile: Added 'apps_clean' and 'apps_distclean' target to simplify managing the state of the application directory while in the NuttX directory - * Documentation/NuttXGettingStarted.html: Added a "Getting Started" Guide + * Documentation/NuttXGettingStarted.html: Added a "Getting Started" Guide for NuttX. At present, this is just a stub and it refers to the NuttX - top-level README.txt file which is the only, real "Getting Started" Guide + top-level README.txt file which is the only, real "Getting Started" Guide that exists at the time being. * arch/arm/src/lpc17xx/lpc17_gpioint.c: Correct an value used as the lower end of an IRQ number range test. * arch/arm/src/lpc17xx/lpc17_gpio.c: Fix a integer flow problem in shift. This error would prevent pins > 15 from being used as interrupt sources. + * arch/arm/src/stm32/stm32_can.c: The CAN driver has been verified in + loopback mode on the STM3240G-EVAL board. + * configs/stm3240g-eval/src/up_adc.c: Complete coding of ADC support for the + potentiometer on board the STM3240G-EVAL. + * arch/arm/src/lpc17_can.c: Several CAN driver improvements. Adds support for + testing in loopback mode. now uses all three transmit buffers for better + performance. + * confgs/olimex-lpc1766stk/nsh: Now supports the CAN loopback test as an + optional "built-in" application. + * sched/irq_attach.c: Fix an issue with disabling interrupts when they are + detached. For the PIC32, this can't be done because there is a 1-to-many + relationship between vector numbers and interrupt numbers or different. + Added a new configuration option CONFIG_ARCH_VECNOTIRQ to at least flag + the architectures that have this issue and to (at least) avoid doing + something too wrong. + * drivers/can.c: Fix a test for buffer full in the generic, "upper half", + can driver. + * arch/arm/src/lm3s: Add support for the LM3S6432S2E (Contributed by Mike Smith) + * configs/lm3s6432-s2: Add support for the TI RDK-S2E (LM3S6432S2E) board + (Contributed by Mike Smith) apps-6.14 2012-xx-xx Gregory Nutt <gnutt@nuttx.org>