From 787bc21ceab11bd019022f1adb9865b48335d29c Mon Sep 17 00:00:00 2001 From: Alexander Bobkov Date: Mon, 13 Jan 2025 22:02:24 -0500 Subject: [PATCH] ESP32-Console --- ESP32-Console/main/commands.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ESP32-Console/main/commands.h b/ESP32-Console/main/commands.h index ebb7a6cbb..767aa7438 100644 --- a/ESP32-Console/main/commands.h +++ b/ESP32-Console/main/commands.h @@ -74,11 +74,11 @@ static void register_info (void) { info_args.end = arg_end(2); const esp_console_cmd_t info_cmd = { - .command = "info", - .help = "Prints system information", - .hint = NULL, - .func = &exec_info_cmd, - .argtable = &info_args + .command = "info", + .help = "Prints system information", + .hint = NULL, + .func = &exec_info_cmd, + .argtable = &info_args }; ESP_ERROR_CHECK(esp_console_cmd_register(&info_cmd));