summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/odevice.cpp38
1 files changed, 14 insertions, 24 deletions
diff --git a/libopie/odevice.cpp b/libopie/odevice.cpp
index 2d2f7db..d8415ad 100644
--- a/libopie/odevice.cpp
+++ b/libopie/odevice.cpp
@@ -1,484 +1,474 @@
1/* This file is part of the OPIE libraries 1/* This file is part of the OPIE libraries
2 Copyright (C) 2002 Robert Griebl (sandman@handhelds.org) 2 Copyright (C) 2002 Robert Griebl (sandman@handhelds.org)
3 3
4 This library is free software; you can redistribute it and/or 4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public 5 modify it under the terms of the GNU Library General Public
6 License as published by the Free Software Foundation; either 6 License as published by the Free Software Foundation; either
7 version 2 of the License, or (at your option) any later version. 7 version 2 of the License, or (at your option) any later version.
8 8
9 This library is distributed in the hope that it will be useful, 9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of 10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details. 12 Library General Public License for more details.
13 13
14 You should have received a copy of the GNU Library General Public License 14 You should have received a copy of the GNU Library General Public License
15 along with this library; see the file COPYING.LIB. If not, write to 15 along with this library; see the file COPYING.LIB. If not, write to
16 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 16 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 Boston, MA 02111-1307, USA. 17 Boston, MA 02111-1307, USA.
18*/ 18*/
19 19
20#include <stdlib.h> 20#include <stdlib.h>
21#include <unistd.h> 21#include <unistd.h>
22#include <fcntl.h> 22#include <fcntl.h>
23#include <sys/ioctl.h> 23#include <sys/ioctl.h>
24#include <signal.h> 24#include <signal.h>
25#include <sys/time.h> 25#include <sys/time.h>
26#include <linux/soundcard.h> 26#include <linux/soundcard.h>
27#include <math.h> 27#include <math.h>
28 28
29#include <qapplication.h> 29#include <qapplication.h>
30 30
31#include <qfile.h> 31#include <qfile.h>
32#include <qtextstream.h> 32#include <qtextstream.h>
33#include <qpe/sound.h> 33#include <qpe/sound.h>
34#include <qpe/resource.h> 34#include <qpe/resource.h>
35#include <qpe/config.h> 35#include <qpe/config.h>
36 36
37#include "odevice.h" 37#include "odevice.h"
38 38
39#include <qwindowsystem_qws.h> 39#include <qwindowsystem_qws.h>
40 40
41 41
42// _IO and friends are only defined in kernel headers ... 42// _IO and friends are only defined in kernel headers ...
43 43
44#define OD_IOC(dir,type,number,size) (( dir << 30 ) | ( type << 8 ) | ( number ) | ( size << 16 )) 44#define OD_IOC(dir,type,number,size) (( dir << 30 ) | ( type << 8 ) | ( number ) | ( size << 16 ))
45 45
46#define OD_IO(type,number) OD_IOC(0,type,number,0) 46#define OD_IO(type,number) OD_IOC(0,type,number,0)
47#define OD_IOW(type,number,size) OD_IOC(1,type,number,sizeof(size)) 47#define OD_IOW(type,number,size) OD_IOC(1,type,number,sizeof(size))
48#define OD_IOR(type,number,size) OD_IOC(2,type,number,sizeof(size)) 48#define OD_IOR(type,number,size) OD_IOC(2,type,number,sizeof(size))
49#define OD_IORW(type,number,size) OD_IOC(3,type,number,sizeof(size)) 49#define OD_IORW(type,number,size) OD_IOC(3,type,number,sizeof(size))
50 50
51using namespace Opie; 51using namespace Opie;
52 52
53class ODeviceData { 53class ODeviceData {
54public: 54public:
55 bool m_qwsserver; 55 bool m_qwsserver;
56 56
57 QString m_vendorstr; 57 QString m_vendorstr;
58 OVendor m_vendor; 58 OVendor m_vendor;
59 59
60 QString m_modelstr; 60 QString m_modelstr;
61 OModel m_model; 61 OModel m_model;
62 62
63 QString m_systemstr; 63 QString m_systemstr;
64 OSystem m_system; 64 OSystem m_system;
65 65
66 QString m_sysverstr; 66 QString m_sysverstr;
67}; 67};
68 68
69 69
70class iPAQ : public QObject, public ODevice, public QWSServer::KeyboardFilter { 70class iPAQ : public QObject, public ODevice, public QWSServer::KeyboardFilter {
71protected: 71protected:
72 virtual void init ( ); 72 virtual void init ( );
73 73
74public: 74public:
75 virtual bool setSoftSuspend ( bool soft ); 75 virtual bool setSoftSuspend ( bool soft );
76 76
77 virtual bool setDisplayBrightness ( int b ); 77 virtual bool setDisplayBrightness ( int b );
78 virtual int displayBrightnessResolution ( ) const; 78 virtual int displayBrightnessResolution ( ) const;
79 79
80 virtual void alarmSound ( ); 80 virtual void alarmSound ( );
81 81
82 virtual QValueList <OLed> ledList ( ) const; 82 virtual QValueList <OLed> ledList ( ) const;
83 virtual QValueList <OLedState> ledStateList ( OLed led ) const; 83 virtual QValueList <OLedState> ledStateList ( OLed led ) const;
84 virtual OLedState ledState ( OLed led ) const; 84 virtual OLedState ledState ( OLed led ) const;
85 virtual bool setLedState ( OLed led, OLedState st ); 85 virtual bool setLedState ( OLed led, OLedState st );
86 86
87 virtual bool hasLightSensor ( ) const; 87 virtual bool hasLightSensor ( ) const;
88 virtual int readLightSensor ( ); 88 virtual int readLightSensor ( );
89 virtual int lightSensorResolution ( ) const; 89 virtual int lightSensorResolution ( ) const;
90 90
91 //virtual QValueList <int> keyList ( ) const; 91 //virtual QValueList <int> keyList ( ) const;
92 92
93protected: 93protected:
94 virtual bool filter ( int unicode, int keycode, int modifiers, bool isPress, bool autoRepeat ); 94 virtual bool filter ( int unicode, int keycode, int modifiers, bool isPress, bool autoRepeat );
95 virtual void timerEvent ( QTimerEvent *te ); 95 virtual void timerEvent ( QTimerEvent *te );
96 96
97 int m_power_timer; 97 int m_power_timer;
98 98
99 OLedState m_leds [2]; 99 OLedState m_leds [2];
100}; 100};
101 101
102class Zaurus : public ODevice { 102class Zaurus : public ODevice {
103protected: 103protected:
104 virtual void init ( ); 104 virtual void init ( );
105 105
106 public: 106 public:
107 virtual bool setSoftSuspend ( bool soft ); 107 virtual bool setSoftSuspend ( bool soft );
108 108
109 virtual bool setDisplayBrightness ( int b ); 109 virtual bool setDisplayBrightness ( int b );
110 virtual int displayBrightnessResolution ( ) const; 110 virtual int displayBrightnessResolution ( ) const;
111 111
112 virtual void alarmSound ( ); 112 virtual void alarmSound ( );
113 virtual void keySound ( ); 113 virtual void keySound ( );
114 virtual void touchSound ( ); 114 virtual void touchSound ( );
115 115
116 virtual QValueList <OLed> ledList ( ) const; 116 virtual QValueList <OLed> ledList ( ) const;
117 virtual QValueList <OLedState> ledStateList ( OLed led ) const; 117 virtual QValueList <OLedState> ledStateList ( OLed led ) const;
118 virtual OLedState ledState ( OLed led ) const; 118 virtual OLedState ledState ( OLed led ) const;
119 virtual bool setLedState ( OLed led, OLedState st ); 119 virtual bool setLedState ( OLed led, OLedState st );
120 120
121 //virtual QValueList <int> keyList ( ) const; 121 //virtual QValueList <int> keyList ( ) const;
122 122
123protected: 123protected:
124 virtual void buzzer ( int snd ); 124 virtual void buzzer ( int snd );
125 125
126 OLedState m_leds [1]; 126 OLedState m_leds [1];
127}; 127};
128 128
129 129
130 130
131 131
132 132
133 133
134 134
135ODevice *ODevice::inst ( ) 135ODevice *ODevice::inst ( )
136{ 136{
137 static ODevice *dev = 0; 137 static ODevice *dev = 0;
138 138
139 if ( !dev ) { 139 if ( !dev ) {
140 if ( QFile::exists ( "/proc/hal/model" )) 140 if ( QFile::exists ( "/proc/hal/model" ))
141 dev = new iPAQ ( ); 141 dev = new iPAQ ( );
142 else if ( QFile::exists ( "/dev/sharp_buz" ) || QFile::exists ( "/dev/sharp_led" )) 142 else if ( QFile::exists ( "/dev/sharp_buz" ) || QFile::exists ( "/dev/sharp_led" ))
143 dev = new Zaurus ( ); 143 dev = new Zaurus ( );
144 else 144 else
145 dev = new ODevice ( ); 145 dev = new ODevice ( );
146 146
147 dev-> init ( ); 147 dev-> init ( );
148 } 148 }
149 return dev; 149 return dev;
150} 150}
151 151
152 152
153/************************************************** 153/**************************************************
154 * 154 *
155 * common 155 * common
156 * 156 *
157 **************************************************/ 157 **************************************************/
158 158
159 159
160ODevice::ODevice ( ) 160ODevice::ODevice ( )
161{ 161{
162 d = new ODeviceData; 162 d = new ODeviceData;
163 163
164 d-> m_qwsserver = qApp ? ( qApp-> type ( ) == QApplication::GuiServer ) : false; 164 d-> m_qwsserver = qApp ? ( qApp-> type ( ) == QApplication::GuiServer ) : false;
165 165
166 d-> m_modelstr = "Unknown"; 166 d-> m_modelstr = "Unknown";
167 d-> m_model = Model_Unknown; 167 d-> m_model = Model_Unknown;
168 d-> m_vendorstr = "Unkown"; 168 d-> m_vendorstr = "Unkown";
169 d-> m_vendor = Vendor_Unknown; 169 d-> m_vendor = Vendor_Unknown;
170 d-> m_systemstr = "Unkown"; 170 d-> m_systemstr = "Unkown";
171 d-> m_system = System_Unknown; 171 d-> m_system = System_Unknown;
172 d-> m_sysverstr = "0.0"; 172 d-> m_sysverstr = "0.0";
173} 173}
174 174
175void ODevice::init ( ) 175void ODevice::init ( )
176{ 176{
177} 177}
178 178
179ODevice::~ODevice ( ) 179ODevice::~ODevice ( )
180{ 180{
181 delete d; 181 delete d;
182} 182}
183 183
184bool ODevice::setSoftSuspend ( bool /*soft*/ ) 184bool ODevice::setSoftSuspend ( bool /*soft*/ )
185{ 185{
186 return false; 186 return false;
187} 187}
188 188
189//#include <linux/apm_bios.h> 189//#include <linux/apm_bios.h>
190 190
191#define APM_IOC_SUSPEND OD_IO( 'A', 2 ) 191#define APM_IOC_SUSPEND OD_IO( 'A', 2 )
192 192
193 193
194bool ODevice::suspend ( ) 194bool ODevice::suspend ( )
195{ 195{
196 if ( !d-> m_qwsserver ) // only qwsserver is allowed to suspend 196 if ( !d-> m_qwsserver ) // only qwsserver is allowed to suspend
197 return false; 197 return false;
198 198
199 if ( d-> m_model == Model_Unknown ) // better don't suspend in qvfb / on unkown devices 199 if ( d-> m_model == Model_Unknown ) // better don't suspend in qvfb / on unkown devices
200 return false; 200 return false;
201 201
202 int fd;
203 bool res = false; 202 bool res = false;
204 203
205 if ((( fd = ::open ( "/dev/apm_bios", O_RDWR )) >= 0 ) || 204 struct timeval tvs, tvn;
206 (( fd = ::open ( "/dev/misc/apm_bios",O_RDWR )) >= 0 )) { 205 ::gettimeofday ( &tvs, 0 );
207 struct timeval tvs, tvn;
208
209 // ::signal ( SIGTSTP, SIG_IGN );// we don't want to be stopped
210 ::gettimeofday ( &tvs, 0 );
211 206
212 ::sync ( ); // flush fs caches 207 ::sync ( ); // flush fs caches
213 208 res = ( ::system ( "apm --suspend" ) == 0 );
214 res = ( ::ioctl ( fd, APM_IOC_SUSPEND, 0 ) == 0 ); // tell the kernel to "start" suspending 209
215 ::close ( fd ); 210 // This is needed because the iPAQ apm implementation is asynchronous and we
216 211 // can not be sure when exactly the device is really suspended
217 if ( res ) { 212 // This can be deleted as soon as a stable familiar with a synchronous apm implementation exists.
218 // ::kill ( -::getpid ( ), SIGTSTP ); // stop everthing in our process group 213
219 214 if ( res ) {
220 do { // wait at most 1.5 sec: either suspend didn't work or the device resumed 215 do { // wait at most 1.5 sec: either suspend didn't work or the device resumed
221 ::usleep ( 200 * 1000 ); 216 ::usleep ( 200 * 1000 );
222 ::gettimeofday ( &tvn, 0 ); 217 ::gettimeofday ( &tvn, 0 );
223 } while ((( tvn. tv_sec - tvs. tv_sec ) * 1000 + ( tvn. tv_usec - tvs. tv_usec ) / 1000 ) < 1500 ); 218 } while ((( tvn. tv_sec - tvs. tv_sec ) * 1000 + ( tvn. tv_usec - tvs. tv_usec ) / 1000 ) < 1500 );
224
225 // ::kill ( -::getpid ( ), SIGCONT ); // continue everything in our process group
226 }
227
228 // ::signal ( SIGTSTP, SIG_DFL );
229 } 219 }
230 220
231 return res; 221 return res;
232} 222}
233 223
234//#include <linux/fb.h> better not rely on kernel headers in userspace ... 224//#include <linux/fb.h> better not rely on kernel headers in userspace ...
235 225
236#define FBIOBLANK OD_IO( 'F', 0x11 ) // 0x4611 226#define FBIOBLANK OD_IO( 'F', 0x11 ) // 0x4611
237 227
238/* VESA Blanking Levels */ 228/* VESA Blanking Levels */
239#define VESA_NO_BLANKING 0 229#define VESA_NO_BLANKING 0
240#define VESA_VSYNC_SUSPEND 1 230#define VESA_VSYNC_SUSPEND 1
241#define VESA_HSYNC_SUSPEND 2 231#define VESA_HSYNC_SUSPEND 2
242#define VESA_POWERDOWN 3 232#define VESA_POWERDOWN 3
243 233
244 234
245bool ODevice::setDisplayStatus ( bool on ) 235bool ODevice::setDisplayStatus ( bool on )
246{ 236{
247 if ( d-> m_model == Model_Unknown ) 237 if ( d-> m_model == Model_Unknown )
248 return false; 238 return false;
249 239
250 bool res = false; 240 bool res = false;
251 int fd; 241 int fd;
252 242
253 if (( fd = ::open ( "/dev/fb0", O_RDWR )) >= 0 ) { 243 if (( fd = ::open ( "/dev/fb0", O_RDWR )) >= 0 ) {
254 res = ( ::ioctl ( fd, FBIOBLANK, on ? VESA_NO_BLANKING : VESA_POWERDOWN ) == 0 ); 244 res = ( ::ioctl ( fd, FBIOBLANK, on ? VESA_NO_BLANKING : VESA_POWERDOWN ) == 0 );
255 ::close ( fd ); 245 ::close ( fd );
256 } 246 }
257 return res; 247 return res;
258} 248}
259 249
260bool ODevice::setDisplayBrightness ( int ) 250bool ODevice::setDisplayBrightness ( int )
261{ 251{
262 return false; 252 return false;
263} 253}
264 254
265int ODevice::displayBrightnessResolution ( ) const 255int ODevice::displayBrightnessResolution ( ) const
266{ 256{
267 return 16; 257 return 16;
268} 258}
269 259
270QString ODevice::vendorString ( ) const 260QString ODevice::vendorString ( ) const
271{ 261{
272 return d-> m_vendorstr; 262 return d-> m_vendorstr;
273} 263}
274 264
275OVendor ODevice::vendor ( ) const 265OVendor ODevice::vendor ( ) const
276{ 266{
277 return d-> m_vendor; 267 return d-> m_vendor;
278} 268}
279 269
280QString ODevice::modelString ( ) const 270QString ODevice::modelString ( ) const
281{ 271{
282 return d-> m_modelstr; 272 return d-> m_modelstr;
283} 273}
284 274
285OModel ODevice::model ( ) const 275OModel ODevice::model ( ) const
286{ 276{
287 return d-> m_model; 277 return d-> m_model;
288} 278}
289 279
290QString ODevice::systemString ( ) const 280QString ODevice::systemString ( ) const
291{ 281{
292 return d-> m_systemstr; 282 return d-> m_systemstr;
293} 283}
294 284
295OSystem ODevice::system ( ) const 285OSystem ODevice::system ( ) const
296{ 286{
297 return d-> m_system; 287 return d-> m_system;
298} 288}
299 289
300QString ODevice::systemVersionString ( ) const 290QString ODevice::systemVersionString ( ) const
301{ 291{
302 return d-> m_sysverstr; 292 return d-> m_sysverstr;
303} 293}
304 294
305void ODevice::alarmSound ( ) 295void ODevice::alarmSound ( )
306{ 296{
307#ifndef QT_NO_SOUND 297#ifndef QT_NO_SOUND
308 static Sound snd ( "alarm" ); 298 static Sound snd ( "alarm" );
309 299
310 if ( snd. isFinished ( )) 300 if ( snd. isFinished ( ))
311 snd. play ( ); 301 snd. play ( );
312#endif 302#endif
313} 303}
314 304
315void ODevice::keySound ( ) 305void ODevice::keySound ( )
316{ 306{
317#ifndef QT_NO_SOUND 307#ifndef QT_NO_SOUND
318 static Sound snd ( "keysound" ); 308 static Sound snd ( "keysound" );
319 309
320 if ( snd. isFinished ( )) 310 if ( snd. isFinished ( ))
321 snd. play ( ); 311 snd. play ( );
322#endif 312#endif
323} 313}
324 314
325void ODevice::touchSound ( ) 315void ODevice::touchSound ( )
326{ 316{
327 317
328#ifndef QT_NO_SOUND 318#ifndef QT_NO_SOUND
329 static Sound snd ( "touchsound" ); 319 static Sound snd ( "touchsound" );
330 320
331 if ( snd. isFinished ( )) 321 if ( snd. isFinished ( ))
332 snd. play ( ); 322 snd. play ( );
333#endif 323#endif
334} 324}
335 325
336 326
337QValueList <OLed> ODevice::ledList ( ) const 327QValueList <OLed> ODevice::ledList ( ) const
338{ 328{
339 return QValueList <OLed> ( ); 329 return QValueList <OLed> ( );
340} 330}
341 331
342QValueList <OLedState> ODevice::ledStateList ( OLed /*which*/ ) const 332QValueList <OLedState> ODevice::ledStateList ( OLed /*which*/ ) const
343{ 333{
344 return QValueList <OLedState> ( ); 334 return QValueList <OLedState> ( );
345} 335}
346 336
347OLedState ODevice::ledState ( OLed /*which*/ ) const 337OLedState ODevice::ledState ( OLed /*which*/ ) const
348{ 338{
349 return Led_Off; 339 return Led_Off;
350} 340}
351 341
352bool ODevice::setLedState ( OLed /*which*/, OLedState /*st*/ ) 342bool ODevice::setLedState ( OLed /*which*/, OLedState /*st*/ )
353{ 343{
354 return false; 344 return false;
355} 345}
356 346
357bool ODevice::hasLightSensor ( ) const 347bool ODevice::hasLightSensor ( ) const
358{ 348{
359 return false; 349 return false;
360} 350}
361 351
362int ODevice::readLightSensor ( ) 352int ODevice::readLightSensor ( )
363{ 353{
364 return -1; 354 return -1;
365} 355}
366 356
367int ODevice::lightSensorResolution ( ) const 357int ODevice::lightSensorResolution ( ) const
368{ 358{
369 return 0; 359 return 0;
370} 360}
371 361
372//QValueList <int> ODevice::keyList ( ) const 362//QValueList <int> ODevice::keyList ( ) const
373//{ 363//{
374 //return QValueList <int> ( ); 364 //return QValueList <int> ( );
375//} 365//}
376 366
377 367
378 368
379/************************************************** 369/**************************************************
380 * 370 *
381 * iPAQ 371 * iPAQ
382 * 372 *
383 **************************************************/ 373 **************************************************/
384 374
385void iPAQ::init ( ) 375void iPAQ::init ( )
386{ 376{
387 d-> m_vendorstr = "HP"; 377 d-> m_vendorstr = "HP";
388 d-> m_vendor = Vendor_HP; 378 d-> m_vendor = Vendor_HP;
389 379
390 QFile f ( "/proc/hal/model" ); 380 QFile f ( "/proc/hal/model" );
391 381
392 if ( f. open ( IO_ReadOnly )) { 382 if ( f. open ( IO_ReadOnly )) {
393 QTextStream ts ( &f ); 383 QTextStream ts ( &f );
394 384
395 d-> m_modelstr = "H" + ts. readLine ( ); 385 d-> m_modelstr = "H" + ts. readLine ( );
396 386
397 if ( d-> m_modelstr == "H3100" ) 387 if ( d-> m_modelstr == "H3100" )
398 d-> m_model = Model_iPAQ_H31xx; 388 d-> m_model = Model_iPAQ_H31xx;
399 else if ( d-> m_modelstr == "H3600" ) 389 else if ( d-> m_modelstr == "H3600" )
400 d-> m_model = Model_iPAQ_H36xx; 390 d-> m_model = Model_iPAQ_H36xx;
401 else if ( d-> m_modelstr == "H3700" ) 391 else if ( d-> m_modelstr == "H3700" )
402 d-> m_model = Model_iPAQ_H37xx; 392 d-> m_model = Model_iPAQ_H37xx;
403 else if ( d-> m_modelstr == "H3800" ) 393 else if ( d-> m_modelstr == "H3800" )
404 d-> m_model = Model_iPAQ_H38xx; 394 d-> m_model = Model_iPAQ_H38xx;
405 else if ( d-> m_modelstr == "H3900" ) 395 else if ( d-> m_modelstr == "H3900" )
406 d-> m_model = Model_iPAQ_H39xx; 396 d-> m_model = Model_iPAQ_H39xx;
407 else 397 else
408 d-> m_model = Model_Unknown; 398 d-> m_model = Model_Unknown;
409 399
410 f. close ( ); 400 f. close ( );
411 } 401 }
412 402
413 f. setName ( "/etc/familiar-version" ); 403 f. setName ( "/etc/familiar-version" );
414 if ( f. open ( IO_ReadOnly )) { 404 if ( f. open ( IO_ReadOnly )) {
415 d-> m_systemstr = "Familiar"; 405 d-> m_systemstr = "Familiar";
416 d-> m_system = System_Familiar; 406 d-> m_system = System_Familiar;
417 407
418 QTextStream ts ( &f ); 408 QTextStream ts ( &f );
419 d-> m_sysverstr = ts. readLine ( ). mid ( 10 ); 409 d-> m_sysverstr = ts. readLine ( ). mid ( 10 );
420 410
421 f. close ( ); 411 f. close ( );
422 } 412 }
423 413
424 m_leds [0] = m_leds [1] = Led_Off; 414 m_leds [0] = m_leds [1] = Led_Off;
425 415
426 m_power_timer = 0; 416 m_power_timer = 0;
427 417
428 if ( d-> m_qwsserver ) 418 if ( d-> m_qwsserver )
429 QWSServer::setKeyboardFilter ( this ); 419 QWSServer::setKeyboardFilter ( this );
430} 420}
431 421
432//#include <linux/h3600_ts.h> // including kernel headers is evil ... 422//#include <linux/h3600_ts.h> // including kernel headers is evil ...
433 423
434typedef struct { 424typedef struct {
435 unsigned char OffOnBlink; /* 0=off 1=on 2=Blink */ 425 unsigned char OffOnBlink; /* 0=off 1=on 2=Blink */
436 unsigned char TotalTime; /* Units of 5 seconds */ 426 unsigned char TotalTime; /* Units of 5 seconds */
437 unsigned char OnTime; /* units of 100m/s */ 427 unsigned char OnTime; /* units of 100m/s */
438 unsigned char OffTime; /* units of 100m/s */ 428 unsigned char OffTime; /* units of 100m/s */
439} LED_IN; 429} LED_IN;
440 430
441typedef struct { 431typedef struct {
442 unsigned char mode; 432 unsigned char mode;
443 unsigned char pwr; 433 unsigned char pwr;
444 unsigned char brightness; 434 unsigned char brightness;
445} FLITE_IN; 435} FLITE_IN;
446 436
447#define LED_ON OD_IOW( 'f', 5, LED_IN ) 437#define LED_ON OD_IOW( 'f', 5, LED_IN )
448#define FLITE_ON OD_IOW( 'f', 7, FLITE_IN ) 438#define FLITE_ON OD_IOW( 'f', 7, FLITE_IN )
449 439
450 440
451 441
452QValueList <OLed> iPAQ::ledList ( ) const 442QValueList <OLed> iPAQ::ledList ( ) const
453{ 443{
454 QValueList <OLed> vl; 444 QValueList <OLed> vl;
455 vl << Led_Power; 445 vl << Led_Power;
456 446
457 if ( d-> m_model == Model_iPAQ_H38xx ) 447 if ( d-> m_model == Model_iPAQ_H38xx )
458 vl << Led_BlueTooth; 448 vl << Led_BlueTooth;
459 return vl; 449 return vl;
460} 450}
461 451
462QValueList <OLedState> iPAQ::ledStateList ( OLed l ) const 452QValueList <OLedState> iPAQ::ledStateList ( OLed l ) const
463{ 453{
464 QValueList <OLedState> vl; 454 QValueList <OLedState> vl;
465 455
466 if ( l == Led_Power ) 456 if ( l == Led_Power )
467 vl << Led_Off << Led_On << Led_BlinkSlow << Led_BlinkFast; 457 vl << Led_Off << Led_On << Led_BlinkSlow << Led_BlinkFast;
468 else if ( l == Led_BlueTooth && d-> m_model == Model_iPAQ_H38xx ) 458 else if ( l == Led_BlueTooth && d-> m_model == Model_iPAQ_H38xx )
469 vl << Led_Off; // << Led_On << ??? 459 vl << Led_Off; // << Led_On << ???
470 460
471 return vl; 461 return vl;
472} 462}
473 463
474OLedState iPAQ::ledState ( OLed l ) const 464OLedState iPAQ::ledState ( OLed l ) const
475 { 465 {
476 switch ( l ) { 466 switch ( l ) {
477 case Led_Power: 467 case Led_Power:
478 return m_leds [0]; 468 return m_leds [0];
479 case Led_BlueTooth: 469 case Led_BlueTooth:
480 return m_leds [1]; 470 return m_leds [1];
481 default: 471 default:
482 return Led_Off; 472 return Led_Off;
483 } 473 }
484} 474}