aboutsummaryrefslogtreecommitdiffstats
path: root/src/gdisp.c
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 /src/gdisp.c
parent81f6af7e453b4ac86264dd5197e185d0d4ed0d22 (diff)
downloaduGFX-a95c4933c4ef7631c077fc040076e71c8d46209a.tar.gz
uGFX-a95c4933c4ef7631c077fc040076e71c8d46209a.tar.bz2
uGFX-a95c4933c4ef7631c077fc040076e71c8d46209a.zip
Backlight fix
Diffstat (limited to 'src/gdisp.c')
-rw-r--r--src/gdisp.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/gdisp.c b/src/gdisp.c
index ddcf8546..81c06599 100644
--- a/src/gdisp.c
+++ b/src/gdisp.c
@@ -1267,24 +1267,6 @@ void gdispDrawBox(coord_t x, coord_t y, coord_t cx, coord_t cy, color_t color) {
}
#endif
-/**
- * @brief Control backlight brightness
- *
- * @param[in] percentage The percentage of the brightness (0 to 100)
- */
-void gdispSetBacklight(uint8_t percentage) {
- gdispControl(GDISP_CONTROL_BACKLIGHT, (void*)&percentage);
-}
-
-/**
- * @brief Control display contrast
- *
- * @param[in] percentage The percentage of the contrast
- */
-void gdispSetPercentage(uint8_t percentage){
- gdispControl(GDISP_CONTROL_CONTRAST, (void*)&percentage);
-}
-
#endif /* GFX_USE_GDISP */
#endif /* _GDISP_C */