diff options
author | Joel Bodenmann <joel@unormal.org> | 2012-11-13 23:31:21 +0100 |
---|---|---|
committer | Joel Bodenmann <joel@unormal.org> | 2012-11-13 23:31:21 +0100 |
commit | 4467b814f221c90455c23abadf537b4199a0de51 (patch) | |
tree | e99dceef5c22822a3e7beed97bd996c51e7a39cf /include | |
parent | 2a01ab676296cee33ae9b693a1f7b7d04eec9405 (diff) | |
download | uGFX-4467b814f221c90455c23abadf537b4199a0de51.tar.gz uGFX-4467b814f221c90455c23abadf537b4199a0de51.tar.bz2 uGFX-4467b814f221c90455c23abadf537b4199a0de51.zip |
implemented contrast and backlight functions for GDISP. Implemented those into ILI9320
Diffstat (limited to 'include')
-rw-r--r-- | include/gdisp.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/include/gdisp.h b/include/gdisp.h index 9be97a12..f92ac8ac 100644 --- a/include/gdisp.h +++ b/include/gdisp.h @@ -287,18 +287,17 @@ void gdispDrawBox(coord_t x, coord_t y, coord_t cx, coord_t cy, color_t color); void gdispPackPixels(const pixel_t *buf, coord_t cx, coord_t x, coord_t y, color_t color);
#endif
-/* Macro definitions
- *
+void gdispSetBacklight(uint8_t percentage);
+void gdispSetContrast(uint8_t percentage);
+/*
+ * Macro definitions
*/
-
/* Now obsolete functions */
#define gdispBlitArea(x, y, cx, cy, buffer) gdispBlitAreaEx(x, y, cx, cy, 0, 0, cx, buffer)
/* Macro definitions for common gets and sets */
#define gdispSetPowerMode(powerMode) gdispControl(GDISP_CONTROL_POWER, (void *)(unsigned)(powerMode))
#define gdispSetOrientation(newOrientation) gdispControl(GDISP_CONTROL_ORIENTATION, (void *)(unsigned)(newOrientation))
-#define gdispSetBacklight(percent) gdispControl(GDISP_CONTROL_BACKLIGHT, (void *)(unsigned)(percent))
-#define gdispSetContrast(percent) gdispControl(GDISP_CONTROL_CONTRAST, (void *)(unsigned)(percent))
#define gdispGetWidth() ((coord_t)(unsigned)gdispQuery(GDISP_QUERY_WIDTH))
#define gdispGetHeight() ((coord_t)(unsigned)gdispQuery(GDISP_QUERY_HEIGHT))
|