Hi team,I am trying to implement FreeRTOS on nucleo32 board (stm32f303k8) on building the same with the one FreeRTOS task, I am getting a error that RAM overflowed by 66456 bytes.It can be resolved or I need to go with some other high memory boards?
In the linker script of the project the total heap size was defined as 75*1024 (#define configTOTAL_HEAP_SIZE ( ( size_t ) ( 75 * 1024 ) )) that is because I have copied this FreeRTOSconfig.h linker script from other project. now I change it to (#def...
Actually, I just started learning RTOS and I have only this chip board available with me. So I tried some printing task on this. I don't think the printing of one or two task will consume this much of memory.Currently I am able to fix the issue, but ...
As you told to increase the size of FLASH in linker script, I tried that, but the error was still there so I tried to increase the size of RAM (I know it's out of range) the error got resolved here, but I know it won't work for the future. While deb...
I'm making just one task that too stack size of 30. I just want to print something as I am just a beginner with RTOS.Still I don't know where it wants this much space.