We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hi ' I am using STR912Fw44 based board I want a code of uart that should jump to the interrupt handler whnn come character is typed from keyboard and print that and comes out from interrupt handler the code given in
http://www.keil.com/download/docs/331.asp
uses the buffer but we dont need buffer so how to handle it and I dont want to use SWI handler functions can anyone sugggest simple code
thanks for your valuable advice but dear I want code like this
while(1) { printf("uart"); }
void uart_interrupt handler() {
}
normally it should print uart now suppose I press some key of key board then it should jump to the handler (on recieve interrupt) print the character that I typed and again switch back to main programme and continue printing uart
thanks