Lines Matching full:commands
10 - Functions for registration and dispatching of commands.
20 …commands by typing them, erasing symbols using 'backspace' key, navigating within the command usin…
37 …ss glitching compared to the multi line mode. On the flip side, editing commands and copying comma…
58 …nt provides a ready made function to provide completions for registered commands, :cpp:func:`esp_c…
74 …This function sets the number of most recently typed commands to be kept in memory. Users can navi…
77 …Linenoise does not automatically add commands to history. Instead, applications need to call this …
121 … which handle registration of commands, matching commands typed by the user to registered ones, an…
138 …`help`` command to the list of registered commands. This command prints the list of all the regist…
141 …from linenoise library. Provides completions to linenoise based on the list of registered commands.
144 …intsCallback` from linenoise library. Provides argument hints for registered commands to linenoise.
151 …onfiguration, spawning a thread to do REPL task and register several useful commands (e.g. `help`).
153 After that, you can register your own commands with :cpp:func:`esp_console_cmd_register`. The REPL …
158 …alize UART and VFS functions, set up linenoise library, read and handle commands from UART, and st…