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.txt17
1 files changed, 17 insertions, 0 deletions
diff --git a/apps/examples/README.txt b/apps/examples/README.txt
index fee9e66a5..63b0a0223 100644
--- a/apps/examples/README.txt
+++ b/apps/examples/README.txt
@@ -30,6 +30,23 @@ examples
the specific example. See the following for examples that
support this option).
+examples/adc
+^^^^^^^^^^^^
+
+ A mindlessly simple test of an ADC devices. It simply reads from the
+ ADC device and dumps the data to the console forever.
+
+ - CONFIG_NSH_BUILTIN_APPS - Build the ADC test as an NSH built-in function.
+ Default: Built as a standalone problem
+ - CONFIG_EXAMPLES_ADC_DEVPATH - The path to the ADC device. Default: /dev/adc0
+ - CONFIG_EXAMPLES_ADC_NSAMPLES - If CONFIG_NSH_BUILTIN_APPS
+ is defined, then the number of samples is provided on the command line
+ and this value is ignored. Otherwise, this number of samples is
+ collected and the program terminates. Default: Samples are collected
+ indefinitely.
+ - CONFIG_EXAMPLES_ADC_SAMPLESIZE - The number of bytes to read in one sample.
+ Default: 8
+
examples/buttons
^^^^^^^^^^^^^^^^