summaryrefslogtreecommitdiff
path: root/firmware/export/config-ondavx747.h
diff options
context:
space:
mode:
authorMaurus Cuelenaere <mcuelenaere@gmail.com>2009-06-20 10:54:13 +0000
committerMaurus Cuelenaere <mcuelenaere@gmail.com>2009-06-20 10:54:13 +0000
commit582942016bdf3599952b343858ba9fb9785494e8 (patch)
tree05d17c750bc4ed952c0da49f9f000fc7ae96ed11 /firmware/export/config-ondavx747.h
parentd13f49737a6a04fae8b8288ae6d25d33ac6e4dfc (diff)
downloadrockbox-582942016bdf3599952b343858ba9fb9785494e8.tar.gz
rockbox-582942016bdf3599952b343858ba9fb9785494e8.zip
* Commit a modified FS#10354 (thanks to Davide Quarta) - add support the VX747+ in scramble and configure
* Add support for the VX777 * Remove the touchscreen mode switching combo from the button driver git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21379 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/config-ondavx747.h')
-rw-r--r--firmware/export/config-ondavx747.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/firmware/export/config-ondavx747.h b/firmware/export/config-ondavx747.h
index 9a9defcf2f..5625635c89 100644
--- a/firmware/export/config-ondavx747.h
+++ b/firmware/export/config-ondavx747.h
@@ -20,7 +20,7 @@
20 ****************************************************************************/ 20 ****************************************************************************/
21 21
22/* 22/*
23 * This config file is for the Onda VX747(+) 23 * This config file is for the Onda VX747(+)/VX777
24 */ 24 */
25 25
26#define TARGET_TREE /* this target is using the target tree system */ 26#define TARGET_TREE /* this target is using the target tree system */
@@ -29,8 +29,11 @@
29 29
30#ifdef ONDA_VX747P 30#ifdef ONDA_VX747P
31#define MODEL_NAME "Onda VX747+" 31#define MODEL_NAME "Onda VX747+"
32#define MODEL_NUMBER 44 32#define MODEL_NUMBER 54
33/* Define something for camera interface... */ 33/* Define something for camera interface... */
34#elif defined(ONDA_VX777)
35#define MODEL_NAME "Onda VX777"
36#define MODEL_NUMBER 61
34#else 37#else
35#define MODEL_NAME "Onda VX747" 38#define MODEL_NAME "Onda VX747"
36#define MODEL_NUMBER 45 39#define MODEL_NUMBER 45
@@ -87,7 +90,11 @@
87/* Define this if your LCD can be enabled/disabled */ 90/* Define this if your LCD can be enabled/disabled */
88#define HAVE_LCD_ENABLE 91#define HAVE_LCD_ENABLE
89 92
93#ifdef ONDA_VX777
94#define CONFIG_KEYPAD ONDAVX777_PAD
95#else
90#define CONFIG_KEYPAD ONDAVX747_PAD 96#define CONFIG_KEYPAD ONDAVX747_PAD
97#endif
91#define HAVE_TOUCHSCREEN 98#define HAVE_TOUCHSCREEN
92#define HAVE_BUTTON_DATA 99#define HAVE_BUTTON_DATA
93 100