From 43844036384159fd7b350bc0ad547e5bbe8a3e9e Mon Sep 17 00:00:00 2001 From: Gunar Schorcht Date: Sun, 2 Oct 2022 17:00:09 +0200 Subject: [PATCH] boards/common/esp32{s2,s3}: update USB OTG configuration --- boards/common/esp32s2/include/periph_conf_common.h | 1 + boards/common/esp32s3/include/periph_conf_common.h | 1 + 2 files changed, 2 insertions(+) diff --git a/boards/common/esp32s2/include/periph_conf_common.h b/boards/common/esp32s2/include/periph_conf_common.h index 47c663e9c3..2258acf5b5 100644 --- a/boards/common/esp32s2/include/periph_conf_common.h +++ b/boards/common/esp32s2/include/periph_conf_common.h @@ -352,6 +352,7 @@ static const dwc2_usb_otg_fshs_config_t dwc2_usb_otg_fshs_config[] = { { .periph = USB_OTG_FS_PERIPH_BASE, .type = DWC2_USB_OTG_FS, + .phy = DWC2_USB_OTG_PHY_BUILTIN, } }; diff --git a/boards/common/esp32s3/include/periph_conf_common.h b/boards/common/esp32s3/include/periph_conf_common.h index 0d6002f211..2e7c2a1232 100644 --- a/boards/common/esp32s3/include/periph_conf_common.h +++ b/boards/common/esp32s3/include/periph_conf_common.h @@ -352,6 +352,7 @@ static const dwc2_usb_otg_fshs_config_t dwc2_usb_otg_fshs_config[] = { { .periph = USB_OTG_FS_PERIPH_BASE, .type = DWC2_USB_OTG_FS, + .phy = DWC2_USB_OTG_PHY_BUILTIN, } };