1
0
Fork 0
forked from len0rd/rockbox

M:Robe 100: add button definition/bitmaps to plugins and enable compilation

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16469 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Robert Kukla 2008-03-01 22:55:09 +00:00
parent 9876d91e35
commit d6c8b57b50
56 changed files with 507 additions and 26 deletions

View file

@ -257,8 +257,26 @@ static struct plugin_api* rb;
# define HK_CUR2STACK "SELECT.."
# define HK_REM2STACK "SELECT+RIGHT"
#elif (CONFIG_KEYPAD == MROBE100_PAD)
# define SOL_QUIT BUTTON_POWER
# define SOL_UP BUTTON_UP
# define SOL_DOWN BUTTON_DOWN
# define SOL_LEFT BUTTON_LEFT
# define SOL_RIGHT BUTTON_RIGHT
# define SOL_MOVE_PRE BUTTON_SELECT
# define SOL_MOVE (BUTTON_SELECT | BUTTON_REL)
# define SOL_DRAW BUTTON_MENU
# define SOL_REM2CUR (BUTTON_LEFT | BUTTON_DISPLAY)
# define SOL_CUR2STACK (BUTTON_SELECT | BUTTON_REPEAT)
# define SOL_REM2STACK (BUTTON_RIGHT | BUTTON_DISPLAY)
# define HK_MOVE "SELECT"
# define HK_DRAW "MENU"
# define HK_REM2CUR "DISPLAY+LEFT"
# define HK_CUR2STACK "SELECT.."
# define HK_REM2STACK "DISPLAY+RIGHT"
#else
# error "Unknown keypad"
#error No keymap defined!
#endif
#define HK_LR "LEFT/RIGHT"