⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 panel.h

📁 LCD Monitor 部分源码
💻 H
字号:
//----------------------------------------------------------------------------------------------------
// ID Code      : Panel.h No.0000
// Update Note  : Andy update
//
//----------------------------------------------------------------------------------------------------
// Panel Type
//--------------------------------------------------
#define _CMO_LVDS_17                    0          //1280x1024
#define _AU_RSDS_17                     1          //1280x1024   RSDS 
#define _AU_LVDS_15                     2          //1024x768
#define _PNL_LQ150U1                    3          //1600x1200
#define _PNL_IASX12G                    4          //1400x1050
#define _PNL_LQ15X01K                   5          // Sharp 1024x768 TTL panel
#define _PNL_LQ14X02                    6
#define _PNL_CPT154WA01                 7
#define _PNL_NL10276AC28                9 
#define _PNL_LT170E2_131                10
#define _PNL_LTM150XL_P01               11
#define _PNL_LTN154X1_L02               12
#define _PNL_LM171W02                   13
#define _PNL_TX38D22VCOCAA_TS8          14
#define _PNL_LM151X3_B3AP               15
#define _PNL_LTM170E4_P01               16         //需要改程序    
#define _PNL_NL10276AC30_09             17             
#define _PNL_LT181E2_131                18         //需要改程序    1280x1024  TMDS
#define _PNL_NL128102AC28_01            19
#define _PNL_LTM170W1                   20         //1280X768
#define _PNL_LTN154U1_L01               21
#define _NEC_TTL_15                     22

#define _PANEL_TYPE           _NEC_TTL_15///   _PNL_NL10276AC30_09
//--------------------------------------------------
#if(_PANEL_TYPE == _CMO_LVDS_17)
#include "Panel\PNL_LVDS17.h"
#endif

#if(_PANEL_TYPE == _NEC_TTL_15)
#include "Panel\PNL_NEC_TTL_15.h"
#endif

#if(_PANEL_TYPE == _PNL_CPT154WA01)
#include "Panel\PNL_CPT154WA01.h"
#endif

#if(_PANEL_TYPE == _AU_RSDS_17)
#include "Panel\PNL_RSDS17.h"
#endif

#if(_PANEL_TYPE == _AU_LVDS_15)
#include "Panel\PNL_LVDS15.h"
#endif

#if(_PANEL_TYPE == _PNL_LQ150U1)
#include "Panel\PNL_LQ150U1.h"
#endif

#if(_PANEL_TYPE == _PNL_IASX12G)
#include "Panel\PNL_IASX12G.h"
#endif

#if(_PANEL_TYPE == _PNL_LQ15X01K)
#include "Panel\PNL_LQ15X01K.h"
#endif

#if(_PANEL_TYPE == _PNL_LQ14X02)
#include "Panel\PNL_LQ14X02.h"
#endif

#if(_PANEL_TYPE == _PNL_NL10276AC28)
#include "Panel\PNL_NL10276AC28.h"
#endif


#if(_PANEL_TYPE == _PNL_LT170E2_131)
#include "Panel\PNL_LT170E2_131.h"
#endif

#if(_PANEL_TYPE == _PNL_LTM150XL_P01)
#include "Panel\PNL_LTM150XL_P01.h"
#endif

#if(_PANEL_TYPE ==  _PNL_LTN154X1_L02)
#include "Panel\PNL_LTN154X1_L02.h"
#endif

#if(_PANEL_TYPE ==  _PNL_LM171W02)
#include "Panel\PNL_LM171W02.h"
#endif
#if(_PANEL_TYPE == _PNL_TX38D22VCOCAA_TS8)
#include "Panel\_PNL_TX38D22VCOCAA_TS8.h"
#endif

#if(_PANEL_TYPE == _PNL_LM151X3_B3AP)
#include "Panel\PNL_LM151X3_B3AP.h"
#endif

#if(_PANEL_TYPE == _PNL_LTM170E4_P01)
#include "Panel\PNL_LTM170E4_P01.h"
#endif

#if(_PANEL_TYPE == _PNL_NL10276AC30_09)
#include "Panel\PNL_NL10276AC30_09.h"
#endif

#if(_PANEL_TYPE == _PNL_LT181E2_131)
#include "Panel\PNL_LT181E2_131.h"
#endif

#if(_PANEL_TYPE == _PNL_NL128102AC28_01)
#include "Panel\PNL_NL128102AC28_01.h"
#endif

#if(_PANEL_TYPE == _PNL_LTM170W1)
#include "Panel\PNL_LTM170W1.h"
#endif

#if(_PANEL_TYPE == _PNL_LTN154U1_L01)
#include "Panel\PNL_LTN154U1_L01.h"
#endif

⌨️ 快捷键说明

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