|
Re: LCD screen for your dockstar (cheap! <$5) October 20, 2012 03:50PM |
Registered: 13 years ago Posts: 8 |
|
Re: LCD screen for your dockstar (cheap! <$5) October 20, 2012 08:32PM |
Registered: 13 years ago Posts: 61 |
; Just a nop at the moment - only landscape supported! ; If you want other orientations, add code here, ; create a correspondig method to lcdblit_*.s" and modify lcdinit_*.c accordingly. ; _lcd_custom_setorientation:: retPerhaps superelchi can explain how this works and how we can add orientation support.
./configure CC=mips-openwrt-linux-gcc --with-drivers='DPF' --with-plugins='all,!dbus,!mpris_dbus' --host=...
|
Re: LCD screen for your dockstar (cheap! <$5) October 21, 2012 03:26AM |
Registered: 13 years ago Posts: 8 |
|
Re: LCD screen for your dockstar (cheap! <$5) October 21, 2012 05:25AM |
Registered: 13 years ago Posts: 365 |
|
Re: LCD screen for your dockstar (cheap! <$5) October 21, 2012 06:33AM |
Registered: 13 years ago Posts: 8 |
|
Re: LCD screen for your dockstar (cheap! <$5) October 21, 2012 06:51AM |
Registered: 13 years ago Posts: 365 |
|
Re: LCD screen for your dockstar (cheap! <$5) October 21, 2012 07:02AM |
Registered: 13 years ago Posts: 8 |
Detecting & reading dpf flash... Opening generic SCSI device '/dev/sr1' Manufacturer: Apple Size : 1 MB Reading 100000 bytes... Flash written to file 'identify.out/full.bin'. Looking for firmware.............: Found (coby, 320x240 px). Looking for Openwin..............: Found. Looking for LcdIniTbl............: Found. Looking for known signatures.....: Found. Your dpf is compatible with model ['linkdelight_2'].
|
Re: LCD screen for your dockstar (cheap! <$5) October 21, 2012 07:50AM |
Registered: 13 years ago Posts: 365 |
|
Re: LCD screen for your dockstar (cheap! <$5) October 21, 2012 03:12PM |
Registered: 13 years ago Posts: 8 |
|
Re: LCD screen for your dockstar (cheap! <$5) October 22, 2012 07:07AM |
Registered: 13 years ago Posts: 365 |
|
grouproot
Re: LCD screen for your dockstar (cheap! <$5) October 22, 2012 11:30AM |
|
Re: LCD screen for your dockstar (cheap! <$5) October 22, 2012 12:11PM |
Registered: 13 years ago Posts: 365 |
|
Re: LCD screen for your dockstar (cheap! <$5) October 22, 2012 12:22PM |
Registered: 13 years ago Posts: 8 |
|
grouproot
Re: LCD screen for your dockstar (cheap! <$5) October 22, 2012 12:23PM |
|
grouproot
Re: LCD screen for your dockstar (cheap! <$5) October 22, 2012 12:54PM |
|
Re: LCD screen for your dockstar (cheap! <$5) October 22, 2012 12:55PM |
Registered: 13 years ago Posts: 365 |
|
Re: LCD screen for your dockstar (cheap! <$5) October 22, 2012 01:02PM |
Registered: 13 years ago Posts: 365 |
cd ./fw sudo ./restore.py /dev/sgX -fWith "/dev/sgX" = "/dev/sg1", "/dev/sg2", ..
|
grouproot
Re: LCD screen for your dockstar (cheap! <$5) October 22, 2012 02:00PM |
|
grouproot
Re: LCD screen for your dockstar (cheap! <$5) October 22, 2012 04:26PM |
sudo ./setsplash.sh ./Botticelli_Venus2.jpg 128 128 usb0 Using ffmpeg pix_fmt rgb565be Splashfile saved to ./Botticelli_Venus2.128x128.rgb Sending splashfile ./Botticelli_Venus2.128x128.rgb to flash... Found AX206 DPF Got LCD dimensions: 128x128 offset: 0x30000 Erasing sector at 0x030000... Flashing sector at 0x030000...
|
Re: LCD screen for your dockstar (cheap! <$5) October 23, 2012 02:44AM |
Registered: 13 years ago Posts: 8 |
|
Re: LCD screen for your dockstar (cheap! <$5) October 23, 2012 09:21AM |
Registered: 13 years ago Posts: 365 |
cd src make TYPE=intertronic clean all make download
|
grouproot
Re: LCD screen for your dockstar (cheap! <$5) October 23, 2012 10:06AM |
|
Re: LCD screen for your dockstar (cheap! <$5) October 23, 2012 01:03PM |
Registered: 13 years ago Posts: 365 |
|
Re: LCD screen for your dockstar (cheap! <$5) October 24, 2012 03:36AM |
Registered: 13 years ago Posts: 365 |
|
Re: LCD screen for your dockstar (cheap! <$5) October 28, 2012 04:12AM |
Registered: 13 years ago Posts: 61 |
for (y=0; y<sw; y++)
{
for (x=0; x<sh; x++)
{
c = gdImageGetPixel(im, x, y);
if (gdImageTrueColor(im))
{
r=gdTrueColorGetRed(c);
g=gdTrueColorGetGreen(c);
b=gdTrueColorGetBlue(c);
}
else
{
r=gdImageRed(im,c);
g=gdImageGreen(im,c);
b=gdImageBlue(im,c);
}
b1 = ( ( ( (r >> 3) << 3) | (g >> 5) ) );
b2 = ( (g & 28) << 3 ) | (b >> 3);
*p++ = b1;
*p++ = b2;
}
}
How should we calculate the p address?
|
Re: LCD screen for your dockstar (cheap! <$5) November 02, 2012 03:05AM |
Registered: 13 years ago Posts: 365 |
|
Re: LCD screen for your dockstar (cheap! <$5) November 02, 2012 08:56AM |
Registered: 13 years ago Posts: 61 |
> .
> .
> for (y=0; y<sh; y++)
> {
> for (x=0; x<sw; x++)
> {
> .
> .
>
>
|
joelbl
Re: LCD screen for your dockstar (cheap! <$5) January 22, 2013 03:41AM |
|
joelbl
Re: LCD screen for your dockstar (cheap! <$5) January 22, 2013 04:17AM |
|
joelbl
Re: LCD screen for your dockstar (cheap! <$5) January 22, 2013 04:52AM |