From b883bfb20e5c4998f5dfc1c41f5d134e026ae1d0 Mon Sep 17 00:00:00 2001 From: 0xc0170 Date: Wed, 8 Jul 2015 13:49:24 +0100 Subject: [PATCH] Fix MPS2 M7 - set cpu to M4F --- workspace_tools/targets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workspace_tools/targets.py b/workspace_tools/targets.py index 151541cbb5..a733dce42f 100755 --- a/workspace_tools/targets.py +++ b/workspace_tools/targets.py @@ -1188,7 +1188,7 @@ class ARM_MPS2_M4(ARM_MPS2_Target): class ARM_MPS2_M7(ARM_MPS2_Target): def __init__(self): ARM_MPS2_Target.__init__(self) - self.core = "Cortex-M7F" + self.core = "Cortex-M4F" self.extra_labels = ['ARM_SSG', 'MPS2', 'MPS2_M7'] self.macros = ['CMSDK_CM7'] self.supported_toolchains = ["ARM", "GCC_ARM"]