summaryrefslogtreecommitdiff
path: root/apps/examples/README.txt
diff options
context:
space:
mode:
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
^^^^^^^^^^^^^^^^