Minor quickscreen and pitchscreen fixes
[kugel-rb.git] / firmware / export / config-recorder.h
blobff74eef402ccd7a0f6de32aaa5da3c1b1f1c402a
1 /* define this if you use an ATA controller */
2 #define CONFIG_STORAGE STORAGE_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_PIXEL_ASPECT_WIDTH 4
38 #define LCD_PIXEL_ASPECT_HEIGHT 5
40 #define LCD_PIXELFORMAT VERTICAL_PACKING
42 /* define this if you have the Recorder's 10-key keyboard */
43 #define CONFIG_KEYPAD RECORDER_PAD
45 /* define this if you have a real-time clock */
46 #define CONFIG_RTC RTC_M41ST84W
48 /* define this if you have RTC RAM available for settings */
49 #define HAVE_RTC_RAM
51 /* The number of bytes reserved for loadable plugins */
52 #define PLUGIN_BUFFER_SIZE 0x8000
54 #define AB_REPEAT_ENABLE 1
56 /* Define this if you have a MAS3587F */
57 #define CONFIG_CODEC MAS3587F
59 /* define this if you have a disk storage, i.e. something
60 that needs spinups and can cause skips when shaked */
61 #define HAVE_DISK_STORAGE
63 /* Define this for LCD backlight available */
64 #define HAVE_BACKLIGHT
66 #define CONFIG_I2C I2C_PLAYREC
68 #define BATTERY_CAPACITY_DEFAULT 1500 /* default battery capacity */
69 #define BATTERY_CAPACITY_MIN 1500 /* min. capacity selectable */
70 #define BATTERY_CAPACITY_MAX 3200 /* max. capacity selectable */
71 #define BATTERY_CAPACITY_INC 50 /* capacity increment */
72 #define BATTERY_TYPES_COUNT 1 /* only one type */
74 /* define this if the unit should not shut down on low battery. */
75 #define NO_LOW_BATTERY_SHUTDOWN
77 /* Software controlled charging */
78 #define CONFIG_CHARGING CHARGING_TARGET
80 #ifndef SIMULATOR
82 /* Define this if you have a SH7034 */
83 #define CONFIG_CPU SH7034
85 /* Define this if you have ATA power-off control */
86 #define HAVE_ATA_POWER_OFF
88 /* Define this to the CPU frequency */
89 #define CPU_FREQ 11059200
91 /* Offset ( in the firmware file's header ) to the file length */
92 #define FIRMWARE_OFFSET_FILE_LENGTH 0
94 /* Offset ( in the firmware file's header ) to the file CRC */
95 #define FIRMWARE_OFFSET_FILE_CRC 4
97 /* Offset ( in the firmware file's header ) to the real data */
98 #define FIRMWARE_OFFSET_FILE_DATA 6
100 /* The start address index for ROM builds */
101 /* #define ROM_START 0x11010 for behind original Archos */
102 #define ROM_START 0x7010 /* for behind BootBox */
104 /* Software controlled LED */
105 #define CONFIG_LED LED_REAL
107 /* Define this for S/PDIF output available */
108 #define HAVE_SPDIF_OUT
110 #define CONFIG_LCD LCD_SSD1815
112 #define BOOTFILE_EXT "ajz"
113 #define BOOTFILE "ajbrec." BOOTFILE_EXT
114 #define BOOTDIR "/"
116 #endif /* SIMULATOR */
118 #define HAVE_LCD_CONTRAST
120 #define MIN_CONTRAST_SETTING 5
121 #define MAX_CONTRAST_SETTING 63