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.

The DM816x's problem of hardware interrupts in SYS/BIOS

The board I am using is  the DM816x development board,and the interrupt is EMAC TX interrupt .The interruptconfiguration in the .cfg file is as shown below.

And my ISR function is as follows.

Void MACTXINT00(UArg arg)
{
System_printf("TX interrupt\n");
}

Finally,the program always run in the interrupt function.So why?

Looking forward to your answer!