add HAVE_DISK_STORAGE, and use that instead of HAVE_FLASH_STORAGE when checking for...
[kugel-rb.git] / firmware / export / config-recorder.h
blobf6ddb88af618fce97bf5610f800534685db06090
1 /* define this if you use an ATA controller */
2 #define HAVE_ATA
4 #define MODEL_NAME "Archos Recorder"
6 /* define this if you have recording possibility */
7 #define HAVE_RECORDING
9 /* Define bitmask of input sources - recordable bitmask can be defined
10 explicitly if different */
11 #define INPUT_SRC_CAPS (SRC_CAP_MIC | SRC_CAP_LINEIN | SRC_CAP_SPDIF)
13 /* define this if you have a bitmap LCD display */
14 #define HAVE_LCD_BITMAP
16 /* define this if you can flip your LCD */
17 #define HAVE_LCD_FLIP
19 /* define this if you can invert the colours on your LCD */
20 #define HAVE_LCD_INVERT
22 /* define this if you have access to the quickscreen */
23 #define HAVE_QUICKSCREEN
24 /* define this if you have access to the pitchscreen */
25 #define HAVE_PITCHSCREEN
26 /* define this if you have the button bar */
27 #define HAVE_BUTTONBAR
29 /* define this if you would like tagcache to build on this target */
30 #define HAVE_TAGCACHE
32 /* LCD dimensions */
33 #define LCD_WIDTH 112
34 #define LCD_HEIGHT 64
35 #define LCD_DEPTH 1
37 #define LCD_PIXELFORMAT VERTICAL_PACKING
39 /* define this if you have the Recorder's 10-key keyboard */
40 #define CONFIG_KEYPAD RECORDER_PAD
42 /* define this if you have a real-time clock */
43 #define CONFIG_RTC RTC_M41ST84W
45 /* define this if you have RTC RAM available for settings */
46 #define HAVE_RTC_RAM
48 /* The number of bytes reserved for loadable plugins */
49 #define PLUGIN_BUFFER_SIZE 0x8000
51 #define AB_REPEAT_ENABLE 1
53 /* Define this if you have a MAS3587F */
54 #define CONFIG_CODEC MAS3587F
56 /* define this if you have a disk storage, i.e. something
57 that needs spinups and can cause skips when shaked */
58 #define HAVE_DISK_STORAGE
60 /* Define this for LCD backlight available */
61 #define HAVE_BACKLIGHT
63 #define CONFIG_I2C I2C_PLAYREC
65 #define BATTERY_CAPACITY_DEFAULT 1500 /* default battery capacity */
66 #define BATTERY_CAPACITY_MIN 1500 /* min. capacity selectable */
67 #define BATTERY_CAPACITY_MAX 3200 /* max. capacity selectable */
68 #define BATTERY_CAPACITY_INC 50 /* capacity increment */
69 #define BATTERY_TYPES_COUNT 1 /* only one type */
71 /* define this if the unit should not shut down on low battery. */
72 #define NO_LOW_BATTERY_SHUTDOWN
74 /* Software controlled charging */
75 #define CONFIG_CHARGING CHARGING_CONTROL
77 #ifndef SIMULATOR
79 /* Define this if you have a SH7034 */
80 #define CONFIG_CPU SH7034
82 /* Define this if you have ATA power-off control */
83 #define HAVE_ATA_POWER_OFF
85 /* Define this to the CPU frequency */
86 #define CPU_FREQ 11059200
88 /* Offset ( in the firmware file's header ) to the file length */
89 #define FIRMWARE_OFFSET_FILE_LENGTH 0
91 /* Offset ( in the firmware file's header ) to the file CRC */
92 #define FIRMWARE_OFFSET_FILE_CRC 4
94 /* Offset ( in the firmware file's header ) to the real data */
95 #define FIRMWARE_OFFSET_FILE_DATA 6
97 /* The start address index for ROM builds */
98 /* #define ROM_START 0x11010 for behind original Archos */
99 #define ROM_START 0x7010 /* for behind BootBox */
101 /* Software controlled LED */
102 #define CONFIG_LED LED_REAL
104 /* Define this for S/PDIF output available */
105 #define HAVE_SPDIF_OUT
107 #define CONFIG_LCD LCD_SSD1815
109 #define BOOTFILE_EXT "ajz"
110 #define BOOTFILE "ajbrec." BOOTFILE_EXT
111 #define BOOTDIR "/"
113 #endif /* SIMULATOR */
115 #define HAVE_LCD_CONTRAST
117 #define MIN_CONTRAST_SETTING 5
118 #define MAX_CONTRAST_SETTING 63