HI~
I have configured a HWI trigger by DSPINT from FPGA.But it didn't work.
in my main()
i opened my INT5 by this codes:
// ...
C64_enableIER(C64_EINT5);
// ...
and i have configured my HWI_INT5 as:
bios.HWI.instance("HWI_INT5").fxn = prog.extern("T1HIsr");
bios.HWI.instance("HWI_INT5").interruptSelectNumber = 47;
bios.HWI.instance("HWI_INT5").useDispatcher = 1;
but the FPGA change DSPINT to enabled.my ISR didn't work.the corresponding bit in IFR was 0.and the GIE bit is enabled ,the corresponding bit in IER is enabled.
i don't know why.Is there anything i forgot to configure?
P.S;in my ISR,there is one LOG_printf()