📄 tvinisys.h.svn-base
字号:
#ifndef __TVINISYS_H
#define __TVINISYS_H
#ifdef __cplusplus
extern "C" {
#endif
/**
*
* Initialize the TV system.
*
*/
Void tvInitSystem(Void);
//------the following callback routines shall be implemented by application ------------
/**
*
* Applications do some preparations before tvAppInitEEPROM or tvAppInitSystem
*
* This callback routine will be called when the system is going to be initialized.
* This callback routine will be called within tvInitSystem
*
* @see tvInitSystem
*/
Void tvAppPreInitSystem(Void);
/**
*
* Application initializes the EEPROM.
*
* This callback routine will be called when EEPROM is present but not initialized.
* Application is responsible to initialize the EEPROM.
*
* Most likely this routine will be called only once the first time you mount the EEPROM to board.
*
* @see tvInitSystem
*/
Void tvAppInitEEPROM(Void);
/**
*
* Application initializes all hardware components
*
* This callback routine will be called within tvInitSystem
*
* @param bEEPROMOnline Indicate whether EEPROM is existed.
* @arg _TRUE_ EEPROM is existed, application shall initialize hardware according to EEPROM contents
* @arg _FALSE_ EEPROM is not existed, application shall use default settings.
*
* @see tvInitSystem
*/
void tvAppInitSystem(Void);
Void InitApp(Void);
void tvFirstPowerInit(Void);
Void tvHotTelModeInit(Void);
#ifdef __cplusplus
};
#endif
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -