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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? lcd.h

?? UCOSII在STM32平臺的移植
?? H
?? 第 1 頁 / 共 2 頁
字號:

#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_GetXSize_1(void);
int LCD_GetXSizeEx(int Index);

int LCD_GetYSize(void);
int LCD_GetYSize_1(void);
int LCD_GetYSizeEx(int Index);

int LCD_GetVXSize(void);
int LCD_GetVXSize_1(void);
int LCD_GetVXSizeEx(int Index);

int LCD_GetVYSize(void);
int LCD_GetVYSize_1(void);
int LCD_GetVYSizeEx(int Index);

U32 LCD_GetNumColors(void);
U32 LCD_GetNumColors_1(void);
U32 LCD_GetNumColorsEx(int Index);

int LCD_GetBitsPerPixel(void);
int LCD_GetBitsPerPixel_1(void);
int LCD_GetBitsPerPixelEx(int Index);

int LCD_GetFixedPalette(void);
int LCD_GetFixedPalette_1(void);
I32 LCD_GetFixedPaletteEx(int Index);

int LCD_GetXMag(void);
int LCD_GetXMag_1(void);
int LCD_GetXMagEx(int Index);

int LCD_GetYMag(void);
int LCD_GetYMag_1(void);
int LCD_GetYMagEx(int Index);

int LCD_GetMirrorXEx(int LayerIndex);
int LCD_GetMirrorYEx(int LayerIndex);
int LCD_GetSwapXYEx(int LayerIndex);

int LCD_GetSwapRBEx(int LayerIndex);
int LCD_GetDeltaModeEx(int LayerIndex);
int LCD_GetBitsPerPixel_L0Ex(int LayerIndex);

int LCD_GetNumLayers(void);

#define LCD_GetNumDisplays() LCD_GetNumLayers()

#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;

void LCD_DrawHLine(int x0, int y0,  int x1);
void LCD_DrawPixel(int x0, int y0);
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 GUI_UNI_PTR *pPixel, const LCD_LOGPALETTE GUI_UNI_PTR * pLogPal, int xMag, int yMag);
void         LCD_DrawBitmap_RLE8(int x0,int y0,int xsize, int ysize, const U8 GUI_UNI_PTR *pPixel, const LCD_LOGPALETTE GUI_UNI_PTR * pLogPal, int xMag, int yMag);
void         LCD_DrawBitmap_RLE4(int x0,int y0,int xsize, int ysize, const U8 GUI_UNI_PTR *pPixel, const LCD_LOGPALETTE GUI_UNI_PTR * pLogPal, int xMag, int yMag);
void         LCD_DrawBitmap_565 (int x0,int y0,int xsize, int ysize, const U8 GUI_UNI_PTR *pPixel, const LCD_LOGPALETTE GUI_UNI_PTR * pLogPal, int xMag, int yMag);
void         LCD_DrawBitmap_M565(int x0,int y0,int xsize, int ysize, const U8 GUI_UNI_PTR *pPixel, const LCD_LOGPALETTE GUI_UNI_PTR * pLogPal, int xMag, int yMag);

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);
typedef void tLCD_SetPixelAA(int x, int y, U8 Intens);

void LCD_SetPixelAA(int x, int y, U8 Intens);
void LCD_SetPixelAA_NoTrans(int x, int y, U8 Intens);

LCD_COLOR    LCD_AA_MixColors(LCD_COLOR Color, LCD_COLOR BkColor, U8 Intens);
LCD_COLOR    LCD_MixColors256(LCD_COLOR Color, LCD_COLOR BkColor, unsigned 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);

/*********************************************************************
*
*       Optional support for rotatation
*
**********************************************************************
*/

#if GUI_SUPPORT_ROTATION

typedef void tLCD_DrawBitmap(int x0, int y0, int xsize, int ysize,
                             int xMul, int yMul, int BitsPerPixel, int BytesPerLine,
                             const U8 GUI_UNI_PTR * pPixel, const void * pTrans);
typedef void tRect2TextRect (LCD_RECT * pRect);

struct tLCD_APIList_struct {
  tLCD_DrawBitmap   * pfDrawBitmap;
  tRect2TextRect    * pfRect2TextRect;
};

