ESP32-Console

This commit is contained in:
2025-01-12 23:59:22 -05:00
parent 54eb393119
commit 83957a8fc5

View File

@@ -29,6 +29,10 @@ static int exec_info_cmd (int argc, char **argv) {
temp = arg_litn("t", "temp", 0, 1, "chip temperature"), temp = arg_litn("t", "temp", 0, 1, "chip temperature"),
end = arg_end(20), end = arg_end(20),
}; };
char progname[] = "info";
//int nerrors;
//nerrors = arg_parse(argc, argv, argtable);
ESP_LOGW("CLI", "This is the Information Command."); ESP_LOGW("CLI", "This is the Information Command.");
int nerrors = arg_parse(argc, argv, (void**) &info_args); int nerrors = arg_parse(argc, argv, (void**) &info_args);