51单片机P3^2口外接按键,按下一次键后,P2口输出的是()。#include"reg52.h"sbitP32=P3^2;voidmain(){IT0=1;//外部中断0连沿触发方式EX0=1;//使能外部中断0EA=1; //开部中断while(1) ;}void int0() interrupt 0 //外部中断0程序入口{static unsigned char Bit=0;Bit++;if(Bit>=4)Bit =0;switch(Bit){case 0: P2 = 0xf7; break;case 1:P2 = 0xef; break;case 2:P2 = 0xdf; break;case 3:P2 = 0xbf; break;}}
A. 0xf7
B. 0xef
C. 0xdf
D. 0xbf
定时/计数器1的中断请求标志为()。
A. IE0
B. TF0
C. IE1
D. TF1
下列选项中,是串口中断函数定义的是()。
A. void S_ISR() interrupt 1{}
B. void ES() interrupt 2{}
C. void INT0() interrupt 3{}
D. void ISR() interrupt 4{}
当晶振频率是 12MHz ,在12T模式下51 单片机的机器周期是。
A. 1μs
B. 1ms
C. 2μs
D. 2ms