mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-18 15:47:13 +00:00

Make internal stack size variables in FreeRTOS 32-bit instead of 16-bit Stock FreeRTOS uses an uint16 to store stack sizes, making it impossible to allocate a stack >64K. This changes this into an uint32, allowing for larger stacks. See merge request !677