mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
fix(console): switch USB PHY to OTG when OTG is used for console
On ESP32-S3 with the default efuse settings, USB PHY is connected to the USB_SERIAL_JTAG peripheral. If USB OTG peripheral is used for the console, we need to additionally switch the PHY to USB OTG, otherwise we won't get any output. Closes https://github.com/espressif/esp-idf/issues/12437
This commit is contained in:
parent
1685dbc985
commit
a8e175364a
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* SPDX-FileCopyrightText: 2020-2022 Espressif Systems (Shanghai) CO LTD
|
* SPDX-FileCopyrightText: 2020-2023 Espressif Systems (Shanghai) CO LTD
|
||||||
*
|
*
|
||||||
* SPDX-License-Identifier: Apache-2.0
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
*/
|
*/
|
||||||
@ -18,6 +18,9 @@
|
|||||||
#include "esp32s2/rom/usb/cdc_acm.h"
|
#include "esp32s2/rom/usb/cdc_acm.h"
|
||||||
#include "esp32s2/rom/usb/usb_common.h"
|
#include "esp32s2/rom/usb/usb_common.h"
|
||||||
#endif
|
#endif
|
||||||
|
#if SOC_USB_SERIAL_JTAG_SUPPORTED
|
||||||
|
#include "hal/usb_phy_ll.h"
|
||||||
|
#endif
|
||||||
#include "esp_rom_gpio.h"
|
#include "esp_rom_gpio.h"
|
||||||
#include "esp_rom_uart.h"
|
#include "esp_rom_uart.h"
|
||||||
#include "esp_rom_sys.h"
|
#include "esp_rom_sys.h"
|
||||||
@ -98,6 +101,9 @@ void bootloader_console_init(void)
|
|||||||
esp_rom_uart_usb_acm_init(s_usb_cdc_buf, sizeof(s_usb_cdc_buf));
|
esp_rom_uart_usb_acm_init(s_usb_cdc_buf, sizeof(s_usb_cdc_buf));
|
||||||
esp_rom_uart_set_as_console(ESP_ROM_USB_OTG_NUM);
|
esp_rom_uart_set_as_console(ESP_ROM_USB_OTG_NUM);
|
||||||
esp_rom_install_channel_putc(1, bootloader_console_write_char_usb);
|
esp_rom_install_channel_putc(1, bootloader_console_write_char_usb);
|
||||||
|
#if SOC_USB_SERIAL_JTAG_SUPPORTED
|
||||||
|
usb_phy_ll_int_otg_enable(&USB_WRAP);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
#endif //CONFIG_ESP_CONSOLE_USB_CDC
|
#endif //CONFIG_ESP_CONSOLE_USB_CDC
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user