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

interrupts in C++ / cpp ARM / Realview compiler

Hello,

has anybody expierienced with the Realview Compiler (ARM) and C++ interrupt programming?
How can I call an non static method as a interrupt handler? I use ATMEL AT91SAM7 controllers.
It's not easy if one has just started to learn C++ at all ... (the reviews I found haven't helped me much).

Parents
  • Interrupt programming really has nothing to do with C++ - actually, C++ is not a factor in it whatsoever.
    use standard C or assembly for that, and refer to your compiler's data sheet to see how. by the way, I hope you are aware of the intricacies involved in using C++, especially on microcontrollers...?

Reply
  • Interrupt programming really has nothing to do with C++ - actually, C++ is not a factor in it whatsoever.
    use standard C or assembly for that, and refer to your compiler's data sheet to see how. by the way, I hope you are aware of the intricacies involved in using C++, especially on microcontrollers...?

Children