单片机是mega2560,程序已经够短了,PORTB7引脚永远都是高电平,中断有点像是复位,我真的没招了
代码::
#include <avr/io.h>
#include <avr/interrupt.h>
int main(void)
{
DDRB=0x80;
PORTB=0x00;
EICRA=0x02;
EIMSK=0x01;
sei();
while(1)
{
//TODO:: Please write your application code
}
}
ISR(INT0_vect)
{
PORTB=~PORTB;
}
求帮忙
此帖出自
小平头技术问答
一周热门 更多>