Hi,
I use a hwi but it works only if I connect with debugger to my l137 DSP on the second load.
#include <ti/sysbios/family/c64p/Hwi.h>
void RegisterIsr(void *pfnIsr, Uint8 ucInterruptNumber, Uint8 ucInterruptEventID)
{
Hwi_Params params;
Hwi_Params_init(¶ms);
params.eventId = ucInterruptEventID;
params.enableInt = FALSE;
Hwi_create(ucInterruptNumber, (Hwi_FuncPtr)pfnIsr, ¶ms, NULL);
}
What is the problem? I have no idea where I should begion my search.
regards