Updated documentation (PXML_schema.xsd and human readable version) and genpxml.sh...
[pandora-libraries.git] / testdata / scripts / op_power.sh
index 3aa9830..aabc8bd 100755 (executable)
@@ -10,20 +10,19 @@ if [ "$1" -le "2" ]; then # button was pressed 1-2sec, "suspend"
   fi
   if [ $powerstate -eq "1" ]; then
     #in lowpower mode
+    oldspeed=$(cat /tmp/oldspeed)
+    /usr/pandora/scripts/op_cpuspeed.sh $oldspeed
     echo 0 > /tmp/powerstate
     oldbright=$(cat /tmp/oldbright)
     maxbright=$(cat /sys/devices/platform/twl4030-pwm0-bl/backlight/twl4030-pwm0-bl/max_brightness)
-    #oldspeed=$(cat /tmp/oldspeed)
+    echo 0 > /sys/devices/platform/omapfb/graphics/fb0/blank
+    sleep 0.1s # looks cleaner, could flicker without
+    oldspeed=$(cat /tmp/oldspeed)
     if [ $oldbright -ge 3 ] && [ $oldbright -le $maxbright ]; then 
       /usr/pandora/scripts/op_bright.sh $oldbright 
     else
       /usr/pandora/scripts/op_bright.sh $maxbright
     fi
-    #if [ $oldspeed -gt 14 ] && [ $oldspeed -le 900 ]; then 
-    # echo $oldspeed > /proc/pandora/cpu_mhz_max 
-    #else
-    #  echo 500 > /proc/pandora/cpu_mhz_max
-    #fi
     hcistate=$(cat /tmp/hcistate)
     if [ ! $hcistate ]; then
       hciconfig hci0 up
@@ -37,10 +36,12 @@ if [ "$1" -le "2" ]; then # button was pressed 1-2sec, "suspend"
     do
       kill -18 $PID #send SIGCONT
     done
+    echo 255 > /sys/class/leds/pandora\:\:power/brightness #power LED bright
+    rm /tmp/powerstate
   else
     #in normal mode
     echo 1 > /tmp/powerstate
-    #cat /proc/pandora/cpu_mhz_max > /tmp/oldspeed
+    cat /proc/pandora/cpu_mhz_max > /tmp/oldspeed
     cat /sys/devices/platform/twl4030-pwm0-bl/backlight/twl4030-pwm0-bl/brightness > /tmp/oldbright
     pidlist=$(pstree -lpA | grep pnd_run.sh | sed -ne 's/.*(\([0-9]\+\))/\1/p')
     for PID in $pidlist
@@ -62,7 +63,9 @@ if [ "$1" -le "2" ]; then # button was pressed 1-2sec, "suspend"
            /etc/init.d/wl1251-init stop
     fi
     echo 0 > /sys/devices/platform/twl4030-pwm0-bl/backlight/twl4030-pwm0-bl/brightness
-    #echo 14 > /proc/pandora/cpu_mhz_max
+    echo 1 > /sys/devices/platform/omapfb/graphics/fb0/blank
+    echo 16 > /sys/class/leds/pandora\:\:power/brightness #dim power LED
+    /usr/pandora/scripts/op_cpuspeed.sh 125
   fi
 elif [ "$1" -ge "3" ]; then #button was pressed 3 sec or longer, shutdown
   xfceuser=$(ps u -C xfce4-session | tail -n1 | awk '{print $1}')