From 1d5aa9d245362d060843688a97f12a86b8fe1e46 Mon Sep 17 00:00:00 2001 From: Damien George Date: Sun, 5 Jun 2016 12:43:04 +0100 Subject: [PATCH] cc3200: In FreeRTOSConfig.h, comment on configSUPPORT_STATIC_ALLOCATION. This config variable is now needed regardless of whether threading is enabled or not. --- cc3200/FreeRTOS/FreeRTOSConfig.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cc3200/FreeRTOS/FreeRTOSConfig.h b/cc3200/FreeRTOS/FreeRTOSConfig.h index abde28937..c0d50d0c1 100644 --- a/cc3200/FreeRTOS/FreeRTOSConfig.h +++ b/cc3200/FreeRTOS/FreeRTOSConfig.h @@ -154,9 +154,11 @@ version. */ /* We provide a definition of ucHeap so it can go in a special segment. */ #define configAPPLICATION_ALLOCATED_HEAP 1 +/* We use static versions of functions (like xTaskCreateStatic) */ +#define configSUPPORT_STATIC_ALLOCATION 1 + /* For threading */ #define configNUM_THREAD_LOCAL_STORAGE_POINTERS 1 -#define configSUPPORT_STATIC_ALLOCATION 1 #undef configUSE_MUTEXES #define configUSE_MUTEXES 1 #undef INCLUDE_vTaskDelete