亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? lcd.h

?? 一種可移植系統(tǒng)
?? H
字號:
/***********************************************************************************************************                                                uC/GUI*                        Universal graphic software for embedded applications**                       (c) Copyright 2002, Micrium Inc., Weston, FL*                       (c) Copyright 2002, SEGGER Microcontroller Systeme GmbH**              礐/GUI is protected by international copyright laws. Knowledge of the*              source code may not be used to write a similar product. This file may*              only be used in accordance with a license and should not be redistributed*              in any way. We appreciate your understanding and fairness.*----------------------------------------------------------------------
File        : LCD.H
Purpose     : Declares LCD interface functions
----------------------------------------------------------------------
*/

#ifndef LCD_H
#define LCD_H


/*
  ********************************************************************
  *                                                                  *
  *                   Basic type defines                             *
  *                                                                  *
  ********************************************************************

The follwing are defines for types used in the LCD-driver and the
emWin layers on top of that. Since "C" does not provide data types of
fixed length which are identical on all platforms, this is done here.
For most 16/32 controllers, the settings will work fine. However, if
you have similar defines in other sections of your program, you might
want to change or relocate these defines, e.g. in a TYPE.H file.
*/
 
#define I8    signed char
#define U8  unsigned char     /* unsigned 8  bits. */
#define I16   signed short    /*   signed 16 bits. */
#define U16 unsigned short    /* unsigned 16 bits. */
#define I32   signed long   /*   signed 32 bits. */
#define U32 unsigned long   /* unsigned 32 bits. */
#define I16P I16              /*   signed 16 bits OR MORE ! */
#define U16P U16              /* unsigned 16 bits OR MORE ! */

/*
  ********************************************************************
  *                                                                  *
  *               Settings for windows simulation                    *
  *                                                                  *
  ********************************************************************

Some settings in the configuration may conflict with the values required
in the Simulation. This is why we ignore the target settings for data
types and use the correct settings for the simulation.
(U32 could be defined as long, which would yield a 64 bit type on
the PC)
*/

#ifdef WIN32
  #pragma warning( disable : 4244 )  // Disable warning messages in simulation
  #pragma warning( disable : 4761 )  // Disable warning "integral size mismatch in argument; conversion supplied"
#endif                                      


/*      *************************************************************
        *                                                           *
        *                Constants                                  *
        *                                                           *
        *************************************************************
*/
#define LCD_ERR0 (0x10)
#define LCD_ERR_CONTROLLER_NOT_FOUND (LCD_ERR0+1)
#define LCD_ERR_MEMORY               (LCD_ERR0+2)

/*
      *********************************
      *                               *
      *      Drawing modes            *
      *                               *
      *********************************
*/

#define LCD_DRAWMODE_NORMAL (0)
#define LCD_DRAWMODE_XOR    (1<<0)
#define LCD_DRAWMODE_TRANS  (1<<1)
#define LCD_DRAWMODE_REV    (1<<2)


 
/*      *************************************************************
        *                                                           *
        *                Typedefs                                   *
        *                                                           *
        *************************************************************
*/

typedef int LCD_DRAWMODE;
typedef U32 LCD_COLOR;

 
/********************************************************
*
*     Data structures
*
*********************************************************
*/

typedef struct { I16P x,y; } GUI_POINT;
typedef struct { I16 x0,y0,x1,y1; } LCD_RECT;
/*typedef struct { GUI_POINT P0, P1; } LCD_RECT; */

typedef struct {
  int              NumEntries; 
  char             HasTrans;         
  const LCD_COLOR* pPalEntries; 
} LCD_LOGPALETTE; 

/* This is used for the simulation only ! */
typedef struct {
  int x,y;
  unsigned char KeyStat;
} LCD_tMouseState;

/********************************************************
*
*     Index2Color
*
*********************************************************

  This function needs to be int the public part of the software
  since it is needed by the simulation. Most other driver
  functions are hidden in the private header file.
*/

