原创 AVR学习日志(二十七)--TIMER0控制单只LED闪烁

2010-6-12 21:42 2874 5 5 分类: MCU/ 嵌入式


      这几天貌似有点忙,又是画板又是写程序,弄的俺都快没时间自学了,哎,没办法呀,谁叫俺是小兵呢,老板让干啥就干啥吧,不然连口粮都没有了,那才叫惨……


      呵呵,不废话了,还是把俺的程序发上来吧……


    /******************************************************************
//文件名称:Timer0_led
//功    能:学习使用定时器0
//作    者:懒猫爱飞
//日    期:2010.05.26
*******************************************************************/


#include <iom8515v.h>
#include <macros.h>


#define uchar unsigned char
#define uint  unsigned int


//宏定义左移,右移函数crol为左移,cror为右移
#define crol(a,n) a=(a<<n)|(a>>(8-n))
#define cror(a,n) a=(a>>n)|(a<<(8-n))


uchar flag="0";
uchar cunt="0";


/****************************************************************
//函数名称:port_init(void)
//功    能:端口初始化
//入口参数:无
//出口参数:无
*****************************************************************/
void port_init(void)
{
 DDRA  = 0xff;  //A口,数码管位选
 PORTA = 0x01;
 
 DDRB  = 0x00;  //B口,数码管段选
 PORTB = 0x00;
 
 DDRC  = 0x00;  //C口
 PORTC = 0x00;


 DDRD  = 0x00;  //D口 中断与按键
 PORTD = 0x00;


}


/****************************************************************
//函数名称:init_devices(void)
//功    能:初始化器件
//入口参数:无
//出口参数:无
*****************************************************************/
void init_devices(void)
{
 //stop errant interrupts until set up
 CLI();       //disable all interrupts
 port_init();


 MCUCR = 0x00; //
 EMCUCR = 0x00;
 GICR = 0x00; //
 TCCR0|=(1<<CS02);//8M晶振,256预分频
 TIMSK|= (1<<TOIE0);//0x02;
 
 SEI();       //re-enable interrupts
}


/****************************************************************
//函数名称:timer0_ovf_isr(void)
//功    能:Timer0中断处理函数
//入口参数:无
//出口参数:无
*****************************************************************/
#pragma interrupt_handler timer0_ovf_isr:iv_TIM0_OVF
void timer0_ovf_isr(void)
{
 TIMSK&=~BIT(1);
 TCNT0 = 0xe1; //reload counter value


 cunt++;
 if(cunt==500)
 {
  //flag=1;
  PORTA^=(1<<PA0);
  cunt="0";
 }
 
 TIMSK|=BIT(1);
}


/****************************************************************
//函数名称:void main(void)
//功    能:主函数
//入口参数:无
//出口参数:无
*****************************************************************/
void main(void)
{
 init_devices();
 while(1);
}


呵呵,还是俺那句口号:


     每天进步一点点,开心多一点^_^


 


 


 


 


 


 

文章评论0条评论)

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