set a more lwIP-friendly minimum stack in FreeRTOS

This commit is contained in:
Sergio R. Caprile 2023-05-24 11:30:01 -03:00
parent 68a45adac7
commit 379af7dec2
2 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ extern uint32_t SystemCoreClock;
#define configCPU_CLOCK_HZ (SystemCoreClock)
#define configTICK_RATE_HZ ((TickType_t)1000)
#define configTOTAL_HEAP_SIZE ((size_t)1024 * 128)
#define configMINIMAL_STACK_SIZE ((uint16_t)128)
#define configMINIMAL_STACK_SIZE ((uint16_t)256)
#define configSUPPORT_DYNAMIC_ALLOCATION 1
#define configSUPPORT_STATIC_ALLOCATION 0

View File

@ -51,7 +51,7 @@
// <o>Minimal stack size [words] <0-65535>
// <i> Stack for idle task and default task stack in words.
// <i> Default: 128
#define configMINIMAL_STACK_SIZE ((uint16_t)(128))
#define configMINIMAL_STACK_SIZE ((uint16_t)(256))
// <o>Total heap size [bytes] <0-0xFFFFFFFF>
// <i> Heap memory size in bytes.