Question
Question about interrupt
Posted on April 10, 2013 at 14:13
But I wish to know if this kind of behavior is possible :
Associates code : INTERRUPT_HANDLER(TIM1_UPD_OVF_TRG_COM_IRQHandler, 23) { if(state == a) longTask(); else shortTask(); } I don't know if my question is obvious, if it does not, let me know and I'll try to explain better. P.S : Sorry for my english, this is not my mother language. #stm8-interrupt
Hi all,
I have a specific needs for a project. In this project I use a STM8AL3L66 but my question is a general question about the interrupt in the STM8 family. Is that an interrupt can be interrupted by the same interrupt (itself) ? I know (according to the datasheet) that an interrupt can interrupt an other interrupt (in nested mode) :
But I wish to know if this kind of behavior is possible :
Associates code : INTERRUPT_HANDLER(TIM1_UPD_OVF_TRG_COM_IRQHandler, 23) { if(state == a) longTask(); else shortTask(); } I don't know if my question is obvious, if it does not, let me know and I'll try to explain better. P.S : Sorry for my english, this is not my mother language. #stm8-interrupt