- add cmake to samd11

- build_cmake.py always build with -DCMAKE_BUILD_TYPE=MinSizeRel
This commit is contained in:
hathach
2024-05-03 12:45:41 +07:00
parent 43f4317a97
commit 1cf68f98b3
15 changed files with 332 additions and 15 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)