summaryrefslogtreecommitdiff
path: root/firmware/export/config-creativezvm.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/config-creativezvm.h')
-rw-r--r--firmware/export/config-creativezvm.h22
1 files changed, 14 insertions, 8 deletions
diff --git a/firmware/export/config-creativezvm.h b/firmware/export/config-creativezvm.h
index 740997a991..33a5105df7 100644
--- a/firmware/export/config-creativezvm.h
+++ b/firmware/export/config-creativezvm.h
@@ -56,8 +56,13 @@
56/* choose the lcd orientation. both work */ 56/* choose the lcd orientation. both work */
57#define CONFIG_ORIENTATION SCREEN_PORTRAIT 57#define CONFIG_ORIENTATION SCREEN_PORTRAIT
58 58
59#ifdef ZEN_VISION
60#define LCD_WIDTH 640
61#define LCD_HEIGHT 480
62#else
59#define LCD_WIDTH 320 63#define LCD_WIDTH 320
60#define LCD_HEIGHT 240 64#define LCD_HEIGHT 240
65#endif
61 66
62#define LCD_DEPTH 16 /* 65k colours */ 67#define LCD_DEPTH 16 /* 65k colours */
63#define LCD_PIXELFORMAT RGB565 /* rgb565 */ 68#define LCD_PIXELFORMAT RGB565 /* rgb565 */
@@ -105,7 +110,7 @@
105#define CONFIG_I2C I2C_DM320 110#define CONFIG_I2C I2C_DM320
106 111
107/* TLV320 has no tone controls, so we use the software ones */ 112/* TLV320 has no tone controls, so we use the software ones */
108//#define HAVE_SW_TONE_CONTROLS 113#define HAVE_SW_TONE_CONTROLS
109 114
110/*#define HW_SAMPR_CAPS (SAMPR_CAP_88 | SAMPR_CAP_44 | SAMPR_CAP_22 | \ 115/*#define HW_SAMPR_CAPS (SAMPR_CAP_88 | SAMPR_CAP_44 | SAMPR_CAP_22 | \
111 SAMPR_CAP_11)*/ 116 SAMPR_CAP_11)*/
@@ -134,7 +139,7 @@
134#define CPU_FREQ 16934400 139#define CPU_FREQ 16934400
135 140
136/* Define this if you have ATA power-off control */ 141/* Define this if you have ATA power-off control */
137//#define HAVE_ATA_POWER_OFF 142#define HAVE_ATA_POWER_OFF
138 143
139/* Virtual LED (icon) */ 144/* Virtual LED (icon) */
140#define CONFIG_LED LED_VIRTUAL 145#define CONFIG_LED LED_VIRTUAL
@@ -151,10 +156,12 @@
151/* Define this if you have adjustable CPU frequency */ 156/* Define this if you have adjustable CPU frequency */
152/* #define HAVE_ADJUSTABLE_CPU_FREQ */ 157/* #define HAVE_ADJUSTABLE_CPU_FREQ */
153 158
154#ifndef ZEN_VISION 159#ifdef ZEN_VISION
155#define BOOTFILE_EXT "zvm" 160 #define BOOTFILE_EXT "zv"
161#elseif defined(ZVM_60GB)
162 #define BOOTFILE_EXT "zvm60"
156#else 163#else
157#define BOOTFILE_EXT "zv" 164 #define BOOTFILE_EXT "zvm"
158#endif 165#endif
159#define BOOTFILE "rockbox." BOOTFILE_EXT 166#define BOOTFILE "rockbox." BOOTFILE_EXT
160#define BOOTDIR "/.rockbox" 167#define BOOTDIR "/.rockbox"
@@ -164,13 +171,12 @@
164#define USB_VENDOR_ID 0x041e 171#define USB_VENDOR_ID 0x041e
165#define USB_PRODUCT_ID 0x4133 172#define USB_PRODUCT_ID 0x4133
166 173
167//DEBUGGING! 174/*DEBUGGING!*/
168#ifdef BOOTLOADER 175#ifdef BOOTLOADER
169#define THREAD_EXTRA_CHECKS 1 176#define THREAD_EXTRA_CHECKS 1
170#define DEBUG 1 177#define DEBUG 1
171#define debug(msg) printf(msg) 178#define debug(msg) printf(msg)
172#define BUTTON_DEBUG 179#define BUTTON_DEBUG
173
174#define DO_THREAD_TEST
175#endif 180#endif
181
176#endif 182#endif