Use bitmasks to define which inputs are available. Makes it easier to remove old...
[kugel-rb.git] / firmware / export / config-recorder.h
blob29f187fdd2352895a2c7ef00c7c47732964d4875
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 */
56 #ifndef SIMULATOR
58 /* Define this if you have a SH7034 */
59 #define CONFIG_CPU SH7034
61 /* Define this if you have ATA power-off control */
62 #define HAVE_ATA_POWER_OFF
64 /* Define this if you need to power on ATA */
65 #define NEEDS_ATA_POWER_ON
67 /* Define this to the CPU frequency */
68 #define CPU_FREQ 11059200
70 /* Type of mobile power */
71 #define CONFIG_BATTERY BATT_4AA_NIMH
72 #define BATTERY_CAPACITY_MIN 1500 /* min. capacity selectable */
73 #define BATTERY_CAPACITY_MAX 3200 /* max. capacity selectable */
74 #define BATTERY_CAPACITY_INC 50 /* capacity increment */
75 #define BATTERY_TYPES_COUNT 1 /* only one type */
76 #define BATTERY_SCALE_FACTOR 6465
78 /* Define this if you control power on PBDR (instead of PADR) */
79 #define HAVE_POWEROFF_ON_PBDR
81 /* Offset ( in the firmware file's header ) to the file length */
82 #define FIRMWARE_OFFSET_FILE_LENGTH 0
84 /* Offset ( in the firmware file's header ) to the file CRC */
85 #define FIRMWARE_OFFSET_FILE_CRC 4
87 /* Offset ( in the firmware file's header ) to the real data */
88 #define FIRMWARE_OFFSET_FILE_DATA 6
90 /* Software controlled charging */
91 #define CONFIG_CHARGING CHARGING_CONTROL
93 /* The start address index for ROM builds */
94 /* #define ROM_START 0x11010 for behind original Archos */
95 #define ROM_START 0x7010 /* for behind BootBox */
97 /* Software controlled LED */
98 #define CONFIG_LED LED_REAL
100 /* Define this for S/PDIF output available */
101 #define HAVE_SPDIF_OUT
103 #define CONFIG_LCD LCD_SSD1815
105 #define BOOTFILE_EXT "ajz"
106 #define BOOTFILE "ajbrec." BOOTFILE_EXT
107 #define BOOTDIR "/"
109 #endif /* SIMULATOR */