QVGA Mode

From Openmoko

(Difference between revisions)
Jump to: navigation, search
 
(One intermediate revision by one user not shown)
Line 11: Line 11:
 
<pre>
 
<pre>
 
#!/bin/sh
 
#!/bin/sh
 +
xrandr --dpi 143
 
echo "qvga" > /sys/bus/spi/devices/spi2.0/resolution
 
echo "qvga" > /sys/bus/spi/devices/spi2.0/resolution
 
xrandr -s 240x320
 
xrandr -s 240x320
Line 19: Line 20:
 
<pre>
 
<pre>
 
#!/bin/sh
 
#!/bin/sh
 +
xrandr --dpi 280
 
echo "vga" > /sys/bus/spi/devices/spi2.0/resolution
 
echo "vga" > /sys/bus/spi/devices/spi2.0/resolution
 
xrandr -s 480x640
 
xrandr -s 480x640

Latest revision as of 17:19, 20 July 2011

Information on getting into QVGA mode successfully

[edit] SHR

On SHR-unstable (as of the july 2011 (openembedded)builds) the following worked.

Create two new scripts - I put these in /usr/local/bin, and added /usr/local/bin to my PATH in my .profile file - but you can put 'em where ever you like, as long as they are on your PATH, or you use the full path to invoke 'em.

qvga:

#!/bin/sh
xrandr --dpi 143
echo "qvga" > /sys/bus/spi/devices/spi2.0/resolution
xrandr -s 240x320
killall -HUP enlightenment

normal:

#!/bin/sh
xrandr --dpi 280
echo "vga" > /sys/bus/spi/devices/spi2.0/resolution
xrandr -s 480x640
killall -HUP enlightenment

This usually creates a usable display

Personal tools

Information on getting into QVGA mode successfully

SHR

On SHR-unstable (as of the july 2011 (openembedded)builds) the following worked.

Create two new scripts - I put these in /usr/local/bin, and added /usr/local/bin to my PATH in my .profile file - but you can put 'em where ever you like, as long as they are on your PATH, or you use the full path to invoke 'em.

qvga:

#!/bin/sh
echo "qvga" > /sys/bus/spi/devices/spi2.0/resolution
xrandr -s 240x320
killall -HUP enlightenment

normal:

#!/bin/sh
echo "vga" > /sys/bus/spi/devices/spi2.0/resolution
xrandr -s 480x640
killall -HUP enlightenment

This usually creates a usable display