Home
last modified time | relevance | path

Searched refs:repl_com (Results 1 – 1 of 1) sorted by relevance

/hal_espressif-3.6.0/components/console/
Desp_console_repl.c45 esp_console_repl_com_t repl_com; // base class member
55 …tic esp_err_t esp_console_common_init(size_t max_cmdline_length, esp_console_repl_com_t *repl_com);
56 static esp_err_t esp_console_setup_prompt(const char *prompt, esp_console_repl_com_t *repl_com);
57 …etup_history(const char *history_path, uint32_t max_history_len, esp_console_repl_com_t *repl_com);
84 ret = esp_console_common_init(repl_config->max_cmdline_length, &cdc_repl->repl_com); in esp_console_new_repl_usb_cdc()
90 …e_setup_history(repl_config->history_save_path, repl_config->max_history_len, &cdc_repl->repl_com); in esp_console_new_repl_usb_cdc()
96 esp_console_setup_prompt(repl_config->prompt, &cdc_repl->repl_com); in esp_console_new_repl_usb_cdc()
100 cdc_repl->repl_com.state = CONSOLE_REPL_STATE_INIT; in esp_console_new_repl_usb_cdc()
101 cdc_repl->repl_com.repl_core.del = esp_console_repl_usb_cdc_delete; in esp_console_new_repl_usb_cdc()
105 cdc_repl, repl_config->task_priority, &cdc_repl->repl_com.task_hdl) != pdTRUE) { in esp_console_new_repl_usb_cdc()
[all …]