add global proxy / cache settings to httpget class. This removes the need of passing...
[Rockbox.git] / firmware / export / config-player.h
blobb9e3035951f96ca4b9db7f36c4801d9e68dd62b9
1 /* define this if you have a charcell LCD display */
2 #define HAVE_LCD_CHARCELLS
4 /* define this if you would like tagcache to build on this target */
5 #define HAVE_TAGCACHE
7 #define LCD_WIDTH 11
8 #define LCD_HEIGHT 2
9 #define LCD_DEPTH 1
10 #define SIM_LCD_WIDTH 132 /* pixels */
11 #define SIM_LCD_HEIGHT 64 /* pixels */
13 /* define this if you have the Player's keyboard */
14 #define CONFIG_KEYPAD PLAYER_PAD
16 /* The number of bytes reserved for loadable plugins */
17 #define PLUGIN_BUFFER_SIZE 0x8000
19 #define AB_REPEAT_ENABLE 1
21 /* Define this if you have a MAS3507D */
22 #define CONFIG_CODEC MAS3507D
24 /* Define this if you have a DAC3550A */
25 #define HAVE_DAC3550A
27 /* Define this for LCD backlight available */
28 #define HAVE_BACKLIGHT
30 #define BATTERY_CAPACITY_DEFAULT 1500 /* default battery capacity */
31 #define BATTERY_CAPACITY_MIN 1500 /* min. capacity selectable */
32 #define BATTERY_CAPACITY_MAX 3200 /* max. capacity selectable */
33 #define BATTERY_CAPACITY_INC 50 /* capacity increment */
34 #define BATTERY_TYPES_COUNT 1 /* only one type */
36 /* define this if the unit should not shut down on low battery. */
37 #define NO_LOW_BATTERY_SHUTDOWN
39 /* Hardware controlled charging */
40 #define CONFIG_CHARGING CHARGING_SIMPLE
42 #ifndef SIMULATOR
44 /* Define this if you have a SH7034 */
45 #define CONFIG_CPU SH7034
47 /* Uncomment this if you want to enable ATA power-off control.
48 * Attention, some players crash when ATA power-off is enabled! */
49 //#define HAVE_ATA_POWER_OFF
51 /* Define this if you control ata power player style
52 (with PB4, new player only) */
53 #define ATA_POWER_PLAYERSTYLE
55 /* Define this to the CPU frequency */
56 #define CPU_FREQ 12000000 /* cycle time ~83.3ns */
58 /* Define this if you must discharge the data line by driving it low
59 and then set it to input to see if it stays low or goes high */
60 #define HAVE_I2C_LOW_FIRST
62 #define CONFIG_I2C I2C_PLAYREC
64 /* Offset ( in the firmware file's header ) to the file length */
65 #define FIRMWARE_OFFSET_FILE_LENGTH 0
67 /* Offset ( in the firmware file's header ) to the file CRC */
68 #define FIRMWARE_OFFSET_FILE_CRC 4
70 /* Offset ( in the firmware file's header ) to the real data */
71 #define FIRMWARE_OFFSET_FILE_DATA 6
73 /* The start address index for ROM builds */
74 /* #define ROM_START 0xD010 for behind original Archos */
75 #define ROM_START 0x6010 /* for behind BootBox */
77 /* Software controlled LED */
78 #define CONFIG_LED LED_REAL
80 #define CONFIG_LCD LCD_SSD1801
82 #define BOOTFILE_EXT "mod"
83 #define BOOTFILE "archos." BOOTFILE_EXT
84 #define BOOTDIR "/"
86 #endif /* SIMULATOR */
88 #define HAVE_LCD_CONTRAST
90 #define MIN_CONTRAST_SETTING 5
91 #define MAX_CONTRAST_SETTING 31
92 #define DEFAULT_CONTRAST_SETTING 30