/******************************************************************
//文件名称:key_cotr
//功 能:实现按键控制Led灯
//作 者:懒猫爱飞
//日 期:2010.05.24
*******************************************************************/
#include<iom8515v.h>
#include<macros.h>
#define uchar unsigned char
#define uint unsigned int
uchar Recent_Key=0xff;
//宏定义置位函数
#define Bit(n) (1<<n)
//定义循环左移函数,循环右移函数
#define crol(a,n) a=(a<<n)|(a>>(8-n))
#define cror(a,n) a=(a>>n)|(a<<(8-n))
/****************************************************************
//函数名称: 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 = 0xfe;
DDRB = 0xf0; //B口为输入口,取键值
PORTB = 0xff;
DDRC = 0xff; //C口设为输出口
PORTC = 0xfe;
DDRD = 0x00; //D口
PORTD = 0x00;
}
/****************************************************************
//函数名称:Move_Led(void)
//功 能:实现Led灯移动
//入口参数:无
//出口参数:无
*****************************************************************/
void Move_Led(void)
{
if(Recent_Key!=PINB)
{
delay_ms(10); //延时去抖
if(Recent_Key!=PINB)
{
Recent_Key=PINB;
switch(Recent_Key)
{
case 0xfe: cror(PORTA,1);break; //从下到上移动
case 0xfd: crol(PORTA,1);break; //从上到下移动
case 0xfb: cror(PORTC,1);break;
case 0xf7: crol(PORTC,1);break;
default: break;
}
}
}
}
/****************************************************************
//函数名称:main(void)
//功 能:主程序
//入口参数:无
//出口参数:无
*****************************************************************/
void main(void)
{
Port_init();
while(1)
{
Move_Led();
}
}
每天进步一点点,开心多一点^_^
文章评论(0条评论)
登录后参与讨论