From 723afd9f56ebaf2f78de3ce44dc936ffd0467c30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mario=20H=C3=BCttel?= Date: Sat, 15 Feb 2020 01:03:19 +0100 Subject: [PATCH] Fix arm math header --- stm-firmware/include/arm_math.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stm-firmware/include/arm_math.h b/stm-firmware/include/arm_math.h index 59662ae..aeec6d0 100644 --- a/stm-firmware/include/arm_math.h +++ b/stm-firmware/include/arm_math.h @@ -267,7 +267,7 @@ #define __CMSIS_GENERIC /* disable NVIC and Systick functions */ #if defined (ARM_MATH_CM4) -#include "core_cm4.h" +#include #elif defined (ARM_MATH_CM3) #include "core_cm3.h" #elif defined (ARM_MATH_CM0) @@ -282,8 +282,8 @@ #endif #undef __CMSIS_GENERIC /* enable NVIC and Systick functions */ -#include "string.h" -#include "math.h" +#include +#include #ifdef __cplusplus extern "C" {