From 53f52f9e0e4fb6ed6b5569babc186fe1f7383c68 Mon Sep 17 00:00:00 2001 From: deepikabhavnani Date: Fri, 25 Jan 2019 11:52:46 -0600 Subject: [PATCH] Set the DSP option as `E` for Cortex-M33 --- tools/toolchains/iar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/toolchains/iar.py b/tools/toolchains/iar.py index c749bde5ac..ea30f53908 100644 --- a/tools/toolchains/iar.py +++ b/tools/toolchains/iar.py @@ -64,7 +64,7 @@ class IAR(mbedToolchain): "Cortex-M7F": "Cortex-M7.fp.sp", "Cortex-M33": "Cortex-M33.no_dsp", "Cortex-M33F": "Cortex-M33.fp.no_dsp", - "Cortex-M33FD": "Cortex-M33.fp"}.get(core, core) + "Cortex-M33FE": "Cortex-M33.fp"}.get(core, core) # flags_cmd are used only by our scripts, the project files have them already defined, # using this flags results in the errors (duplication)