This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Fast Interrupts

hi all,
I am testing the working of fast interrupts.
I have set the interrupt as CACHED.

what is wrong with the following code?

void main(void)
{
  uwBank_set = 0;

  FINT0CSP   = 0x8F01;
  FINT0ADDR  = 0xFF00;
  GPT1_vStartTmr(GPT1_TIMER_3);
  while(!uwBank_set);
  GPT1_vStopTmr(GPT1_TIMER_3);
}

The ISR is not executing.It is going to disassembly.
uwBank_set is set in the ISR.

Thanks in advance,
vishwa

0