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

LPC1788 M3 cortex ARM 7 interrupt routine

hi all
iam using LPC1788 M3 cortex ARM 7 controller
iam trying to execute the timer and serial interrupt program.
in both the cases iam unable to return from the interrupt handler routine.

iam also working on LPC2378 ARM 7 controller where i have executed both the programs mentioned above. there iam using VICVECTADDR=0 to return from interrupt to main.
what is the case in LPC1788?
please help.
Thanks in advance

Parents
  • Show the code, and use the PRE tags, the issue might be more apparent.

    Cortex-M3 interrupt code and requirements should be a lot simpler, requiring straight C routines called directly via the NVIC.

    Not returning? or stuck in a loop? If you fail to clear the source an M3 will keep calling the interrupt handler, and not run other code.

Reply
  • Show the code, and use the PRE tags, the issue might be more apparent.

    Cortex-M3 interrupt code and requirements should be a lot simpler, requiring straight C routines called directly via the NVIC.

    Not returning? or stuck in a loop? If you fail to clear the source an M3 will keep calling the interrupt handler, and not run other code.

Children