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.
Dear friends, 1.I would like to know about external interrupts. How to access interrupt in C programming? 2.How to activate timers for determined time? for example I want the timer to be active for 2Minutes.Which mode to use? 3.How to send the data from one controller to another with assembly coding? 4.How to transfer the characters from PC to Microcontroller kit
>1.I would like to know about external interrupts. >How to access interrupt in C programming? Well, you have to use the interrupt statement when you decalre the interrupt service routine. That can e.g. look like this:
void uart_isr( void ) interrupt UART_INT_NO using 1