原创 AVR学习日志(三十五)-- 定时器控制数码动态显示

2010-6-15 02:02 2528 6 6 分类: MCU/ 嵌入式


 定时器控制数码动态显示:


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


#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 cunt="0";
uchar i="0";
uchar j="0";
uchar flag;


const uchar we_code[]={0x80,0x40,0x20,0x10,0x08,0x04,0x02,0x01};


const uchar Table_OF_Digits[][8]=
{
  {0,9,10,1,2,10,2,5},
 {2,1,10,5,7,10,3,9},
};


const uchar Dis_code_cp[]=
{
  0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,
 0x90,0x88,0x83,0xc6,0xa1,0x86,0x8e,0xbf,0xff//共阳极0.1.2.3.4.5.6.7.8.9.A.b.C.d.E.F.-
};
const uchar Dis_code_cn[]=
{
  0x3f,0x06,0x5b,0x4f,0X66,0x6d,0x7d,0x07,0x7f,
 0x6f,0x77,0x7c,0x39,0x5e,0x79,0x71,0X40,0X00//共阴极0.1.2.3.4.5.6.7.8.9.A.b.C.d.E.F.-
};
uchar Dsy_buf[]={0,0,0,0,0,0};


/****************************************************************
//函数名称:delay_1ms(void)
//功    能:延时1ms
//入口参数:无
//出口参数:无
*****************************************************************/
void delay_1ms(void)//1ms
{
 uint i;
 for(i=1;i<(uint)(8*143-2);i++)
    ;
}
/****************************************************************
//函数名称:delay_ms(uint time)
//功    能:延时time ms
//入口参数:time
//出口参数:无
*****************************************************************/
void delay_ms(uint time)//time*1ms
{
   uint i="0";
   while(i<time)
   {
    delay_1ms();
    i++;
   }
}


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


 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 = 0x64; //reload counter value 256分频,6ms定时
 
   PORTC="0x00";  //一定要消隐一下,不然显示不稳定
   PORTC="we"_code[cunt];
   //PORTC=cror(PORTC,1);
   PORTA="Dis"_code_cp[Table_OF_Digits[j]];
 
   flag++;
   if(flag==40)  //240ms 变一次
   {
    j = (j+1)%8;
    i = (i+1)%2;
 flag=0;
   }
  
   cunt++;
   if(cunt==7) cunt="0";
  
  TIMSK|=BIT(1);
}


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


}


 


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


 


 

PARTNER CONTENT

文章评论0条评论)

登录后参与讨论
EE直播间
更多
我要评论
0
6
关闭 站长推荐上一条 /1 下一条