mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-31 11:17:20 +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
f24e1f5601
commit
0e5d47836b
@@ -185,7 +185,7 @@ int xt_clock_freq(void) __attribute__((deprecated));
|
||||
|
||||
/* with optimizations disabled, scheduler uses additional stack */
|
||||
#if CONFIG_COMPILER_OPTIMIZATION_NONE
|
||||
#define configSTACK_OVERHEAD_OPTIMIZATION 256
|
||||
#define configSTACK_OVERHEAD_OPTIMIZATION 320
|
||||
#else
|
||||
#define configSTACK_OVERHEAD_OPTIMIZATION 0
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user