From 0552c1279bd3b0d60e730ea7a52ef123eca3e3c2 Mon Sep 17 00:00:00 2001 From: patacongo Date: Sat, 7 May 2011 16:59:20 +0000 Subject: [PATCH] Add STM32 FLASH driver git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3573 42af7a65-404d-4744-a932-0658087f49c3 --- Documentation/NuttxPortingGuide.html | 47 +++++++++++++++++++++++++--- 1 file changed, 42 insertions(+), 5 deletions(-) diff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html index c7a56927fbe..70bdab5379e 100644 --- a/Documentation/NuttxPortingGuide.html +++ b/Documentation/NuttxPortingGuide.html @@ -12,7 +12,7 @@

NuttX RTOS Porting Guide

-

Last Updated: April 14, 2011

+

Last Updated: May 6, 2011

@@ -886,6 +886,9 @@ fs/ |-- fat/ | |-- Make.defs | `-- (fat file system source files) +|-- nxffs/ +| |-- Make.defs +| `-- (NXFFS file system source files) |-- romfs/ | |-- Make.defs | `-- (romfs file system source files) @@ -1949,7 +1952,8 @@ extern void up_ledoff(int led); NuttX supports the standard mount() command that allows a block driver to be bound to a mountpoint within the pseudo file system and to a file system. - At present, NuttX supports only the VFAT file system. + At present, NuttX supports the standard VFAT and ROMFS file systems and + well as a special, wear-leveling NuttX FLASH File System (NXFFS).

Comparison to Linux @@ -3120,7 +3124,7 @@ build

  • CONFIG_NXFLAT: Enable support for the NXFLAT binary format. This format will support execution of NuttX binaries located - in a ROMFS filesystem (see apps/examples/nxflat). + in a ROMFS file system (see apps/examples/nxflat).
  • CONFIG_SCHED_WORKQUEUE: Create a dedicated "worker" thread to @@ -3435,13 +3439,46 @@ build

    File Systems