From ce88f176b6130c8fed20401b674bc4ddac491947 Mon Sep 17 00:00:00 2001 From: patacongo Date: Mon, 12 Mar 2012 15:47:47 +0000 Subject: [PATCH] Add support for the Sure DB-DP11212 PIC32 board git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4476 42af7a65-404d-4744-a932-0658087f49c3 --- Documentation/NuttX.html | 6 ++--- Documentation/NuttxPortingGuide.html | 34 ++++++++++++++++++++++++++-- 2 files changed, 35 insertions(+), 5 deletions(-) diff --git a/Documentation/NuttX.html b/Documentation/NuttX.html index e49e50f487..2920d46432 100644 --- a/Documentation/NuttX.html +++ b/Documentation/NuttX.html @@ -8,7 +8,7 @@

NuttX RTOS

-

Last Updated: March 10, 2012

+

Last Updated: March 11, 2012

@@ -478,7 +478,7 @@

  • - Network, USB (host), USB (device), serial, CAN, ADC, DAC, and PWM driver architectures. + Network, USB (host), USB (device), serial, CAN, ADC, DAC, PWM, and Quadrature Encoder driver architectures.
  • @@ -1790,7 +1790,7 @@ NSH User Guide) as well as several other configurations. Additional drivers and configurations were added in NuttX 6.13-6.16. Drivers include an Ethernet driver, ADC driver, DAC driver, PWM driver, CAN driver, F4 RTC driver, Quadrature Encoder, DMA, SDIO with DMA - (most of these are compatible with the F1 family as well). + (these should all be compatible with the STM32 F2 family and many should also be compatible with the STM32 F1 family as well). The NuttX6.16 release also includes and logic for saving/restoring F4 FPU registers in context switches. Networking intensions include support for Telnet NSH sessions and new configurations for DHPCD and the networking test (nettest). A more complete port would include support for SDIO and USB OTG which are not available in NuttX 6.13. diff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html index f99cf45ad7..e920258620 100644 --- a/Documentation/NuttxPortingGuide.html +++ b/Documentation/NuttxPortingGuide.html @@ -12,7 +12,7 @@

    NuttX RTOS Porting Guide

    -

    Last Updated: March 3, 2011

    +

    Last Updated: March 11, 2011

    @@ -128,7 +128,8 @@ 6.3.10 USB Device-Side Drivers
    6.3.11 Analog (ADC/DAC) Drivers
    6.3.12 PWM Drivers
    - 6.3.13 CAN Drivers + 6.3.13 CAN Drivers
    + 6.3.14 Quadrature Encoder Drivers 6.4 Power Management +

    6.3.14 Quadrature Encoder Drivers

    +

    + NuttX supports only a low-level, two-part Quadrature Driver driver. +

    +
      +
    1. + An "upper half", generic driver that provides the comman Quadrature Encoder interface to application level code, and +
    2. +
    3. + A "lower half", platform-specific driver that implements the low-level timer controls to implement the Quadrature Encoder functionality. +
    4. +
    +

    + Files supporting the Quadrature Encoder can be found in the following locations: +

    + +

    6.4 Power Management

    6.4.1 Overview