-rw-r--r-- | libopie2/opiecore/device/odevice_jornada.cpp | 54 | ||||
-rw-r--r-- | libopie2/opiecore/device/odevice_jornada.h | 3 |
2 files changed, 37 insertions, 20 deletions
diff --git a/libopie2/opiecore/device/odevice_jornada.cpp b/libopie2/opiecore/device/odevice_jornada.cpp index ad2f830..75c9fc5 100644 --- a/libopie2/opiecore/device/odevice_jornada.cpp +++ b/libopie2/opiecore/device/odevice_jornada.cpp | |||
@@ -103,7 +103,7 @@ void Jornada::init(const QString&) | |||
103 | 103 | ||
104 | int Jornada::displayBrightnessResolution() const | 104 | int Jornada::displayBrightnessResolution() const |
105 | { | 105 | { |
106 | return 0; | 106 | return 255; |
107 | } | 107 | } |
108 | 108 | ||
109 | 109 | ||
@@ -117,33 +117,49 @@ bool Jornada::setDisplayBrightness( int bright ) | |||
117 | if ( bright < 0 ) | 117 | if ( bright < 0 ) |
118 | bright = 0; | 118 | bright = 0; |
119 | 119 | ||
120 | if (( fd = ::open ( "/dev/touchscreen/0", O_WRONLY )) >= 0 ) { | 120 | QString cmdline; |
121 | FLITE_IN bl; | 121 | |
122 | bl. mode = 1; | 122 | int value = 255 - bright; |
123 | bl. pwr = bright ? 1 : 0; | 123 | if ( !bright ) |
124 | bl. brightness = ( bright * ( displayBrightnessResolution() - 1 ) + 127 ) / 255; | 124 | cmdline = QString().sprintf( "echo 0 > /sys/class/backlight/sa1100fb/power"); |
125 | res = ( ::ioctl ( fd, FLITE_ON, &bl ) == 0 ); | 125 | else |
126 | ::close ( fd ); | 126 | cmdline = QString().sprintf( "echo 1 > /sys/class/backlight/sa1100fb/power; echo %d > /sys/class/backlight/sa1100fb/brightness", value ); |
127 | } | 127 | |
128 | res = ( ::system( (const char*) cmdline ) == 0 ); | ||
129 | |||
128 | return res; | 130 | return res; |
129 | } | 131 | } |
130 | 132 | ||
131 | 133 | ||
132 | bool Jornada::setSoftSuspend( bool soft ) | 134 | bool Jornada::suspend( ) |
135 | { | ||
136 | qDebug("ODevice::suspend"); | ||
137 | if ( !isQWS( ) ) // only qwsserver is allowed to suspend | ||
138 | return false; | ||
139 | |||
140 | if ( d->m_model == Model_Unknown ) // better don't suspend in qvfb / on unkown devices | ||
141 | return false; | ||
142 | |||
143 | bool res = false; | ||
144 | ODevice::sendSuspendmsg(); | ||
145 | |||
146 | struct timeval tvs, tvn; | ||
147 | ::gettimeofday ( &tvs, 0 ); | ||
148 | |||
149 | ::sync(); // flush fs caches | ||
150 | res = ( ::system ( "apm --suspend" ) == 0 ); | ||
151 | |||
152 | return res; | ||
153 | } | ||
154 | |||
155 | bool Jornada::setDisplayStatus ( bool on ) | ||
133 | { | 156 | { |
134 | bool res = false; | 157 | bool res = false; |
135 | int fd; | 158 | int fd; |
136 | 159 | ||
137 | if (( fd = ::open ( "/proc/sys/ts/suspend_button_mode", O_WRONLY )) >= 0 ) { | 160 | QString cmdline = QString().sprintf( "echo %d > /sys/class/lcd/sa1100fb/power; echo %d > /sys/class/backlight/sa1100fb/power", on ? "1" : "0",on ? "1" : "0" ); |
138 | if ( ::write ( fd, soft ? "1" : "0", 1 ) == 1 ) | ||
139 | res = true; | ||
140 | else | ||
141 | ::perror ( "write to /proc/sys/ts/suspend_button_mode" ); | ||
142 | 161 | ||
143 | ::close ( fd ); | 162 | res = ( ::system( (const char*) cmdline ) == 0 ); |
144 | } | ||
145 | else | ||
146 | ::perror ( "/proc/sys/ts/suspend_button_mode" ); | ||
147 | 163 | ||
148 | return res; | 164 | return res; |
149 | } | 165 | } |
diff --git a/libopie2/opiecore/device/odevice_jornada.h b/libopie2/opiecore/device/odevice_jornada.h index fddfe34..2a9e821 100644 --- a/libopie2/opiecore/device/odevice_jornada.h +++ b/libopie2/opiecore/device/odevice_jornada.h | |||
@@ -42,8 +42,9 @@ class Jornada : public ODevice | |||
42 | virtual void init(const QString&); | 42 | virtual void init(const QString&); |
43 | 43 | ||
44 | public: | 44 | public: |
45 | virtual bool setSoftSuspend ( bool soft ); | 45 | virtual bool suspend ( ); |
46 | virtual bool setDisplayBrightness ( int b ); | 46 | virtual bool setDisplayBrightness ( int b ); |
47 | virtual bool setDisplayStatus ( bool on); | ||
47 | virtual int displayBrightnessResolution() const; | 48 | virtual int displayBrightnessResolution() const; |
48 | }; | 49 | }; |
49 | } | 50 | } |