I'm trying to implement the producer-consumer algorithm on ATMega323_WinAVR using FreeRTOS. I get this error in AVR Studio 4 when debugging:
AVR Simulator: Excessive stack overflow, stop sim
The stack pointer stops at this line:
static void prvCopyDataToQueue (
xQUEUE *pxQueue, const void *pvItemToQueue, portBASE_TYPE xPosition){
Why does this error appears?
Thanks!