Skip to content

Commit 7fdc827

Browse files
committed
Add Cortex-M7F support for the armcc toolchain
1 parent 06e2b3c commit 7fdc827

File tree

1 file changed

+2
-0
lines changed
  • workspace_tools/toolchains

1 file changed

+2
-0
lines changed

workspace_tools/toolchains/arm.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ def __init__(self, target, options=None, notify=None, macros=None, silent=False)
3737
cpu = "Cortex-M0"
3838
elif target.core == "Cortex-M4F":
3939
cpu = "Cortex-M4.fp"
40+
elif target.core == "Cortex-M7F":
41+
cpu = "Cortex-M7.fp.sp"
4042
else:
4143
cpu = target.core
4244

0 commit comments

Comments
 (0)