完好的源码和制造材料下载:http://www.51hei.com/bbs/dpj-20623-1.html
/****************工程包括的头文件*************************/
#include
#include
#include”define.h”
#include”delay.h”
#include”zm.h”
#include”32x12matrix.h”
#include”menu.h”
#include”MySnake.h”
#include”ds1302.h”
#include”ds18b20.h”
#include”i2c.h”
#include”radio.h”
#include”ir.h”
/*———————————————————
函数功用:Timer0初始化
调用方式:Timer0_Init();
参数:无
补白:用于发生具有随机性质的贪食蛇游戏食物的坐标方位
———————————————————*/
void Timer0_Init()
{
TMOD|=0x02;//重装初值计数方式,TL0:0->255
IE|=0X82;
TH0=0;
TL0=0;
TR0=1;//敞开内部Timer0
}
/*———————————————————
函数功用:ExtInt1初始化
调用方式:ExtInt1_Init();
参数:无
返回值:无
补白:下降沿
———————————————————*/
void ExtInt1_Init(void)
{
IT1=1;
EA=1;
EX1=1;
}
/*———————————————————
函数功用:主函数
调用方式:无
参数:无
返回值:无
修正时刻:13.4.17
补白:无