本帖最后由 abeitt 于 2011-7-25 12:52 编辑
程序如下:#include <avr/io.h>
#include <avr/interrupt.h>
#define uchar unsigned char
//T/C0 中断例程
ISR(TIMER0_OVF_vect) {
TCNT0=0;
PORTB = 0XFE;
}
int main(void)
{
DDRB=0xff;
PORTB=0xff;
TCNT0=0; // T/C0 开始值
TCCR0=0x04; //256
TIMSK=0X01; //T/C0 中断允许
sei(); //总中断标志置位
// TIFR=0X02;
while(1); }
GCC环境 熔丝位没动过 |