Hi, In a application where there exists timer 0 and timer 1. If I set priority 1 to timer 0, what happens to timer 1 if its handle function is called during a timer 0 handle execution ? It's call is lost ? Or it will be called after timer 0 handle execution ? Thanks a lot, Andre
It'll be executed when the higher priority is done. The only way to lose interrups (save programming errors) is to have the interrupt occur again before the first instance has been processed. Erik