workspace_tools/toolchains/gcc.py: Use 'cortex-m0plus' support for Cortex M0+

This support is supported by:
- gcc-arm-none-eabi-4_7-2013q1
- gcc-arm-none-eabi-4_9-2014q4
pull/822/head
Olivier Martin 2015-01-01 19:02:46 +00:00
parent 2f63fa7d78
commit 76efcd382c
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ class GCC(mbedToolchain):
mbedToolchain.__init__(self, target, options, notify, macros, silent)
if target.core == "Cortex-M0+":
cpu = "cortex-m0"
cpu = "cortex-m0plus"
elif target.core == "Cortex-M4F":
cpu = "cortex-m4"
else: