Home
last modified time | relevance | path

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

/hal_espressif-3.6.0/components/console/
Desp_console_repl.c62 esp_console_repl_universal_t *cdc_repl = NULL; in esp_console_new_repl_usb_cdc() local
68 cdc_repl = calloc(1, sizeof(esp_console_repl_universal_t)); in esp_console_new_repl_usb_cdc()
69 if (!cdc_repl) { in esp_console_new_repl_usb_cdc()
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()
99 cdc_repl->uart_channel = CONFIG_ESP_CONSOLE_UART_NUM; 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 …]