summaryrefslogtreecommitdiff
path: root/firmware/export/config/archosrecorder.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/config/archosrecorder.h')
-rw-r--r--firmware/export/config/archosrecorder.h132
1 files changed, 132 insertions, 0 deletions
diff --git a/firmware/export/config/archosrecorder.h b/firmware/export/config/archosrecorder.h
new file mode 100644
index 0000000000..ef9f523c49
--- /dev/null
+++ b/firmware/export/config/archosrecorder.h
@@ -0,0 +1,132 @@
1/* define this if you use an ATA controller */
2#define CONFIG_STORAGE STORAGE_ATA
3
4#define MODEL_NAME "Archos Recorder"
5
6/* define this if you have recording possibility */
7#define HAVE_RECORDING
8
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)
12
13/* define this if you have a bitmap LCD display */
14#define HAVE_LCD_BITMAP
15
16/* define this if you can flip your LCD */
17#define HAVE_LCD_FLIP
18
19/* define this if you can invert the colours on your LCD */
20#define HAVE_LCD_INVERT
21
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
28
29/* define this if you would like tagcache to build on this target */
30#define HAVE_TAGCACHE
31
32/* LCD dimensions */
33#define LCD_WIDTH 112
34#define LCD_HEIGHT 64
35#define LCD_DEPTH 1
36
37#define LCD_PIXEL_ASPECT_WIDTH 4
38#define LCD_PIXEL_ASPECT_HEIGHT 5
39
40#define LCD_PIXELFORMAT VERTICAL_PACKING
41
42/* Display colours, for screenshots and sim (0xRRGGBB) */
43#define LCD_DARKCOLOR 0x000000
44#define LCD_BRIGHTCOLOR 0x5a915a
45#define LCD_BL_DARKCOLOR 0x000000
46#define LCD_BL_BRIGHTCOLOR 0x7ee57e
47
48/* define this if you have the Recorder's 10-key keyboard */
49#define CONFIG_KEYPAD RECORDER_PAD
50
51/* Define this to enable morse code input */
52#define HAVE_MORSE_INPUT
53
54/* define this if you have a real-time clock */
55#define CONFIG_RTC RTC_M41ST84W
56
57/* define this if you have RTC RAM available for settings */
58#define HAVE_RTC_RAM
59
60/* The number of bytes reserved for loadable plugins */
61#define PLUGIN_BUFFER_SIZE 0x8000
62
63#define AB_REPEAT_ENABLE 1
64
65/* Define this if you have a MAS3587F */
66#define CONFIG_CODEC MAS3587F
67
68/* define this if you have a disk storage, i.e. something
69 that needs spinups and can cause skips when shaked */
70#define HAVE_DISK_STORAGE
71
72/* Define this for LCD backlight available */
73#define HAVE_BACKLIGHT
74
75#define CONFIG_I2C I2C_PLAYREC
76
77#define BATTERY_CAPACITY_DEFAULT 1500 /* default battery capacity */
78#define BATTERY_CAPACITY_MIN 1500 /* min. capacity selectable */
79#define BATTERY_CAPACITY_MAX 3200 /* max. capacity selectable */
80#define BATTERY_CAPACITY_INC 50 /* capacity increment */
81#define BATTERY_TYPES_COUNT 1 /* only one type */
82
83#define CURRENT_NORMAL 145 /* usual current in mA */
84#define CURRENT_RECORD 35 /* additional recording current */
85#define CURRENT_USB 500 /* usual current in mA in USB mode */
86
87/* define this if the unit should not shut down on low battery. */
88#define NO_LOW_BATTERY_SHUTDOWN
89
90/* Software controlled charging */
91#define CONFIG_CHARGING CHARGING_TARGET
92
93/* Define this if you have a SH7034 */
94#define CONFIG_CPU SH7034
95
96/* Define this if you have ATA power-off control */
97#define HAVE_ATA_POWER_OFF
98
99/* Define this to the CPU frequency */
100#define CPU_FREQ 11059200
101
102/* Offset ( in the firmware file's header ) to the file length */
103#define FIRMWARE_OFFSET_FILE_LENGTH 0
104
105/* Offset ( in the firmware file's header ) to the file CRC */
106#define FIRMWARE_OFFSET_FILE_CRC 4
107
108/* Offset ( in the firmware file's header ) to the real data */
109#define FIRMWARE_OFFSET_FILE_DATA 6
110
111/* The start address index for ROM builds */
112/* #define ROM_START 0x11010 for behind original Archos */
113#define ROM_START 0x7010 /* for behind BootBox */
114
115/* Software controlled LED */
116#define CONFIG_LED LED_REAL
117
118/* Define this for S/PDIF output available */
119#define HAVE_SPDIF_OUT
120
121#define CONFIG_LCD LCD_SSD1815
122
123#define BOOTFILE_EXT "ajz"
124#define BOOTFILE "ajbrec." BOOTFILE_EXT
125#define BOOTDIR "/"
126
127#define HAVE_LCD_CONTRAST
128
129#define MIN_CONTRAST_SETTING 5
130#define MAX_CONTRAST_SETTING 63
131
132#define HAVE_SERIAL