typedef struct tLCD_APIList_struct tLCD_APIList;

extern tLCD_APIList LCD_APIListCCW;
extern tLCD_APIList LCD_APIListCW;
extern tLCD_APIList LCD_APIList180;

#define GUI_ROTATION   tLCD_APIList
#define GUI_ROTATE_CCW &LCD_APIListCCW
#define GUI_ROTATE_CW  &LCD_APIListCW
#define GUI_ROTATE_180 &LCD_APIList180
#define GUI_ROTATE_0   0
#endif


/*      *************************************************************
        *                                                           *
        *      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);
U8 LCD_L0_1_ControlCache(U8 mode);
U8 LCD_L0_2_ControlCache(U8 mode);
U8 LCD_L0_3_ControlCache(U8 mode);
U8 LCD_L0_4_ControlCache(U8 mode);
void LCD_L0_Refresh(void);
void LCD_L0_1_Refresh(void);
void LCD_L0_2_Refresh(void);
void LCD_L0_3_Refresh(void);
void LCD_L0_4_Refresh(void);
/* 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_COLOR        LCD_Index2ColorEx   (int i, unsigned int LayerIndex);

/*********************************************************************
*
*       LCD_X_...
*
**********************************************************************
*/

void LCD_X_Init(void);
void LCD_X_On  (void);
void LCD_X_Off (void);

char LCD_X_Read00(void);
char LCD_X_Read01(void);
void LCD_X_Write00(char c);
void LCD_X_Write01(char c);
void LCD_X_WriteM01(char * pData, int NumBytes);

#if defined(__cplusplus)
  }
#endif

#endif /* LCD_H */

