From d6400c77de65ba6b7219e274c08af100c9b04eaa Mon Sep 17 00:00:00 2001 From: Gilles DOFFE Date: Mon, 3 Aug 2020 00:37:59 +0200 Subject: [PATCH] cpu/stm32: include stm32mp1 vendor headers Include stm32mp1 vendors header. CORE_CM4 must be defined to include Cortex-M4 core headers. Signed-off-by: Gilles DOFFE --- cpu/stm32/include/cpu_conf.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cpu/stm32/include/cpu_conf.h b/cpu/stm32/include/cpu_conf.h index 8487ef8284..e33041b676 100644 --- a/cpu/stm32/include/cpu_conf.h +++ b/cpu/stm32/include/cpu_conf.h @@ -25,6 +25,8 @@ #if defined(CPU_LINE_STM32F030x4) #include "vendor/stm32f030x4.h" +#elif defined(CPU_LINE_STM32MP157Cxx) +#include "vendor/stm32mp157cxx_cm4.h" #elif CPU_FAM_STM32F0 #include "stm32f0xx.h" #include "irqs/f0/irqs.h"