Hi all,
I was mapping an interrupt for some module :
Platform used: TMS320C6670
I used the primary interrupt straightaway (no secondary event mapping required)
Interrupt configuration :
PLT_Hwi_create (10, primary_eventId, (void (*)(uint32_t))ISR, NULL, TRUE);
ISR:
Hwi_clearInterrupt(10) ;
The problem is ISR gets invoked only once while it should be invoked few times.Please post some suggestions if I am missing something regarding clearing the interrupt,because in case of secondary interrupts, there is an API : CSL_CPINTC_clearSysInterrupt
but for primary interrupt,there is no such.
Thanks
-Bharti