原创 AVR学习日志(二十八)--TIMER0控制流水灯

2010-6-12 21:45 3235 4 4 分类: MCU/ 嵌入式


      呵呵,再来一个定时器的程序,学就把它学个踏实吧


    /******************************************************************
//文件名称:Timer0_leds
//功    能:学习使用定时器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 = 0xfe;
 
 DDRB  = 0x00;  //B口,数码管段选
 PORTB = 0x00;
 
 DDRC  = 0xff;  //C口
 PORTC = 0x7f;


 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定时1ms


 cunt++;
 if(cunt==30)
 {
  crol(PORTA,1);
  cror(PORTC,1);
  cunt="0";
 }
 
 TIMSK|=BIT(1);
}


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


 


还是那句口号:


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


 


 


 


 

文章评论0条评论)

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