mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-01 19:54:32 +02:00
freertos: Add a small additional stack when optimization set to None
Fix for occasional crash on startup when DPORT task overwrites its stack during context switch, otherwise.
This commit is contained in:
committed by
Omar Chebib
parent
7fc2f91841
commit
9bd9e939ba
@@ -192,7 +192,7 @@ int xt_clock_freq(void) __attribute__((deprecated));
|
|||||||
|
|
||||||
/* with optimizations disabled, scheduler uses additional stack */
|
/* with optimizations disabled, scheduler uses additional stack */
|
||||||
#if CONFIG_COMPILER_OPTIMIZATION_NONE
|
#if CONFIG_COMPILER_OPTIMIZATION_NONE
|
||||||
#define configSTACK_OVERHEAD_OPTIMIZATION 256
|
#define configSTACK_OVERHEAD_OPTIMIZATION 320
|
||||||
#else
|
#else
|
||||||
#define configSTACK_OVERHEAD_OPTIMIZATION 0
|
#define configSTACK_OVERHEAD_OPTIMIZATION 0
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user