summaryrefslogtreecommitdiff
path: root/libopie
authormickeyl <mickeyl>2003-05-23 13:28:27 (UTC)
committer mickeyl <mickeyl>2003-05-23 13:28:27 (UTC)
commitf6d7ed30f034b318d77f36f81b0aa4588cea63fb (patch) (side-by-side diff)
tree8083be660da5876e555686475dd8f5f8a024d7bf /libopie
parentcbacd38e4b8e0e706fa43cd3e88041217c6fdaf9 (diff)
downloadopie-f6d7ed30f034b318d77f36f81b0aa4588cea63fb.zip
opie-f6d7ed30f034b318d77f36f81b0aa4588cea63fb.tar.gz
opie-f6d7ed30f034b318d77f36f81b0aa4588cea63fb.tar.bz2
more handling of SIMpad specifica
Diffstat (limited to 'libopie') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/odevice.cpp40
1 files changed, 39 insertions, 1 deletions
diff --git a/libopie/odevice.cpp b/libopie/odevice.cpp
index 103104f..02f13b5 100644
--- a/libopie/odevice.cpp
+++ b/libopie/odevice.cpp
@@ -139,7 +139,9 @@ protected:
public:
virtual bool setSoftSuspend ( bool soft );
+ virtual bool suspend();
+ virtual bool setDisplayStatus( bool on );
virtual bool setDisplayBrightness ( int b );
virtual int displayBrightnessResolution ( ) const;
@@ -1715,15 +1717,51 @@ void SIMpad::alarmSound ( )
}
+bool SIMpad::suspend ( ) // Must override because SIMpad does NOT have apm
+{
+ qDebug( "ODevice for SIMpad: suspend()" );
+ if ( !isQWS( ) ) // only qwsserver is allowed to suspend
+ return false;
+
+ bool res = false;
+
+ struct timeval tvs, tvn;
+ ::gettimeofday ( &tvs, 0 );
+
+ ::sync ( ); // flush fs caches
+ res = ( ::system ( "echo > /proc/sys/pm/suspend" ) == 0 ); //TODO make better :)
+
+ return res;
+}
+
+
bool SIMpad::setSoftSuspend ( bool soft )
{
- //TODO
+ qDebug( "ODevice for SIMpad: UNHANDLED setSoftSuspend(%s)", soft? "on" : "off" );
return false;
}
+bool SIMpad::setDisplayStatus ( bool on )
+{
+ qDebug( "ODevice for SIMpad: setDisplayStatus(%s)", on? "on" : "off" );
+
+ bool res = false;
+ int fd;
+
+ QString cmdline = QString().sprintf( "echo %s > /proc/cs3", on ? "0xd41a" : "0xd40a" ); //TODO make better :)
+
+ if (( fd = ::open ( "/dev/fb0", O_RDWR )) >= 0 ) {
+ res = ( ::system( (const char*) cmdline ) == 0 );
+ ::close ( fd );
+ }
+ return res;
+}
+
+
bool SIMpad::setDisplayBrightness ( int bright )
{
+ qDebug( "ODevice for SIMpad: setDisplayBrightness( %d )", bright );
bool res = false;
int fd;