This is an automated email from the ASF dual-hosted git repository.
jerpelea pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git
The following commit(s) were added to refs/heads/master by this push:
new e376e22f93 Documentation/applications/benchmarks/cyclictest: -q
e376e22f93 is described below
commit e376e22f9374b32db3ab3fbaf3138b8d62ec9a90
Author: Stepan Pressl <[email protected]>
AuthorDate: Sat Mar 1 23:23:55 2025 +0100
Documentation/applications/benchmarks/cyclictest: -q
-q (--quiet) option added
Signed-off-by: Stepan Pressl <[email protected]>
---
Documentation/applications/benchmarks/cyclictest/index.rst | 1 +
1 file changed, 1 insertion(+)
diff --git a/Documentation/applications/benchmarks/cyclictest/index.rst
b/Documentation/applications/benchmarks/cyclictest/index.rst
index 87f9b9663d..b3b3481d2e 100644
--- a/Documentation/applications/benchmarks/cyclictest/index.rst
+++ b/Documentation/applications/benchmarks/cyclictest/index.rst
@@ -64,6 +64,7 @@ Following command-line parameters can be supplied:
- ``-l --loops [N]``: The number of measurement loops. Default is 0 (endless).
- ``-m --measurement [METHODS]``: Sets the time measurement method. 0 selects
``clock_gettime``, 1 uses the NuttX timer API. Be advised that if 1 is
selected, you need to specify a timer device (e.g. ``/dev/timer0``) in ``-T``.
- ``-n --nanosleep [METHOD]``: Sets the waiting method: 0 selects
``clock_nanosleep``, 1 waits for the POLLIN flag on a timer device. Default is
0. Choosing 1 works only with one thread, the ``-t`` value is therefore set to
1. If METHOD 1 is selected, you need to specify a timer device (e.g.
``/dev/timer0``) in ``-T``.
+- ``-q --quiet``: Prints a summary only on exit.
- ``-p --prio``: Sets the priority of the first thread.
- ``-t --threads [N]``: The number of test threads to be created. Default is 1.
- ``-T --timer-device [DEV]``: The measuring timer device. Must be specified
when ``-m=1`` or ``-n=1``.