来个秒表吧:
/******************************************************************
//文件名称:Timer0_ctrl
//功 能:学习使用定时器0
//作 者:懒猫爱飞
//日 期:2010.05.28
*******************************************************************/
#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;
uint cunt_ms=0;
uchar cunt_sec=0;
uchar key_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.-
};
/****************************************************************
//函数名称:port_init(void)
//功 能:端口初始化
//入口参数:无
//出口参数:无
*****************************************************************/
void port_init(void)
{
DDRA = 0xff; //A口
PORTA = 0x01;
DDRB = 0x00; //B口
PORTB = 0x00;
DDRC = 0xff; //C口
PORTC = 0x01;
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);//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 1ms
cunt0++;
if(cunt0==10)
{
cunt_ms++;
cunt0=0;
if(cunt_ms==10)
{
cunt_sec++;
cunt_ms=0;
if(cunt_sec==10)
cunt_sec=0;
}
}
TIMSK|=BIT(1);//开启定时器0中断
}
/****************************************************************
//函数名称:void Key_ctrl(void)
//功 能:按键处理函数
//入口参数:无
//出口参数:无
*****************************************************************/
void Key_ctrl(void)
{
if((PIND&(1<<PD7))==0)
{
while((PIND&(1<<PD7))==0);
{
key_cunt=(key_cunt+1)%3;
switch(key_cunt)
{
case 0:TIMSK&=~BIT(1);break;//暂停计时
case 1:TIMSK|=BIT(1);break; //重新启动计时
case 2:cunt_ms=0;cunt_sec=0;break; //因为是10ms计一次时,所以清零时,毫秒位可能只看到0闪一下
default:break;
}
}
}
}
/****************************************************************
//函数名称:void main(void)
//功 能:主函数
//入口参数:无
//出口参数:无
*****************************************************************/
void main(void)
{
init_devices();
while(1)
{
Key_ctrl();
PORTA="Dis"_code_cn[cunt_sec]; //显示秒
PORTC="Dis"_code_cn[cunt_ms]; //显示ms/10
}
}
每天进步一点点,开心多一点^_^
用户1588142 2011-4-27 18:59