diff options
author | Björn Stenberg <bjorn@haxx.se> | 2009-12-07 09:17:48 +0000 |
---|---|---|
committer | Björn Stenberg <bjorn@haxx.se> | 2009-12-07 09:17:48 +0000 |
commit | 36a81eb9b98ac7b1dff0d6658dba0255dd579f5f (patch) | |
tree | 81b81008c4cb69c276329ecd50200887c4da4838 /firmware/export/config-view.h | |
parent | 66fa5b578904f7df61293d6ce5c08966b5db13db (diff) | |
download | rockbox-36a81eb9b98ac7b1dff0d6658dba0255dd579f5f.tar.gz rockbox-36a81eb9b98ac7b1dff0d6658dba0255dd579f5f.zip |
Reverted r23881 mistakenly committed to branch.v3.4
git-svn-id: svn://svn.rockbox.org/rockbox/branches/v3_4@23882 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/config-view.h')
-rw-r--r-- | firmware/export/config-view.h | 205 |
1 files changed, 205 insertions, 0 deletions
diff --git a/firmware/export/config-view.h b/firmware/export/config-view.h new file mode 100644 index 0000000000..4ba5d916ba --- /dev/null +++ b/firmware/export/config-view.h | |||
@@ -0,0 +1,205 @@ | |||
1 | /* | ||
2 | * This config file is for the Sandisk Sansa View | ||
3 | */ | ||
4 | #define TARGET_TREE /* this target is using the target tree system */ | ||
5 | |||
6 | /* For Rolo and boot loader */ | ||
7 | #define MODEL_NUMBER 63 | ||
8 | #define MODEL_NAME "Sandisk View" | ||
9 | |||
10 | #define HW_SAMPR_CAPS (SAMPR_CAP_44) | ||
11 | |||
12 | /* define this if you have recording possibility */ | ||
13 | /* #define HAVE_RECORDING */ | ||
14 | |||
15 | #define REC_SAMPR_CAPS (SAMPR_CAP_22) | ||
16 | #define REC_FREQ_DEFAULT REC_FREQ_22 /* Default is not 44.1kHz */ | ||
17 | #define REC_SAMPR_DEFAULT SAMPR_22 | ||
18 | |||
19 | /* Define bitmask of input sources - recordable bitmask can be defined | ||
20 | explicitly if different */ | ||
21 | #define INPUT_SRC_CAPS (SRC_CAP_MIC | SRC_CAP_FMRADIO) | ||
22 | |||
23 | /* define this if you have a bitmap LCD display */ | ||
24 | #define HAVE_LCD_BITMAP | ||
25 | |||
26 | /* define this if you have a colour LCD */ | ||
27 | #define HAVE_LCD_COLOR | ||
28 | |||
29 | /* define this if you want album art for this target */ | ||
30 | #define HAVE_ALBUMART | ||
31 | |||
32 | /* define this to enable bitmap scaling */ | ||
33 | #define HAVE_BMP_SCALING | ||
34 | |||
35 | /* define this to enable JPEG decoding */ | ||
36 | #define HAVE_JPEG | ||
37 | |||
38 | /* define this if you have a light associated with the buttons */ | ||
39 | #define HAVE_BUTTON_LIGHT | ||
40 | |||
41 | /* define this if you have access to the quickscreen */ | ||
42 | #define HAVE_QUICKSCREEN | ||
43 | |||
44 | /* define this if you have access to the pitchscreen */ | ||
45 | #define HAVE_PITCHSCREEN | ||
46 | |||
47 | /* define this if you would like tagcache to build on this target */ | ||
48 | #define HAVE_TAGCACHE | ||
49 | |||
50 | /* LCD dimensions */ | ||
51 | #define LCD_WIDTH 240 | ||
52 | #define LCD_HEIGHT 320 | ||
53 | #define LCD_DEPTH 16 /* 65536 colours */ | ||
54 | #define LCD_PIXELFORMAT RGB565 /* rgb565 */ | ||
55 | |||
56 | #ifndef BOOTLOADER | ||
57 | /* define this if you have LCD enable function */ | ||
58 | /* #define HAVE_LCD_ENABLE */ | ||
59 | |||
60 | /* Define this if your LCD can be put to sleep. HAVE_LCD_ENABLE | ||
61 | should be defined as well. */ | ||
62 | /* #define HAVE_LCD_SLEEP */ | ||
63 | /* #define HAVE_LCD_SLEEP_SETTING */ | ||
64 | #endif | ||
65 | |||
66 | /* define this if you can flip your LCD */ | ||
67 | #define HAVE_LCD_FLIP | ||
68 | |||
69 | /* define this if you can invert the colours on your LCD */ | ||
70 | #define HAVE_LCD_INVERT | ||
71 | |||
72 | /* #define IRAM_LCDFRAMEBUFFER IDATA_ATTR *//* put the lcd frame buffer in IRAM */ | ||
73 | |||
74 | /* The only difference is that the power/hold is on the left instead of right on Fuze */ | ||
75 | #define CONFIG_KEYPAD SANSA_FUZE_PAD | ||
76 | |||
77 | /* Define this if you do software codec */ | ||
78 | #define CONFIG_CODEC SWCODEC | ||
79 | /* There is no hardware tone control */ | ||
80 | #define HAVE_SW_TONE_CONTROLS | ||
81 | |||
82 | /* define this if you have a real-time clock */ | ||
83 | #ifndef BOOTLOADER | ||
84 | /* #define CONFIG_RTC RTC_ */ | ||
85 | #endif | ||
86 | |||
87 | /* Define this if you have a software controlled poweroff */ | ||
88 | #define HAVE_SW_POWEROFF | ||
89 | |||
90 | /* Required for MicroSD cards */ | ||
91 | #define HAVE_FAT16SUPPORT | ||
92 | |||
93 | /* The number of bytes reserved for loadable codecs */ | ||
94 | #define CODEC_SIZE 0x100000 | ||
95 | |||
96 | /* The number of bytes reserved for loadable plugins */ | ||
97 | #define PLUGIN_BUFFER_SIZE 0x80000 | ||
98 | |||
99 | #define AB_REPEAT_ENABLE 1 | ||
100 | |||
101 | /* Define this for LCD backlight available */ | ||
102 | #define HAVE_BACKLIGHT | ||
103 | /* #define HAVE_BACKLIGHT_BRIGHTNESS */ | ||
104 | |||
105 | /* define this if the unit uses a scrollwheel for navigation */ | ||
106 | #define HAVE_SCROLLWHEEL | ||
107 | /* define to activate advanced wheel acceleration code */ | ||
108 | #define HAVE_WHEEL_ACCELERATION | ||
109 | /* define from which rotation speed [degree/sec] on the acceleration starts */ | ||
110 | #define WHEEL_ACCEL_START 540 | ||
111 | /* define type of acceleration (1 = ^2, 2 = ^3, 3 = ^4) */ | ||
112 | #define WHEEL_ACCELERATION 1 | ||
113 | |||
114 | /* define this if you have a flash memory storage */ | ||
115 | #define HAVE_FLASH_STORAGE | ||
116 | |||
117 | /* define this if the flash memory uses the SecureDigital Memory Card protocol */ | ||
118 | #define CONFIG_STORAGE STORAGE_SD | ||
119 | |||
120 | #define BATTERY_CAPACITY_DEFAULT 750 /* default battery capacity */ | ||
121 | #define BATTERY_CAPACITY_MIN 750 /* min. capacity selectable */ | ||
122 | #define BATTERY_CAPACITY_MAX 750 /* max. capacity selectable */ | ||
123 | #define BATTERY_CAPACITY_INC 0 /* capacity increment */ | ||
124 | #define BATTERY_TYPES_COUNT 1 /* only one type */ | ||
125 | |||
126 | /* Charging implemented in a target-specific algorithm */ | ||
127 | #define CONFIG_CHARGING CHARGING_SIMPLE | ||
128 | #define HAVE_POWEROFF_WHILE_CHARGING | ||
129 | |||
130 | /* define current usage levels */ | ||
131 | #define CURRENT_NORMAL 30 /* Toni's measurements in Nov 2008 */ | ||
132 | #define CURRENT_BACKLIGHT 40 /* Screen is about 20, blue LEDs are another 20, so 40 if both */ | ||
133 | #define CURRENT_RECORD 30 /* flash player, so this is just unboosted current*/ | ||
134 | |||
135 | /* define this if the unit can be powered or charged via USB */ | ||
136 | #define HAVE_USB_POWER | ||
137 | |||
138 | /** Non-simulator section **/ | ||
139 | #ifndef SIMULATOR | ||
140 | |||
141 | /* Define this if you have a PortalPlayer PP5024 */ | ||
142 | #define CONFIG_CPU PP6100 | ||
143 | |||
144 | /* Define this if you want to use the PP5024 i2c interface */ | ||
145 | #define CONFIG_I2C I2C_PP5024 | ||
146 | |||
147 | /* define this if the hardware can be powered off while charging */ | ||
148 | /* Sansa can't be powered off while charging */ | ||
149 | /* #define HAVE_POWEROFF_WHILE_CHARGING */ | ||
150 | |||
151 | /* The start address index for ROM builds */ | ||
152 | #define ROM_START 0x00000000 | ||
153 | |||
154 | /* Define this to the CPU frequency */ | ||
155 | #define CPU_FREQ 250000000 | ||
156 | |||
157 | /* Type of LCD TODO: hopefully the same as the x5 but check this*/ | ||
158 | #define CONFIG_LCD LCD_VIEW | ||
159 | |||
160 | /* Offset ( in the firmware file's header ) to the file CRC and data. These are | ||
161 | only used when loading the old format rockbox.e200 file | ||
162 | Required for bootloader/common.c to compile */ | ||
163 | #define FIRMWARE_OFFSET_FILE_CRC 0x0 | ||
164 | #define FIRMWARE_OFFSET_FILE_DATA 0x8 | ||
165 | |||
166 | #ifndef BOOTLOADER | ||
167 | #define HAVE_MULTIDRIVE | ||
168 | #define NUM_DRIVES 2 | ||
169 | #define HAVE_HOTSWAP | ||
170 | #endif | ||
171 | |||
172 | /* USB On-the-go */ | ||
173 | /* #define CONFIG_USBOTG USBOTG_ARC */ | ||
174 | |||
175 | /* enable these for the experimental usb stack */ | ||
176 | #define HAVE_USBSTACK | ||
177 | #define USE_ROCKBOX_USB | ||
178 | #define USB_VENDOR_ID 0x0781 | ||
179 | #define USB_PRODUCT_ID 0x74b1 | ||
180 | |||
181 | /* Define this if you have adjustable CPU frequency */ | ||
182 | /* #define HAVE_ADJUSTABLE_CPU_FREQ */ | ||
183 | |||
184 | #define MI4_FORMAT | ||
185 | #define BOOTFILE_EXT "mi4" | ||
186 | #define BOOTFILE "rockbox." BOOTFILE_EXT | ||
187 | #define BOOTDIR "/.rockbox" | ||
188 | |||
189 | #define ICODE_ATTR_TREMOR_NOT_MDCT | ||
190 | |||
191 | #define INCLUDE_TIMEOUT_API | ||
192 | |||
193 | #endif /* SIMULATOR */ | ||
194 | |||
195 | /** Port-specific settings **/ | ||
196 | |||
197 | /* Main LCD backlight brightness range and defaults */ | ||
198 | #define MIN_BRIGHTNESS_SETTING 1 | ||
199 | #define MAX_BRIGHTNESS_SETTING 12 | ||
200 | #define DEFAULT_BRIGHTNESS_SETTING 6 | ||
201 | |||
202 | /* Default recording levels */ | ||
203 | #define DEFAULT_REC_MIC_GAIN 23 | ||
204 | #define DEFAULT_REC_LEFT_GAIN 23 | ||
205 | #define DEFAULT_REC_RIGHT_GAIN 23 | ||