- Changed macro __VFP_FP__ to __ARM_FP for ports GCC/ARM_CM7, GCC/ARM_CM4_MPU, and GCC/ARM_CM4F to accurately reflect if floating point hardware support is enabled

This commit is contained in:
Hayden Riddiford 2024-06-10 10:17:29 -07:00
parent bee9037c46
commit 285b31b4f9
3 changed files with 3 additions and 3 deletions

View file

@ -34,7 +34,7 @@
#include "FreeRTOS.h" #include "FreeRTOS.h"
#include "task.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. #error This port can only be used when the project options are configured to enable hardware floating point support.
#endif #endif

View file

@ -40,7 +40,7 @@
#include "task.h" #include "task.h"
#include "mpu_syscall_numbers.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. #error This port can only be used when the project options are configured to enable hardware floating point support.
#endif #endif

View file

@ -34,7 +34,7 @@
#include "FreeRTOS.h" #include "FreeRTOS.h"
#include "task.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. #error This port can only be used when the project options are configured to enable hardware floating point support.
#endif #endif