Part Number: TMS320F28069
Tool/software: Code Composer Studio
If I am using more than one interrupt in my application( like timer and UART) . What will be the default priority of those interrupt
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Part Number: TMS320F28069
Tool/software: Code Composer Studio
If I am using more than one interrupt in my application( like timer and UART) . What will be the default priority of those interrupt
Devvrat,
Interrupt priority is documented in the device datasheet. For the PIE, interrupt group 1 is highest priority. Within a group, interrupt 1 is highest priority.
However, understand that priority only applies when more than one interrupt is pending at the same time. Once you are in an ISR, ANY enabled interrupt can interrupt that ISR. By default, global interrupt enable (INTM bit) is disabled when entering an ISR. To nest interrupts, you need to enable any desired interrupts, disable all other interrupts (using IER and PIEIER registers), and then re-enable global interrupts.
Regards,
David