vTaskStartScheduler causes software restart

I’m observing that the call to vTaskStartScheduler() is continuously causing main to be re-invoked.  I have disabled the watchdog timer.  To give more detail:  I’ve taken the CrossWorks MSP430F449 port and modified it for the F2619.  I’ve switched to a 16MHz crystal and am using that to drive the timer A with the corresponding change in TACCR0 to 16000 (tick rate 1000). I’m hoping that I’ve made a common blunder.  Has anyone come across this symptom? Regards, Jim.

vTaskStartScheduler causes software restart

Is the call to vTaskStartScheduler() returning? If so then you probably don’t have enough heap space for the idle task to be created. The idle task is created automatically inside the vTaskStartScheduler() function. configTOTAL_HEAP_SPACE in FreeRTOSConfig.h sets the heap size if you are including heap_1.c or heap_2.c in your project.

vTaskStartScheduler causes software restart

I’m facing a similar problem with CrossWorks port for msp430 (2619): as prvSetupTimerInterrupt return a restart is issued. This happen only with MSP-FET emulator, if I try with the core simulator the problem not arise.
Thanks in advance for help……

vTaskStartScheduler causes software restart

……configTOTAL_HEAP_SPACE is 2800 I think this is not the cause

vTaskStartScheduler causes software restart

Problem fixed. Selecting "msp430f2619" as "target processor" in project properties the ide turn in "msp430X" the "instruction set". Freertos does not support this extension. Reselect  "msp430" as "instruction set" and the restart does not occur. Thanks
Fabio