aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2012-11-13 23:54:50 +0100
committerJoel Bodenmann <joel@unormal.org>2012-11-13 23:54:50 +0100
commita95c4933c4ef7631c077fc040076e71c8d46209a (patch)
treef54f775f2795e783d3190de8b1c16066d64e1fab /include
parent81f6af7e453b4ac86264dd5197e185d0d4ed0d22 (diff)
downloaduGFX-a95c4933c4ef7631c077fc040076e71c8d46209a.tar.gz
uGFX-a95c4933c4ef7631c077fc040076e71c8d46209a.tar.bz2
uGFX-a95c4933c4ef7631c077fc040076e71c8d46209a.zip
Backlight fix
Diffstat (limited to 'include')
-rw-r--r--include/gdisp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/gdisp.h b/include/gdisp.h
index f92ac8ac..760f14f6 100644
--- a/include/gdisp.h
+++ b/include/gdisp.h
@@ -287,8 +287,6 @@ 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
-void gdispSetBacklight(uint8_t percentage);
-void gdispSetContrast(uint8_t percentage);
/*
* Macro definitions
*/
@@ -298,6 +296,8 @@ void gdispSetContrast(uint8_t percentage);
/* 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))