Skip to content

Commit c020820

Browse files
committed
Merge pull request #267 from 0xc0170/fix_nucleo_fpu
NUCLEO_F401RE and NUCLEO_F302R8 - FPU enabled
2 parents 8215203 + 2ae1072 commit c020820

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

workspace_tools/targets.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ class NUCLEO_F401RE(Target):
340340
def __init__(self):
341341
Target.__init__(self)
342342

343-
self.core = "Cortex-M4"
343+
self.core = "Cortex-M4F"
344344

345345
self.extra_labels = ['STM', 'STM32F4', 'STM32F401RE']
346346

@@ -372,7 +372,7 @@ class NUCLEO_F302R8(Target):
372372
def __init__(self):
373373
Target.__init__(self)
374374

375-
self.core = "Cortex-M4"
375+
self.core = "Cortex-M4F"
376376

377377
self.extra_labels = ['STM', 'STM32F3', 'STM32F302R8']
378378

0 commit comments

Comments
 (0)