外中断0的中断函数中,n 是多少 ? void int0f(void) interrupt n using 1
0
举一反三
- T1的中断函数中,n 是多少 ? void t1f(void) interrupt n using 0
- 下列定义的外部中断0函数正确的是( )。 A: void int0( ) interrupt 0 using 0 B: void int0( ) interrupt 1 using 0 C: void int0( ) interrupt 3 using 0 D: void int0( ) interrupt 3 using 0
- 外部中断1(INT1)的中断服务函数可以书写如下: void int() interrupt 2 using 0
- “interrupt”声明函数为中断服务函数,其后的2为外中断INT1的中断编号;0表示使用第0组工作寄存器。 A: void int1(void) interrupt0 using 0 B: void int1(void) interrupt2 using 2 C: void int1(void) interrupt2 using 0 D: void int1(void) interrupt0 using 2
- 外部中断0的中断服务函数为()。 A: void<br/>int0_isr(void) interrupt 0 B: void<br/>int0_isr(void) interrupt 1 C: char<br/>int0_isr(void) interrupt 0 D: char<br/>int0_isr(void) interrupt 1
内容
- 0
编写一个定时器0中断的中断函数(空函数),下列定义正确的是? A: void aaa0( )interrupt 0 {} B: void int0( )interrupt 1 {} C: void time1( )interrupt 1 {} D: void time1( )interrupt 0 {}
- 1
下列 中断函数的声明,在编译时不会发生错误? A: void intsub() interrupt 50 using 2; B: int intsub() interrupt 0 using 4 C: void intsub (uchar a) interrupt 30 using 1; D: void intsub () interrupt 15 using 3
- 2
要编写外部中断0的中断服务程序,按如下编写: void int ____() interrupt n 其中n应为____。
- 3
外部中断0的中断服务程序格式为( )。 A: void Int0Service(void) interrupt 0 { //函数体语句 } B: void Int0Service(void) interrupt 1 { //函数体语句 } C: void Int0Service(void) interrupt 2 { //函数体语句 } D: void Int0Service(void) interrupt 3 { //函数体语句 }
- 4
定义的函数void Function(void) interrupt 0 using 2{...}是由 中断触发时调用