summaryrefslogtreecommitdiff
path: root/libopie2
authorzecke <zecke>2004-09-19 23:47:29 (UTC)
committer zecke <zecke>2004-09-19 23:47:29 (UTC)
commitfa9e4fa0c51c30be12caf8b5c92d722b40509814 (patch) (side-by-side diff)
treef762de653efcf9e1c646ec002b08b5542fd5e38e /libopie2
parent83272b7645c639669dddd676f17f64ad78ef9c63 (diff)
downloadopie-fa9e4fa0c51c30be12caf8b5c92d722b40509814.zip
opie-fa9e4fa0c51c30be12caf8b5c92d722b40509814.tar.gz
opie-fa9e4fa0c51c30be12caf8b5c92d722b40509814.tar.bz2
-Check m_model to allow suspending. ODevice doesn't suspend on UnknownModel
-Comments -map 0-255 brightness to 0-100 for Assabat Frontlight Control -Change return value for display on and off
Diffstat (limited to 'libopie2') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiecore/device/odevice_beagle.cpp59
1 files changed, 52 insertions, 7 deletions
diff --git a/libopie2/opiecore/device/odevice_beagle.cpp b/libopie2/opiecore/device/odevice_beagle.cpp
index 9cf640a..ac12ca6 100644
--- a/libopie2/opiecore/device/odevice_beagle.cpp
+++ b/libopie2/opiecore/device/odevice_beagle.cpp
@@ -40,3 +40,5 @@
-
+/*
+ * Intel Assabat FrontLight Control
+ */
#define _SA1100_FL_IOCTL_ON 1
@@ -52,2 +54,5 @@
+/*
+ * The device
+ */
#define FL_MAJOR 60
@@ -71,4 +76,14 @@ struct b_button {
+
+/*
+ * The MVista Beagle kernel maps the action
+ * buttons to the Qt keymap
+ */
struct b_button beagle_buttons [] = {
{ Model_Beagle_PA100,
+ Qt::Key_F8, QT_TRANSLATE_NOOP("Button", "Record Button"),
+ "devicebuttons/beagle_record",
+ "QPE/VMemo", "toggleRecord()",
+ "sound", "raise()" },
+ { Model_Beagle_PA100,
Qt::Key_F9, QT_TRANSLATE_NOOP("Button", "Calendar Button"),
@@ -95,8 +110,9 @@ struct b_button beagle_buttons [] = {
-Beagle::Beagle()
-{
- qWarning( "Created Beagle" );
-}
+Beagle::Beagle() {}
+
Beagle::~Beagle() {}
+/*
+ * Simply set the Tradesquare.NL data
+ */
void Beagle::init( const QString&) {
@@ -109,4 +125,14 @@ void Beagle::init( const QString&) {
d->m_rotation = Rot0;
+ d->m_model = Model_Beagle_PA100;
}
+
+/*
+ * Initialize the Buttons. We only do it
+ * if not yet initialized.
+ * We go through our hardware button array
+ * and set the 'Factory' Pressed and Held Action
+ * reloadButtonMapping will then apply the user
+ * configuration to the buttons
+ */
void Beagle::initButtons() {
@@ -131,2 +157,5 @@ void Beagle::initButtons() {
+/*
+ * Turn the display on. We do it by ioctl on FL_FILE
+ */
bool Beagle::setDisplayStatus( bool on ) {
@@ -137,5 +166,8 @@ bool Beagle::setDisplayStatus( bool on ) {
- return ( ::ioctl(fd, on ? _SA1100_FL_IOCTL_ON : _SA1100_FL_IOCTL_OFF, 0 ) == -1 );
+ return ( ::ioctl(fd, on ? _SA1100_FL_IOCTL_ON : _SA1100_FL_IOCTL_OFF, 0 ) == 0 );
}
+/*
+ * 0-100 are legal steps of the frontlight.
+ */
int Beagle::displayBrightnessResolution()const {
@@ -144,3 +176,16 @@ int Beagle::displayBrightnessResolution()const {
+/*
+ * Opie uses the values 0-255 for the frontlight
+ * intensity and we need to map it to the range
+ * of 0-100.
+ * But first we do some sanity of the range of brightness
+ *
+ */
bool Beagle::setDisplayBrightness( int brightness ) {
+ if ( brightness > 255 )
+ brightness = 255;
+ else if ( brightness < 0 )
+ brightness = 0;
+ brightness = (100*brightness)/255;
+
int fd = ::open(FL_FILE, O_WRONLY);
@@ -150,3 +195,3 @@ bool Beagle::setDisplayBrightness( int brightness ) {
- return ( ::ioctl(fd, _SA1100_FL_IOCTL_INTENSITY, brightness%101 ) == 0 );
+ return ( ::ioctl(fd, _SA1100_FL_IOCTL_INTENSITY, brightness ) == 0 );
}