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, Can anyone of you help me out on how to write interrupt based external UART driver. I've its polling based counterpart ready and working. Vipin
Still can anyone suggest me some pointer vipin
The free Keil CD has a whole collection of app notes from all the supported vedors - have you looked through that lot? Or used the Keil seach page? (not to be confused with the search for this board!) or http://www.8052.com or the Intel developer site, http://developer.intel.com/design/processor/
Do you have a free external interrupt line available? If so, attach the relevant signal from your UART to this line and put your send/recv handler code in an ISR that is located at the external interrupt vector. Not too much different from the internal UART ISR in theory except you'll need to query different registers to determine the cause of the interrupt. - Mark