I GET A FASTER Sensitive INPUT DATA IN AN INTERRUPT WHICH PRVENT ME TO PROCESS DATA IN THE MAIN PROGRAM( putchar + getchar).
one way is to disable interrput then process the data in the main after you finish activate it again but any way you lose data;
are there any other solutions to this problem
thanks;
Can you not write the program so that the interrupt does nothing but store the received byte into a circular buffer and then return from interrupt?
The main program then does all the processing of the data.