File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 107
107
#define configUSE_MALLOC_FAILED_HOOK 1
108
108
109
109
#define configSUPPORT_DYNAMIC_ALLOCATION 1
110
- #define configSUPPORT_STATIC_ALLOCATION 1
110
+ #define configSUPPORT_STATIC_ALLOCATION 0
111
111
112
112
/* Timer definitions. */
113
113
#define configUSE_TIMERS 1
Original file line number Diff line number Diff line change @@ -374,7 +374,7 @@ typedef tskTCB TCB_t;
374
374
/*lint -e956 A manual analysis and inspection has been used to determine which
375
375
static variables must be declared volatile. */
376
376
377
- PRIVILEGED_DATA TCB_t * volatile pxCurrentTCB = NULL ;
377
+ PRIVILEGED_DATA TCB_t * volatile pxCurrentTCB __attribute__(( used )) = NULL ;
378
378
379
379
/* Lists for ready and blocked tasks. --------------------*/
380
380
PRIVILEGED_DATA static List_t pxReadyTasksLists [ configMAX_PRIORITIES ];/*< Prioritised ready tasks. */
You can’t perform that action at this time.
0 commit comments