📄 generic_bankswitch.c
字号:
//**********************************************************************************************************
// The Software is proprietary, confidential, and valuable to Realtek Semiconductor
// Corporation ("Realtek"). All rights, including but not limited to copyrights,
// patents, trademarks, trade secrets, mask work rights, and other similar rights and interests,
// are reserved to Realtek. Without prior written consent from Realtek, copying, reproduction,
// modification, distribution, or otherwise is strictly prohibited. The Software shall be
// kept strictly in confidence, and shall not be disclosed to or otherwise accessed by
// any third party. @ <2003> - <2008> The Software is provided "AS IS" without any warranty of any kind,
// express, implied, statutory or otherwise.
//**********************************************************************************************************
//----------------------------------------------------------------------------------------------------
// ID Code : Struct.c No.0000
// Update Note :
//
//----------------------------------------------------------------------------------------------------
#define __GENERIC_BANKSWITCH__
#include "Common\Header\Include.h"
#if(_OSD_TYPE == _GENERIC_OSD)
//--------------------------------------------------
// Description : .......
// Input Value :
// Output Value :
//--------------------------------------------------
void COsdBankSwitchNoPortWarningGeneric(void)
{
BYTE temp1,temp2;
temp1 = tHDMI_NO_PORT_WARNING;
temp2 = tDP_NO_PORT_WARNING;
}
//--------------------------------------------------
// Description : Initial OSD flag state
// Input Value :
// Output Value :
//--------------------------------------------------
void COsdBankSwitchCancelTimerGeneric(void)
{
#if(_AUDIO_SUPPORT == _ON)
CAdjustAudioMute(_ON);
#endif
COsdFxOsdTimerGeneric();
COsdBankSwitchNoPortWarningGeneric();
CTimerCancelTimerEvent(COsdFxOsdTimerGeneric);
#if(_HDMI_SUPPORT == _ON)
CTimerCancelTimerEvent(DisplayHdmiStartMuteOffGeneric);
#endif
CTimerCancelTimerEvent(DisplayNoSignalOrNoCableHintGeneric);
CTimerCancelTimerEvent(DisplayNoSupportHintGeneric);
CTimerCancelTimerEvent(CModePowerSavingEvent);
CTimerCancelTimerEvent(DisplayAutoAndNonpresetGeneric);
CTimerCancelTimerEvent(DisplayBurnInPatternGeneric);
#if(_TMDS_SUPPORT == _ON)
CTimerCancelTimerEvent(COsdChangeSource);
#endif
ucOverScanH = 0;
ucOverScanV = 0;
bChangeSourceKey = _FALSE;
bPressAnyKeytoWakeUp= _FALSE;
bOverScan = _FALSE;
bSleepByOverRange = _FALSE;
bExtendIVHeight = _FALSE;
bWBA_OK = _FALSE;
bNoWakeUp = _FALSE;
ucDdcSdaCnt = 0;//1231 sephinroth
ucOsdState = _MenuNoneGeneric;
}
#endif //End of #if(_OSD_TYPE == _GENERIC_OSD)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -