author | sandman <sandman> | 2002-10-28 04:41:42 (UTC) |
---|---|---|
committer | sandman <sandman> | 2002-10-28 04:41:42 (UTC) |
commit | 226ddd19ef0adeb279c3a864e24cbfcf556b2f17 (patch) (unidiff) | |
tree | c1c95e39fa0634a881ffbeba190653dc7ee6201c | |
parent | 37397a824a807195ba440117a6bac0043ea788a1 (diff) | |
download | opie-226ddd19ef0adeb279c3a864e24cbfcf556b2f17.zip opie-226ddd19ef0adeb279c3a864e24cbfcf556b2f17.tar.gz opie-226ddd19ef0adeb279c3a864e24cbfcf556b2f17.tar.bz2 |
- read ( fd, buffer, 4 ); return 5 (!!) for /proc/hal/light_sensor
so we better try to read 5 bytes ...
- small "off by one" fix for the lcd brightness resolution
-rw-r--r-- | libopie/odevice.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libopie/odevice.cpp b/libopie/odevice.cpp index 6ea4d45..2b7e927 100644 --- a/libopie/odevice.cpp +++ b/libopie/odevice.cpp | |||
@@ -674,7 +674,7 @@ bool iPAQ::setDisplayBrightness ( int bright ) | |||
674 | 674 | ||
675 | int iPAQ::displayBrightnessResolution ( ) const | 675 | int iPAQ::displayBrightnessResolution ( ) const |
676 | { | 676 | { |
677 | return 255; // really 128, but logarithmic control is smoother this way | 677 | return 256; // really 128, but logarithmic control is smoother this way |
678 | } | 678 | } |
679 | 679 | ||
680 | 680 | ||
@@ -682,16 +682,17 @@ bool iPAQ::hasLightSensor ( ) const | |||
682 | { | 682 | { |
683 | return true; | 683 | return true; |
684 | } | 684 | } |
685 | 685 | #include <errno.h> | |
686 | #include <string.h> | ||
686 | int iPAQ::readLightSensor ( ) | 687 | int iPAQ::readLightSensor ( ) |
687 | { | 688 | { |
688 | int fd; | 689 | int fd; |
689 | int val = -1; | 690 | int val = -1; |
690 | 691 | ||
691 | if (( fd = ::open ( "/proc/hal/light_sensor", O_RDONLY )) >= 0 ) { | 692 | if (( fd = ::open ( "/proc/hal/light_sensor", O_RDONLY )) >= 0 ) { |
692 | char buffer [5]; | 693 | char buffer [8]; |
693 | 694 | ||
694 | if ( ::read ( fd, buffer, 4 ) == 4 ) { | 695 | if ( ::read ( fd, buffer, 5 ) == 5 ) |
695 | char *endptr; | 696 | char *endptr; |
696 | 697 | ||
697 | buffer [4] = 0; | 698 | buffer [4] = 0; |
@@ -700,7 +701,6 @@ int iPAQ::readLightSensor ( ) | |||
700 | if ( *endptr != 0 ) | 701 | if ( *endptr != 0 ) |
701 | val = -1; | 702 | val = -1; |
702 | } | 703 | } |
703 | |||
704 | ::close ( fd ); | 704 | ::close ( fd ); |
705 | } | 705 | } |
706 | 706 | ||
@@ -946,7 +946,7 @@ bool Zaurus::setDisplayBrightness ( int bright ) | |||
946 | 946 | ||
947 | int Zaurus::displayBrightnessResolution ( ) const | 947 | int Zaurus::displayBrightnessResolution ( ) const |
948 | { | 948 | { |
949 | return 4; | 949 | return 5; |
950 | } | 950 | } |
951 | 951 | ||
952 | //QValueList <int> Zaurus::keyList ( ) const | 952 | //QValueList <int> Zaurus::keyList ( ) const |