I set the configTOTAL_HEAP_SIZE = 4096 in freertosConfig.h ,the project can build successfully.if I set the configTOTAL_HEAP_SIZE = 8192,the project show error:S32k116_Freertos.elf section `.bss' will not fit in region `m_data_2'
region m_data_2 overflowed with stack and heap
section .stack VMA [20003600,200037ff] overlaps section .bss VMA [200020c0,200042a3]
region `m_data_2' overflowed by 0 bytes
when it is 8192 ,the ram used only almost 9 KB, less than the total ram space 16kB.why does it remind error,how to solve it?