From 4dc132c16374d669dc18319bf1aa4003d68cf12c Mon Sep 17 00:00:00 2001 From: Alexander Bobkov Date: Sat, 11 Jan 2025 09:30:13 -0500 Subject: [PATCH] ESP32-Console --- ESP32-Console/main/main.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ESP32-Console/main/main.c b/ESP32-Console/main/main.c index 1fe9b767c..d608320f0 100755 --- a/ESP32-Console/main/main.c +++ b/ESP32-Console/main/main.c @@ -58,7 +58,8 @@ void app_main(void) //esp_console_dev_usb_cdc_config_t cdc_config = ESP_CONSOLE_DEV_CDC_CONFIG_DEFAULT(); initialize_nvs(); - initialize_filesystem(); + //initialize_filesystem(); + //repl_config.history_save_path = HISTORY_PATH; /* INITIALIZE COMMANDS @@ -66,7 +67,7 @@ void app_main(void) register_commands(); repl_config.prompt = "foxie >"; - repl_config.history_save_path = HISTORY_PATH; + //repl_config.max_cmdline_length = CONFIG_CONSOLE_MAX_COMMAND_LINE_LENGTH; ESP_ERROR_CHECK(esp_console_new_repl_uart(&uart_config, &repl_config, &repl));