• isr problem
    hello sir, i have coded a program in which after enabling the interrupt the control is not going to the ISR.Can you please correct my error. REPLY AS SOON AS POSSIBLE. URGENT. #include<ADUC842...
  • #if ISR
    I have created a very useful macro that will have disastrous results if it is used inside an ISR. A few years from now some unsuspecting soul (who could be me) will probably use it inside an ISR and spend...
  • Problem with recursive ISR
    Dear All, My requirement is: If a particular byte is received thro UART0, I have to do some action which will take more than 500 ms. I cant do those actions in the ISR itself as it takes a long time...
  • 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; /****************...
  • 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;...