diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/gdi/lcd.cpp | 25 |
1 files changed, 17 insertions, 8 deletions
diff --git a/lib/gdi/lcd.cpp b/lib/gdi/lcd.cpp index ac273c61..5fe1c3ad 100644 --- a/lib/gdi/lcd.cpp +++ b/lib/gdi/lcd.cpp @@ -95,18 +95,27 @@ int eDBoxLCD::setLCDContrast(int contrast) int eDBoxLCD::setLCDBrightness(int brightness) { - int fp; - if((fp=open("/dev/dbox/fp0", O_RDWR))<=0) + eDebug("setLCDBrightness %d", brightness); + FILE *f=fopen("/proc/stb/fp/oled_brightness", "w"); + if (f) { - eDebug("[LCD] can't open /dev/dbox/fp0"); - return(-1); + if (fprintf(f, "%d", brightness) == 0) + eDebug("write /proc/stb/fp/oled_brightness failed!! (%m)"); + fclose(f); } - - if(ioctl(fp, FP_IOCTL_LCD_DIMM, &brightness)) + else { - eDebug("[LCD] can't set lcd brightness"); + int fp; + if((fp=open("/dev/dbox/fp0", O_RDWR))<=0) + { + eDebug("[LCD] can't open /dev/dbox/fp0"); + return(-1); + } + + if(ioctl(fp, FP_IOCTL_LCD_DIMM, &brightness)<=0) + eDebug("[LCD] can't set lcd brightness (%m)"); + close(fp); } - close(fp); return(0); } |
