2017-08-15 08:11:19 +00:00
|
|
|
/* Console example
|
|
|
|
|
|
|
|
This example code is in the Public Domain (or CC0 licensed, at your option.)
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, this
|
|
|
|
software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
|
|
|
CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include "esp_system.h"
|
|
|
|
#include "esp_log.h"
|
|
|
|
#include "esp_console.h"
|
|
|
|
#include "esp_vfs_dev.h"
|
|
|
|
#include "driver/uart.h"
|
|
|
|
#include "linenoise/linenoise.h"
|
|
|
|
#include "argtable3/argtable3.h"
|
|
|
|
#include "cmd_decl.h"
|
|
|
|
#include "esp_vfs_fat.h"
|
2018-01-09 04:47:32 +00:00
|
|
|
#include "nvs.h"
|
|
|
|
#include "nvs_flash.h"
|
2017-08-15 08:11:19 +00:00
|
|
|
|
|
|
|
static const char* TAG = "example";
|
|
|
|
|
|
|
|
/* Console command history can be stored to and loaded from a file.
|
|
|
|
* The easiest way to do this is to use FATFS filesystem on top of
|
|
|
|
* wear_levelling library.
|
|
|
|
*/
|
|
|
|
#if CONFIG_STORE_HISTORY
|
|
|
|
|
|
|
|
#define MOUNT_PATH "/data"
|
|
|
|
#define HISTORY_PATH MOUNT_PATH "/history.txt"
|
|
|
|
|
|
|
|
static void initialize_filesystem()
|
|
|
|
{
|
|
|
|
static wl_handle_t wl_handle;
|
|
|
|
const esp_vfs_fat_mount_config_t mount_config = {
|
|
|
|
.max_files = 4,
|
|
|
|
.format_if_mount_failed = true
|
|
|
|
};
|
|
|
|
esp_err_t err = esp_vfs_fat_spiflash_mount(MOUNT_PATH, "storage", &mount_config, &wl_handle);
|
|
|
|
if (err != ESP_OK) {
|
2018-02-22 13:48:53 +00:00
|
|
|
ESP_LOGE(TAG, "Failed to mount FATFS (%s)", esp_err_to_name(err));
|
2017-08-15 08:11:19 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif // CONFIG_STORE_HISTORY
|
|
|
|
|
2018-01-09 04:47:32 +00:00
|
|
|
static void initialize_nvs()
|
|
|
|
{
|
|
|
|
esp_err_t err = nvs_flash_init();
|
2018-07-25 15:11:09 +00:00
|
|
|
if (err == ESP_ERR_NVS_NO_FREE_PAGES || err == ESP_ERR_NVS_NEW_VERSION_FOUND) {
|
2018-01-09 04:47:32 +00:00
|
|
|
ESP_ERROR_CHECK( nvs_flash_erase() );
|
|
|
|
err = nvs_flash_init();
|
|
|
|
}
|
|
|
|
ESP_ERROR_CHECK(err);
|
|
|
|
}
|
|
|
|
|
2017-08-15 08:11:19 +00:00
|
|
|
static void initialize_console()
|
|
|
|
{
|
2019-03-13 12:19:55 +00:00
|
|
|
/* Disable buffering on stdin */
|
2017-08-15 08:11:19 +00:00
|
|
|
setvbuf(stdin, NULL, _IONBF, 0);
|
|
|
|
|
|
|
|
/* Minicom, screen, idf_monitor send CR when ENTER key is pressed */
|
2020-07-13 17:07:30 +00:00
|
|
|
esp_vfs_dev_uart_port_set_rx_line_endings(CONFIG_CONSOLE_UART_NUM, ESP_LINE_ENDINGS_CR);
|
2017-08-15 08:11:19 +00:00
|
|
|
/* Move the caret to the beginning of the next line on '\n' */
|
2020-07-13 17:07:30 +00:00
|
|
|
esp_vfs_dev_uart_port_set_tx_line_endings(CONFIG_CONSOLE_UART_NUM, ESP_LINE_ENDINGS_CRLF);
|
2017-08-15 08:11:19 +00:00
|
|
|
|
2018-08-14 00:44:04 +00:00
|
|
|
/* Configure UART. Note that REF_TICK is used so that the baud rate remains
|
|
|
|
* correct while APB frequency is changing in light sleep mode.
|
|
|
|
*/
|
|
|
|
const uart_config_t uart_config = {
|
|
|
|
.baud_rate = CONFIG_CONSOLE_UART_BAUDRATE,
|
|
|
|
.data_bits = UART_DATA_8_BITS,
|
|
|
|
.parity = UART_PARITY_DISABLE,
|
|
|
|
.stop_bits = UART_STOP_BITS_1,
|
|
|
|
.use_ref_tick = true
|
|
|
|
};
|
|
|
|
ESP_ERROR_CHECK( uart_param_config(CONFIG_CONSOLE_UART_NUM, &uart_config) );
|
|
|
|
|
2017-08-15 08:11:19 +00:00
|
|
|
/* Install UART driver for interrupt-driven reads and writes */
|
|
|
|
ESP_ERROR_CHECK( uart_driver_install(CONFIG_CONSOLE_UART_NUM,
|
|
|
|
256, 0, 0, NULL, 0) );
|
|
|
|
|
|
|
|
/* Tell VFS to use UART driver */
|
|
|
|
esp_vfs_dev_uart_use_driver(CONFIG_CONSOLE_UART_NUM);
|
|
|
|
|
|
|
|
/* Initialize the console */
|
|
|
|
esp_console_config_t console_config = {
|
|
|
|
.max_cmdline_args = 8,
|
|
|
|
.max_cmdline_length = 256,
|
|
|
|
#if CONFIG_LOG_COLORS
|
|
|
|
.hint_color = atoi(LOG_COLOR_CYAN)
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
ESP_ERROR_CHECK( esp_console_init(&console_config) );
|
|
|
|
|
|
|
|
/* Configure linenoise line completion library */
|
|
|
|
/* Enable multiline editing. If not set, long commands will scroll within
|
|
|
|
* single line.
|
|
|
|
*/
|
|
|
|
linenoiseSetMultiLine(1);
|
|
|
|
|
|
|
|
/* Tell linenoise where to get command completions and hints */
|
|
|
|
linenoiseSetCompletionCallback(&esp_console_get_completion);
|
|
|
|
linenoiseSetHintsCallback((linenoiseHintsCallback*) &esp_console_get_hint);
|
|
|
|
|
|
|
|
/* Set command history size */
|
|
|
|
linenoiseHistorySetMaxLen(100);
|
|
|
|
|
|
|
|
#if CONFIG_STORE_HISTORY
|
|
|
|
/* Load command history from filesystem */
|
|
|
|
linenoiseHistoryLoad(HISTORY_PATH);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void app_main()
|
|
|
|
{
|
2018-01-09 04:47:32 +00:00
|
|
|
initialize_nvs();
|
|
|
|
|
2017-08-15 08:11:19 +00:00
|
|
|
#if CONFIG_STORE_HISTORY
|
|
|
|
initialize_filesystem();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
initialize_console();
|
|
|
|
|
|
|
|
/* Register commands */
|
|
|
|
esp_console_register_help_command();
|
|
|
|
register_system();
|
|
|
|
register_wifi();
|
2019-01-11 01:51:50 +00:00
|
|
|
register_nvs();
|
2017-08-15 08:11:19 +00:00
|
|
|
|
2017-08-16 06:59:28 +00:00
|
|
|
/* Prompt to be printed before each line.
|
|
|
|
* This can be customized, made dynamic, etc.
|
|
|
|
*/
|
|
|
|
const char* prompt = LOG_COLOR_I "esp32> " LOG_RESET_COLOR;
|
|
|
|
|
2017-08-15 08:11:19 +00:00
|
|
|
printf("\n"
|
|
|
|
"This is an example of ESP-IDF console component.\n"
|
|
|
|
"Type 'help' to get the list of commands.\n"
|
|
|
|
"Use UP/DOWN arrows to navigate through command history.\n"
|
|
|
|
"Press TAB when typing command name to auto-complete.\n");
|
|
|
|
|
2017-08-16 06:59:28 +00:00
|
|
|
/* Figure out if the terminal supports escape sequences */
|
|
|
|
int probe_status = linenoiseProbe();
|
|
|
|
if (probe_status) { /* zero indicates success */
|
|
|
|
printf("\n"
|
|
|
|
"Your terminal application does not support escape sequences.\n"
|
|
|
|
"Line editing and history features are disabled.\n"
|
|
|
|
"On Windows, try using Putty instead.\n");
|
|
|
|
linenoiseSetDumbMode(1);
|
|
|
|
#if CONFIG_LOG_COLORS
|
|
|
|
/* Since the terminal doesn't support escape sequences,
|
|
|
|
* don't use color codes in the prompt.
|
|
|
|
*/
|
|
|
|
prompt = "esp32> ";
|
|
|
|
#endif //CONFIG_LOG_COLORS
|
|
|
|
}
|
2017-08-15 08:11:19 +00:00
|
|
|
|
|
|
|
/* Main loop */
|
2017-08-16 06:59:28 +00:00
|
|
|
while(true) {
|
|
|
|
/* Get a line using linenoise.
|
|
|
|
* The line is returned when ENTER is pressed.
|
|
|
|
*/
|
|
|
|
char* line = linenoise(prompt);
|
|
|
|
if (line == NULL) { /* Ignore empty lines */
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/* Add the command to the history */
|
|
|
|
linenoiseHistoryAdd(line);
|
2017-08-15 08:11:19 +00:00
|
|
|
#if CONFIG_STORE_HISTORY
|
2017-08-16 06:59:28 +00:00
|
|
|
/* Save command history to filesystem */
|
|
|
|
linenoiseHistorySave(HISTORY_PATH);
|
2017-08-15 08:11:19 +00:00
|
|
|
#endif
|
|
|
|
|
2017-08-16 06:59:28 +00:00
|
|
|
/* Try to run the command */
|
|
|
|
int ret;
|
|
|
|
esp_err_t err = esp_console_run(line, &ret);
|
|
|
|
if (err == ESP_ERR_NOT_FOUND) {
|
|
|
|
printf("Unrecognized command\n");
|
2017-10-12 23:12:08 +00:00
|
|
|
} else if (err == ESP_ERR_INVALID_ARG) {
|
|
|
|
// command was empty
|
2017-08-16 06:59:28 +00:00
|
|
|
} else if (err == ESP_OK && ret != ESP_OK) {
|
2018-02-22 13:48:53 +00:00
|
|
|
printf("Command returned non-zero error code: 0x%x (%s)\n", ret, esp_err_to_name(err));
|
2017-08-16 06:59:28 +00:00
|
|
|
} else if (err != ESP_OK) {
|
2018-02-22 13:48:53 +00:00
|
|
|
printf("Internal error: %s\n", esp_err_to_name(err));
|
2017-08-15 08:11:19 +00:00
|
|
|
}
|
|
|
|
/* linenoise allocates line buffer on the heap, so need to free it */
|
|
|
|
linenoiseFree(line);
|
|
|
|
}
|
|
|
|
}
|