CMSIS-DSP: Test framework improvement
Added a new core.
diff --git a/CMSIS/DSP/configPlatform.cmake b/CMSIS/DSP/configPlatform.cmake
index 66cbbfb..a230484 100644
--- a/CMSIS/DSP/configPlatform.cmake
+++ b/CMSIS/DSP/configPlatform.cmake
@@ -164,6 +164,15 @@
if (ARM_CPU MATCHES "^[cC]ortex-[rR]8([^0-9].*)?$")
SET(CORE ARMCR8 PARENT_SCOPE)
endif()
+
+ ###################
+ #
+ # Cortex cortex-r52
+ #
+ if (ARM_CPU MATCHES "^[cC]ortex-[rR]52([^0-9].*)?$")
+ SET(CORE ARMCR52 PARENT_SCOPE)
+ endif()
+
endfunction()
function(core_includes PROJECTNAME)