function.h

来自「一个LCD TV的源程序, 用的是realtek的IC」· C头文件 代码 · 共 28 行

H
28
字号
#ifndef _Function_H
#define _Function_H

void Get_Key(void);
void BootFromLDROM(void);
void BootFromLDROM(void);
void DelayX1ms(unsigned int n);
void DelayX10ms(unsigned int n);
void Contrast_Adj(Byte S);
void Print_Icon(Byte Disp_H, Byte Disp_L, Byte Attr0, Byte Attr1, Byte Attr2);

#define No_Key 0x0

//*****************************************************************************
// key pad code :
//*****************************************************************************
#ifdef _def_keyproc
BYTE code tKeyCode[] = {0xfb,		// 0 = POWER.
			            0xbf,		// 1 = FUN+.
			            0xdf,		// 2 = FUN-.
			            0xf7,		// 3 = VOL+.
			            0xef,		// 4 = VOL-.
			            0x97,		// 5 = Factory.
			            0xff,		// 6 = test.
			            0xff,
};
#endif
#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?