summaryrefslogtreecommitdiff
path: root/nuttx/examples/README.txt
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-08-10 14:50:27 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-08-10 14:50:27 +0000
commite4f032ec91a96d59957fe29997524c9a2bb69603 (patch)
tree9d25dd30a9f8e59b9b995819ea7fcd73b31823e6 /nuttx/examples/README.txt
parent6caaa80d431e0c01f2f1197315516cae71792b52 (diff)
downloadnuttx-e4f032ec91a96d59957fe29997524c9a2bb69603.tar.gz
nuttx-e4f032ec91a96d59957fe29997524c9a2bb69603.tar.bz2
nuttx-e4f032ec91a96d59957fe29997524c9a2bb69603.zip
Added mkfatfs() test
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@806 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/examples/README.txt')
-rw-r--r--nuttx/examples/README.txt23
1 files changed, 20 insertions, 3 deletions
diff --git a/nuttx/examples/README.txt b/nuttx/examples/README.txt
index d7b46d924..3b09768d5 100644
--- a/nuttx/examples/README.txt
+++ b/nuttx/examples/README.txt
@@ -109,7 +109,22 @@ examples/mount
This contains a simple test of filesystem mountpoints.
* CONFIG_EXAMPLES_MOUNT_DEVNAME
- The name of the device to mount. Default: "/dev/ram0"
+ The name of the user-provided block device to mount.
+ If CONFIG_EXAMPLES_MOUNT_DEVNAME is not provided, then
+ a RAM disk will be configured.
+
+ * CONFIG_EXAMPLES_MOUNT_NSECTORS
+ The number of "sectors" in the RAM disk used when
+ CONFIG_EXAMPLES_MOUNT_DEVNAME is not defined.
+
+ * CONFIG_EXAMPLES_MOUNT_SECTORSIZE
+ The size of each sectors in the RAM disk used when
+ CONFIG_EXAMPLES_MOUNT_DEVNAME is not defined.
+
+ * CONFIG_EXAMPLES_MOUNT_RAMDEVNO
+ The RAM device minor number used to mount the RAM disk used
+ when CONFIG_EXAMPLES_MOUNT_DEVNAME is not defined. The
+ default is zero (meaning that "/dev/ram0" will be used).
examples/null
^^^^^^^^^^^^^
@@ -144,6 +159,8 @@ examples/pashello
examples/pipe
^^^^^^^^^^^^^
-A test of the mkfifo() and pipe() APIs.
-
+ A test of the mkfifo() and pipe() APIs.
+ * CONFIG_EXAMPLES_PIPE_STACKSIZE
+ Sets the size of the stack to use when creating the child tasks.
+ The default size is 1024.