From 1c185311bcede660046bac93572e5c15f530003f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Sim=C3=B5es?= Date: Thu, 14 Dec 2023 19:12:08 +0000 Subject: [PATCH] Add missing define to hal_usbh_lld --- os/hal/ports/STM32/LLD/USBHv1/hal_usbh_lld.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/os/hal/ports/STM32/LLD/USBHv1/hal_usbh_lld.c b/os/hal/ports/STM32/LLD/USBHv1/hal_usbh_lld.c index 41f1aacac8..1f6ef131f3 100644 --- a/os/hal/ports/STM32/LLD/USBHv1/hal_usbh_lld.c +++ b/os/hal/ports/STM32/LLD/USBHv1/hal_usbh_lld.c @@ -82,6 +82,9 @@ #if !defined(STM32_OTG2_USE_HS) #define STM32_OTG2_USE_HS FALSE #endif +#if !defined(STM32_OTG1_USE_ULPI) +#define STM32_OTG1_USE_ULPI FALSE +#endif #if !defined(STM32_OTG2_USE_ULPI) #define STM32_OTG2_USE_ULPI FALSE #endif