/********************************************************************
汇诚科技
网址:http://www.ourhc.cn
产品有售淘宝店:http://shop36330473.taobao.com
*********************************************************************/
#include <iom16v.h>
/********************************************************************
数据类型定义
*********************************************************************/
#define uchar unsigned char
#define uint unsigned int
/********************************************************************
数码管段码定义0123456789
*********************************************************************/
uchar Table[10]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f};
uchar Data[4]={0,0,0,1}; //定义初始方波频率:1KHz
uchar Key1_Flag,Key2_Flag,Key3_Flag;
/**********************************************************************
MS级延时函数程序,参数i 延时时间
**********************************************************************/
void DelayMs(uint i) //Ms级延时,参数i为延时时间
{uint j;
for(;i!=0;i--)
{for(j=8000;j!=0;j--) {;}}
}
/**********************************************************************
显示函数
注意:使用开发板时sel=0xef;
**********************************************************************/
void Display(uchar *p) //动态显示函数,参数p为待显示的数组名
{uchar i,sel=0x01;
for(i=0;i<4;i++)
{PORTC=sel; //选通最右边的数码管
PORTA=~Table[p]; //送字型码
DelayMs(1); //显示延时
sel=sel<<1; //移位以显示前一位
}
}
/**********************************************************************
频率处理函数
**********************************************************************/
void Key_Process(uchar *p)
{uchar i,j,k;
while((PINB&0x01)==0) {Display(Data);Key1_Flag=1;}
while((PINB&0x02)==0) {Display(Data);Key2_Flag=1;}
while((PINB&0x04)==0) {Display(Data);Key3_Flag=1;}
if(Key1_Flag==1) //处理频率个位,最高9
{p[3]++;
if(p[3]==10) p[3]=0;
Key1_Flag=0;}
if(Key2_Flag==1) //处理频率十位,最高9
{p[2]++;
if(p[2]==10) p[2]=0;
Key2_Flag=0;}
if(Key3_Flag==1) //处理频率百位,最高9
{p[1]++;
if(p[1]==10) p[1]=0;
Key3_Flag=0;}
}
void Set_Process(void)
{uint i,j;
i=Data[0]*1000+Data[1]*100+Data[2]*10+Data[3];
j=500/i;
OCR1AH=j>>8;
OCR1AL=j&0x00ff;
}
/**********************************************************************
初始化I/O口
**********************************************************************/
void Init_IO(void) //初始化I/O口
{DDRA=0xff; //设置A口为推挽1输出
PORTA=0xff;
DDRC=0xff; //设置C口为推挽1输出
PORTC=0xff;
DDRB=0x00; //设置B口为三态输入
PORTB=0x00;
DDRD=0xff; //设置D口为推挽1输出
PORTD=0xff;
}
/**********************************************************************
初始化T/C1的输入捕获中断
**********************************************************************/
void Init_Timer1(void) //初始化T/C1的输入捕获中断
{TIMSK=TIMSK|0x10; //输出比较使能
TCCR1B=0x0a; //定时方式8分频 频,输出比较匹配清除定时器值
//TCNT1H=0x00; //清除定时器值
//TCNT1L=0x00;
Set_Process(); //OCR1A,OCR1B置初值
SREG=SREG|0x80; //全局中断开
}
/**********************************************************************
主函数
**********************************************************************/
void main(void)
{Init_IO(); //初始化I/O口
Init_Timer1(); //初始化T/C1的输入捕获中断
while(1)
{Key_Process(Data);
Set_Process();
Display(Data); //动态扫描显示
}
}
//********************T/C1中断服务函数********************//
#pragma interrupt_handler Compare:7
void Compare(void)
{PORTD=~PORTD;}
/**********************************************************************
结束
**********************************************************************/
|