1
0
Fork 0
forked from len0rd/rockbox

* Fix plugin keymaps for VX777

* Enable plugins for VX777
 * Fix VX777 simulator

All done by Aaron DeMille.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22576 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Maurus Cuelenaere 2009-08-31 21:11:32 +00:00
parent a56199c49e
commit 9680244f4a
58 changed files with 171 additions and 17 deletions

View file

@ -1166,6 +1166,10 @@ void button_event(int key, bool pressed)
case SDLK_RETURN:
new_btn = BUTTON_MENU;
break;
#elif CONFIG_KEYPAD == ONDAVX777_PAD
case SDLK_ESCAPE:
new_btn = BUTTON_POWER;
break;
#elif CONFIG_KEYPAD == SAMSUNG_YH_PAD
case SDLK_KP4:
case SDLK_LEFT:

View file

@ -315,11 +315,13 @@
#define UI_LCD_POSX 42 /* x position of lcd */
#define UI_LCD_POSY 55 /* y position of lcd */
#elif defined(ONDA_VX747) || defined(ONDA_VX747P)
#elif defined(ONDA_VX747) || defined(ONDA_VX747P) || defined(ONDA_VX777)
#ifdef ONDA_VX747
#define UI_TITLE "Onda VX747"
#else
#elif defined(ONDA_VX747P)
#define UI_TITLE "Onda VX747+"
#else
#define UI_TITLE "Onda VX777"
#endif
#define UI_WIDTH 340 /* width of GUI window */
#define UI_HEIGHT 601 /* height of GUI window */