Hello TI support team.
Please tell me about CR5's DMTIMER interrupt.
Set the interrupt priority of DMTIMER0 to 1.
Is it possible to change the interrupt priority to 3 and back to 1 in the DMTIMER0 interrupt handler?
I would like to divide the priority by processing within the interrupt handler as shown below.
void CR5_DMTIMER0_interruptHandler(void *args)
{
// priority=1 (Interrupts with priority=2 can not be generated.)
f1(); // f1 is executed
// here, change to priority=3.
set_priority(3);
f3(); // f3 is executed, but interrupts with priority=2 can be generated.
// reset priority = 1
set_priority(1);
}
Best regards,
Kiyomasa Imaizumi.
