RTOS Question:
Download Job Interview Questions and Answers PDF
Write a code to connect Hardware interrupt to ISR?
Answer:
In Keil
void serial_ISR() interrupt 4 using 0
{
}
& in AVR studio
SIGNAL(Inteerupt_no)
{
}
hardware intterupt normally redirects the uC to predefined
addresses. In case of high end processors the interrupt
table will decide the interrupt vector address and whenever
intterrupt pin goes low, the table is searched for type and
source of interrupt.
void serial_ISR() interrupt 4 using 0
{
}
& in AVR studio
SIGNAL(Inteerupt_no)
{
}
hardware intterupt normally redirects the uC to predefined
addresses. In case of high end processors the interrupt
table will decide the interrupt vector address and whenever
intterrupt pin goes low, the table is searched for type and
source of interrupt.
Download Real-Time Operating System (RTOS) Interview Questions And Answers
PDF
Previous Question | Next Question |
What is task spawn in vxworks? | What is major concerns about any RTOS selection? |