Merge pull request #267 from 0xc0170/fix_nucleo_fpu

NUCLEO_F401RE and NUCLEO_F302R8 - FPU enabled
pull/263/merge
Bogdan Marinescu 2014-04-22 09:57:58 +01:00
commit c0208208b2
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']