typedef LCD_COLOR    tLCDDEV_Index2Color     (int Index);
#if !defined (__C51__) /* To bypass Keil-compiler bug */
  tLCDDEV_Index2Color LCD_L0_Index2Color, LCD_L0_1_Index2Color;
#else
  LCD_COLOR    LCD_L0_Index2Color  (int Index);
  LCD_COLOR    LCD_L0_1_Index2Color(int Index);
#endif

/*      *************************************************************
        *                                                           *
        *                   Defines                                 *
        *                                                           *
        *    for device capabilities                                *
        *                                                           *
        *************************************************************

The following is the list of device capabilities which can, but do
not have to be implemented in the driver. This way the driver can be
enhanced in the future without affecting the driver interface,
keeping older drivers compatible.
More DevCaps can always be added in the future, as older drivers
are guaranteed to return 0 for all unimplemented features or queries.

The values below define the legal parameters to the LCD_GetDeviceCaps
and the LCD_GetpCapFunc routines.
*/

#define LCD_DEVCAP_NUMCOLORS    0x0     /* Quest number of colors
                                           which LCD can display */
#define LCD_DEVCAP_XSIZE        0x1     /* Quest horiz. res. of display */
#define LCD_DEVCAP_YSIZE        0x2     /* Quest vert. res. of display */
#define LCD_DEVCAP_VXSIZE       0x3     /* Quest vert. res. of virtual disp.*/
#define LCD_DEVCAP_VYSIZE       0x4     /* Quest vert. res. of virtual disp.*/
#define LCD_DEVCAP_XORG         0x5     /* X-origin ... usually 0 */
#define LCD_DEVCAP_YORG         0x6     /* Y-origin ... usually 0 */
#define LCD_DEVCAP_CONTROLLER   0x7     /* LCD Controller (Numerical) */
#define LCD_DEVCAP_BITSPERPIXEL 0x8     /* Bits per pixel ... 1/2/4/8 */
#define LCD_DEVCAP_NUMPAGES     0x10    /* Quest number of pages of display */

#define LCD_DEVCAP_COLOR        0x1000  /* Quest Color[0]
                                0x1001     Quest Color[1]
                                0x1002     Quest Color[2]
                                         ...                    */
 /* The next 4095 entries are reserved so up to 4096 colors
    can be queried          ...*/

int LCD_GetXSize(void);
int LCD_GetYSize(void);
int LCD_GetVXSize(void);
int LCD_GetVYSize(void);
U32 LCD_GetNumColors(void);
int LCD_GetBitsPerPixel(void);
int LCD_GetFixedPalette(void);
int LCD_GetXMag(void);
int LCD_GetYMag(void);
int LCD_GetNumDisplays(void);
int LCD_GetXSize_1(void);
int LCD_GetYSize_1(void);
int LCD_GetVXSize_1(void);
int LCD_GetVYSize_1(void);
U32 LCD_GetNumColors_1(void);
int LCD_GetBitsPerPixel_1(void);
int LCD_GetFixedPalette_1(void);
int LCD_GetXMag_1(void);
int LCD_GetYMag_1(void);

#define LCD_GET_XSIZE()        LCD_GetXSize()
#define LCD_GET_YSIZE()        LCD_GetYSize()
#define LCD_GET_VXSIZE()       LCD_GetVXSize()
#define LCD_GET_VYSIZE()       LCD_GetVYSize()
#define LCD_GET_NUMCOLORS()    LCD_GetNumColors()
#define LCD_GET_BITSPERPIXEL() LCD_GetBitsPerPixel()


/*********************************************************************
*
*      LCD_CLIP function table
*
**********************************************************************
*/
typedef void         tLCD_HL_DrawHLine    (int x0, int y0,  int x1);
typedef void         tLCD_HL_DrawPixel    (int x0, int y0);

typedef struct {
  tLCD_HL_DrawHLine*          pfDrawHLine;
  tLCD_HL_DrawPixel*          pfDrawPixel;
} tLCD_HL_APIList;

