the system reboots automatically each 2min.

blackflowers wrote on Monday, July 25, 2011:

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.

richard_damon wrote on Tuesday, July 26, 2011:

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().

rtel wrote on Tuesday, July 26, 2011:

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.

rtel wrote on Tuesday, July 26, 2011:

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

Regards.

blackflowers wrote on Wednesday, July 27, 2011:

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 :slight_smile: