Skip to content

Commit 15386a3

Browse files
committed
Merge pull request #822 from oliviermartin/om/gcc-cortexm0plus
Tools: Use 'cortex-m0plus' support for ARM Cortex M0+
2 parents d198fba + 76efcd3 commit 15386a3

File tree

1 file changed

+1
-1
lines changed
  • workspace_tools/toolchains

1 file changed

+1
-1
lines changed

workspace_tools/toolchains/gcc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def __init__(self, target, options=None, notify=None, macros=None, silent=False,
3434
mbedToolchain.__init__(self, target, options, notify, macros, silent)
3535

3636
if target.core == "Cortex-M0+":
37-
cpu = "cortex-m0"
37+
cpu = "cortex-m0plus"
3838
elif target.core == "Cortex-M4F":
3939
cpu = "cortex-m4"
4040
else:

0 commit comments

Comments
 (0)