原创 AVR学习日志(三十四)--100000秒以内的计时程序

2010-6-15 01:59 3004 5 5 分类: MCU/ 嵌入式


 100000秒以内的计时程序:


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


#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";


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 = 0x00;
 
 DDRB  = 0x00;  //B口
 PORTB = 0x00;
 
 DDRC  = 0xff;  //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)|(1<<CS00);//8M晶振,1024分频
 
 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)
{
 uchar i;
 TIMSK&=~BIT(1);
 TCNT0 = 0xb2; //reload counter value 1024分频,10ms定时


 cunt++;
 Dsy_buf[0]++;//最后一位10ms显示一次;
 if(cunt==10)
 {
  cunt="0";
  for(i=0;i<=5;i++)
  {
 if(Dsy_buf==10)
   {
  Dsy_buf = 0;
     if(i!=5) Dsy_buf[i+1]++;
   }
 }
 
 }
 
 TIMSK|=BIT(1);
}



/****************************************************************
//函数名称:void Display(void)
//功    能:数码显示函数
//入口参数:无
//出口参数:无
*****************************************************************/
void Display(void)
{
 uchar w="0x7f";  //位选信号
 uchar i;
 
 for(i=5;i!=-1;i--)
 {
  w="crol"(w,1);
  PORTC="w";
  PORTA="Dis"_code_cn[Dsy_buf];
  if(i==1) PORTA|=(1<<PA7);     //保留一位小数
 
  delay_ms(1);
  PORTC="0xff";
 }
 
}


/****************************************************************
//函数名称:void main(void)
//功    能:主函数
//入口参数:无
//出口参数:无
*****************************************************************/
void main(void)
{
 init_devices();
 while(1)
 {
  //#define DSY
  #ifdef DSY
    Display(); //测试显示函数
  #endif
    Display();
 }
}


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


 


 


 

PARTNER CONTENT

文章评论0条评论)

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