STC15系列中断

2019-07-15 17:51发布

按照芯片说明书的源码敲出来,不论是接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);
}  



友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。