Revert my filetypes commits from today. the nvram buffer is 44bytes of which 43 are...
[Rockbox.git] / firmware / export / config-recorderv2.h
blobb534be568f977fd7955776d868f1fb1653b0ed83
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 a Recorder style 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 /* Define this if you have a software controlled poweroff */
42 #define HAVE_SW_POWEROFF
44 /* The number of bytes reserved for loadable plugins */
45 #define PLUGIN_BUFFER_SIZE 0x8000
47 #define AB_REPEAT_ENABLE 1
49 /* Define this if you have a MAS3587F */
50 #define CONFIG_CODEC MAS3587F
52 /* Define this for LCD backlight available */
53 #define HAVE_BACKLIGHT
55 #define CONFIG_I2C I2C_PLAYREC
57 #define BATTERY_CAPACITY_DEFAULT 2200 /* default battery capacity */
59 #ifndef SIMULATOR
61 /* Define this if you have a SH7034 */
62 #define CONFIG_CPU SH7034
64 /* Define this if you have a FM Recorder key system */
65 #define HAVE_FMADC
67 /* Define this if you need to power on ATA */
68 #define NEEDS_ATA_POWER_ON
70 /* Define this if battery voltage can only be measured with ATA powered */
71 #define NEED_ATA_POWER_BATT_MEASURE
73 /* Define this to the CPU frequency */
74 #define CPU_FREQ 11059200
76 /* Type of mobile power */
77 #define CONFIG_BATTERY BATT_LIION2200
78 #define BATTERY_CAPACITY_MIN 2200 /* 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 /* Battery scale factor (guessed, seems to be 1,25 * value from recorder) */
83 #define BATTERY_SCALE_FACTOR 8081
85 /* Define this if you control power on PB5 (instead of the OFF button) */
86 #define HAVE_POWEROFF_ON_PB5
88 /* Offset ( in the firmware file's header ) to the file length */
89 #define FIRMWARE_OFFSET_FILE_LENGTH 20
91 /* Offset ( in the firmware file's header ) to the file CRC */
92 #define FIRMWARE_OFFSET_FILE_CRC 6
94 /* Offset ( in the firmware file's header ) to the real data */
95 #define FIRMWARE_OFFSET_FILE_DATA 24
97 /* FM recorders can wake up from RTC alarm */
98 #define HAVE_RTC_ALARM
100 /* Define this if you have an FM Radio */
101 #define CONFIG_TUNER S1A0903X01
103 /* Hardware controlled charging with monitoring */
104 #define CONFIG_CHARGING CHARGING_MONITOR
106 /* The start address index for ROM builds */
107 /* #define ROM_START 0x12010 for behind original Archos */
108 #define ROM_START 0x7010 /* for behind BootBox */
110 /* Software controlled LED */
111 #define CONFIG_LED LED_REAL
113 /* define this if the unit can be powered or charged via USB */
114 #define HAVE_USB_POWER
116 #define CONFIG_LCD LCD_SSD1815
118 #define BOOTFILE_EXT "ajz"
119 #define BOOTFILE "ajbrec." BOOTFILE_EXT
120 #define BOOTDIR "/"
122 #endif /* SIMULATOR */