fix(usb_otg): Fix bug that usb_otg console cannot work on esp32s3

This commit is contained in:
Cao Sen Miao 2024-02-05 20:03:40 +08:00 committed by BOT
parent aa95bb1e9a
commit ec130b0a64

View File

@ -219,7 +219,7 @@ void IRAM_ATTR call_start_cpu1(void)
#if CONFIG_ESP_CONSOLE_NONE
esp_rom_install_channel_putc(1, NULL);
esp_rom_install_channel_putc(2, NULL);
#else // CONFIG_ESP_CONSOLE_NONE
#elif !CONFIG_ESP_CONSOLE_USB_CDC
esp_rom_install_uart_printf();
esp_rom_output_set_as_console(CONFIG_ESP_CONSOLE_ROM_SERIAL_PORT_NUM);
#endif