呵呵,把定时0和定时器1全用上吧
/******************************************************************
//文件名称:T0T1_leds
//功 能:学习使用定时器0及定时器1
//作 者:懒猫爱飞
//日 期:2010.05.27
*******************************************************************/
#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 cunt0=0;
uchar cunt1=0;
/****************************************************************
//函数名称:port_init(void)
//功 能:端口初始化
//入口参数:无
//出口参数:无
*****************************************************************/
void port_init(void)
{
DDRA = 0xff; //A口
PORTA = 0xfe;
DDRB = 0x00; //B口
PORTB = 0x00;
DDRC = 0xff; //C口
PORTC = 0xfe;
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预分频
TCCR1B|=(1<<CS12); //8M晶振,256预分频
TIMSK|=(1<<TOIE1)|(1<<TOIE0);//0x82;
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);//先关定时器0中断
TCNT0 = 0xe1; //reload counter value
cunt0++;
if(cunt0==150)
{
crol(PORTA,1);
cunt0=0;
}
TIMSK|=BIT(1);//开启定时器0中断
}
/****************************************************************
//函数名称:timer1_ovf_isr(void)
//功 能:Timer1中断处理函数
//入口参数:无
//出口参数:无
*****************************************************************/
#pragma interrupt_handler timer1_ovf_isr:iv_TIM1_OVF
void timer1_ovf_isr(void)
{
TIMSK&=~BIT(7);//先关定时器1中断
TCNT1H = 0xff; //reload counter value
TCNT1L = 0xf1;
cunt1++;
if(cunt1==100)
{
crol(PORTC,1);
cunt1=0;
}
TIMSK|=BIT(7);//开启定时器1中断
}
/****************************************************************
//函数名称:void main(void)
//功 能:主函数
//入口参数:无
//出口参数:无
*****************************************************************/
void main(void)
{
init_devices();
while(1); //等待中断处理程序
}
继续俺的口号:
每天进步一点点,开心多一点^_^
用户1588142 2011-4-27 18:58