summaryrefslogtreecommitdiff
path: root/libopie/odevice.cpp
Unidiff
Diffstat (limited to 'libopie/odevice.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/odevice.cpp19
1 files changed, 17 insertions, 2 deletions
diff --git a/libopie/odevice.cpp b/libopie/odevice.cpp
index bc43c52..a33d4ad 100644
--- a/libopie/odevice.cpp
+++ b/libopie/odevice.cpp
@@ -653,153 +653,168 @@ bool iPAQ::setDisplayBrightness ( int bright )
653 return res; 653 return res;
654} 654}
655 655
656int iPAQ::displayBrightnessResolution ( ) const 656int iPAQ::displayBrightnessResolution ( ) const
657{ 657{
658 switch ( model ( )) { 658 switch ( model ( )) {
659 case Model_iPAQ_H31xx: 659 case Model_iPAQ_H31xx:
660 case Model_iPAQ_H36xx: 660 case Model_iPAQ_H36xx:
661 case Model_iPAQ_H37xx: 661 case Model_iPAQ_H37xx:
662 return 128; // really 256, but >128 could damage the LCD 662 return 128; // really 256, but >128 could damage the LCD
663 663
664 case Model_iPAQ_H38xx: 664 case Model_iPAQ_H38xx:
665 case Model_iPAQ_H39xx: 665 case Model_iPAQ_H39xx:
666 return 64; 666 return 64;
667 667
668 default: 668 default:
669 return 2; 669 return 2;
670 } 670 }
671} 671}
672 672
673 673
674bool iPAQ::hasLightSensor ( ) const 674bool iPAQ::hasLightSensor ( ) const
675{ 675{
676 return true; 676 return true;
677} 677}
678 678
679int iPAQ::readLightSensor ( ) 679int iPAQ::readLightSensor ( )
680{ 680{
681 int fd; 681 int fd;
682 int val = -1; 682 int val = -1;
683 683
684 if (( fd = ::open ( "/proc/hal/light_sensor", O_RDONLY )) >= 0 ) { 684 if (( fd = ::open ( "/proc/hal/light_sensor", O_RDONLY )) >= 0 ) {
685 char buffer [8]; 685 char buffer [8];
686 686
687 if ( ::read ( fd, buffer, 5 ) == 5 ) { 687 if ( ::read ( fd, buffer, 5 ) == 5 ) {
688 char *endptr; 688 char *endptr;
689 689
690 buffer [4] = 0; 690 buffer [4] = 0;
691 val = ::strtol ( buffer + 2, &endptr, 16 ); 691 val = ::strtol ( buffer + 2, &endptr, 16 );
692 692
693 if ( *endptr != 0 ) 693 if ( *endptr != 0 )
694 val = -1; 694 val = -1;
695 } 695 }
696 ::close ( fd ); 696 ::close ( fd );
697 } 697 }
698 698
699 return val; 699 return val;
700} 700}
701 701
702int iPAQ::lightSensorResolution ( ) const 702int iPAQ::lightSensorResolution ( ) const
703{ 703{
704 return 256; 704 return 256;
705} 705}
706 706
707/************************************************** 707/**************************************************
708 * 708 *
709 * Zaurus 709 * Zaurus
710 * 710 *
711 **************************************************/ 711 **************************************************/
712 712
713 713
714 714
715void Zaurus::init ( ) 715void Zaurus::init ( )
716{ 716{
717 d-> m_modelstr = "Zaurus SL5000";
718 d-> m_model = Model_Zaurus_SL5000;
719 d-> m_vendorstr = "Sharp"; 717 d-> m_vendorstr = "Sharp";
720 d-> m_vendor = Vendor_Sharp; 718 d-> m_vendor = Vendor_Sharp;
721 719
722 QFile f ( "/proc/filesystems" ); 720 QFile f ( "/proc/filesystems" );
723 721
724 if ( f. open ( IO_ReadOnly ) && ( QTextStream ( &f ). read ( ). find ( "\tjffs2\n" ) >= 0 )) { 722 if ( f. open ( IO_ReadOnly ) && ( QTextStream ( &f ). read ( ). find ( "\tjffs2\n" ) >= 0 )) {
725 d-> m_systemstr = "OpenZaurus"; 723 d-> m_systemstr = "OpenZaurus";
726 d-> m_system = System_OpenZaurus; 724 d-> m_system = System_OpenZaurus;
727 725
728 f. close ( ); 726 f. close ( );
729 727
730 f. setName ( "/etc/oz_version" ); 728 f. setName ( "/etc/oz_version" );
731 if ( f. open ( IO_ReadOnly )) { 729 if ( f. open ( IO_ReadOnly )) {
732 QTextStream ts ( &f ); 730 QTextStream ts ( &f );
733 d-> m_sysverstr = ts. readLine ( );//. mid ( 10 ); 731 d-> m_sysverstr = ts. readLine ( );//. mid ( 10 );
734 f. close ( ); 732 f. close ( );
735 } 733 }
736 } 734 }
737 else { 735 else {
738 d-> m_systemstr = "Zaurus"; 736 d-> m_systemstr = "Zaurus";
739 d-> m_system = System_Zaurus; 737 d-> m_system = System_Zaurus;
740 } 738 }
741 739
740 f. setName ( "/proc/deviceinfo/product" );
741 if ( f. open ( IO_ReadOnly ) ) {
742 QTextStream ts ( &f );
743 QString model = ts. readLine ( );
744 f. close ( );
745 if ( model == "SL-5000D" ) {
746 d-> m_model = Model_Zaurus_SL5000;
747 d-> m_modelstr = "Zaurus SL-5000D";
748 } else if ( model == "SL-5500" ) {
749 d-> m_model = Model_Zaurus_SL5500;
750 d-> m_modelstr = "Zaurus SL-5500";
751 }
752 }
753 else {
754 d-> m_model = Model_Zaurus_SL5000;
755 d-> m_modelstr = "Zaurus SL-5000D (unverified)";
756 }
742 757
743 m_leds [0] = Led_Off; 758 m_leds [0] = Led_Off;
744} 759}
745 760
746#include <unistd.h> 761#include <unistd.h>
747#include <fcntl.h> 762#include <fcntl.h>
748#include <sys/ioctl.h> 763#include <sys/ioctl.h>
749 764
750//#include <asm/sharp_char.h> // including kernel headers is evil ... 765//#include <asm/sharp_char.h> // including kernel headers is evil ...
751 766
752#define SHARP_DEV_IOCTL_COMMAND_START 0x5680 767#define SHARP_DEV_IOCTL_COMMAND_START 0x5680
753 768
754 #defineSHARP_BUZZER_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START) 769 #defineSHARP_BUZZER_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START)
755#define SHARP_BUZZER_MAKESOUND (SHARP_BUZZER_IOCTL_START) 770#define SHARP_BUZZER_MAKESOUND (SHARP_BUZZER_IOCTL_START)
756 771
757#define SHARP_BUZ_TOUCHSOUND 1 /* touch panel sound */ 772#define SHARP_BUZ_TOUCHSOUND 1 /* touch panel sound */
758#define SHARP_BUZ_KEYSOUND 2 /* key sound */ 773#define SHARP_BUZ_KEYSOUND 2 /* key sound */
759#define SHARP_BUZ_SCHEDULE_ALARM 11 /* schedule alarm */ 774#define SHARP_BUZ_SCHEDULE_ALARM 11 /* schedule alarm */
760 775
761/* --- for SHARP_BUZZER device --- */ 776/* --- for SHARP_BUZZER device --- */
762 777
763 //#defineSHARP_BUZZER_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START) 778 //#defineSHARP_BUZZER_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START)
764//#define SHARP_BUZZER_MAKESOUND (SHARP_BUZZER_IOCTL_START) 779//#define SHARP_BUZZER_MAKESOUND (SHARP_BUZZER_IOCTL_START)
765 780
766#define SHARP_BUZZER_SETVOLUME (SHARP_BUZZER_IOCTL_START+1) 781#define SHARP_BUZZER_SETVOLUME (SHARP_BUZZER_IOCTL_START+1)
767#define SHARP_BUZZER_GETVOLUME (SHARP_BUZZER_IOCTL_START+2) 782#define SHARP_BUZZER_GETVOLUME (SHARP_BUZZER_IOCTL_START+2)
768#define SHARP_BUZZER_ISSUPPORTED (SHARP_BUZZER_IOCTL_START+3) 783#define SHARP_BUZZER_ISSUPPORTED (SHARP_BUZZER_IOCTL_START+3)
769#define SHARP_BUZZER_SETMUTE (SHARP_BUZZER_IOCTL_START+4) 784#define SHARP_BUZZER_SETMUTE (SHARP_BUZZER_IOCTL_START+4)
770#define SHARP_BUZZER_STOPSOUND (SHARP_BUZZER_IOCTL_START+5) 785#define SHARP_BUZZER_STOPSOUND (SHARP_BUZZER_IOCTL_START+5)
771 786
772//#define SHARP_BUZ_TOUCHSOUND 1 /* touch panel sound */ 787//#define SHARP_BUZ_TOUCHSOUND 1 /* touch panel sound */
773//#define SHARP_BUZ_KEYSOUND 2 /* key sound */ 788//#define SHARP_BUZ_KEYSOUND 2 /* key sound */
774 789
775//#define SHARP_PDA_ILLCLICKSOUND 3 /* illegal click */ 790//#define SHARP_PDA_ILLCLICKSOUND 3 /* illegal click */
776//#define SHARP_PDA_WARNSOUND 4 /* warning occurred */ 791//#define SHARP_PDA_WARNSOUND 4 /* warning occurred */
777//#define SHARP_PDA_ERRORSOUND 5 /* error occurred */ 792//#define SHARP_PDA_ERRORSOUND 5 /* error occurred */
778//#define SHARP_PDA_CRITICALSOUND 6 /* critical error occurred */ 793//#define SHARP_PDA_CRITICALSOUND 6 /* critical error occurred */
779//#define SHARP_PDA_SYSSTARTSOUND 7 /* system start */ 794//#define SHARP_PDA_SYSSTARTSOUND 7 /* system start */
780//#define SHARP_PDA_SYSTEMENDSOUND 8 /* system shutdown */ 795//#define SHARP_PDA_SYSTEMENDSOUND 8 /* system shutdown */
781//#define SHARP_PDA_APPSTART 9 /* application start */ 796//#define SHARP_PDA_APPSTART 9 /* application start */
782//#define SHARP_PDA_APPQUIT 10 /* application ends */ 797//#define SHARP_PDA_APPQUIT 10 /* application ends */
783 798
784//#define SHARP_BUZ_SCHEDULE_ALARM 11 /* schedule alarm */ 799//#define SHARP_BUZ_SCHEDULE_ALARM 11 /* schedule alarm */
785//#define SHARP_BUZ_DAILY_ALARM 12 /* daily alarm */ 800//#define SHARP_BUZ_DAILY_ALARM 12 /* daily alarm */
786//#define SHARP_BUZ_GOT_PHONE_CALL 13 /* phone call sound */ 801//#define SHARP_BUZ_GOT_PHONE_CALL 13 /* phone call sound */
787//#define SHARP_BUZ_GOT_MAIL 14 /* mail sound */ 802//#define SHARP_BUZ_GOT_MAIL 14 /* mail sound */
788// 803//
789 804
790 #defineSHARP_LED_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START) 805 #defineSHARP_LED_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START)
791#define SHARP_LED_SETSTATUS (SHARP_LED_IOCTL_START+1) 806#define SHARP_LED_SETSTATUS (SHARP_LED_IOCTL_START+1)
792 807
793typedef struct sharp_led_status { 808typedef struct sharp_led_status {
794 int which; /* select which LED status is wanted. */ 809 int which; /* select which LED status is wanted. */
795 int status; /* set new led status if you call SHARP_LED_SETSTATUS */ 810 int status; /* set new led status if you call SHARP_LED_SETSTATUS */
796} sharp_led_status; 811} sharp_led_status;
797 812
798#define SHARP_LED_MAIL_EXISTS 9 /* mail status (exists or not) */ 813#define SHARP_LED_MAIL_EXISTS 9 /* mail status (exists or not) */
799 814
800#define LED_MAIL_NO_UNREAD_MAIL 0 /* for SHARP_LED_MAIL_EXISTS */ 815#define LED_MAIL_NO_UNREAD_MAIL 0 /* for SHARP_LED_MAIL_EXISTS */
801#define LED_MAIL_NEWMAIL_EXISTS 1 /* for SHARP_LED_MAIL_EXISTS */ 816#define LED_MAIL_NEWMAIL_EXISTS 1 /* for SHARP_LED_MAIL_EXISTS */
802#define LED_MAIL_UNREAD_MAIL_EX 2 /* for SHARP_LED_MAIL_EXISTS */ 817#define LED_MAIL_UNREAD_MAIL_EX 2 /* for SHARP_LED_MAIL_EXISTS */
803 818
804// #include <asm/sharp_apm.h> // including kernel headers is evil ... 819// #include <asm/sharp_apm.h> // including kernel headers is evil ...
805 820