eLCD::eLCD(eSize size): res(size)
{
+ lcdfd = -1;
locked=0;
_buffer=new unsigned char[res.height()*res.width()];
+ memset(_buffer, 0, res.height()*res.width());
_stride=res.width();
}
void eLCD::unlock()
{
- read( lcdfd, NULL, 0);
- if ( errno == 9 )
- {
- eDebug("reopen lcd");
- lcdfd=open("/dev/dbox/lcd0", O_RDWR); // reopen device
- }
- else
- eDebug("do not reopen lcd.. errno = %d", errno);
-
locked=0;
}
-eDBoxLCD::eDBoxLCD(): eLCD(eSize(128, 64))
+eDBoxLCD::eDBoxLCD(): eLCD(eSize(132, 64))
{
+ is_oled = 0;
#ifndef NO_LCD
- lcdfd=open("/dev/dbox/lcd0", O_RDWR);
+ lcdfd = open("/dev/dbox/oled0", O_RDWR);
+ if (lcdfd < 0)
+ {
+ FILE *f=fopen("/proc/stb/lcd/oled_brightness", "w");
+ if (!f)
+ f = fopen("/proc/stb/fp/oled_brightness", "w");
+ if (f)
+ {
+ is_oled = 2;
+ fclose(f);
+ }
+ lcdfd = open("/dev/dbox/lcd0", O_RDWR);
+ } else
+ {
+ eDebug("found OLED display!");
+ is_oled = 1;
+ }
#else
- lcdfd=-1;
+ lcdfd = -1;
#endif
instance=this;
{
int i=LCD_MODE_BIN;
ioctl(lcdfd, LCD_IOCTL_ASC_MODE, &i);
- int lcdbrightness=0, lcdcontrast=0;
-
- lcdbrightness=130;
- lcdcontrast=32;
- setLCDParameter(lcdbrightness, lcdcontrast);
inverted=0;
}
}
update();
}
-int eDBoxLCD::setLCDParameter(int brightness, int contrast)
+int eDBoxLCD::setLCDContrast(int contrast)
{
int fp;
if((fp=open("/dev/dbox/fp0", O_RDWR))<=0)
{
eDebug("[LCD] can't set lcd contrast");
}
+ close(fp);
+ return(0);
+}
- if(ioctl(fp, FP_IOCTL_LCD_DIMM, &brightness))
+int eDBoxLCD::setLCDBrightness(int brightness)
+{
+ eDebug("setLCDBrightness %d", brightness);
+ FILE *f=fopen("/proc/stb/lcd/oled_brightness", "w");
+ if (!f)
+ f = fopen("/proc/stb/fp/oled_brightness", "w");
+ if (f)
{
- eDebug("[LCD] can't set lcd brightness");
+ if (fprintf(f, "%d", brightness) == 0)
+ eDebug("write /proc/stb/lcd/oled_brightness failed!! (%m)");
+ fclose(f);
+ }
+ else
+ {
+ 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);
}
- eDebug("[LCD] set brightness %d, contrast %d", brightness, contrast);
return(0);
}
eDBoxLCD::~eDBoxLCD()
{
- if (lcdfd>0)
+ if (lcdfd>=0)
{
close(lcdfd);
- lcdfd=0;
+ lcdfd=-1;
}
}
void eDBoxLCD::update()
{
- unsigned char raw[120*8];
- int x, y, yy;
- for (y=0; y<8; y++)
+ if (!is_oled || is_oled == 2)
+ {
+ unsigned char raw[132*8];
+ int x, y, yy;
+ for (y=0; y<8; y++)
+ {
+ for (x=0; x<132; x++)
+ {
+ int pix=0;
+ for (yy=0; yy<8; yy++)
+ {
+ pix|=(_buffer[(y*8+yy)*132+x]>=108)<<yy;
+ }
+ raw[y*132+x]=(pix^inverted);
+ }
+ }
+ if (lcdfd >= 0)
+ write(lcdfd, raw, 132*8);
+ } else
{
- for (x=0; x<120; x++)
+ unsigned char raw[64*64];
+ int x, y;
+ memset(raw, 0, 64*64);
+ for (y=0; y<64; y++)
{
int pix=0;
- for (yy=0; yy<8; yy++)
+ for (x=0; x<128 / 2; x++)
{
- pix|=(_buffer[(y*8+yy)*128+x]>=108)<<yy;
+ pix = (_buffer[y*132 + x * 2 + 2] & 0xF0) |(_buffer[y*132 + x * 2 + 1 + 2] >> 4);
+ if (inverted)
+ pix = 0xFF - pix;
+ raw[y*64+x] = pix;
}
- raw[y*120+x]=(pix^inverted);
}
+ if (lcdfd >= 0)
+ write(lcdfd, raw, 64*64);
}
- if (lcdfd>0)
- write(lcdfd, raw, 120*8);
}