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

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

?? lcd.h

?? Samsung ARM7 s3c44b0 + uC-OSii + uC-GUI 完美的綜合到了一起
?? 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.HPurpose     : 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 theemWin layers on top of that. Since "C" does not provide data types offixed length which are identical on all platforms, this is done here.For most 16/32 controllers, the settings will work fine. However, ifyou have similar defines in other sections of your program, you mightwant 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 requiredin the Simulation. This is why we ignore the target settings for datatypes and use the correct settings for the simulation.(U32 could be defined as long, which would yield a 64 bit type onthe 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 donot have to be implemented in the driver. This way the driver can beenhanced in the future without affecting the driver interface,keeping older drivers compatible.More DevCaps can always be added in the future, as older driversare guaranteed to return 0 for all unimplemented features or queries.The values below define the legal parameters to the LCD_GetDeviceCapsand 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;#endifvoid 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, int xMag, int yMag);  void LCD_DrawBitmap_RLE4(int x0,int y0,int xsize, int ysize, const U8*pPixel, const LCD_LOGPALETTE* pLogPal, int xMag, int yMag);#endifLCD_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;#endifLCD_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 driveras 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);/***********************************************************************       LCD_X_...************************************************************************/void LCD_X_Init(void);void LCD_X_On  (void);void LCD_X_Off (void);#endif /* LCD_H */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91精品在线一区二区| 狠狠狠色丁香婷婷综合久久五月| 久久精品夜夜夜夜久久| 日韩一区二区三区观看| 欧美视频三区在线播放| 91久久一区二区| 日本丶国产丶欧美色综合| 色婷婷综合久久久久中文一区二区 | 成人高清免费观看| 激情六月婷婷久久| 国产一区二区三区在线观看免费 | 日韩午夜精品视频| 精品久久国产老人久久综合| 欧美成人精品1314www| 精品国产一区久久| 国产欧美日韩三区| 亚洲天堂av一区| 亚洲自拍都市欧美小说| 午夜免费久久看| 久久99精品国产麻豆婷婷洗澡| 久久精品噜噜噜成人av农村| 国产在线不卡一区| 99精品视频一区| 欧美伊人精品成人久久综合97| 国产综合色视频| 91免费版pro下载短视频| 欧美日韩中文一区| 精品国产成人系列| 综合激情成人伊人| 日本欧美大码aⅴ在线播放| 国产原创一区二区| 北条麻妃国产九九精品视频| 欧美性猛片xxxx免费看久爱| 日韩久久免费av| 日韩一区欧美一区| 蜜臀av在线播放一区二区三区| 国产一区二区毛片| 欧美自拍偷拍午夜视频| 精品久久免费看| 一区二区三区视频在线看| 蜜桃久久av一区| aaa国产一区| 日韩美女在线视频| 一区二区免费在线播放| 激情综合色综合久久| 在线免费观看日韩欧美| ww亚洲ww在线观看国产| 伊人婷婷欧美激情| 狠狠色综合色综合网络| 欧洲视频一区二区| 欧美高清一级片在线观看| 免费国产亚洲视频| 欧美在线啊v一区| 亚洲国产精品精华液ab| 伦理电影国产精品| 欧美精品国产精品| 亚洲天堂2014| 从欧美一区二区三区| 欧美一区二区三区电影| 亚洲欧美另类小说| 丁香六月综合激情| 精品国产乱码久久久久久夜甘婷婷| 亚洲精品国产一区二区三区四区在线| 精品一区二区三区免费| 91精品国产综合久久久久久久久久 | 成人精品小蝌蚪| 日韩视频一区二区在线观看| 亚洲综合一区二区精品导航| 高清国产一区二区| 久久这里都是精品| 精品午夜一区二区三区在线观看| 欧美日韩国产片| 亚洲风情在线资源站| 色综合av在线| 一区二区三区中文字幕| 成人天堂资源www在线| 中文一区二区在线观看| 懂色av一区二区在线播放| 久久久综合激的五月天| 韩国视频一区二区| 久久久午夜精品| 国产成人av电影在线播放| 国产午夜精品福利| 国产sm精品调教视频网站| 亚洲欧洲av在线| 国产成人精品影院| 亚洲国产精品av| gogo大胆日本视频一区| 日韩美女精品在线| 欧美中文字幕一二三区视频| 亚洲图片自拍偷拍| 91精品国产色综合久久ai换脸| 亚洲地区一二三色| 欧美成人一区二区三区在线观看| 久久99精品视频| 中文字幕av免费专区久久| 色综合久久综合中文综合网| 亚洲精品日日夜夜| 欧美日韩美女一区二区| 日韩av一区二区在线影视| 精品裸体舞一区二区三区| 国产iv一区二区三区| 成人免费在线播放视频| 欧美日韩一区在线观看| 久久99精品久久久久久| 亚洲天堂av老司机| 日韩精品一区二区三区视频播放 | 欧美三级电影网站| 日本欧美在线看| 亚洲国产精品成人久久综合一区| 91激情五月电影| 精品一区二区免费| 亚洲女子a中天字幕| 欧美一区二区三区人| 国产盗摄视频一区二区三区| 亚洲黄色在线视频| 精品处破学生在线二十三| 91浏览器在线视频| 免费成人在线视频观看| 亚洲欧美在线观看| 精品精品欲导航| 欧日韩精品视频| 国产成人高清在线| 日韩和欧美一区二区三区| 国产精品毛片久久久久久久| 欧美又粗又大又爽| 国产福利一区在线| 青青草国产精品97视觉盛宴 | 亚洲国产一区视频| 中文字幕欧美区| 日韩一二三四区| 欧美中文字幕一区| 91美女在线视频| 国产精品一区二区三区四区 | 欧美精品一区二区不卡| 在线视频国内自拍亚洲视频| 国产99久久久国产精品免费看| 日本最新不卡在线| 亚洲国产精品久久人人爱 | 欧美在线不卡一区| 97se亚洲国产综合自在线不卡| 久久精品国产精品亚洲精品| 亚洲高清不卡在线| 亚洲精品一二三四区| 亚洲视频一区二区免费在线观看 | 91蜜桃免费观看视频| 国产a久久麻豆| 国产精品资源网| 国产一区 二区 三区一级| 久久精品免费观看| 精品一区二区三区免费毛片爱| 天天色图综合网| 天天影视色香欲综合网老头| 亚洲午夜在线观看视频在线| 亚洲另类在线一区| 一区二区三区中文字幕精品精品 | 国产女同互慰高潮91漫画| 精品播放一区二区| 欧美成人性福生活免费看| 欧美一级片在线| 精品久久久久香蕉网| 久久久久久黄色| 国产精品网站一区| 中文字幕视频一区二区三区久| 国产精品色婷婷| 亚洲人精品一区| 亚洲一区二区黄色| 日韩主播视频在线| 久久99精品一区二区三区| 成人精品视频.| 欧美自拍丝袜亚洲| 欧美一级久久久| 国产亚洲成av人在线观看导航 | 日韩视频一区二区三区在线播放| 4hu四虎永久在线影院成人| 日韩欧美一二区| 久久久99久久精品欧美| 国产精品传媒视频| 亚洲福利电影网| 国产91精品一区二区麻豆网站 | 亚洲欧美一区二区视频| 亚洲成在线观看| 韩国成人在线视频| 99久久伊人久久99| 欧美精品久久99| 国产精品丝袜91| 一区二区免费视频| 国产乱码字幕精品高清av| 日本韩国欧美在线| 2021中文字幕一区亚洲| 亚洲三级电影网站| 另类小说综合欧美亚洲| zzijzzij亚洲日本少妇熟睡| 69堂成人精品免费视频| 亚洲国产精品国自产拍av| 日韩综合小视频| 91在线无精精品入口| 精品久久久久香蕉网| 亚洲综合激情网| 国产精品自拍三区|