原创 AVR学习日志(三)Timer0

2010-11-1 22:28 2136 6 6 分类: MCU/ 嵌入式

//ICC-AVR application builder : 2010-11-1 20:57:36
// Target : M8
// Crystal: 1.0000Mhz


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


#define uchar unsigned char
#define uint  unsigned int
#define ulong unsigned long


#define LED_N  10  //10位显示
//----------------------------------
#define Bit(n) (1<<n)
//LED_RUN
#define led_on() PORTD&=~Bit(PD3)
#define led_off() PORTD|=Bit(PD3)
#define led_run() PORTD^=Bit(PD3)
//定义74HC595时钟、数据、锁存、使能引脚状态
#define CLK_H() PORTB|=BIT(PB6)
#define CLK_L() PORTB&=~BIT(PB6)


#define DAT_H() PORTB|=BIT(PB7)
#define DAT_L() PORTB&=~BIT(PB7)


#define RCK_H() PORTB|=BIT(PB2)
#define RCK_L() PORTB&=~BIT(PB2)


#define ENA_H() PORTB|=BIT(PB1)
#define ENA_L() PORTB&=~BIT(PB1)



        //0,   1,  2,   3,   4,   5 ,  6,    7,   8,   9,   A,   B,   C,   D,   E,   F
const uchar led_array[27]={0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90,0x88,0x83,0xc6,0xa1,0x86,0x8e,
//-  dark  S    H    Y    E    n ,  P ,  L , ,r25 ,o26
0xbf,0xff,0x92,0x89,0x91,0x86,0xab,0x8c,0xc7,0xaf,0xa3};  //共阳管


uchar Led_Set_buf[LED_N];
uint  count;
/****************************************************************
//函数名称: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)(1*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++;
   }
}
//************************************************************
void port_init(void)
{
 PORTB = 0xFF; //设为输出
 DDRB  = 0xff;
 PORTC = 0x00; //m103 output only
 DDRC  = 0x00;
 PORTD = 0xFF; //设为输出
 DDRD  = 0xff;
}


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


 MCUCR = 0x00;  //
 GICR = 0x00;   //
 TCCR0|=(1<<CS02);//1M晶振,256预分频
 TCNT0 = 0xFC;
 TIMSK|= (1<<TOIE0);//开Timer0中断
 
 SEI();       //re-enable interrupts
}
/****************************************************************
//函数名称:timer0_ovf_isr(void)
//功    能:Timer0中断处理函数
//入口参数:无
//出口参数:无
*****************************************************************/
#pragma interrupt_handler timer0_ovf_isr:iv_TIM0_OVF
void timer0_ovf_isr(void)
{


 TIMSK&=(1<<TOIE0);//关Timer0中断
 TCNT0 = 0xFC; //reload counter value


 count++;
 if(count==500)
 {
  led_run();
  count="0";
 }
 
 TIMSK|=(1<<TOIE0);//开Timer0中断
}


/****************************************************************
//函数名称:LED_disp(void)
//功    能:74HC595送数
//入口参数:无
//出口参数:无
*****************************************************************/
void LED_disp(void)
{
 uchar i,a, b,c,led_bit;
 uchar disbuf[LED_N];
 for( i="0";i<LED_N;i++)
 { 
  disbuf=Led_Set_buf;
 }


 ENA_L();
 RCK_L();
 for(a=0;a<LED_N;a++)
 {
     c = disbuf[a];   
  led_bit = led_array[c];
 
  for(b=0;b<8;b++)
  {  
   CLK_L();
   if(led_bit & 0x80)
   DAT_H();
   else DAT_L();
   led_bit <<= 1;
   CLK_H();
   CLK_L();
  }
 }
 RCK_H();
 RCK_L();


}
//---------------------------------
void main(void)
{
  uchar i;
 
 delay_ms(200); 
 init_devices();
 
 for(i=0;i<LED_N;i++)
 {
   Led_Set_buf=5; //装载 5555555555 显示  
 }
 while(1)
 {
 
  LED_disp(); 
 } 
}

PARTNER CONTENT

文章评论0条评论)

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