summaryrefslogtreecommitdiff
path: root/apps/keymaps/keymap-mr500.c
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2008-04-15 10:35:11 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2008-04-15 10:35:11 +0000
commit5b5a626bb6ba54ccdcd90741cea5f9cbd0f79553 (patch)
tree0bf60b83aad534757330162ad4f683f142955ccb /apps/keymaps/keymap-mr500.c
parent50851794a6bdd585ce70ecb430b1f798fb90936b (diff)
downloadrockbox-5b5a626bb6ba54ccdcd90741cea5f9cbd0f79553.tar.gz
rockbox-5b5a626bb6ba54ccdcd90741cea5f9cbd0f79553.zip
Setup the touchpads to have two modes - stylus and button - and set them in button mode by default.
in button mode the touchpad is split into a 3x3 grid for 9 seperate buttons which can be used by the action system like real buttons. Unify the keymap file for the touchpads in button mode. the target keymap file only needs to worry about real buttons. (As these ports mature each screen will need to be fixed seperatly to be able to use stylus mode (the lists can already but don't change mode just yet.) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17114 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/keymaps/keymap-mr500.c')
-rwxr-xr-xapps/keymaps/keymap-mr500.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/apps/keymaps/keymap-mr500.c b/apps/keymaps/keymap-mr500.c
index b0d75c15bf..c680929efd 100755
--- a/apps/keymaps/keymap-mr500.c
+++ b/apps/keymaps/keymap-mr500.c
@@ -17,7 +17,7 @@
17 * 17 *
18 ****************************************************************************/ 18 ****************************************************************************/
19 19
20/* Button Code Definitions for the toshiba gigabeat target */ 20/* Button Code Definitions for the Olympus M:robe 500 target */
21#include <stdio.h> 21#include <stdio.h>
22#include <string.h> 22#include <string.h>
23#include <stdlib.h> 23#include <stdlib.h>
@@ -137,8 +137,7 @@ static const struct button_mapping button_context_keyboard[] = {
137 LAST_ITEM_IN_LIST 137 LAST_ITEM_IN_LIST
138}; /* button_context_keyboard */ 138}; /* button_context_keyboard */
139 139
140extern int current_tick; 140const struct button_mapping* target_get_context_mapping(int context)
141const struct button_mapping* get_context_mapping(int context)
142{ 141{
143 switch (context&(~CONTEXT_REMOTE)) 142 switch (context&(~CONTEXT_REMOTE))
144 { 143 {