📄 struct.c
字号:
//----------------------------------------------------------------------------------------------------
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -