Skip to content

Commit 744e2cc

Browse files
committed
Tools: Add "Cortex-M33E" option
There was a gap in our pattern - we didn't offer M33 with DSP Extension but no floating-point.
1 parent 56e2d33 commit 744e2cc

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

tools/toolchains/arm.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -574,6 +574,7 @@ def __init__(self, target, *args, **kwargs):
574574
"Cortex-M7F": "Cortex-M7.fp.sp",
575575
"Cortex-M7FD": "Cortex-M7",
576576
"Cortex-M33": "Cortex-M33.no_dsp.no_fp",
577+
"Cortex-M33E": "Cortex-M33.no_fp",
577578
"Cortex-M33F": "Cortex-M33.no_dsp",
578579
"Cortex-M33FE": "Cortex-M33"}.get(core, core)
579580

tools/toolchains/gcc.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ def __init__(self, target, notify=None, macros=None, build_profile=None,
7979
"Cortex-M7F": "cortex-m7",
8080
"Cortex-M7FD": "cortex-m7",
8181
"Cortex-M33": "cortex-m33+nodsp",
82+
"Cortex-M33E": "cortex-m33",
8283
"Cortex-M33F": "cortex-m33+nodsp",
8384
"Cortex-M33FE": "cortex-m33"}.get(core, core)
8485

tools/toolchains/iar.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ def __init__(self, target, notify=None, macros=None, build_profile=None,
7272
"Cortex-M7F": "Cortex-M7.fp.sp",
7373
"Cortex-M7FD": "Cortex-M7.fp.dp",
7474
"Cortex-M33": "Cortex-M33.no_dsp",
75+
"Cortex-M33E": "Cortex-M33",
7576
"Cortex-M33F": "Cortex-M33.fp.no_dsp",
7677
"Cortex-M33FE": "Cortex-M33.fp"}.get(core, core)
7778

0 commit comments

Comments
 (0)