1
0
Fork 0
forked from len0rd/rockbox

Adapted most multi-source plugins to the iAudio M3 keypad and screen. Doom and mpegplayer are disabled because of the not yet implemented greyscale library, and zxbox used 2-bit greyscale for now. * Slight optimisation for the (currently unused except on M3) 2-bit greyscale code in zxbox. * Simplified button definitions in chessbox.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16744 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2008-03-22 14:20:04 +00:00
parent 95d8590659
commit 106ac75ad8
17 changed files with 335 additions and 447 deletions

View file

@ -126,6 +126,15 @@ PLUGIN_IRAM_DECLARE
#define BTN_PLAY BUTTON_DISPLAY
#elif CONFIG_KEYPAD == IAUDIO_M3_PAD
#define BTN_QUIT BUTTON_RC_REC
#define BTN_RIGHT BUTTON_RC_FF
#define BTN_LEFT BUTTON_RC_REW
#define BTN_UP BUTTON_RC_VOL_UP
#define BTN_DOWN BUTTON_RC_VOL_DOWN
#define BTN_PLAY BUTTON_RC_PLAY
#else
#error No keymap defined!
#endif