git.cweiske.de
/
enigma2.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
lib/gdi/font.cpp: try to fix wrong reordering of some characters
[enigma2.git]
/
lib
/
gdi
/
lcd.cpp
diff --git
a/lib/gdi/lcd.cpp
b/lib/gdi/lcd.cpp
index ecc19b5389853bc69bcf35f6ef95bcde9c089d68..0908d890994bc896091bf7844898ff1ce1c27ed0 100644
(file)
--- a/
lib/gdi/lcd.cpp
+++ b/
lib/gdi/lcd.cpp
@@
-49,7
+49,9
@@
eDBoxLCD::eDBoxLCD(): eLCD(eSize(132, 64))
lcdfd = open("/dev/dbox/oled0", O_RDWR);
if (lcdfd < 0)
{
lcdfd = open("/dev/dbox/oled0", O_RDWR);
if (lcdfd < 0)
{
- FILE *f=fopen("/proc/stb/fp/oled_brightness", "w");
+ FILE *f=fopen("/proc/stb/lcd/oled_brightness", "w");
+ if (!f)
+ f = fopen("/proc/stb/fp/oled_brightness", "w");
if (f)
{
is_oled = 2;
if (f)
{
is_oled = 2;
@@
-102,11
+104,13
@@
int eDBoxLCD::setLCDContrast(int contrast)
int eDBoxLCD::setLCDBrightness(int brightness)
{
eDebug("setLCDBrightness %d", brightness);
int eDBoxLCD::setLCDBrightness(int brightness)
{
eDebug("setLCDBrightness %d", brightness);
- FILE *f=fopen("/proc/stb/fp/oled_brightness", "w");
+ FILE *f=fopen("/proc/stb/lcd/oled_brightness", "w");
+ if (!f)
+ f = fopen("/proc/stb/fp/oled_brightness", "w");
if (f)
{
if (fprintf(f, "%d", brightness) == 0)
if (f)
{
if (fprintf(f, "%d", brightness) == 0)
- eDebug("write /proc/stb/
fp
/oled_brightness failed!! (%m)");
+ eDebug("write /proc/stb/
lcd
/oled_brightness failed!! (%m)");
fclose(f);
}
else
fclose(f);
}
else