Fix typo.
[Rockbox.git] / firmware / export / config-recorder.h
blobbb57ba5666b2f8b7688ad450b9822ea201273055
1 /* define this if you have recording possibility */
2 #define HAVE_RECORDING
4 /* Define bitmask of input sources - recordable bitmask can be defined
5 explicitly if different */
6 #define INPUT_SRC_CAPS (SRC_CAP_MIC | SRC_CAP_LINEIN | SRC_CAP_SPDIF)
8 /* define this if you have a bitmap LCD display */
9 #define HAVE_LCD_BITMAP
11 /* define this if you can flip your LCD */
12 #define HAVE_LCD_FLIP
14 /* define this if you can invert the colours on your LCD */
15 #define HAVE_LCD_INVERT
17 /* define this if you have access to the quickscreen */
18 #define HAVE_QUICKSCREEN
19 /* define this if you have access to the pitchscreen */
20 #define HAVE_PITCHSCREEN
22 /* define this if you would like tagcache to build on this target */
23 #define HAVE_TAGCACHE
25 /* LCD dimensions */
26 #define LCD_WIDTH 112
27 #define LCD_HEIGHT 64
28 #define LCD_DEPTH 1
30 #define LCD_PIXELFORMAT VERTICAL_PACKING
32 /* define this if you have the Recorder's 10-key keyboard */
33 #define CONFIG_KEYPAD RECORDER_PAD
35 /* define this if you have a real-time clock */
36 #define CONFIG_RTC RTC_M41ST84W
38 /* define this if you have RTC RAM available for settings */
39 #define HAVE_RTC_RAM
41 /* The number of bytes reserved for loadable plugins */
42 #define PLUGIN_BUFFER_SIZE 0x8000
44 #define AB_REPEAT_ENABLE 1
46 /* Define this if you have a MAS3587F */
47 #define CONFIG_CODEC MAS3587F
49 /* Define this for LCD backlight available */
50 #define HAVE_BACKLIGHT
52 #define CONFIG_I2C I2C_PLAYREC
54 #define BATTERY_CAPACITY_DEFAULT 1500 /* default battery capacity */
55 #define BATTERY_CAPACITY_MIN 1500 /* min. capacity selectable */
56 #define BATTERY_CAPACITY_MAX 3200 /* max. capacity selectable */
57 #define BATTERY_CAPACITY_INC 50 /* capacity increment */
58 #define BATTERY_TYPES_COUNT 1 /* only one type */
60 /* define this if the unit should not shut down on low battery. */
61 #define NO_LOW_BATTERY_SHUTDOWN
63 /* Software controlled charging */
64 #define CONFIG_CHARGING CHARGING_CONTROL
66 #ifndef SIMULATOR
68 /* Define this if you have a SH7034 */
69 #define CONFIG_CPU SH7034
71 /* Define this if you have ATA power-off control */
72 #define HAVE_ATA_POWER_OFF
74 /* Define this to the CPU frequency */
75 #define CPU_FREQ 11059200
77 /* Offset ( in the firmware file's header ) to the file length */
78 #define FIRMWARE_OFFSET_FILE_LENGTH 0
80 /* Offset ( in the firmware file's header ) to the file CRC */
81 #define FIRMWARE_OFFSET_FILE_CRC 4
83 /* Offset ( in the firmware file's header ) to the real data */
84 #define FIRMWARE_OFFSET_FILE_DATA 6
86 /* The start address index for ROM builds */
87 /* #define ROM_START 0x11010 for behind original Archos */
88 #define ROM_START 0x7010 /* for behind BootBox */
90 /* Software controlled LED */
91 #define CONFIG_LED LED_REAL
93 /* Define this for S/PDIF output available */
94 #define HAVE_SPDIF_OUT
96 #define CONFIG_LCD LCD_SSD1815
98 #define BOOTFILE_EXT "ajz"
99 #define BOOTFILE "ajbrec." BOOTFILE_EXT
100 #define BOOTDIR "/"
102 #endif /* SIMULATOR */