| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- /* USB 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 <fcntl.h>
- #include "esp_system.h"
- #include "esp_log.h"
- #include "esp_console.h"
- #include "linenoise/linenoise.h"
- #include "argtable3/argtable3.h"
- #include "cmd_nvs.h"
- #include "cmd_system.h"
- #include "esp_vfs_cdcacm.h"
- #include "nvs.h"
- #include "nvs_flash.h"
- static void initialize_nvs(void)
- {
- esp_err_t err = nvs_flash_init();
- if (err == ESP_ERR_NVS_NO_FREE_PAGES || err == ESP_ERR_NVS_NEW_VERSION_FOUND) {
- ESP_ERROR_CHECK( nvs_flash_erase() );
- err = nvs_flash_init();
- }
- ESP_ERROR_CHECK(err);
- }
- static void initialize_console(void)
- {
- /* Disable buffering on stdin */
- setvbuf(stdin, NULL, _IONBF, 0);
- /* Minicom, screen, idf_monitor send CR when ENTER key is pressed */
- esp_vfs_dev_cdcacm_set_rx_line_endings(ESP_LINE_ENDINGS_CR);
- /* Move the caret to the beginning of the next line on '\n' */
- esp_vfs_dev_cdcacm_set_tx_line_endings(ESP_LINE_ENDINGS_CRLF);
- /* Enable non-blocking mode on stdin and stdout */
- fcntl(fileno(stdout), F_SETFL, 0);
- fcntl(fileno(stdin), F_SETFL, 0);
- /* 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(10);
- }
- void app_main(void)
- {
- initialize_nvs();
- initialize_console();
- /* Register commands */
- esp_console_register_help_command();
- register_system_common();
- register_system_sleep();
- register_nvs();
- /* Prompt to be printed before each line.
- * This can be customized, made dynamic, etc.
- */
- const char* prompt = LOG_COLOR_I CONFIG_IDF_TARGET "> " LOG_RESET_COLOR;
- 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");
- /* 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 = CONFIG_IDF_TARGET "> ";
- #endif //CONFIG_LOG_COLORS
- }
- /* Main loop */
- 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);
- /* 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");
- } else if (err == ESP_ERR_INVALID_ARG) {
- // command was empty
- } else if (err == ESP_OK && ret != ESP_OK) {
- printf("Command returned non-zero error code: 0x%x (%s)\n", ret, esp_err_to_name(ret));
- } else if (err != ESP_OK) {
- printf("Internal error: %s\n", esp_err_to_name(err));
- }
- /* linenoise allocates line buffer on the heap, so need to free it */
- linenoiseFree(line);
- }
- }
|