-rw-r--r-- | libopie/odevice.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libopie/odevice.cpp b/libopie/odevice.cpp index 2b7e927..9f64fc0 100644 --- a/libopie/odevice.cpp +++ b/libopie/odevice.cpp | |||
@@ -671,49 +671,49 @@ bool iPAQ::setDisplayBrightness ( int bright ) | |||
671 | } | 671 | } |
672 | return res; | 672 | return res; |
673 | } | 673 | } |
674 | 674 | ||
675 | int iPAQ::displayBrightnessResolution ( ) const | 675 | int iPAQ::displayBrightnessResolution ( ) const |
676 | { | 676 | { |
677 | return 256; // 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 | ||
681 | bool iPAQ::hasLightSensor ( ) const | 681 | bool iPAQ::hasLightSensor ( ) const |
682 | { | 682 | { |
683 | return true; | 683 | return true; |
684 | } | 684 | } |
685 | #include <errno.h> | 685 | #include <errno.h> |
686 | #include <string.h> | 686 | #include <string.h> |
687 | int iPAQ::readLightSensor ( ) | 687 | int iPAQ::readLightSensor ( ) |
688 | { | 688 | { |
689 | int fd; | 689 | int fd; |
690 | int val = -1; | 690 | int val = -1; |
691 | 691 | ||
692 | if (( fd = ::open ( "/proc/hal/light_sensor", O_RDONLY )) >= 0 ) { | 692 | if (( fd = ::open ( "/proc/hal/light_sensor", O_RDONLY )) >= 0 ) { |
693 | char buffer [8]; | 693 | char buffer [8]; |
694 | 694 | ||
695 | if ( ::read ( fd, buffer, 5 ) == 5 ) | 695 | if ( ::read ( fd, buffer, 5 ) == 5 ) { |
696 | char *endptr; | 696 | char *endptr; |
697 | 697 | ||
698 | buffer [4] = 0; | 698 | buffer [4] = 0; |
699 | val = ::strtol ( buffer + 2, &endptr, 16 ); | 699 | val = ::strtol ( buffer + 2, &endptr, 16 ); |
700 | 700 | ||
701 | if ( *endptr != 0 ) | 701 | if ( *endptr != 0 ) |
702 | val = -1; | 702 | val = -1; |
703 | } | 703 | } |
704 | ::close ( fd ); | 704 | ::close ( fd ); |
705 | } | 705 | } |
706 | 706 | ||
707 | return val; | 707 | return val; |
708 | } | 708 | } |
709 | 709 | ||
710 | 710 | ||
711 | /************************************************** | 711 | /************************************************** |
712 | * | 712 | * |
713 | * Zaurus | 713 | * Zaurus |
714 | * | 714 | * |
715 | **************************************************/ | 715 | **************************************************/ |
716 | 716 | ||
717 | 717 | ||
718 | 718 | ||
719 | void Zaurus::init ( ) | 719 | void Zaurus::init ( ) |