原创 AVR学习日志(1)点LED灯

2010-10-25 21:31 1508 5 5 分类: MCU/ 嵌入式

/*听说每一款单片机的撑握都是从点亮LED开始,那就从这里出发吧!*/


//LED控制脚PD3


//ICC-AVR application builder : 2010-10-24 18:19:50
// Target : M8
// Crystal: 1.0000Mhz


#include <iom8v.h>
#include <macros.h>


#define uchar unsigned char
#define uint  unsigned int


#define Bit(n) (1<<n)


#define led_on() PORTD&=~Bit(PD3)
#define led_off() PORTD|=Bit(PD3)


 


/****************************************************************
//函数名称:delay_1ms(void)
//功    能:延时1ms
//入口参数:无
//出口参数:无
//说明:for(i=1;i<(unsigned int)(xtal*143-2_;i++)xtal为晶振频率,单位为MHz。
*****************************************************************/
void delay_1ms()//1ms
{
 uint i;
 for(i=1;i<(uint)(4*143-2);i++);
}
/****************************************************************
//函数名称:delay_ms(uint time)
//功    能:延时time ms
//入口参数:time
//出口参数:无
*****************************************************************/
void delay_ms(uint time)//time*1ms
{
   uint i;
   while(i<time)
   {
   delay_1ms();
    i++;
   }
}
/****************************************************************
//函数名称:Port_init(void)
//功    能:端口初始化
//入口参数:无
//出口参数:无
*****************************************************************/
void Port_init(void)
{
// DDRA  = 0x00;   //A口设为输入,呈高阻状态   
// PORTA = 0x00;
 
 DDRB  = 0x00;   //B1口
 PORTB = 0x00;
 
 DDRC  = 0x00;   //C口
 PORTC = 0x00;
 
 DDRD  = 0xff;   //D3口为输出,控制灯闪烁
 PORTD = 0xff;
}


/****************************************************************
//函数名称:main(void)
//功    能:主程序
//入口参数:无
//出口参数:无
*****************************************************************/
void main(void)
{


 Port_init();
 while(1)
 {
 
  led_on();
  delay_ms(1000);   //delay 1000ms
  led_off();       //turn off the led
  delay_ms(1000);
 }
 
}

PARTNER CONTENT

文章评论0条评论)

登录后参与讨论
我要评论
0
5
关闭 站长推荐上一条 /3 下一条