summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Kurbjun <kkurbjun@gmail.com>2009-10-05 02:09:00 +0000
committerKarl Kurbjun <kkurbjun@gmail.com>2009-10-05 02:09:00 +0000
commitfb50f468666958564656386b7181a4973e042ebc (patch)
tree41aa7fc0b690d2690acf281ce3094d1de10c54fb
parent436776ebb8645f4393bafd01856d7ba2abe83356 (diff)
downloadrockbox-fb50f468666958564656386b7181a4973e042ebc.zip
rockbox-fb50f468666958564656386b7181a4973e042ebc.tar.gz
rockbox-fb50f468666958564656386b7181a4973e042ebc.tar.bz2
rockbox-fb50f468666958564656386b7181a4973e042ebc.tar.xz
Button Driver: Add button_status support with data - allows for reading the /immediate/ value of the touchscreen
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22933 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/plugin.c2
-rw-r--r--apps/plugin.h2
-rw-r--r--firmware/drivers/button.c10
-rw-r--r--firmware/export/button.h3
4 files changed, 17 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 945e99e..c37b2fb 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -668,6 +668,8 @@ static const struct plugin_api rockbox_api = {
appsversion,
/* new stuff at the end, sort into place next time
the API gets incompatible */
+
+ button_status_wdata,
};
int plugin_load(const char* plugin, const void* parameter)
diff --git a/apps/plugin.h b/apps/plugin.h
index 766a309..344026f 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -836,6 +836,8 @@ struct plugin_api {
const char *appsversion;
/* new stuff at the end, sort into place next time
the API gets incompatible */
+
+ int (*button_status_wdata)(int *pdata);
};
/* plugin header */
diff --git a/firmware/drivers/button.c b/firmware/drivers/button.c
index cc8a1b5..6e30cb1 100644
--- a/firmware/drivers/button.c
+++ b/firmware/drivers/button.c
@@ -86,6 +86,7 @@ static int button_read(void);
#ifdef HAVE_TOUCHSCREEN
static int last_touchscreen_touch;
+static int lastdata = 0;
#endif
#if defined(HAVE_HEADPHONE_DETECTION)
static struct timeout hp_detect_timeout; /* Debouncer for headphone plug/unplug */
@@ -304,6 +305,7 @@ static void button_tick(void)
}
}
lastbtn = btn & ~(BUTTON_REL | BUTTON_REPEAT);
+ lastdata = data;
}
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
@@ -575,6 +577,14 @@ int button_status(void)
return lastbtn;
}
+#ifdef HAVE_BUTTON_DATA
+int button_status_wdata(int *pdata)
+{
+ *pdata = lastdata;
+ return lastbtn;
+}
+#endif
+
void button_clear_queue(void)
{
queue_clear(&button_queue);
diff --git a/firmware/export/button.h b/firmware/export/button.h
index 3947f07..3aac1af 100644
--- a/firmware/export/button.h
+++ b/firmware/export/button.h
@@ -37,6 +37,9 @@ long button_get (bool block);
long button_get_w_tmo(int ticks);
intptr_t button_get_data(void);
int button_status(void);
+#ifdef HAVE_BUTTON_DATA
+int button_status_wdata(int *pdata);
+#endif
void button_clear_queue(void);
#ifdef HAVE_LCD_BITMAP
void button_set_flip(bool flip); /* turn 180 degrees */