summaryrefslogtreecommitdiff
path: root/apps/examples/README.txt
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-05-01 08:09:20 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-05-01 08:09:20 -0600
commitd9bd2fca774a5c3499f7b3a258aa1506fdea526f (patch)
tree32d60c5fe512337bbaf5850f9e505ab47c1e5dcd /apps/examples/README.txt
parentfa71d6461e5b8cc8b3cada0e594c9641e5e21da7 (diff)
downloadnuttx-d9bd2fca774a5c3499f7b3a258aa1506fdea526f.tar.gz
nuttx-d9bd2fca774a5c3499f7b3a258aa1506fdea526f.tar.bz2
nuttx-d9bd2fca774a5c3499f7b3a258aa1506fdea526f.zip
Add tests for the SMART block driver and file system. From Ken Pettit
Diffstat (limited to 'apps/examples/README.txt')
-rw-r--r--apps/examples/README.txt30
1 files changed, 30 insertions, 0 deletions
diff --git a/apps/examples/README.txt b/apps/examples/README.txt
index cd6701e9c..ec9685f4e 100644
--- a/apps/examples/README.txt
+++ b/apps/examples/README.txt
@@ -382,6 +382,23 @@ examples/elf
LDELFFLAGS = -r -e main -T$(TOPDIR)/binfmt/libelf/gnu-elf.ld
+examples/flash_test
+^^^^^^^^^^^^^^^^^^^
+
+ This example performs a SMART flash block device test. This test performs
+ a sector allocate, read, write, free and garbage collection test on a SMART
+ MTD block device.
+
+ * CONFIG_EXAMPLES_FLASH_TEST=y - Enables the FLASH Test
+
+ Dependencies:
+
+ * CONFIG_MTD_SMART=y - SMART block driver support
+ * CONFIG_NSH_BUILTIN_APPS=y - This example can only be built as an NSH
+ command
+ * CONFIG_NUTTX_KERNEL=n - This test uses internal OS interfaces and so
+ is not available in the NUTTX kernel build
+
examples/ftpc
^^^^^^^^^^^^^
@@ -1446,6 +1463,19 @@ examples/serloop
Use C buffered I/O (getchar/putchar) vs. raw console I/O
(read/read).
+examples/smart_test
+^^^^^^^^^^^^^^^^^^^
+
+ Performs a file-based test on a SMART (or any) filesystem. Validates
+ seek, append and seek-with-write operations.
+
+ * CONFIG_EXAMPLES_SMART_TEST=y
+
+ Dependencies:
+
+ * CONFIG_NSH_BUILTIN_APPS=y: This test can be built only as an NSH
+ command
+
examples/telnetd
^^^^^^^^^^^^^^^^