I am following the directions from spru599d, TMS320C55x Instruction Set Simulator, for pin and port connect.
I connect INT1 to a file with "1000 (+1000) rpt EOS" but when I run the code via the debugger with a break point set in the handler, I do not get to the handler.
My code looks like:
extern interrupt void int_fpga_50_khz_isr(void)
{
...
}
void main(void)
{
CSL_init();
...
IRQ_plug(IRQ_EVT_INT1, int_fpga_50_khz_isr);
IRQ_enable(IRQ_EVT_INT1);
IRQ_globalEnable();
for ( ; ; )
{
...
}
}
If I set a breakpoint in the for() and in int_fpga_50_khz_isr I always get to the break in the for and never get the break in the handler. Any words of wisdom would be greatly appreciated.
Thanks
Rob