• calling subroutines from ISR
    Hi, I'm a newbie. I've got some legacy code where I need to add some features. From the ISR routines I need to call some C functions. ISR is made up with assembly macros, the caller routine that...
  • call function from a ISR
    Hello, At the moment, I'm working with the ethernet MAC interface and I'm now able to get a interrupt, when I receive a new frame from the PHY. But I'm not totally sure, how I have to configure the...
  • Calling C function from ISR
    Hi, I am trying to call a C function from the interrupt subroutine in LPC3250. When I call the function from a C file, there is no problem. However, when I use a C++ file containing the required...
  • Calling ISR function
    Hi, Is it possible from startup.asm I can call the interrup service routine found in my C source file? from my C source file: void InterruptServiceRoutine (void) interrupt 7 //SMB { ... } ...
  • Calling functions & passing parameters from ISR
    Hello, I am having two problems which I think are pretty much related to each other: Problem 1: passing parameters to function called from ISR I am invoking a function from ISR. To this...