From 74800d0cdf27e6088e86549dfcdd381ff8bc8400 Mon Sep 17 00:00:00 2001 From: Drashna Jaelre Date: Thu, 30 Jul 2026 18:48:45 -0700 Subject: [PATCH] Add STM32_USB_USE_OTG2 to USB_ENDPOINTS_ARE_REORDERABLE (#26369) --- tmk_core/protocol/usb_descriptor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tmk_core/protocol/usb_descriptor.h b/tmk_core/protocol/usb_descriptor.h index 1095192c72c..27058b7c123 100644 --- a/tmk_core/protocol/usb_descriptor.h +++ b/tmk_core/protocol/usb_descriptor.h @@ -47,7 +47,7 @@ #ifdef PROTOCOL_CHIBIOS # include -# if STM32_USB_USE_OTG1 == TRUE +# if STM32_USB_USE_OTG1 == TRUE || STM32_USB_USE_OTG2 == TRUE # define USB_ENDPOINTS_ARE_REORDERABLE # endif #endif