Dear TI,
I am using TI Hercules RM48L952 microcontroller. I intend to use IRQ and Software interrupts. I want to enable nesting of IRQ interrupt (high priority) into software interrupt (low priority) and nesting of software interrupt (high priority) into other software interrupt (low priority).
My questions :
1. Software interrupt - what do i need in order to define and enable nesting of IRQ ?
#pragma SWI_ALIAS (MySoftwareInterruptFunc,21)
void MySoftwareInterruptFunc(void)
{
_enable_IRQ;
}
2. How to enable nesting of (high priority) software interrupt into other software interrupt (low priority) ?
Best Regards,
Yona