From 689e1c6de95ac48fda8e9654f34a6be0061955c1 Mon Sep 17 00:00:00 2001 From: Christian Mauderer Date: Mon, 7 Jul 2025 10:00:00 +0200 Subject: [PATCH] bsps/stm32u5: Fix build error The cortex_m33.h should not be included directly. It is already included in the stm32u5xx.h and that file sets all necessary defines. Updates #5289 --- bsps/arm/stm32u5/include/chip.h | 1 - 1 file changed, 1 deletion(-) diff --git a/bsps/arm/stm32u5/include/chip.h b/bsps/arm/stm32u5/include/chip.h index 2d19509978..e0d0f127a2 100644 --- a/bsps/arm/stm32u5/include/chip.h +++ b/bsps/arm/stm32u5/include/chip.h @@ -36,7 +36,6 @@ #ifndef LIBBSP_ARM_STM32U5_CHIP_H #define LIBBSP_ARM_STM32U5_CHIP_H -#include #include #endif /* LIBBSP_ARM_STM32U5_CHIP_H */