|
|
@@ -27,6 +27,7 @@
|
|
|
#include "esp32s2/rom/usb/usb_common.h"
|
|
|
#elif CONFIG_IDF_TARGET_ESP32C3
|
|
|
#include "esp32c3/rom/ets_sys.h"
|
|
|
+#include "esp32c3/rom/uart.h"
|
|
|
#endif
|
|
|
#include "esp_rom_gpio.h"
|
|
|
#include "esp_rom_uart.h"
|
|
|
@@ -115,7 +116,7 @@ void bootloader_console_init(void)
|
|
|
#ifdef CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG
|
|
|
void bootloader_console_init(void)
|
|
|
{
|
|
|
- //Nothing to do; ROM already outputs here by default.
|
|
|
- //(But also to the UART; should we disable that? hmm.)
|
|
|
+ UartDevice *uart = GetUartDevice();
|
|
|
+ uart->buff_uart_no = ESP_ROM_USB_SERIAL_DEVICE_NUM;
|
|
|
}
|
|
|
#endif //CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG
|