按照
芯片说明书的源码敲出来,不论是接VCC+5V,还是直接接地,都不能触发中断,求大神帮一把,很急。
#include <stc15fxxxx.H>
#include <intrins.h>
//P3.6引脚为中断
//sfr INT_CLKO=0xf8;
// sbit P16=P1^6;
void exint2() interrupt 10
{
P16 = !P16; //LED
}
void main()
{
INT_CLKO |= 0x10; //使能INT2中断
EA =1;
while(1);
}
一周热门 更多>