Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed macro __VFP_FP__ to __ARM_FP #1088

Merged
merged 2 commits into from
Jun 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion portable/GCC/ARM_CM4F/port.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
#include "FreeRTOS.h"
#include "task.h"

#ifndef __VFP_FP__
#ifndef __ARM_FP
#error This port can only be used when the project options are configured to enable hardware floating point support.
#endif

Expand Down
2 changes: 1 addition & 1 deletion portable/GCC/ARM_CM4_MPU/port.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
#include "task.h"
#include "mpu_syscall_numbers.h"

#ifndef __VFP_FP__
#ifndef __ARM_FP
#error This port can only be used when the project options are configured to enable hardware floating point support.
#endif

Expand Down
2 changes: 1 addition & 1 deletion portable/GCC/ARM_CM7/r0p1/port.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
#include "FreeRTOS.h"
#include "task.h"

#ifndef __VFP_FP__
#ifndef __ARM_FP
#error This port can only be used when the project options are configured to enable hardware floating point support.
#endif

Expand Down
Loading