From 24cdca810131622ec867413c0f6c72550ec6b3bd Mon Sep 17 00:00:00 2001 From: dragonmux Date: Wed, 10 Apr 2024 05:30:04 +0100 Subject: [PATCH] usb/dwc: Enable the STM32H7 in the DWC2 support --- include/libopencm3/usb/dwc/otg_hs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/libopencm3/usb/dwc/otg_hs.h b/include/libopencm3/usb/dwc/otg_hs.h index eee8a7e6..fd57a128 100644 --- a/include/libopencm3/usb/dwc/otg_hs.h +++ b/include/libopencm3/usb/dwc/otg_hs.h @@ -28,7 +28,7 @@ #include /* Memory map is required for USB_OTG_HS_BASE address */ -#if defined(STM32F2) || defined(STM32F4) || defined(STM32F7) +#if defined(STM32F2) || defined(STM32F4) || defined(STM32F7) || defined(STM32H7) # include #else # error "device family not supported by dwc/otg_hs."