?? 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 + -