[HAL][GENERIC] Allow redefinition of macro UNUSED(x)
diff --git a/Inc/stm32f7xx_hal_def.h b/Inc/stm32f7xx_hal_def.h index 7a0223f..8bb99ea 100644 --- a/Inc/stm32f7xx_hal_def.h +++ b/Inc/stm32f7xx_hal_def.h
@@ -54,7 +54,9 @@ /* Exported macro ------------------------------------------------------------*/ +#if !defined(UNUSED) #define UNUSED(X) (void)X /* To avoid gcc/g++ warnings */ +#endif /* UNUSED */ #define HAL_MAX_DELAY 0xFFFFFFFFU