Add Cortex-M7F support for the armcc toolchain

pull/887/head
Mihail Stoyanov 2015-02-10 17:50:11 +02:00
parent 06e2b3c880
commit 7fdc827b50
1 changed files with 2 additions and 0 deletions

View File

@ -37,6 +37,8 @@ class ARM(mbedToolchain):
cpu = "Cortex-M0"
elif target.core == "Cortex-M4F":
cpu = "Cortex-M4.fp"
elif target.core == "Cortex-M7F":
cpu = "Cortex-M7.fp.sp"
else:
cpu = target.core