-rw-r--r-- | libopie2/opiecore/device/odevice_ipaq.cpp | 2 | ||||
-rw-r--r-- | libopie2/opiecore/device/odevice_mypal.cpp | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/libopie2/opiecore/device/odevice_ipaq.cpp b/libopie2/opiecore/device/odevice_ipaq.cpp index 2d734a4..5272a3c 100644 --- a/libopie2/opiecore/device/odevice_ipaq.cpp +++ b/libopie2/opiecore/device/odevice_ipaq.cpp | |||
@@ -392,33 +392,33 @@ bool iPAQ::setDisplayBrightness ( int bright ) | |||
392 | } | 392 | } |
393 | 393 | ||
394 | int iPAQ::displayBrightnessResolution() const | 394 | int iPAQ::displayBrightnessResolution() const |
395 | { | 395 | { |
396 | switch ( model()) { | 396 | switch ( model()) { |
397 | case Model_iPAQ_H31xx: | 397 | case Model_iPAQ_H31xx: |
398 | case Model_iPAQ_H36xx: | 398 | case Model_iPAQ_H36xx: |
399 | case Model_iPAQ_H37xx: | 399 | case Model_iPAQ_H37xx: |
400 | return 128; // really 256, but >128 could damage the LCD | 400 | return 128; // really 256, but >128 could damage the LCD |
401 | 401 | ||
402 | case Model_iPAQ_H38xx: | 402 | case Model_iPAQ_H38xx: |
403 | case Model_iPAQ_H39xx: | 403 | case Model_iPAQ_H39xx: |
404 | return 64; | 404 | return 64; |
405 | case Model_iPAQ_H5xxx: | 405 | case Model_iPAQ_H5xxx: |
406 | return 255; | 406 | return 255; |
407 | case Model_iPAQ_H191x: | 407 | case Model_iPAQ_H191x: |
408 | return 183; | 408 | return 7; |
409 | case Model_iPAQ_H1940: | 409 | case Model_iPAQ_H1940: |
410 | return 44; | 410 | return 44; |
411 | default: | 411 | default: |
412 | return 2; | 412 | return 2; |
413 | } | 413 | } |
414 | } | 414 | } |
415 | 415 | ||
416 | bool iPAQ::setDisplayStatus ( bool on ) | 416 | bool iPAQ::setDisplayStatus ( bool on ) |
417 | { | 417 | { |
418 | bool res = false; | 418 | bool res = false; |
419 | 419 | ||
420 | QString cmdline; | 420 | QString cmdline; |
421 | 421 | ||
422 | if ( model() == Model_iPAQ_H191x ) { | 422 | if ( model() == Model_iPAQ_H191x ) { |
423 | cmdline = QString::fromLatin1( "echo %1 > /sys/class/lcd/pxafb/power; echo %2 > /sys/class/backlight/pxafb/power").arg( on ? "0" : "4" ).arg( on ? "0" : "4" ); | 423 | cmdline = QString::fromLatin1( "echo %1 > /sys/class/lcd/pxafb/power; echo %2 > /sys/class/backlight/pxafb/power").arg( on ? "0" : "4" ).arg( on ? "0" : "4" ); |
424 | } else { | 424 | } else { |
diff --git a/libopie2/opiecore/device/odevice_mypal.cpp b/libopie2/opiecore/device/odevice_mypal.cpp index 45c70ae..da0272e 100644 --- a/libopie2/opiecore/device/odevice_mypal.cpp +++ b/libopie2/opiecore/device/odevice_mypal.cpp | |||
@@ -188,60 +188,60 @@ void MyPal::timerEvent ( QTimerEvent * ) | |||
188 | void MyPal::playAlarmSound() | 188 | void MyPal::playAlarmSound() |
189 | { | 189 | { |
190 | #ifndef QT_NO_SOUND | 190 | #ifndef QT_NO_SOUND |
191 | static Sound snd ( "alarm" ); | 191 | static Sound snd ( "alarm" ); |
192 | if(!snd.isFinished()) | 192 | if(!snd.isFinished()) |
193 | return; | 193 | return; |
194 | 194 | ||
195 | changeMixerForAlarm(0, "/dev/sound/mixer", &snd ); | 195 | changeMixerForAlarm(0, "/dev/sound/mixer", &snd ); |
196 | snd. play(); | 196 | snd. play(); |
197 | #endif | 197 | #endif |
198 | } | 198 | } |
199 | 199 | ||
200 | bool MyPal::setDisplayBrightness ( int bright ) | 200 | bool MyPal::setDisplayBrightness ( int bright ) |
201 | { | 201 | { |
202 | bool res = false; | 202 | bool res = false; |
203 | 203 | ||
204 | if ( bright > 220 ) | 204 | if ( bright > 255 ) |
205 | bright = 220; | 205 | bright = 255; |
206 | if ( bright < 0 ) | 206 | if ( bright < 0 ) |
207 | bright = 0; | 207 | bright = 0; |
208 | 208 | ||
209 | QString cmdline; | 209 | QString cmdline; |
210 | 210 | ||
211 | switch ( model()) { | 211 | switch ( model()) { |
212 | case Model_MyPal_716: | 212 | case Model_MyPal_716: |
213 | if ( !bright ) | 213 | if ( !bright ) |
214 | cmdline = QString::fromLatin1( "echo 4 > /sys/class/backlight/pxafb/power"); | 214 | cmdline = QString::fromLatin1( "echo 4 > /sys/class/backlight/pxafb/power"); |
215 | else | 215 | else |
216 | cmdline = QString::fromLatin1( "echo 0 > /sys/class/backlight/pxafb/power; echo %1 > /sys/class/backlight/pxafb/brightness" ).arg( bright ); | 216 | cmdline = QString::fromLatin1( "echo 0 > /sys/class/backlight/pxafb/power; echo %1 > /sys/class/backlight/pxafb/brightness" ).arg( bright ); |
217 | // No Global::shellQuote as we gurantee it to be sane | 217 | // No Global::shellQuote as we gurantee it to be sane |
218 | res = ( ::system( QFile::encodeName(cmdline) ) == 0 ); | 218 | res = ( ::system( QFile::encodeName(cmdline) ) == 0 ); |
219 | break; | 219 | break; |
220 | default: | 220 | default: |
221 | res = OAbstractMobileDevice::setDisplayBrightness(bright); | 221 | res = OAbstractMobileDevice::setDisplayBrightness(bright); |
222 | } | 222 | } |
223 | 223 | ||
224 | return res; | 224 | return res; |
225 | } | 225 | } |
226 | 226 | ||
227 | int MyPal::displayBrightnessResolution() const | 227 | int MyPal::displayBrightnessResolution() const |
228 | { | 228 | { |
229 | switch ( model()) { | 229 | switch ( model()) { |
230 | case Model_MyPal_716: | 230 | case Model_MyPal_716: |
231 | return 220; | 231 | return 7; |
232 | default: | 232 | default: |
233 | return OAbstractMobileDevice::displayBrightnessResolution(); | 233 | return OAbstractMobileDevice::displayBrightnessResolution(); |
234 | } | 234 | } |
235 | } | 235 | } |
236 | 236 | ||
237 | bool MyPal::setDisplayStatus ( bool on ) | 237 | bool MyPal::setDisplayStatus ( bool on ) |
238 | { | 238 | { |
239 | bool res = false; | 239 | bool res = false; |
240 | 240 | ||
241 | QString cmdline; | 241 | QString cmdline; |
242 | 242 | ||
243 | if ( model() == Model_MyPal_716 ) { | 243 | if ( model() == Model_MyPal_716 ) { |
244 | cmdline = QString::fromLatin1( "echo %1 > /sys/class/lcd/pxafb/power; echo %2 > /sys/class/backlight/pxafb/power").arg( on ? "0" : "4" ).arg( on ? "0" : "4" ); | 244 | cmdline = QString::fromLatin1( "echo %1 > /sys/class/lcd/pxafb/power; echo %2 > /sys/class/backlight/pxafb/power").arg( on ? "0" : "4" ).arg( on ? "0" : "4" ); |
245 | } else { | 245 | } else { |
246 | return OAbstractMobileDevice::setDisplayStatus(on); | 246 | return OAbstractMobileDevice::setDisplayStatus(on); |
247 | } | 247 | } |