1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 05:32:45 +01:00

treewide: replace shell_commands module in documentation

Signed-off-by: Dylan Laduranty <dylan.laduranty@mesotic.com>
This commit is contained in:
Dylan Laduranty 2024-03-19 15:12:02 +01:00
parent dcc732ac36
commit f78a41f1b3
4 changed files with 7 additions and 6 deletions

View File

@ -4,12 +4,12 @@ This application is a showcase for RIOT's hardware support. Using it
for your board, you should be able to interactively use any hardware for your board, you should be able to interactively use any hardware
that is supported. that is supported.
To do this, the application uses the `shell` and `shell_commands` To do this, the application uses the `shell` and `shell_cmds_default`
modules and all the driver modules each board supports. modules and all the driver modules each board supports.
`shell` is a very simple interactive command interpreter that can be `shell` is a very simple interactive command interpreter that can be
used to call functions. Many of RIOT's modules define some generic used to call functions. Many of RIOT's modules define some generic
shell commands. These are included via the `shell_commands` module. shell commands. These are included via the `shell_cmds_default` module.
Additionally, the `ps` module which provides the `ps` shell command is Additionally, the `ps` module which provides the `ps` shell command is
included. included.

View File

@ -13,7 +13,8 @@
* @file * @file
* @brief A shell command to change the niceness (inverse priority) of a thread * @brief A shell command to change the niceness (inverse priority) of a thread
* *
* @note Enable this by using the modules shell_commands and nice * @note Enable this by using the modules shell_cmds_default and
* shell_cmd_nice
* *
* @author Marian Buschsieweke <marian.buschsieweke@ovgu.de> * @author Marian Buschsieweke <marian.buschsieweke@ovgu.de>
* *

View File

@ -15,11 +15,11 @@ Shell Commands
Certain modules such as `ps`, `saul_reg`, or `gnrc_icmpv6_echo` can expose Certain modules such as `ps`, `saul_reg`, or `gnrc_icmpv6_echo` can expose
(some of) their functionality not only as C-API, but also as shell command. (some of) their functionality not only as C-API, but also as shell command.
Using the module `shell_commands` will enable the shell integration of the used Using the module `shell_cmds_default` will enable the shell integration of the used
modules, if it exists. modules, if it exists.
A few rarely needed shell commands that needs to be used in addition to the A few rarely needed shell commands that needs to be used in addition to the
`shell_commands` and the module providing the C-API. Examples include `shell_cmds_default` and the module providing the C-API. Examples include
`shell_cmd_nice`, `shell_cmd_gnrc_udp`, or `shell_random_cmd`. `shell_cmd_nice`, `shell_cmd_gnrc_udp`, or `shell_random_cmd`.
Consult the documentation of the modules to find out whether they have a Consult the documentation of the modules to find out whether they have a
shell integration and how to enable it. shell integration and how to enable it.

View File

@ -1,7 +1,7 @@
This application shows how to use own or the system shell commands. In order to use This application shows how to use own or the system shell commands. In order to use
the system shell commands: the system shell commands:
1. Additionally to the module: shell, shell_commands, 1. Additionally to the module: shell, shell_cmds_default,
the module for the corresponding system command is to include, e.g. the module for the corresponding system command is to include, e.g.
module ps for the ps command (cf. the Makefile in the application root module ps for the ps command (cf. the Makefile in the application root
directory). directory).