Merge pull request #822 from oliviermartin/om/gcc-cortexm0plus

Tools: Use 'cortex-m0plus' support for ARM Cortex M0+
pull/825/head
Martin Kojtal 2015-01-02 09:10:16 +01:00
commit 15386a368c
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: