|
idfxx 1.0.0
Modern C++23 components for ESP-IDF
|
Command descriptor for registration. More...
Public Attributes | |
| std::string_view | name |
| Command name (required, no spaces) | |
| std::string_view | help = {} |
| Help text (empty = hidden from help) | |
| std::string_view | hint = {} |
| Hint text (empty = auto-generate from argtable) | |
| void * | argtable = nullptr |
| Optional argtable3 pointer for argument parsing. | |
Command descriptor for registration.
Describes a command to register with the console. The name field is required and must not contain spaces. Other fields are optional.
Definition at line 60 of file console.hpp.
| void* idfxx::console::command::argtable = nullptr |
Optional argtable3 pointer for argument parsing.
Definition at line 64 of file console.hpp.
| std::string_view idfxx::console::command::help = {} |
Help text (empty = hidden from help)
Definition at line 62 of file console.hpp.
| std::string_view idfxx::console::command::hint = {} |
Hint text (empty = auto-generate from argtable)
Definition at line 63 of file console.hpp.
| std::string_view idfxx::console::command::name |
Command name (required, no spaces)
Definition at line 61 of file console.hpp.