#if defined (__C51__) /* To bypass Keil-compiler bug */
  void LCD_DrawHLine(int x0, int y0,  int x1);
  void LCD_DrawPixel(int x0, int y0);
#else
  tLCD_HL_DrawHLine LCD_DrawHLine;
  tLCD_HL_DrawPixel LCD_DrawPixel;
#endif

void LCD_DrawVLine  (int x, int y0,  int y1);



/*********************************************************************
*
*              Declarations for LCD_
*
**********************************************************************
*/

void LCD_SetClipRectEx(const LCD_RECT* pRect);
void LCD_SetClipRectMax(void);

/* Get device capabilities (0 if not supported) */
I32  LCD_GetDevCap(int Index);

/* Initialize LCD using config-paramters */
int LCD_Init(void);

void LCD_SetBkColor   (LCD_COLOR Color); /* Set background color */
void LCD_SetColor     (LCD_COLOR Color); /* Set foreground color */
void LCD_SetPixelIndex(int x, int y, int ColorIndex);

/* Palette routines (Not available on all drivers) */
void LCD_InitLUT(void);

/* Decompressors */
typedef void tfDrawSpecialBitmap(int x0,int y0,int xsize, int ysize, const U8*pPixel, const LCD_LOGPALETTE* pLogPal, int xMag, int yMag);
#if !defined (__C51__) /* To bypass Keil-compiler bug */
  tfDrawSpecialBitmap LCD_DrawBitmap_RLE8, LCD_DrawBitmap_RLE4;
#else
  void LCD_DrawBitmap_RLE8(int x0,int y0,int xsize, int ysize, const U8*pPixel, const LCD_LOGPALETTE* pLogPal);
  void LCD_DrawBitmap_RLE4(int x0,int y0,int xsize, int ysize, const U8*pPixel, const LCD_LOGPALETTE* pLogPal);
#endif

LCD_DRAWMODE LCD_SetDrawMode  (LCD_DRAWMODE dm);
void LCD_SetColorIndex(int Index);
void LCD_SetBkColorIndex(int Index);
void LCD_FillRect(int x0, int y0, int x1, int y1);
void LCD_DrawBitmap   (int x0, int y0,
                       int xsize, int ysize,
                       int xMul, int yMul,
                       int BitsPerPixel,
                       int BytesPerLine,
                       const U8* pPixel,
                       const LCD_LOGPALETTE* pLogPal);
typedef void tLCD_SetPixelAA(int x, int y, U8 Intens);

#if defined (__C51__)  /* To bypass Keil-compiler bug */
  void tLCD_SetPixelAA(int x, int y, U8 Intens);
  void LCD_SetPixelAA_NoTrans(int x, int y, U8 Intens);
#else
  tLCD_SetPixelAA LCD_SetPixelAA;
  tLCD_SetPixelAA LCD_SetPixelAA_NoTrans;
#endif

LCD_COLOR LCD_AA_MixColors(LCD_COLOR Color, LCD_COLOR BkColor, U8 Intens);
LCD_COLOR    LCD_GetPixelColor(int x, int y);     /* Get RGB color of pixel */
unsigned int LCD_GetPixelIndex(int x, int y);
int LCD_GetBkColorIndex (void);
int LCD_GetColorIndex (void);



/*      *************************************************************
        *                                                           *
        *      LCD  publics not used by GUI                         *
        *                                                           *
        *************************************************************
  

The following functions can, but do not have to be defined in the LCD driver
as they are not used by the GUI level.

*/



#define LCD_On          LCD_L0_On
#define LCD_Off         LCD_L0_Off
#define LCD_ReInit      LCD_L0_ReInit
#define LCD_SetLUTEntry LCD_L0_SetLUTEntry


#define LCD_CC_UNLOCK (0)    /* Default mode: Cache is transparent */
#define LCD_CC_LOCK   (1)    /* Cache is locked, no write operations */
#define LCD_CC_FLUSH  (2)    /* Flush cache, do not change mode */
U8 LCD_L0_ControlCache(U8 mode);
/* Check if controller is still properly initialized */
int  LCD_L0_CheckInit(void);        /* returns if init is still O.K.
                                      by reading all available registers of
                                      Display controller.
                                      0: Init O.K.
                                    */