/*************************** End of file ****************************/

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人av动漫网站| 久久精品国产精品亚洲综合| 成人午夜av影视| 欧美国产在线观看| 成人av网在线| 一区二区三区四区乱视频| 91福利社在线观看| 午夜视频一区二区| 2023国产精品| 一本一道综合狠狠老| 亚洲午夜视频在线| 日韩视频123| 国产成人综合自拍| 亚洲精品综合在线| 91精品国产欧美一区二区18| 国产做a爰片久久毛片| 国产精品午夜在线| 欧美色图12p| 黑人巨大精品欧美黑白配亚洲| 欧美国产日产图区| 欧美日韩三级一区| 蜜臀av亚洲一区中文字幕| 国产欧美日韩在线观看| 色视频欧美一区二区三区| 五月激情综合网| 国产欧美日韩视频一区二区| 色婷婷久久一区二区三区麻豆| 日韩经典中文字幕一区| 欧美高清在线精品一区| 欧美日韩激情在线| 国产不卡免费视频| 日产精品久久久久久久性色| 欧美国产欧美亚州国产日韩mv天天看完整 | 亚洲精品日韩综合观看成人91| 欧美日本国产一区| 成人一道本在线| 肉肉av福利一精品导航| 国产精品久久久久三级| 91精品国产综合久久久久久久| 不卡一区中文字幕| 经典三级在线一区| 亚洲成人精品在线观看| 麻豆精品在线观看| 一区二区三区欧美激情| 国产日韩欧美激情| 欧美日韩国产电影| 91亚洲精品乱码久久久久久蜜桃 | 亚洲三级在线播放| 精品久久久久久久人人人人传媒 | 欧美一级艳片视频免费观看| 成人午夜av电影| 久久99国产精品尤物| 亚洲国产另类av| 日韩一区日韩二区| 久久夜色精品一区| 日韩一区和二区| 欧美日韩一级片网站| 成人动漫一区二区在线| 久草热8精品视频在线观看| 亚洲午夜视频在线| 亚洲黄色免费网站| 国产精品国产自产拍高清av| 精品国产乱码久久久久久牛牛| 欧美日韩一区二区在线观看视频 | 一区二区三区中文在线观看| 国产婷婷一区二区| 久久在线免费观看| 精品乱码亚洲一区二区不卡| 欧美丰满少妇xxxbbb| 欧美天天综合网| 色欧美片视频在线观看在线视频| av一区二区三区黑人| 懂色av一区二区三区免费看| 精品免费国产二区三区| 91精品国产一区二区人妖| 在线观看日产精品| 欧美日韩一区二区三区免费看| 99精品视频一区二区三区| 成人动漫中文字幕| 91在线观看下载| 91亚洲午夜精品久久久久久| 色综合婷婷久久| 色欧美乱欧美15图片| 欧美体内she精视频| 欧美日韩一区中文字幕| 在线电影欧美成精品| 欧美一区二区三区四区五区| 欧美一级电影网站| 日韩欧美在线网站| 欧美精品一区二区三区蜜桃视频| 26uuu亚洲综合色| 国产亚洲欧美日韩在线一区| 国产精品视频一二三区| 最新国产の精品合集bt伙计| 亚洲人成网站色在线观看| 亚洲免费av网站| 日韩综合一区二区| 激情综合色播激情啊| 成人国产免费视频| 日本乱人伦一区| 在线播放/欧美激情| 日韩欧美一区二区免费| 经典三级在线一区| av电影在线观看完整版一区二区 | 在线观看亚洲专区| 91麻豆精品久久久久蜜臀| 26uuu国产一区二区三区| 国产精品视频观看| 亚洲国产欧美日韩另类综合 | 国产午夜精品一区二区| 综合网在线视频| 天堂影院一区二区| 精品一区二区综合| 91丨九色porny丨蝌蚪| 国产精品超碰97尤物18| 欧美精品成人一区二区三区四区| 欧洲精品在线观看| 视频一区视频二区在线观看| 国产精品美女一区二区三区| 日韩欧美中文一区二区| 国产一区91精品张津瑜| 欧美在线观看18| 欧美—级在线免费片| 久久蜜桃一区二区| 国产精品欧美精品| 午夜国产不卡在线观看视频| 国产一区二三区好的| 色综合网站在线| 久久夜色精品国产欧美乱极品| 综合久久久久久久| 激情图片小说一区| 欧美色精品在线视频| 国产精品麻豆欧美日韩ww| 五月激情六月综合| 91在线丨porny丨国产| 日韩午夜av一区| 一区二区三区在线视频免费观看| 国产原创一区二区| 91精品麻豆日日躁夜夜躁| 亚洲欧美激情小说另类| 精品一区二区三区免费播放| 欧美探花视频资源| 欧美国产精品一区二区三区| 青娱乐精品视频| 欧美日韩在线免费视频| 国产精品久久久久婷婷二区次| 久久99精品国产麻豆不卡| 欧美性色综合网| 悠悠色在线精品| thepron国产精品| 久久日韩精品一区二区五区| 日韩中文字幕不卡| 欧美色综合天天久久综合精品| 中文字幕一区在线| 成人黄页在线观看| 国产色91在线| 韩国精品久久久| 精品99久久久久久| 久久机这里只有精品| 91精品国模一区二区三区| 亚洲成a人片在线观看中文| 色琪琪一区二区三区亚洲区| 亚洲人成人一区二区在线观看 | 老司机免费视频一区二区三区| 欧美三级在线看| 亚洲一区二区三区在线看| 91国产视频在线观看| 亚洲人成网站精品片在线观看| 成人av电影免费在线播放| 国产精品视频看| 北条麻妃国产九九精品视频| 国产精品看片你懂得| 久久嫩草精品久久久精品一| 老汉av免费一区二区三区| 日韩久久久久久| 九九热在线视频观看这里只有精品| 日韩午夜在线观看视频| 激情文学综合网| 欧美经典一区二区| 波波电影院一区二区三区| 综合网在线视频| 欧美少妇bbb| 蜜臀av在线播放一区二区三区 | 99精品视频在线播放观看| 亚洲视频一区二区免费在线观看 | 欧美三级三级三级| 天堂va蜜桃一区二区三区漫画版| 91精品欧美综合在线观看最新 | 国产一区在线视频| 国产精品午夜在线观看| 91激情五月电影| 亚洲欧洲综合另类在线| 日韩一区精品视频| 国产a视频精品免费观看| 亚洲成人自拍网| 日韩三级.com| 成人av在线一区二区三区| 亚洲美女区一区| 91精品蜜臀在线一区尤物| 粉嫩一区二区三区性色av|