the system reboots automatically each 2min.

i have a problem with freertos. i have myprogra running propperly but the problem is that it’s rebooting automaticaly each 2 min. And it happens whatever i’ve got in the main() function. Even when i only got this in the main(): int main( void )
{
vTaskStartScheduler();
return 0;
}
Is there a reason why it’s is rebooting automatically? Or am i commiting a mistake anywhere in my code which makes the system crash.

the system reboots automatically each 2min.

Could there be a watchdog timer expiring? Could you have something in the IdleHook that blocks (that will crash FreeRTOS)? Is your hardware stable? What happens if you go into an infinite loop before calling vTaskStartScheduler().

the system reboots automatically each 2min.

Naturally there is a reason it is resetting every two minutes, but I don’t want to get into a guessing game.  Wastes my time and yours. http://www.freertos.org/FAQ-how-to-use-the-FreeRTOS-support-forum.htm Regards.

the system reboots automatically each 2min.

Should be http://www.freertos.org/FAQ-how-to-use-the-FreeRTOS-support-forum.html Regards.

the system reboots automatically each 2min.

thanks richard_damon!!. I tryed with a infinite loop and it rebooted just tha same.  So i added a fuse in order to disable wdt and now works propperly :-)