基于8952單片機的紅外解碼(TC9012F編碼)
雖然重點在后面,但是先上個程序
本文引用地址:http://cafeforensic.com/article/201611/323082.htm#include
#include
#include
////////////////////////////////////////////////
sbit ir=P3^2;//紅外接口標志
////////////////////////////////////////////
unsigned char
bit irpro_ok,irok;
unsigned char ircord[4];
unsigned char
//////////////////////////////////////////////
void ir_work(void);
void ircordpro(void);
//////////////////////////////////////////////////////////////////
void tim0_isr (void) interrupt 1 using 1//定時器0中斷服務函數
{
}
///////////////////////////////////////////////////////////////////////
void ex0_isr (void) interrupt 0 using 0//外部中斷0服務函數
{
}
////////////////////////////////////////////////////////////////////
void TIM0init(void)//定時器0初始化
{
}
///////////////////////////////////////////////////////////////////
void EX0init(void)
{
}
評論