• ISR and Function, using problem
    Hello! I have same code #define N_command 10 void Shift_query(struct query *spi_command_query); struct query{unsigned char cmd; unsigned char word; unsigned char rw; }query; /****************...
  • function and isr
    what is the difference between jump to a function and jump to the isr? what are the steps involved? (discuss regarding return also)
  • problem about function calling in ISR
    I call some sub-routine in ISR. And I mark the ISR as "using 1". But I find out this will lead to the error of parameters passing from ISR to the sub-routine. How come?
  • Problem passing variable to function in ISR
    So, I have a problem sending a value to a function at different parts of my code. Here is my code: void LongRightShift(unsigned char NumBitsShift) { // My Code Here NumBitsShift = NumBitsShift;...
  • 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...