2002-04-16 13:37:50 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 by Daniel Stenberg
|
|
|
|
*
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2004-12-01 00:33:18 +00:00
|
|
|
|
2002-04-16 13:37:50 +00:00
|
|
|
/*
|
2004-12-01 00:33:18 +00:00
|
|
|
* Rockbox button functions
|
2002-04-16 13:37:50 +00:00
|
|
|
*/
|
|
|
|
|
2002-05-23 09:26:20 +00:00
|
|
|
#include <stdlib.h>
|
2002-04-16 13:37:50 +00:00
|
|
|
#include "config.h"
|
2002-06-26 21:31:47 +00:00
|
|
|
#include "system.h"
|
2002-04-16 13:37:50 +00:00
|
|
|
#include "button.h"
|
2002-05-23 09:26:20 +00:00
|
|
|
#include "kernel.h"
|
2007-03-11 10:52:36 +00:00
|
|
|
#include "thread.h"
|
2002-06-24 13:50:39 +00:00
|
|
|
#include "backlight.h"
|
2002-09-30 08:55:22 +00:00
|
|
|
#include "serial.h"
|
2002-10-16 12:40:30 +00:00
|
|
|
#include "power.h"
|
2004-06-22 07:16:31 +00:00
|
|
|
#include "powermgmt.h"
|
2006-11-27 02:16:32 +00:00
|
|
|
#include "button-target.h"
|
2002-05-23 09:26:20 +00:00
|
|
|
|
2006-03-25 19:16:45 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
2006-02-20 20:08:27 +00:00
|
|
|
#include "lcd-remote.h"
|
|
|
|
#endif
|
|
|
|
|
2007-08-12 19:49:03 +00:00
|
|
|
#ifndef SIMULATOR
|
2007-03-26 16:55:17 +00:00
|
|
|
#if 0
|
|
|
|
/* Older than MAX_EVENT_AGE button events are going to be ignored.
|
|
|
|
* Used to prevent for example volume going up uncontrollable when events
|
|
|
|
* are getting queued and UI is lagging too much.
|
|
|
|
*/
|
|
|
|
#define MAX_EVENT_AGE HZ
|
|
|
|
#endif
|
|
|
|
|
2002-06-30 13:12:14 +00:00
|
|
|
struct event_queue button_queue;
|
2002-05-23 09:26:20 +00:00
|
|
|
|
2005-01-27 11:49:29 +00:00
|
|
|
static long lastbtn; /* Last valid button status */
|
|
|
|
static long last_read; /* Last button status, for debouncing/filtering */
|
2007-07-22 21:02:24 +00:00
|
|
|
static intptr_t button_data; /* data value from last message dequeued */
|
2004-12-01 00:33:18 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
static bool flipped; /* buttons can be flipped to match the LCD flip */
|
2003-12-20 10:00:37 +00:00
|
|
|
#endif
|
2007-04-12 22:12:13 +00:00
|
|
|
#ifdef HAVE_BACKLIGHT
|
2006-03-24 13:47:24 +00:00
|
|
|
static bool filter_first_keypress;
|
2006-03-25 19:16:45 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
static bool remote_filter_first_keypress;
|
|
|
|
#endif
|
2007-04-12 22:12:13 +00:00
|
|
|
#endif /* HAVE_BACKLIGHT */
|
2006-11-27 02:16:32 +00:00
|
|
|
#ifdef HAVE_HEADPHONE_DETECTION
|
|
|
|
bool phones_present = false;
|
2006-03-24 13:47:24 +00:00
|
|
|
#endif
|
2002-09-23 11:33:04 +00:00
|
|
|
|
2006-04-06 18:58:42 +00:00
|
|
|
/* how long until repeat kicks in, in ticks */
|
2004-09-23 12:08:48 +00:00
|
|
|
#define REPEAT_START 30
|
2002-09-05 22:41:22 +00:00
|
|
|
|
2006-04-06 18:58:42 +00:00
|
|
|
/* the speed repeat starts at, in ticks */
|
2004-09-23 12:08:48 +00:00
|
|
|
#define REPEAT_INTERVAL_START 16
|
2002-09-05 22:41:22 +00:00
|
|
|
|
2006-04-06 18:58:42 +00:00
|
|
|
/* speed repeat finishes at, in ticks */
|
2004-09-23 12:08:48 +00:00
|
|
|
#define REPEAT_INTERVAL_FINISH 5
|
2002-05-23 09:26:20 +00:00
|
|
|
|
|
|
|
static int button_read(void);
|
2005-11-23 22:34:11 +00:00
|
|
|
|
2002-05-23 09:26:20 +00:00
|
|
|
static void button_tick(void)
|
|
|
|
{
|
2002-09-30 08:55:22 +00:00
|
|
|
static int count = 0;
|
|
|
|
static int repeat_speed = REPEAT_INTERVAL_START;
|
2003-02-25 03:03:55 +00:00
|
|
|
static int repeat_count = 0;
|
2002-09-30 08:55:22 +00:00
|
|
|
static bool repeat = false;
|
2006-02-19 13:34:12 +00:00
|
|
|
static bool post = false;
|
2007-04-12 22:12:13 +00:00
|
|
|
#ifdef HAVE_BACKLIGHT
|
2006-03-25 19:16:45 +00:00
|
|
|
static bool skip_release = false;
|
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
static bool skip_remote_release = false;
|
|
|
|
#endif
|
|
|
|
#endif
|
2002-07-27 11:24:22 +00:00
|
|
|
int diff;
|
2002-09-30 08:55:22 +00:00
|
|
|
int btn;
|
2002-05-23 09:26:20 +00:00
|
|
|
|
2006-11-27 02:16:32 +00:00
|
|
|
#ifdef HAS_SERIAL_REMOTE
|
2002-09-30 08:55:22 +00:00
|
|
|
/* Post events for the remote control */
|
|
|
|
btn = remote_control_rx();
|
|
|
|
if(btn)
|
|
|
|
{
|
2006-12-19 16:50:07 +00:00
|
|
|
queue_post(&button_queue, btn, 0);
|
2004-12-01 00:33:18 +00:00
|
|
|
}
|
2004-09-20 22:15:35 +00:00
|
|
|
#endif
|
2004-12-01 00:33:18 +00:00
|
|
|
|
2006-09-26 10:03:56 +00:00
|
|
|
#ifdef HAVE_HEADPHONE_DETECTION
|
|
|
|
if ( headphones_inserted() )
|
|
|
|
{
|
|
|
|
if (! phones_present )
|
|
|
|
{
|
2006-12-19 16:50:07 +00:00
|
|
|
queue_post(&button_queue, SYS_PHONE_PLUGGED, 0);
|
2006-09-26 10:03:56 +00:00
|
|
|
phones_present = true;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if ( phones_present )
|
|
|
|
{
|
2006-12-19 16:50:07 +00:00
|
|
|
queue_post(&button_queue, SYS_PHONE_UNPLUGGED, 0);
|
2006-09-26 10:03:56 +00:00
|
|
|
phones_present = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-04-06 18:58:42 +00:00
|
|
|
btn = button_read();
|
2005-01-10 21:47:55 +00:00
|
|
|
|
2006-04-06 18:58:42 +00:00
|
|
|
/* Find out if a key has been released */
|
|
|
|
diff = btn ^ lastbtn;
|
|
|
|
if(diff && (btn & diff) == 0)
|
|
|
|
{
|
2007-04-12 22:12:13 +00:00
|
|
|
#ifdef HAVE_BACKLIGHT
|
2006-03-25 19:16:45 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
2006-04-06 18:58:42 +00:00
|
|
|
if(diff & BUTTON_REMOTE)
|
|
|
|
if(!skip_remote_release)
|
2006-12-19 16:50:07 +00:00
|
|
|
queue_post(&button_queue, BUTTON_REL | diff, 0);
|
2006-03-25 19:16:45 +00:00
|
|
|
else
|
2006-04-06 18:58:42 +00:00
|
|
|
skip_remote_release = false;
|
|
|
|
else
|
2006-03-25 19:16:45 +00:00
|
|
|
#endif
|
2006-04-06 18:58:42 +00:00
|
|
|
if(!skip_release)
|
2006-12-19 16:50:07 +00:00
|
|
|
queue_post(&button_queue, BUTTON_REL | diff, 0);
|
2006-04-06 18:58:42 +00:00
|
|
|
else
|
|
|
|
skip_release = false;
|
2006-03-25 19:16:45 +00:00
|
|
|
#else
|
2006-12-19 16:50:07 +00:00
|
|
|
queue_post(&button_queue, BUTTON_REL | diff, 0);
|
2006-03-25 19:16:45 +00:00
|
|
|
#endif
|
2006-04-06 18:58:42 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( btn )
|
2002-07-27 11:24:22 +00:00
|
|
|
{
|
2006-04-06 18:58:42 +00:00
|
|
|
/* normal keypress */
|
|
|
|
if ( btn != lastbtn )
|
2002-07-27 19:38:20 +00:00
|
|
|
{
|
2006-04-06 18:58:42 +00:00
|
|
|
post = true;
|
|
|
|
repeat = false;
|
|
|
|
repeat_speed = REPEAT_INTERVAL_START;
|
|
|
|
}
|
|
|
|
else /* repeat? */
|
|
|
|
{
|
|
|
|
if ( repeat )
|
2004-07-24 20:38:56 +00:00
|
|
|
{
|
2006-04-06 18:58:42 +00:00
|
|
|
if (!post)
|
|
|
|
count--;
|
|
|
|
if (count == 0) {
|
|
|
|
post = true;
|
|
|
|
/* yes we have repeat */
|
|
|
|
if (repeat_speed > REPEAT_INTERVAL_FINISH)
|
2004-07-24 20:38:56 +00:00
|
|
|
repeat_speed--;
|
2006-04-06 18:58:42 +00:00
|
|
|
count = repeat_speed;
|
2005-01-10 21:47:55 +00:00
|
|
|
|
2006-04-06 18:58:42 +00:00
|
|
|
repeat_count++;
|
2005-01-10 21:47:55 +00:00
|
|
|
|
2006-04-06 18:58:42 +00:00
|
|
|
/* Send a SYS_POWEROFF event if we have a device
|
|
|
|
which doesn't shut down easily with the OFF
|
|
|
|
key */
|
2004-10-12 11:00:19 +00:00
|
|
|
#ifdef HAVE_SW_POWEROFF
|
2006-04-06 18:58:42 +00:00
|
|
|
if ((btn == POWEROFF_BUTTON
|
2006-11-27 02:16:32 +00:00
|
|
|
#ifdef RC_POWEROFF_BUTTON
|
2006-09-12 15:56:31 +00:00
|
|
|
|| btn == RC_POWEROFF_BUTTON
|
2005-06-08 18:01:14 +00:00
|
|
|
#endif
|
2006-04-06 18:58:42 +00:00
|
|
|
) &&
|
2007-02-18 05:32:06 +00:00
|
|
|
#if CONFIG_CHARGING && !defined(HAVE_POWEROFF_WHILE_CHARGING)
|
2006-04-06 18:58:42 +00:00
|
|
|
!charger_inserted() &&
|
2003-02-25 03:03:55 +00:00
|
|
|
#endif
|
2006-04-06 18:58:42 +00:00
|
|
|
repeat_count > POWEROFF_COUNT)
|
|
|
|
{
|
|
|
|
/* Tell the main thread that it's time to
|
|
|
|
power off */
|
|
|
|
sys_poweroff();
|
|
|
|
|
|
|
|
/* Safety net for players without hardware
|
|
|
|
poweroff */
|
|
|
|
if(repeat_count > POWEROFF_COUNT * 10)
|
|
|
|
power_off();
|
2004-07-24 20:38:56 +00:00
|
|
|
}
|
2006-04-06 18:58:42 +00:00
|
|
|
#endif
|
2002-05-23 11:59:30 +00:00
|
|
|
}
|
2006-04-06 18:58:42 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (count++ > REPEAT_START)
|
2002-07-24 15:21:08 +00:00
|
|
|
{
|
2006-04-06 18:58:42 +00:00
|
|
|
post = true;
|
|
|
|
repeat = true;
|
|
|
|
repeat_count = 0;
|
|
|
|
/* initial repeat */
|
|
|
|
count = REPEAT_INTERVAL_START;
|
2002-07-27 19:38:20 +00:00
|
|
|
}
|
2002-05-23 11:59:30 +00:00
|
|
|
}
|
2006-04-06 18:58:42 +00:00
|
|
|
}
|
|
|
|
if ( post )
|
|
|
|
{
|
|
|
|
if (repeat)
|
2004-07-24 20:38:56 +00:00
|
|
|
{
|
2006-04-06 18:58:42 +00:00
|
|
|
/* Only post repeat events if the queue is empty,
|
|
|
|
* to avoid afterscroll effects. */
|
|
|
|
if (queue_empty(&button_queue))
|
2006-02-19 13:34:12 +00:00
|
|
|
{
|
2006-12-19 16:50:07 +00:00
|
|
|
queue_post(&button_queue, BUTTON_REPEAT | btn, 0);
|
2007-04-12 22:12:13 +00:00
|
|
|
#ifdef HAVE_BACKLIGHT
|
2006-03-25 19:16:45 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
2006-04-06 18:58:42 +00:00
|
|
|
skip_remote_release = false;
|
2006-03-25 19:16:45 +00:00
|
|
|
#endif
|
2006-04-06 18:58:42 +00:00
|
|
|
skip_release = false;
|
|
|
|
#endif
|
|
|
|
post = false;
|
2006-02-19 13:34:12 +00:00
|
|
|
}
|
2006-04-06 18:58:42 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-04-12 22:12:13 +00:00
|
|
|
#ifdef HAVE_BACKLIGHT
|
2006-03-25 19:16:45 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
2006-04-06 18:58:42 +00:00
|
|
|
if (btn & BUTTON_REMOTE) {
|
|
|
|
if (!remote_filter_first_keypress || is_remote_backlight_on()
|
2006-03-25 19:16:45 +00:00
|
|
|
#if defined(IRIVER_H100_SERIES) || defined(IRIVER_H300_SERIES)
|
2006-04-06 18:58:42 +00:00
|
|
|
|| (remote_type()==REMOTETYPE_H300_NONLCD)
|
2006-03-25 19:16:45 +00:00
|
|
|
#endif
|
2006-04-06 18:58:42 +00:00
|
|
|
)
|
2006-12-19 16:50:07 +00:00
|
|
|
queue_post(&button_queue, btn, 0);
|
2006-04-06 18:58:42 +00:00
|
|
|
else
|
|
|
|
skip_remote_release = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
2007-05-20 14:03:42 +00:00
|
|
|
if (!filter_first_keypress || is_backlight_on()
|
|
|
|
#if BUTTON_REMOTE
|
|
|
|
|| (btn&BUTTON_REMOTE)
|
|
|
|
#endif
|
|
|
|
)
|
2006-12-19 16:50:07 +00:00
|
|
|
queue_post(&button_queue, btn, 0);
|
2006-03-25 19:16:45 +00:00
|
|
|
else
|
2006-04-06 18:58:42 +00:00
|
|
|
skip_release = true;
|
2006-03-25 19:16:45 +00:00
|
|
|
#else /* no backlight, nothing to skip */
|
2006-12-19 16:50:07 +00:00
|
|
|
queue_post(&button_queue, btn, 0);
|
2006-03-24 13:47:24 +00:00
|
|
|
#endif
|
2006-04-06 18:58:42 +00:00
|
|
|
post = false;
|
|
|
|
}
|
2005-04-15 16:16:26 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
2006-04-06 18:58:42 +00:00
|
|
|
if(btn & BUTTON_REMOTE)
|
|
|
|
remote_backlight_on();
|
|
|
|
else
|
2005-04-15 16:16:26 +00:00
|
|
|
#endif
|
2007-09-25 20:24:38 +00:00
|
|
|
{
|
2006-04-06 18:58:42 +00:00
|
|
|
backlight_on();
|
2007-09-25 20:24:38 +00:00
|
|
|
#ifdef HAVE_BUTTON_LIGHT
|
2007-10-07 15:02:02 +00:00
|
|
|
buttonlight_on();
|
2007-09-25 20:24:38 +00:00
|
|
|
#endif
|
|
|
|
}
|
2005-01-10 21:47:55 +00:00
|
|
|
|
2006-04-06 18:58:42 +00:00
|
|
|
reset_poweroff_timer();
|
2002-06-24 13:50:39 +00:00
|
|
|
}
|
2002-05-23 11:59:30 +00:00
|
|
|
}
|
2006-04-06 18:58:42 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
repeat = false;
|
|
|
|
count = 0;
|
|
|
|
}
|
2002-05-23 09:26:20 +00:00
|
|
|
}
|
2006-04-06 18:58:42 +00:00
|
|
|
lastbtn = btn & ~(BUTTON_REL | BUTTON_REPEAT);
|
2002-05-23 09:26:20 +00:00
|
|
|
}
|
|
|
|
|
2007-03-11 22:27:35 +00:00
|
|
|
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
|
|
|
|
static void button_boost(bool state)
|
2007-03-11 10:52:36 +00:00
|
|
|
{
|
|
|
|
static bool boosted = false;
|
|
|
|
|
|
|
|
if (state && !boosted)
|
|
|
|
{
|
|
|
|
cpu_boost(true);
|
|
|
|
boosted = true;
|
|
|
|
}
|
|
|
|
else if (!state && boosted)
|
|
|
|
{
|
|
|
|
cpu_boost(false);
|
|
|
|
boosted = false;
|
|
|
|
}
|
|
|
|
}
|
2007-03-11 22:27:35 +00:00
|
|
|
#endif /* HAVE_ADJUSTABLE_CPU_FREQ */
|
2007-03-11 10:52:36 +00:00
|
|
|
|
2005-02-07 22:57:05 +00:00
|
|
|
long button_get(bool block)
|
2002-05-23 09:26:20 +00:00
|
|
|
{
|
|
|
|
struct event ev;
|
2007-03-11 10:52:36 +00:00
|
|
|
int pending_count = queue_count(&button_queue);
|
2007-03-11 22:27:35 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
|
2007-03-11 10:52:36 +00:00
|
|
|
/* Control the CPU boost trying to keep queue empty. */
|
|
|
|
if (pending_count == 0)
|
|
|
|
button_boost(false);
|
|
|
|
else if (pending_count > 2)
|
|
|
|
button_boost(true);
|
2007-03-11 22:27:35 +00:00
|
|
|
#endif
|
2007-03-11 10:52:36 +00:00
|
|
|
|
|
|
|
if ( block || pending_count )
|
2004-12-01 00:33:18 +00:00
|
|
|
{
|
2002-05-23 09:26:20 +00:00
|
|
|
queue_wait(&button_queue, &ev);
|
2007-03-26 16:55:17 +00:00
|
|
|
|
|
|
|
#if 0
|
|
|
|
/* Ignore if the event was too old and for simplicity, just
|
|
|
|
* wait for a new button_get() request. */
|
|
|
|
if (current_tick - ev.tick > MAX_EVENT_AGE)
|
|
|
|
return BUTTON_NONE;
|
|
|
|
#endif
|
2007-07-22 21:02:24 +00:00
|
|
|
button_data = ev.data;
|
2002-05-23 11:59:30 +00:00
|
|
|
return ev.id;
|
|
|
|
}
|
2007-03-11 10:52:36 +00:00
|
|
|
|
2002-05-23 11:59:30 +00:00
|
|
|
return BUTTON_NONE;
|
2002-05-23 09:26:20 +00:00
|
|
|
}
|
2002-04-16 13:37:50 +00:00
|
|
|
|
2005-02-07 22:57:05 +00:00
|
|
|
long button_get_w_tmo(int ticks)
|
2002-08-07 07:22:44 +00:00
|
|
|
{
|
|
|
|
struct event ev;
|
2007-03-11 10:52:36 +00:00
|
|
|
|
2007-03-11 22:27:35 +00:00
|
|
|
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
|
2007-03-11 10:52:36 +00:00
|
|
|
/* Be sure to keep boosted state. */
|
|
|
|
if (!queue_empty(&button_queue))
|
|
|
|
return button_get(true);
|
|
|
|
|
|
|
|
button_boost(false);
|
2007-03-11 22:27:35 +00:00
|
|
|
#endif
|
2007-03-11 10:52:36 +00:00
|
|
|
|
2003-02-14 09:44:34 +00:00
|
|
|
queue_wait_w_tmo(&button_queue, &ev, ticks);
|
2007-07-22 21:02:24 +00:00
|
|
|
if (ev.id == SYS_TIMEOUT)
|
|
|
|
ev.id = BUTTON_NONE;
|
|
|
|
else
|
|
|
|
button_data = ev.data;
|
|
|
|
|
|
|
|
return ev.id;
|
|
|
|
}
|
|
|
|
|
|
|
|
intptr_t button_get_data(void)
|
|
|
|
{
|
|
|
|
return button_data;
|
2002-08-07 07:22:44 +00:00
|
|
|
}
|
|
|
|
|
2004-12-01 00:33:18 +00:00
|
|
|
void button_init(void)
|
2004-11-18 23:22:45 +00:00
|
|
|
{
|
2004-12-01 00:33:18 +00:00
|
|
|
/* hardware inits */
|
2006-07-27 13:27:31 +00:00
|
|
|
button_init_device();
|
2006-11-27 02:16:32 +00:00
|
|
|
|
2006-09-16 16:18:11 +00:00
|
|
|
queue_init(&button_queue, true);
|
2007-03-26 16:55:17 +00:00
|
|
|
|
2005-06-29 12:23:09 +00:00
|
|
|
button_read();
|
|
|
|
lastbtn = button_read();
|
2004-11-18 23:22:45 +00:00
|
|
|
tick_add_task(button_tick);
|
|
|
|
reset_poweroff_timer();
|
2004-12-01 00:33:18 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2004-11-18 23:22:45 +00:00
|
|
|
flipped = false;
|
2004-12-01 00:33:18 +00:00
|
|
|
#endif
|
2007-04-12 22:12:13 +00:00
|
|
|
#ifdef HAVE_BACKLIGHT
|
2006-03-24 13:47:24 +00:00
|
|
|
filter_first_keypress = false;
|
2006-03-25 19:16:45 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
remote_filter_first_keypress = false;
|
|
|
|
#endif
|
2006-03-24 13:47:24 +00:00
|
|
|
#endif
|
2004-11-18 23:22:45 +00:00
|
|
|
}
|
|
|
|
|
2004-12-01 00:33:18 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP /* only bitmap displays can be flipped */
|
2004-11-18 23:22:45 +00:00
|
|
|
/*
|
2006-04-01 23:48:03 +00:00
|
|
|
* helper function to swap LEFT/RIGHT, UP/DOWN (if present), and F1/F3 (Recorder)
|
2004-11-18 23:22:45 +00:00
|
|
|
*/
|
|
|
|
static int button_flip(int button)
|
|
|
|
{
|
|
|
|
int newbutton;
|
|
|
|
|
2005-01-10 21:47:55 +00:00
|
|
|
newbutton = button &
|
2006-04-01 23:48:03 +00:00
|
|
|
~(BUTTON_LEFT | BUTTON_RIGHT
|
|
|
|
#if defined(BUTTON_UP) && defined(BUTTON_DOWN)
|
|
|
|
| BUTTON_UP | BUTTON_DOWN
|
|
|
|
#endif
|
2006-09-25 18:45:03 +00:00
|
|
|
#if defined(BUTTON_SCROLL_UP) && defined(BUTTON_SCROLL_DOWN)
|
|
|
|
| BUTTON_SCROLL_UP | BUTTON_SCROLL_DOWN
|
|
|
|
#endif
|
2004-12-01 00:33:18 +00:00
|
|
|
#if CONFIG_KEYPAD == RECORDER_PAD
|
|
|
|
| BUTTON_F1 | BUTTON_F3
|
|
|
|
#endif
|
|
|
|
);
|
2004-11-18 23:22:45 +00:00
|
|
|
|
|
|
|
if (button & BUTTON_LEFT)
|
|
|
|
newbutton |= BUTTON_RIGHT;
|
|
|
|
if (button & BUTTON_RIGHT)
|
|
|
|
newbutton |= BUTTON_LEFT;
|
2006-04-01 23:48:03 +00:00
|
|
|
#if defined(BUTTON_UP) && defined(BUTTON_DOWN)
|
|
|
|
if (button & BUTTON_UP)
|
|
|
|
newbutton |= BUTTON_DOWN;
|
|
|
|
if (button & BUTTON_DOWN)
|
|
|
|
newbutton |= BUTTON_UP;
|
|
|
|
#endif
|
2006-09-25 18:45:03 +00:00
|
|
|
#if defined(BUTTON_SCROLL_UP) && defined(BUTTON_SCROLL_DOWN)
|
|
|
|
if (button & BUTTON_SCROLL_UP)
|
|
|
|
newbutton |= BUTTON_SCROLL_DOWN;
|
|
|
|
if (button & BUTTON_SCROLL_DOWN)
|
|
|
|
newbutton |= BUTTON_SCROLL_UP;
|
|
|
|
#endif
|
2004-12-01 00:33:18 +00:00
|
|
|
#if CONFIG_KEYPAD == RECORDER_PAD
|
|
|
|
if (button & BUTTON_F1)
|
|
|
|
newbutton |= BUTTON_F3;
|
|
|
|
if (button & BUTTON_F3)
|
|
|
|
newbutton |= BUTTON_F1;
|
|
|
|
#endif
|
2004-11-18 23:22:45 +00:00
|
|
|
|
|
|
|
return newbutton;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* set the flip attribute
|
|
|
|
* better only call this when the queue is empty
|
|
|
|
*/
|
|
|
|
void button_set_flip(bool flip)
|
|
|
|
{
|
|
|
|
if (flip != flipped) /* not the current setting */
|
|
|
|
{
|
|
|
|
/* avoid race condition with the button_tick() */
|
|
|
|
int oldlevel = set_irq_level(HIGHEST_IRQ_LEVEL);
|
2005-01-10 21:47:55 +00:00
|
|
|
lastbtn = button_flip(lastbtn);
|
2004-11-18 23:22:45 +00:00
|
|
|
flipped = flip;
|
|
|
|
set_irq_level(oldlevel);
|
|
|
|
}
|
|
|
|
}
|
2004-12-01 00:33:18 +00:00
|
|
|
#endif /* HAVE_LCD_BITMAP */
|
|
|
|
|
2007-04-12 22:12:13 +00:00
|
|
|
#ifdef HAVE_BACKLIGHT
|
2006-03-24 13:47:24 +00:00
|
|
|
void set_backlight_filter_keypress(bool value)
|
|
|
|
{
|
|
|
|
filter_first_keypress = value;
|
|
|
|
}
|
2006-03-25 19:16:45 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
void set_remote_backlight_filter_keypress(bool value)
|
|
|
|
{
|
|
|
|
remote_filter_first_keypress = value;
|
|
|
|
}
|
|
|
|
#endif
|
2006-03-24 13:47:24 +00:00
|
|
|
#endif
|
|
|
|
|
2004-11-18 23:22:45 +00:00
|
|
|
/*
|
|
|
|
* Get button pressed from hardware
|
|
|
|
*/
|
|
|
|
static int button_read(void)
|
|
|
|
{
|
2006-11-27 02:16:32 +00:00
|
|
|
int btn = button_read_device();
|
2004-11-18 23:22:45 +00:00
|
|
|
int retval;
|
2004-12-01 00:33:18 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2004-10-08 17:02:16 +00:00
|
|
|
if (btn && flipped)
|
|
|
|
btn = button_flip(btn); /* swap upside down */
|
2004-12-01 00:33:18 +00:00
|
|
|
#endif
|
2004-10-08 17:02:16 +00:00
|
|
|
|
2004-09-23 22:36:15 +00:00
|
|
|
/* Filter the button status. It is only accepted if we get the same
|
|
|
|
status twice in a row. */
|
2004-12-01 00:33:18 +00:00
|
|
|
if (btn != last_read)
|
2004-09-23 22:36:15 +00:00
|
|
|
retval = lastbtn;
|
|
|
|
else
|
|
|
|
retval = btn;
|
|
|
|
last_read = btn;
|
|
|
|
|
|
|
|
return retval;
|
2004-09-10 10:51:54 +00:00
|
|
|
}
|
|
|
|
|
2006-01-12 00:35:50 +00:00
|
|
|
|
2004-07-21 08:02:23 +00:00
|
|
|
int button_status(void)
|
|
|
|
{
|
2005-01-27 11:53:13 +00:00
|
|
|
return lastbtn;
|
2004-07-21 08:02:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void button_clear_queue(void)
|
|
|
|
{
|
2004-09-01 06:24:57 +00:00
|
|
|
queue_clear(&button_queue);
|
2004-07-21 08:02:23 +00:00
|
|
|
}
|
2007-07-22 21:02:24 +00:00
|
|
|
|
2007-08-12 19:49:03 +00:00
|
|
|
#endif /* SIMULATOR */
|
|
|
|
|
2007-07-22 21:02:24 +00:00
|
|
|
#ifdef HAVE_SCROLLWHEEL
|
|
|
|
/**
|
|
|
|
* data:
|
|
|
|
* [31] Use acceleration
|
|
|
|
* [30:24] Message post count (skipped + 1) (1-127)
|
|
|
|
* [23:0] Velocity - clicks/uS - 0.24 fixed point
|
|
|
|
*
|
|
|
|
* factor:
|
|
|
|
* Wheel acceleration scaling factor - x.24 fixed point -
|
|
|
|
* no greater than what will not overflow 64 bits when multiplied
|
|
|
|
* by the driver's maximum velocity in (clicks/usec)^2 in 0.24
|
|
|
|
*/
|
|
|
|
int button_apply_acceleration(unsigned int data, unsigned int factor)
|
|
|
|
{
|
|
|
|
int delta = (data >> 24) & 0x7f;
|
|
|
|
|
|
|
|
if ((data & (1 << 31)) != 0)
|
|
|
|
{
|
|
|
|
unsigned int v = data & 0xffffff;
|
|
|
|
|
|
|
|
v = factor * (unsigned long long)v*v / 0xffffffffffffull;
|
|
|
|
|
|
|
|
if (v > 1)
|
|
|
|
delta *= v;
|
|
|
|
}
|
|
|
|
|
|
|
|
return delta;
|
|
|
|
}
|
|
|
|
#endif /* HAVE_SCROLLWHEEL */
|