#define LCD_ControlCache LCD_L0_ControlCache

/*
        ******************************************
        *                                        *
        *        Support for paging              *
        *                                        *
        ******************************************
*/

int LCD_SelPage  (int NewPage);    /* returns formerly sel. page */
int LCD_ShowPage (int NewPage);    /* sets / returns visible page */
int LCD_GetSelPage (void);         /* returns selected page */
int LCD_GetVisPage (void);         /* returns visible page */


/*      *************************************************************
        *                                                           *
        *      LCD  imports                                         *
        *                  (for routines in LCDColor)               *
        *                                                           *
        *************************************************************
*/
  

int              LCD_Color2Index     (LCD_COLOR Color);
LCD_COLOR        LCD_Index2Color     (int Index);

#endif /* LCD_H */




?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美性生活久久| 国产精品久久久久久亚洲伦| 国产精品无遮挡| 国产一区在线观看视频| 日韩欧美另类在线| 黄色日韩网站视频| 国产婷婷色一区二区三区四区 | 国产三区在线成人av| 国产精品一区二区x88av| 欧美国产精品一区| youjizz国产精品| 亚洲中国最大av网站| 91精品国产丝袜白色高跟鞋| 国产自产2019最新不卡| 国产精品网友自拍| 欧美视频三区在线播放| 麻豆精品视频在线观看视频| 亚洲国产精品ⅴa在线观看| 91国偷自产一区二区三区成为亚洲经典 | 亚洲尤物在线视频观看| 91精品国产综合久久精品图片| 精品一区二区免费看| 日本一区二区三区国色天香 | 成人欧美一区二区三区黑人麻豆 | 欧美日韩国产综合草草| 国产一区二区三区四区五区入口| 国产精品久久毛片| 91麻豆精品国产91久久久久久 | 亚洲三级久久久| 欧美日韩视频在线第一区 | xfplay精品久久| 97超碰欧美中文字幕| 天天做天天摸天天爽国产一区| 久久久不卡网国产精品二区 | 久久精品国产秦先生| 亚洲激情自拍偷拍| 午夜久久久影院| 日韩三区在线观看| 91免费看片在线观看| 蜜桃av一区二区在线观看| 成人免费在线视频观看| 欧美成人猛片aaaaaaa| 91福利社在线观看| 国产成人啪午夜精品网站男同| 亚洲成av人影院| 一区二区中文字幕在线| 精品国产sm最大网站免费看| 色av成人天堂桃色av| 国产精品亚洲午夜一区二区三区| 午夜精品福利一区二区三区av| 国产精品家庭影院| 国产亚洲一区字幕| 久久这里只精品最新地址| 欧美老人xxxx18| 色欲综合视频天天天| 豆国产96在线|亚洲| 精东粉嫩av免费一区二区三区| 亚洲一级在线观看| 亚洲女人的天堂| 中文字幕在线一区| 欧美国产精品中文字幕| 精品精品国产高清一毛片一天堂| 欧美久久久一区| 欧美日韩一本到| av在线播放不卡| 成人h动漫精品一区二区| 国产精品亚洲综合一区在线观看| 精品一区二区三区免费播放| 美洲天堂一区二卡三卡四卡视频| 午夜一区二区三区视频| 亚洲成人久久影院| 亚洲五码中文字幕| 一区二区三区加勒比av| 亚洲黄色免费电影| 伊人婷婷欧美激情| 亚洲一区视频在线| 天天亚洲美女在线视频| 亚洲成av人在线观看| 日韩国产欧美在线播放| 日韩国产在线观看| 久久精品久久99精品久久| 久久国产剧场电影| 国模套图日韩精品一区二区| 国产精品影视在线观看| 成人av网站在线观看免费| 成人国产亚洲欧美成人综合网| 99re这里只有精品视频首页| 色哟哟一区二区在线观看| 欧美在线高清视频| 欧美日韩成人一区| 日韩欧美精品在线视频| 久久久99精品免费观看不卡| 欧美国产激情一区二区三区蜜月| 中文字幕在线一区二区三区| 亚洲资源中文字幕| 精品一区二区三区不卡 | 欧美影院午夜播放| 91精品欧美久久久久久动漫 | av在线综合网| 欧美日韩一区二区三区不卡| 欧美一区二区三区电影| 久久久久久亚洲综合影院红桃| 中文字幕精品综合| 亚洲午夜一二三区视频| 另类小说视频一区二区| 高清国产一区二区| 在线精品视频免费播放| 日韩一级二级三级| 中文字幕av一区二区三区| 亚洲va在线va天堂| 国产乱码精品一区二区三区忘忧草 | 一片黄亚洲嫩模| 另类专区欧美蜜桃臀第一页| 成人激情av网| 91精品黄色片免费大全| 欧美激情综合在线| 天天影视涩香欲综合网| 成人一区二区三区中文字幕| 欧美丰满美乳xxx高潮www| 久久精品视频在线免费观看| 亚洲精品ww久久久久久p站| 激情综合亚洲精品| 欧美亚洲综合久久| 国产精品毛片无遮挡高清| 日本亚洲最大的色成网站www| 成人av午夜影院| 日韩精品一区二区三区视频在线观看| 亚洲欧洲成人精品av97| 久久国产精品99久久人人澡| 色婷婷综合久久久中文一区二区| 欧美本精品男人aⅴ天堂| 一区二区三区不卡视频在线观看 | 天堂久久一区二区三区| 国产成人av一区| 日韩欧美不卡一区| 色视频一区二区| 久久99久久久久| 91亚洲永久精品| xvideos.蜜桃一区二区| 亚洲欧美欧美一区二区三区| 国产真实乱子伦精品视频| 欧美视频在线一区二区三区| 中文字幕一区二区在线观看| 极品美女销魂一区二区三区免费| 欧美午夜精品久久久久久孕妇| 欧美国产激情二区三区| 国产一区二区成人久久免费影院| 欧美一级免费大片| 亚洲韩国精品一区| 欧洲国内综合视频| 亚洲免费在线电影| 99久久99久久精品免费看蜜桃| 国产午夜亚洲精品羞羞网站| 韩国视频一区二区| 欧美一区二区性放荡片| 性做久久久久久久久| 欧美日韩在线三级| 亚洲一区在线免费观看| 欧美在线观看视频一区二区 | 欧美日韩国产综合一区二区三区| 亚洲日穴在线视频| 一本高清dvd不卡在线观看| 国产精品护士白丝一区av| 国产v日产∨综合v精品视频| 久久久www成人免费无遮挡大片 | 天天色 色综合| 精品1区2区3区| 亚洲va在线va天堂| 制服丝袜日韩国产| 麻豆国产欧美日韩综合精品二区| 欧美一级欧美三级在线观看| 免费精品视频在线| 日韩欧美国产高清| 国产精品99久久久| 中文文精品字幕一区二区| 国产成人精品三级| 亚洲桃色在线一区| 色老汉一区二区三区| 亚洲一级二级在线| 欧美一区二区播放| 国产一区二区三区在线观看免费 | 久久精品免费看| 精品粉嫩超白一线天av| 国产成人啪免费观看软件| 国产精品久久一卡二卡| 一本色道久久加勒比精品| 亚洲电影第三页| 亚洲精品在线免费播放| 成人一级片在线观看| 亚洲欧美日韩国产手机在线 | 香蕉乱码成人久久天堂爱免费| 在线不卡中文字幕| 国产在线视频不卡二| 亚洲欧洲精品天堂一级| 欧美久久久一区| 国产乱子伦一区二区三区国色天香| 国产精品久久久久久亚洲伦| 欧美天堂亚洲电影院在线播放| 激情综合色播激情啊| 17c精品麻豆一区二区免费|