原创 AVR学习日志(二十六)-- INT0及INT1中断计数

2010-6-7 21:43 4650 6 6 分类: MCU/ 嵌入式

INT0及INT1中断计数,中断是个好东东,要好好学学,那天把中断0和中断1全有上试了试,还可以蛮好玩的……


        今天又设计了一套电路,明天问一下总工看能行得通吗,行的话,俺就又要开始布板了,布完板俺又得调了,调完了俺又得设计下一套了,设计完了俺又得布板了,布完板俺又得……貌似总有干 不完的活,呵呵,不过也蛮好的,忙着心里踏实,当产品出来后,就像看到自己的孩子一样……


     呵呵,不费话了……


/******************************************************************
//文件名称:Dou_inr
//功    能:两个中断计数
//作    者:懒猫爱飞
//日    期: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))


uint cunt0=0;
uint cunt1=0;


const uchar Dsy_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 Dsy_index[]=
{
   0x01,0x02,0x04,0x08,0x10,0x20  //位选信号
};
uchar Dsy_buf[]=
{
  16,16,16,16,16,16   //数据缓区,初始化时显示“- ”
};


const uchar Dsy_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.-
};


/****************************************************************
//函数名称: delay(void)
//功    能:延时
//入口参数:无
//出口参数:无
*****************************************************************/
void delay(void)
{
 uint i;
 for(i=1;i<100;i++)
    ;
}


/****************************************************************
//函数名称: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  = 0xff;  //B口,数码管段选
 PORTB = 0x00;
 
 DDRC  = 0x00;  //C口
 PORTC = 0x00;


 DDRD  = 0x00;  //D口 中断与按键
 PORTD = 0xff;


}


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


 MCUCR = 0x00; //低电平触发
 EMCUCR = 0x00;
 GICR|= (1<<INT1)|(1<<INT0);//开启外部中断0,1
 
 SEI();       //re-enable interrupts
}


/****************************************************************
//函数名称:int0_isr(void)
//功    能:中断0处理函数
//入口参数:无
//出口参数:无
*****************************************************************/
#pragma interrupt_handler int0_isr:iv_INT0
void int0_isr(void)
{
  cunt0++;
  if(cunt0>1000)
  {
   cunt0=0;
  }
}
/****************************************************************
//函数名称:int1_isr(void)
//功    能:中断1处理函数
//入口参数:无
//出口参数:无
*****************************************************************/
#pragma interrupt_handler int1_isr:iv_INT1
void int1_isr(void)
{
  cunt1++;
  if(cunt1>569)
  {
   cunt1=0;
  }
}
/****************************************************************
//函数名称:void Show_cunt_dsy(void)
//功    能:显示函数
//入口参数:无
//出口参数:无
*****************************************************************/
void Show_cunt_dsy(uint num0,uint num1)
{
 uchar i;
 Dsy_buf[0]=num0/100; //求出百位
 Dsy_buf[1]=num0/10%10; //求出十位
 Dsy_buf[2]=num0%10;  //求出个位
 if(Dsy_buf[0]==0)
 {
  Dsy_buf[0]=0x11;    //若百位处十位没有数则不显示
  if(Dsy_buf[1]==0)
  {
   Dsy_buf[1]=0x11;
  }
 }
 Dsy_buf[3]=num1/100; //求出百位
 Dsy_buf[4]=num1/10%10; //求出十位
 Dsy_buf[5]=num1%10;  //求出个位
  if(Dsy_buf[3]==0)
  {
   Dsy_buf[3]=16;    //若百位和十位为0则显示为"-"
   if(Dsy_buf[4]==0)
   {
    Dsy_buf[4]=16;
   }
  }
 for(i=0;i<6;i++)
 {
   PORTA=Dsy_index;
  PORTB= Dsy_code_cp[Dsy_buf];
  delay_ms(5);
  PORTA=0x00;//消隐一下
 }
}


/****************************************************************
//函数名称:void Key_ctrl(void)
//功    能:清除键
//入口参数:无
//出口参数:无
*****************************************************************/
void Key_ctrl(void)
{
 if((PIND&(1<<PD4))==0)
 {
   cunt0=0;
 }
 if((PIND&(1<<PD5))==0)
 {
   cunt1=0;
 }
}
/****************************************************************
//函数名称:void main(void)
//功    能:主函数
//入口参数:无
//出口参数:无
*****************************************************************/
void main(void)
{
 init_devices();
 while(1)
 {
  //#define display
  #ifdef display
   Show_cunt_dsy(128,459); //用于测试显示函数是否正确
  #endif
 Key_ctrl();
 Show_cunt_dsy(cunt0,cunt1);
 }
}


 


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


 


 

文章评论0条评论)

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