Hi,
can anybody explain to me what the following function of the EXDSP_AudioFilter example does:
void SYS_GlobalIntEnable(void)
{
asm(" BIT (ST1, #ST1_INTM) = #0");
}
Is there some global interrupt enable flag on the C5505 that has to be set? If yes, can it be accessed somehow else? I am still having the issue that my interrupt service routines are not executed. The flags in the IFR0 register are set properly, that means the interrupts happen, but the isrs are not executed.
When I try to use the cited GlobalIntEnable-function in my project, the code seems to jump into nirwana. I assume this is due to some compiler option that I am not using in the same way....
Regards,
Raphael