ESP32-Console

This commit is contained in:
2025-01-10 17:26:53 -05:00
parent d0660136af
commit 8848c27b00

View File

@@ -1,4 +1,18 @@
#ifndef COMMANDS_H
#define COMMANDS_H
static int do_info_cmd (int argc, char **argv) {
return 0;
}
static void register_info (void) {
const esp_console_cmd_t info_cmd = {
.command = "info",
.help = "System Information",
.hint = NULL,
.func = &do_info_cmd,
.argtable = &info_args
};
}
#endif