struct.c
来自「可配三星17寸屏的2523源程序+MTV512」· C语言 代码 · 共 50 行
C
50 行
//----------------------------------------------------------------------------------------------------
// ID Code : Struct.c No.0000
// Update Note :
//
//----------------------------------------------------------------------------------------------------
#include "Common\Header\Include.h"
//--------------------------------------------------
// Global Variables
//--------------------------------------------------
#if 1
StructModeUserDataType xdata stModeUserData _at_ 0x870;
StructModeUserCenterDataType xdata stModeUserCenterData _at_ 0x820;
StructSystemDataType xdata stSystemData _at_ 0x830;
#if(_MCU_TYPE == _WINDBOND_W78E65)
StructOsdUserDataType xdata stOsdUserData _at_ 0x0000;
#elif((_MCU_TYPE == _MYSON_MTV312) || (_MCU_TYPE == _MYSON_MTV512))
StructOsdUserDataType xdata stOsdUserData _at_ 0x0800;
#elif(_MCU_TYPE == _WELTREND_WT61P4)
StructOsdUserDataType xdata stOsdUserData _at_ 0x0080;
#endif
StructAdcDataType xdata stAdcData _at_ 0x840;
StructColorProc0DataType xdata stConBriData _at_ 0x850;
StructColorProc1DataType xdata stColorTempData _at_ 0x860;
#else
StructModeUserDataType idata stModeUserData;
StructModeUserCenterDataType idata stModeUserCenterData;
StructSystemDataType idata stSystemData;
#if(_MCU_TYPE == _WINDBOND_W78E65)
StructOsdUserDataType xdata stOsdUserData _at_ 0x0000;
#elif((_MCU_TYPE == _MYSON_MTV312) || (_MCU_TYPE == _MYSON_MTV512))
StructOsdUserDataType xdata stOsdUserData _at_ 0x0800;
#elif(_MCU_TYPE == _WELTREND_WT61P4)
StructOsdUserDataType xdata stOsdUserData _at_ 0x0080;
#endif
StructAdcDataType idata stAdcData;
StructColorProc0DataType idata stConBriData;
StructColorProc1DataType idata stColorTempData;
#endif
ModeInformationType idata stModeInfo;
DisplayTableType idata stDisplayInfo;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?