/*
单片机型号为Atmega 16A,晶振12M,熔丝位设置的为使用外部晶振。我用ICCAVR编译的类似程序就可以运行*/
#include <avr/io.h>
#include <u
til/delay.h>
#define uchar unsigned char
#define uint unsigned int
#define BIT(x) (1<<(x))
int main(void)
{
uchar i;
DDRD|=BIT(0);
while(1)
{
for(i=0;i<8;i++)
{
PORTD&=BIT(i);
_delay_ms(100);
}
}
}
兄弟,问题已经解决,谢谢你的回答!
一周热门 更多>