summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorayamas01 <ayaan.masood@arm.com>2021-11-18 14:22:23 +0000
committerAyaan Masood <Ayaan.Masood@arm.com>2021-11-18 16:20:54 +0000
commit15f80701751f09caa023dabea6dec45f3825fa5b (patch)
tree851ee015c06b1435ee43afa3d59725931ae6f698 /source
parente7a0393973a1a1c1ed05b1bf1838fe931416890a (diff)
downloadml-embedded-evaluation-kit-15f80701751f09caa023dabea6dec45f3825fa5b.tar.gz
MLECO-2525 Upgrade to C++ 14
-Updated CMake to use C++ 14 -Removed cmsis makefile include from tensorflow.cmake -Documentation update -Added more flags for processor in CMake Change-Id: I1c2b72141e98a5cf8bb09176d7c331da3b05b4c5
Diffstat (limited to 'source')
-rw-r--r--source/application/hal/platforms/bare-metal/bsp/cmsis-device/include/cmsis.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/application/hal/platforms/bare-metal/bsp/cmsis-device/include/cmsis.h b/source/application/hal/platforms/bare-metal/bsp/cmsis-device/include/cmsis.h
index 969db15..9d6326a 100644
--- a/source/application/hal/platforms/bare-metal/bsp/cmsis-device/include/cmsis.h
+++ b/source/application/hal/platforms/bare-metal/bsp/cmsis-device/include/cmsis.h
@@ -17,7 +17,9 @@
#ifndef BAREMETAL_CMSIS_H
#define BAREMETAL_CMSIS_H
-#include "ARMCM55.h" /* Cortex M system header file from CMSIS. */
+#if defined(CPU_HEADER_FILE)
+#include CPU_HEADER_FILE /* Cortex M system header file from CMSIS. */
+#endif /* CPU_HEADER_FILE */
#include "irqs.h" /* Interrupt definitions file. */
/* Addition to template functions should be mentioned here. */