52 #ifdef __cplusplus // Provide C++ Compatibility 62 GLCD_NUMBER_OF_MODULES = 1
68 GLCD_RGB_MODE_PARALLEL_RGB565 = 0x00000000,
69 GLCD_RGB_MODE_PARALLEL_RGB888 = 0x00000001,
70 GLCD_RGB_MODE_SERIAL_RGB_3 = 0x00000002,
71 GLCD_RGB_MODE_SERIAL_RGBA_4 = 0x00000003,
72 GLCD_RGB_MODE_SERIAL_12BIT = 0x00000004,
73 GLCD_RGB_MODE_YUYV_16BIT = 0x00000005,
74 GLCD_RGB_MODE_BT_656 = 0x00000006
80 GLCD_POLARITY_POSITIVE = 0x00000000,
81 GLCD_PIXEL_CLOCK_POLARITY_NEGATIVE = 0x00400000,
82 GLCD_DE_POLARITY_NEGATIVE = 0x04000000,
83 GLCD_HSYNC_POLARITY_NEGATIVE = 0x08000000,
84 GLCD_VSYNC_POLARITY_NEGATIVE = 0x10000000
86 } GLCD_SIGNAL_POLARITY;
90 GLCD_LAYER_ID_0 = 0x0,
91 GLCD_LAYER_ID_1 = 0x1,
92 GLCD_LAYER_ID_2 = 0x2,
93 GLCD_LAYER_ID_MAX = 0x3
99 GLCD_LAYER_COLOR_MODE_LUT8 = 0x0,
100 GLCD_LAYER_COLOR_MODE_RGBA5551 = 0x1,
101 GLCD_LAYER_COLOR_MODE_RGBA8888 = 0x2,
102 GLCD_LAYER_COLOR_MODE_RGB332 = 0x4,
103 GLCD_LAYER_COLOR_MODE_RGB565 = 0x5,
104 GLCD_LAYER_COLOR_MODE_ARGB8888 = 0x6,
105 GLCD_LAYER_COLOR_MODE_L8 = 0x7,
106 GLCD_LAYER_COLOR_MODE_L1 = 0x8,
107 GLCD_LAYER_COLOR_MODE_L4 = 0x9,
108 GLCD_LAYER_COLOR_MODE_YUYV = 0xA,
109 GLCD_LAYER_COLOR_MODE_RGB888 = 0xB
111 } GLCD_LAYER_COLOR_MODE;
115 GLCD_LAYER_SRC_BLEND_BLACK = 0x0000,
116 GLCD_LAYER_SRC_BLEND_WHITE = 0x0100,
117 GLCD_LAYER_SRC_BLEND_ALPHA_SRC = 0x0200,
118 GLCD_LAYER_SRC_BLEND_ALPHA_GBL = 0x0300,
119 GLCD_LAYER_SRC_BLEND_ALPHA_SRCGBL = 0x0400,
120 GLCD_LAYER_SRC_BLEND_INV_SRC = 0x0500,
121 GLCD_LAYER_SRC_BLEND_INV_GBL = 0x0600,
122 GLCD_LAYER_SRC_BLEND_INV_SRCGBL = 0x0700,
123 GLCD_LAYER_SRC_BLEND_ALPHA_DST = 0x0A00,
124 GLCD_LAYER_SRC_BLEND_INV_DST = 0x0D00
126 } GLCD_LAYER_SRC_BLEND_FUNC;
130 GLCD_LAYER_DEST_BLEND_BLACK = 0x0000,
131 GLCD_LAYER_DEST_BLEND_WHITE = 0x1000,
132 GLCD_LAYER_DEST_BLEND_ALPHA_SRC = 0x2000,
133 GLCD_LAYER_DEST_BLEND_ALPHA_GBL = 0x3000,
134 GLCD_LAYER_DEST_BLEND_ALPHA_SRCGBL = 0x4000,
135 GLCD_LAYER_DEST_BLEND_INV_SRC = 0x5000,
136 GLCD_LAYER_DEST_BLEND_INV_GBL = 0x6000,
137 GLCD_LAYER_DEST_BLEND_INV_SRCGBL = 0x7000,
138 GLCD_LAYER_DEST_BLEND_ALPHA_DST = 0xA000,
139 GLCD_LAYER_DEST_BLEND_INV_DST = 0xD000
141 } GLCD_LAYER_DEST_BLEND_FUNC;
145 GLCD_IRQ_TRIGGER_LEVEL = 0x00000000,
146 GLCD_IRQ_TRIGGER_EDGE = 0x80000000
148 } GLCD_IRQ_TRIGGER_CONTROL;
159 void PLIB_GLCD_LayerColorModeSet(GLCD_LAYER_ID layerId, GLCD_LAYER_COLOR_MODE colorMode);
170 void PLIB_GLCD_LayerStrideSet(GLCD_LAYER_ID layerId, uint32_t stride);
181 void PLIB_GLCD_LayerBaseAddressSet(GLCD_LAYER_ID layerId, uint32_t baseAddress);
192 void PLIB_GLCD_LayerStartXYSet(GLCD_LAYER_ID layerId, uint32_t startX, uint32_t startY);
203 void PLIB_GLCD_LayerSizeXYSet(GLCD_LAYER_ID layerId, uint32_t sizeX, uint32_t sizeY);
214 void PLIB_GLCD_LayerGlobalAlphaSet(GLCD_LAYER_ID layerId, uint8_t value);
225 uint8_t PLIB_GLCD_LayerGlobalAlphaGet(GLCD_LAYER_ID layerId);
236 void PLIB_GLCD_LayerEnable(GLCD_LAYER_ID layerId);
247 void PLIB_GLCD_LayerDisable(GLCD_LAYER_ID layerId);
258 void PLIB_GLCD_Enable(
void);
269 void PLIB_GLCD_Disable(
void);
280 void PLIB_GLCD_BackgroundColorSet(uint32_t bgColor);
291 void PLIB_GLCD_HSyncInterruptDisable(
void);
302 void PLIB_GLCD_RGBSequentialModeSet(GLCD_RGB_MODE mode);
313 void PLIB_GLCD_FrontPorchXYSet(uint32_t frontPorchX, uint32_t frontPorchY);
324 void PLIB_GLCD_BlankingXYSet(uint32_t blankingX, uint32_t blankingY);
335 void PLIB_GLCD_BackPorchXYSet(uint32_t backPorchX, uint32_t backPorchY);
346 void PLIB_GLCD_ClockDividerSet(uint32_t clockDivider);
357 void PLIB_GLCD_ResolutionXYSet(uint32_t resolutionX, uint32_t resolutionY);
368 void PLIB_GLCD_SignalPolaritySet(GLCD_SIGNAL_POLARITY polarity);
379 void PLIB_GLCD_LayerResXYSet(GLCD_LAYER_ID layerId, uint32_t resolutionX, uint32_t resolutionY);
390 void PLIB_GLCD_LayerDestBlendFuncSet(GLCD_LAYER_ID layerId, GLCD_LAYER_DEST_BLEND_FUNC blendFunc);
401 void PLIB_GLCD_LayerSrcBlendFuncSet(GLCD_LAYER_ID layerId, GLCD_LAYER_SRC_BLEND_FUNC blendFunc);
412 void PLIB_GLCD_VSyncInterruptEnable(
void);
423 void PLIB_GLCD_VSyncInterruptDisable(
void);
434 bool PLIB_GLCD_IsVerticalBlankingActive(
void);
445 void PLIB_GLCD_GlobalColorLUTSet(uint32_t* globalLUT);
456 void PLIB_GLCD_PaletteGammaRampEnable(
void);
467 void PLIB_GLCD_PaletteGammaRampDisable(
void);
470 #ifdef __cplusplus // Provide C++ Compatibility 476 #endif // PLIB_GLCD_H