[PATCH 4/7] bsps/stm32h7: include CMSIS Cortex-M4 header when required by configuration

Karel Gardas karel at functional.vision
Sun May 29 23:36:05 UTC 2022


Sponsored-By:	Precidata
---
 bsps/arm/stm32h7/include/chip.h | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/bsps/arm/stm32h7/include/chip.h b/bsps/arm/stm32h7/include/chip.h
index 26b067a3b7..ac579c0743 100644
--- a/bsps/arm/stm32h7/include/chip.h
+++ b/bsps/arm/stm32h7/include/chip.h
@@ -29,6 +29,13 @@
 #define LIBBSP_ARM_STM32H7_CHIP_H
 
 #include <stm32h7xx.h>
+#if defined(CORE_CM7) || defined(BOOT_CORE_DEFINE_NOT_NEEDED)
+/* M7 is a default core of the H7 family */
 #include <core_cm7.h>
+#elif defined(CORE_CM4)
+#include <core_cm4.h>
+#else
+#error "Boot core definition missing!"
+#endif
 
 #endif /* LIBBSP_ARM_STM32H7_CHIP_H */
-- 
2.25.1



More information about the devel mailing list