Tools: Add "Cortex-M33E" option

There was a gap in our pattern - we didn't offer M33 with DSP Extension
but no floating-point.
pull/10390/head
Kevin Bracey 2019-04-17 11:07:15 +03:00
parent 56e2d339c8
commit 744e2ccfa7
3 changed files with 3 additions and 0 deletions

View File

@ -574,6 +574,7 @@ class ARMC6(ARM_STD):
"Cortex-M7F": "Cortex-M7.fp.sp",
"Cortex-M7FD": "Cortex-M7",
"Cortex-M33": "Cortex-M33.no_dsp.no_fp",
"Cortex-M33E": "Cortex-M33.no_fp",
"Cortex-M33F": "Cortex-M33.no_dsp",
"Cortex-M33FE": "Cortex-M33"}.get(core, core)

View File

@ -79,6 +79,7 @@ class GCC(mbedToolchain):
"Cortex-M7F": "cortex-m7",
"Cortex-M7FD": "cortex-m7",
"Cortex-M33": "cortex-m33+nodsp",
"Cortex-M33E": "cortex-m33",
"Cortex-M33F": "cortex-m33+nodsp",
"Cortex-M33FE": "cortex-m33"}.get(core, core)

View File

@ -72,6 +72,7 @@ class IAR(mbedToolchain):
"Cortex-M7F": "Cortex-M7.fp.sp",
"Cortex-M7FD": "Cortex-M7.fp.dp",
"Cortex-M33": "Cortex-M33.no_dsp",
"Cortex-M33E": "Cortex-M33",
"Cortex-M33F": "Cortex-M33.fp.no_dsp",
"Cortex-M33FE": "Cortex-M33.fp"}.get(core, core)