fix configENABLE_FPU=0 for cortex-m33+nodsp

This commit is contained in:
hathach 2024-04-08 11:04:15 +07:00
parent dd3db9cc0c
commit 7f7dca7b15
No known key found for this signature in database
GPG Key ID: 26FAB84F615C3C52
2 changed files with 7 additions and 5 deletions

View File

@ -49,7 +49,11 @@
/* Cortex M23/M33 port configuration. */
#define configENABLE_MPU 0
#define configENABLE_FPU 1
#if defined(__ARM_FP) && __ARM_FP >= 4
#define configENABLE_FPU 1
#else
#define configENABLE_FPU 0
#endif
#define configENABLE_TRUSTZONE 0
#define configMINIMAL_SECURE_STACK_SIZE (1024)

View File

@ -64,13 +64,11 @@
/* Cortex M23/M33 port configuration. */
#define configENABLE_MPU 0
#if defined(__ARM_FP) && __ARM_FP >= 4
#define configENABLE_FPU 1
#define configENABLE_FPU 1
#else
#define configENABLE_FPU 0
#define configENABLE_FPU 0
#endif
#define configENABLE_TRUSTZONE 0
#define configMINIMAL_SECURE_STACK_SIZE (1024)