From ab8d87b5bef58482a68ec8bb59842b82d6819fd6 Mon Sep 17 00:00:00 2001 From: Alexander Bobkov Date: Sat, 11 Jan 2025 10:24:17 -0500 Subject: [PATCH] ESP32-Console --- ESP32-Console/main/commands.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ESP32-Console/main/commands.h b/ESP32-Console/main/commands.h index 75e6cbc15..3771202e1 100644 --- a/ESP32-Console/main/commands.h +++ b/ESP32-Console/main/commands.h @@ -29,12 +29,12 @@ static int do_info_cmd (int argc, char **argv) { return 0; } static void register_info (void) { - info_args.detail = arg_str1(NULL, NULL, "", "Chip temperature"); + info_args.detail = arg_str1(NULL, NULL, "", "Display chip temperature"); info_args.end = arg_end(2); const esp_console_cmd_t info_cmd = { .command = "info", - .help = "System Information", + .help = "Prints system information", .hint = NULL, .func = &do_info_cmd, .argtable = &info_args