Colour targets: Revert an optimisation from almost 18 months ago that actually turned...
[Rockbox.git] / firmware / export / config-recorder.h
blobbd9bd07d5826d8f603344f8f3aec685de7ced06a
1 /* define this if you use an ATA controller */
2 #define HAVE_ATA
4 /* define this if you have recording possibility */
5 #define HAVE_RECORDING
7 /* Define bitmask of input sources - recordable bitmask can be defined
8 explicitly if different */
9 #define INPUT_SRC_CAPS (SRC_CAP_MIC | SRC_CAP_LINEIN | SRC_CAP_SPDIF)
11 /* define this if you have a bitmap LCD display */
12 #define HAVE_LCD_BITMAP
14 /* define this if you can flip your LCD */
15 #define HAVE_LCD_FLIP
17 /* define this if you can invert the colours on your LCD */
18 #define HAVE_LCD_INVERT
20 /* define this if you have access to the quickscreen */
21 #define HAVE_QUICKSCREEN
22 /* define this if you have access to the pitchscreen */
23 #define HAVE_PITCHSCREEN
24 /* define this if you have the button bar */
25 #define HAVE_BUTTONBAR
27 /* define this if you would like tagcache to build on this target */
28 #define HAVE_TAGCACHE
30 /* LCD dimensions */
31 #define LCD_WIDTH 112
32 #define LCD_HEIGHT 64
33 #define LCD_DEPTH 1
35 #define LCD_PIXELFORMAT VERTICAL_PACKING
37 /* define this if you have the Recorder's 10-key keyboard */
38 #define CONFIG_KEYPAD RECORDER_PAD
40 /* define this if you have a real-time clock */
41 #define CONFIG_RTC RTC_M41ST84W
43 /* define this if you have RTC RAM available for settings */
44 #define HAVE_RTC_RAM
46 /* The number of bytes reserved for loadable plugins */
47 #define PLUGIN_BUFFER_SIZE 0x8000
49 #define AB_REPEAT_ENABLE 1
51 /* Define this if you have a MAS3587F */
52 #define CONFIG_CODEC MAS3587F
54 /* Define this for LCD backlight available */
55 #define HAVE_BACKLIGHT
57 #define CONFIG_I2C I2C_PLAYREC
59 #define BATTERY_CAPACITY_DEFAULT 1500 /* default battery capacity */
60 #define BATTERY_CAPACITY_MIN 1500 /* min. capacity selectable */
61 #define BATTERY_CAPACITY_MAX 3200 /* max. capacity selectable */
62 #define BATTERY_CAPACITY_INC 50 /* capacity increment */
63 #define BATTERY_TYPES_COUNT 1 /* only one type */
65 /* define this if the unit should not shut down on low battery. */
66 #define NO_LOW_BATTERY_SHUTDOWN
68 /* Software controlled charging */
69 #define CONFIG_CHARGING CHARGING_CONTROL
71 #ifndef SIMULATOR
73 /* Define this if you have a SH7034 */
74 #define CONFIG_CPU SH7034
76 /* Define this if you have ATA power-off control */
77 #define HAVE_ATA_POWER_OFF
79 /* Define this to the CPU frequency */
80 #define CPU_FREQ 11059200
82 /* Offset ( in the firmware file's header ) to the file length */
83 #define FIRMWARE_OFFSET_FILE_LENGTH 0
85 /* Offset ( in the firmware file's header ) to the file CRC */
86 #define FIRMWARE_OFFSET_FILE_CRC 4
88 /* Offset ( in the firmware file's header ) to the real data */
89 #define FIRMWARE_OFFSET_FILE_DATA 6
91 /* The start address index for ROM builds */
92 /* #define ROM_START 0x11010 for behind original Archos */
93 #define ROM_START 0x7010 /* for behind BootBox */
95 /* Software controlled LED */
96 #define CONFIG_LED LED_REAL
98 /* Define this for S/PDIF output available */
99 #define HAVE_SPDIF_OUT
101 #define CONFIG_LCD LCD_SSD1815
103 #define BOOTFILE_EXT "ajz"
104 #define BOOTFILE "ajbrec." BOOTFILE_EXT
105 #define BOOTDIR "/"
107 #endif /* SIMULATOR */
109 #define HAVE_LCD_CONTRAST
111 #define MIN_CONTRAST_SETTING 5
112 #define MAX_CONTRAST_SETTING 63