呵呵,不废话,还是直接交作业吧
/******************************************************************
//文件名称:Timer0_led4
//功 能:学习使用定时器0
//作 者:懒猫爱飞
//日 期:2010.05.26
*******************************************************************/
#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 flag="0";
uchar cunt0=0;
uint cunt1=0;
/****************************************************************
//函数名称:port_init(void)
//功 能:端口初始化
//入口参数:无
//出口参数:无
*****************************************************************/
void port_init(void)
{
DDRA = 0xff; //A口,数码管位选
PORTA = 0xff;
DDRB = 0x00; //B口,数码管段选
PORTB = 0x00;
DDRC = 0xff; //C口
PORTC = 0xff;
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 = 0xe1; //reload counter value定时1ms
while(++cunt0<20);
cunt0=0;
switch(flag)
{
case 1:PORTA^=(1<<PA0);break;
case 2:PORTA^=(1<<PA1);break;
case 3:PORTA^=(1<<PA2);break;
case 4:PORTA^=(1<<PA3);break;
default: flag="0"; break;
}
while(++cunt1<300);
cunt1=0;
PORTA=0xff;
flag++;
TIMSK|=BIT(1);
}
/****************************************************************
//函数名称:void main(void)
//功 能:主函数
//入口参数:无
//出口参数:无
*****************************************************************/
void main(void)
{
init_devices();
while(1);
}
呵呵,坚持俺的口号:
每天进步一点点,开心多一点^_^
文章评论(0条评论)
登录后参与讨论