author | mickeyl <mickeyl> | 2005-01-23 20:52:18 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2005-01-23 20:52:18 (UTC) |
commit | be26adf324ea0b723cabcd735b0833e16410ceea (patch) (unidiff) | |
tree | d196481a0e503fb61ec8fad05d0835b877c186cc | |
parent | ab0242ff1bbc40ec8bc38c3cb748a44797ffe3db (diff) | |
download | opie-be26adf324ea0b723cabcd735b0833e16410ceea.zip opie-be26adf324ea0b723cabcd735b0833e16410ceea.tar.gz opie-be26adf324ea0b723cabcd735b0833e16410ceea.tar.bz2 |
- consolidate reading hinge sensor into one place
- return proper rotation and direction if hinge sensor not present (like in 2.6 atm.)
-rw-r--r-- | libopie2/opiecore/device/odevice_zaurus.cpp | 33 | ||||
-rw-r--r-- | libopie2/opiecore/device/odevice_zaurus.h | 2 |
2 files changed, 10 insertions, 25 deletions
diff --git a/libopie2/opiecore/device/odevice_zaurus.cpp b/libopie2/opiecore/device/odevice_zaurus.cpp index d3ab63a..b22ee70 100644 --- a/libopie2/opiecore/device/odevice_zaurus.cpp +++ b/libopie2/opiecore/device/odevice_zaurus.cpp | |||
@@ -547,16 +547,8 @@ Transformation Zaurus::rotation() const | |||
547 | case Model_Zaurus_SLC3000: // fallthrough | 547 | case Model_Zaurus_SLC3000: // fallthrough |
548 | case Model_Zaurus_SLC7x0: | 548 | case Model_Zaurus_SLC7x0: |
549 | handle = ::open("/dev/apm_bios", O_RDWR|O_NONBLOCK); | 549 | OHingeStatus hs = readHingeSensor(); |
550 | if (handle == -1) { | 550 | if ( hs == CASE_PORTRAIT ) rot = Rot0; |
551 | return Rot270; | 551 | else if ( hs == CASE_UNKNOWN ) rot = Rot0; |
552 | } else { | 552 | else rot = Rot270; |
553 | retval = ::ioctl(handle, SHARP_IOCTL_GET_ROTATION); | ||
554 | ::close (handle); | ||
555 | |||
556 | if (retval == 2 ) | ||
557 | rot = Rot0; | ||
558 | else | ||
559 | rot = Rot270; | ||
560 | } | ||
561 | break; | 553 | break; |
562 | case Model_Zaurus_SL6000: | 554 | case Model_Zaurus_SL6000: |
@@ -580,15 +572,8 @@ ODirection Zaurus::direction() const | |||
580 | case Model_Zaurus_SLC3000: // fallthrough | 572 | case Model_Zaurus_SLC3000: // fallthrough |
581 | case Model_Zaurus_SLC7x0: | 573 | case Model_Zaurus_SLC7x0: |
582 | handle = ::open( "/dev/apm_bios", O_RDWR|O_NONBLOCK ); | 574 | OHingeStatus hs = readHingeSensor(); |
583 | if (handle == -1) { | 575 | if ( hs == CASE_PORTRAIT ) dir = CCW; |
584 | dir = CW; | 576 | else if ( hs == CASE_UNKNOWN ) dir = CCW; |
585 | } else { | 577 | else dir = CW; |
586 | retval = ::ioctl( handle, SHARP_IOCTL_GET_ROTATION ); | ||
587 | ::close (handle); | ||
588 | if (retval == 2 ) | ||
589 | dir = CCW; | ||
590 | else | ||
591 | dir = CW; | ||
592 | } | ||
593 | break; | 578 | break; |
594 | case Model_Zaurus_SL6000: | 579 | case Model_Zaurus_SL6000: |
@@ -609,5 +594,5 @@ bool Zaurus::hasHingeSensor() const | |||
609 | } | 594 | } |
610 | 595 | ||
611 | OHingeStatus Zaurus::readHingeSensor() | 596 | OHingeStatus Zaurus::readHingeSensor() const |
612 | { | 597 | { |
613 | if (m_embedix) | 598 | if (m_embedix) |
diff --git a/libopie2/opiecore/device/odevice_zaurus.h b/libopie2/opiecore/device/odevice_zaurus.h index ed9cf67..c763798 100644 --- a/libopie2/opiecore/device/odevice_zaurus.h +++ b/libopie2/opiecore/device/odevice_zaurus.h | |||
@@ -111,5 +111,5 @@ class Zaurus : public ODevice | |||
111 | 111 | ||
112 | virtual bool hasHingeSensor() const; | 112 | virtual bool hasHingeSensor() const; |
113 | virtual OHingeStatus readHingeSensor(); | 113 | virtual OHingeStatus readHingeSensor() const; |
114 | 114 | ||
115 | virtual bool suspend(); | 115 | virtual bool suspend(); |