NUCLEO_F401RE and NUCLEO_F302R8 - FPU enabled

pull/267/head
0xc0170 2014-04-19 11:33:08 +02:00
parent 6b044ada5b
commit 2ae10721a7
1 changed files with 2 additions and 2 deletions

View File

@ -340,7 +340,7 @@ class NUCLEO_F401RE(Target):
def __init__(self):
Target.__init__(self)
self.core = "Cortex-M4"
self.core = "Cortex-M4F"
self.extra_labels = ['STM', 'STM32F4', 'STM32F401RE']
@ -372,7 +372,7 @@ class NUCLEO_F302R8(Target):
def __init__(self):
Target.__init__(self)
self.core = "Cortex-M4"
self.core = "Cortex-M4F"
self.extra_labels = ['STM', 'STM32F3', 'STM32F302R8']