benq_bankswitch.c

来自「realtek LCD monitor, TV开发源代码」· C语言 代码 · 共 75 行

C
75
字号
//**********************************************************************************************************
//  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 __BENQ_BANKSWITCH__

#include "Common\Header\Include.h"

#if(_OSD_TYPE == _BENQ_OSD)
//--------------------------------------------------
// Description  : .......
// Input Value  :
// Output Value :
//--------------------------------------------------
void COsdBankSwitchNoPortWarningBenq(void)
{
    BYTE temp1,temp2;
    temp1 = tHDMI_NO_PORT_WARNING;
    temp2 = tDP_NO_PORT_WARNING;
}


//--------------------------------------------------
// Description  : Initial OSD flag state
// Input Value  :
// Output Value :
//--------------------------------------------------
void COsdBankSwitchCancelTimerBenq(void)
{
#if(_AUDIO_SUPPORT == _ON)
    CAdjustAudioMute(_ON);
#endif
    COsdFxOsdTimerBenq();
    COsdBankSwitchNoPortWarningBenq();
    CTimerCancelTimerEvent(COsdFxOsdTimerBenq);
    CTimerCancelTimerEvent(DisplayNoSignalOrNoCableHintBenq);
    CTimerCancelTimerEvent(DisplayNoSupportHintBenq);
    CTimerCancelTimerEvent(CModePowerSavingEvent);
    CTimerCancelTimerEvent(COsdFxOsdTimerBenq);
    CTimerCancelTimerEvent(DisplayAutoAndNonpresetBenq);
    CTimerCancelTimerEvent(DisplayBurnInPatternBenq);
#if(_TMDS_SUPPORT  == _ON)
    CTimerCancelTimerEvent(COsdSwitchInput);
#endif
#if(_HDMI_OVERSCAN == _ON)
    ucOverScanH         = 0;
    ucOverScanV         = 0;
#endif
    bChangeSourceKey    = _FALSE;
    bPressAnyKeytoWakeUp= _FALSE;
    bStoreMenuKeyMessage= _FALSE;
    bSleepByOverRange   = _FALSE;
    bExtendIVHeight     = _FALSE;

    bWBA_OK             = _FALSE;
    bNoWakeUp           = _FALSE;

    ucOsdState          = _MenuNoneBenq;
}


#endif  //End of #if(_OSD_TYPE == _BENQ_OSD)

⌨️ 快捷键说明

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