Problem with some demo tasks

Hello, I am running FreeRTOS on an S12X processor using the HCS12 CodeWarrior Banked demo. Some tasks run fine, but when I include "vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );" and "vStartBlockingQueueTasks( mainQUEUE_POLL_PRIORITY );" the program will never reach the point where the scheduler is started, there is some kind of an endless loop when creating these tasks. And when I add "vCreateSuicidalTasks( mainDEATH_PRIORITY );" the scheduler is started and tasks are running for a while but then LEDs stop blinking and there is again some endless loop… Unfortunately, source level debugging is impossible at this point since some source files will never open in NoICE (don’t know why). So if anyone has a possible explanation of the issue, I’d be very thankful! Regards

Problem with some demo tasks

Sorry for the topic, I sorted it out, was some stupid mistake of mine… You can delete the thread.

Problem with some demo tasks

Most likely you are running out of heap and cannot create the tasks.  The scheduler start function will return if there is not enough heap to create the idle task. Increase the configTOTAL_HEAP_SIZE in FreeRTOSConfg.h

Problem with some demo tasks

What did you do to solve this problem ? Please explain me. Thanks