i did some investigating and found that the kindle does enter into standby (to memory) after 2 minutes in screensaver mode. logging the output of lipc:
Fri Aug 5 12:05:33 EDT 2011
active
Fri Aug 5 12:06:03 EDT 2011
screenSaver
Fri Aug 5 12:06:33 EDT 2011
screenSaver
Fri Aug 5 12:07:03 EDT 2011
readyToSuspend
some powerd properties you can control with lipc:
w Int wakeUp
rw Int preventScreenSaver [0]
rw Str logMask [0xffff0000]
w Int suspendGrace
w Int deferSuspend
rw Str logLevel [Current log level=info
(Possible levels: all, perf, debug[9-0], info, warn, error, crit, none)]
w Int touchScreenSaverTimeout
r Str state [active]
w Int abortSuspend
r Int isCharging [1]
r Int battLevel [100]
w Int rtcWakeup
for instance, if you want to wakeup the device using this command:
lipc-set-prop com.lab126.powerd wakeUp 1
|