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

2010-6-6 20:54 2447 5 5 分类: MCU/ 嵌入式


        终于到中断了,这可是个好东东呀,一定要好好弄弄了6


/******************************************************************
//文件名称:Intr
//功    能:中断计数器
//作    者:懒猫爱飞
//日    期:2010.05.25
*******************************************************************/


#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 cunt;


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[]=
{
   0x08,0x04,0x02,0x01,0x80,0x40,0x20,0x10  //位选信号
};
uchar Dsy_buf[]=
{
  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.-
};


/****************************************************************
//函数名称:port_init(void)
//功    能:端口初始化
//入口参数:无
//出口参数:无
*****************************************************************/
void port_init(void)
{
 DDRA  = 0xff;
 PORTA = 0x00;
 
 DDRB  = 0xff;
 PORTB = 0x00;
 
 DDRC  = 0xff;
 PORTC = 0x00;


 DDRD  = 0x00;
 PORTD = 0xff;


}
/****************************************************************
//函数名称:int0_isr(void)
//功    能:中断处理函数
//入口参数:无
//出口参数:无
*****************************************************************/
#pragma interrupt_handler int0_isr:iv_INT0
void int0_isr(void)
{
   cunt++;
   if(cunt>1000)//external interupt on INT0
   cunt="0";
}
/****************************************************************
//函数名称:init_devices(void)
//功    能:初始化器件
//入口参数:无
//出口参数:无
*****************************************************************/
void init_devices(void)
{
 //stop errant interrupts until set up
 CLI();       //disable all interrupts
 port_init();


 MCUCR = 0x00; //低电平触发
 EMCUCR = 0x00;
 GICR = 0x40; //外部中断0
 
 SEI();       //re-enable interrupts
}
/****************************************************************
//函数名称:void Show_cunt_dsy(uint num)
//功    能:显示函数
//入口参数:num
//出口参数:无
*****************************************************************/
void Show_cunt_dsy(uint num)
{
 Dsy_buf[0]=num/100; //求出百位
 Dsy_buf[1]=num/10%10; //求出十位
 Dsy_buf[2]=num%10;  //求出个位
 if(Dsy_buf[0]==0)
 {
  Dsy_buf[0]=16;
  if(Dsy_buf[1]==0)
  {
   Dsy_buf[1]=16;
  }
 }
  PORTA="Dsy"_code_cn[Dsy_buf[2]];
  PORTB="Dsy"_code_cn[Dsy_buf[1]];
  PORTC="Dsy"_code_cn[Dsy_buf[0]];
}
/****************************************************************
//函数名称:void main(void)
//功    能:主函数
//入口参数:无
//出口参数:无
*****************************************************************/
void main(void)
{
 init_devices();
 while(1)
 {
  //#define dsy_test
  #ifdef dsy_test
    Show_cunt_dsy(123); //用于测试显示函数
  #endif
  if((PIND&(1<<6))==0)
  {
   cunt="0";
  }
 Show_cunt_dsy(cunt);
 }
}


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


 


 

文章评论0条评论)

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