diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2020-07-15 19:40:55 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2020-07-24 21:20:13 +0000 |
commit | 092c340a2062fa98b7387fc5fd63578ddae7d0b6 (patch) | |
tree | 98ec96946eeb2ae709cb0528cc6998e21bb9b290 /firmware/export/config/archosrecorderv2.h | |
parent | 17f7cc92c258bc456a27c3e7c5a19c9409851879 (diff) | |
download | rockbox-092c340a2062fa98b7387fc5fd63578ddae7d0b6.tar.gz rockbox-092c340a2062fa98b7387fc5fd63578ddae7d0b6.zip |
[1/4] Remove SH support and all archos targets
This removes all code specific to SH targets
Change-Id: I7980523785d2596e65c06430f4638eec74a06061
Diffstat (limited to 'firmware/export/config/archosrecorderv2.h')
-rw-r--r-- | firmware/export/config/archosrecorderv2.h | 147 |
1 files changed, 0 insertions, 147 deletions
diff --git a/firmware/export/config/archosrecorderv2.h b/firmware/export/config/archosrecorderv2.h deleted file mode 100644 index 4640eae247..0000000000 --- a/firmware/export/config/archosrecorderv2.h +++ /dev/null | |||
@@ -1,147 +0,0 @@ | |||
1 | /* define this if you use an ATA controller */ | ||
2 | #define CONFIG_STORAGE STORAGE_ATA | ||
3 | |||
4 | #define MODEL_NAME "Archos Recorder v2" | ||
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 | |||
25 | /* define this if you have the button bar */ | ||
26 | #define HAVE_BUTTONBAR | ||
27 | |||
28 | /* define this if you would like tagcache to build on this target */ | ||
29 | #define HAVE_TAGCACHE | ||
30 | |||
31 | /* LCD dimensions */ | ||
32 | #define LCD_WIDTH 112 | ||
33 | #define LCD_HEIGHT 64 | ||
34 | /* sqrt(112^2 + 64^2) / 1.5 = 85.4 */ | ||
35 | #define LCD_DPI 85 | ||
36 | #define LCD_DEPTH 1 | ||
37 | |||
38 | #define LCD_PIXEL_ASPECT_WIDTH 4 | ||
39 | #define LCD_PIXEL_ASPECT_HEIGHT 5 | ||
40 | |||
41 | #define LCD_PIXELFORMAT VERTICAL_PACKING | ||
42 | |||
43 | /* Display colours, for screenshots and sim (0xRRGGBB) */ | ||
44 | #define LCD_DARKCOLOR 0x000000 | ||
45 | #define LCD_BRIGHTCOLOR 0x5a915a | ||
46 | #define LCD_BL_DARKCOLOR 0x000000 | ||
47 | #define LCD_BL_BRIGHTCOLOR 0x7ee57e | ||
48 | |||
49 | /* define this if you have a Recorder style 10-key keyboard */ | ||
50 | #define CONFIG_KEYPAD RECORDER_PAD | ||
51 | |||
52 | /* Define this to enable morse code input */ | ||
53 | #define HAVE_MORSE_INPUT | ||
54 | |||
55 | /* define this if you have a real-time clock */ | ||
56 | #define CONFIG_RTC RTC_M41ST84W | ||
57 | |||
58 | /* FM recorders can wake up from RTC alarm */ | ||
59 | #define HAVE_RTC_ALARM | ||
60 | |||
61 | /* define this if you have RTC RAM available for settings */ | ||
62 | #define HAVE_RTC_RAM | ||
63 | |||
64 | /* Define this if you have a software controlled poweroff */ | ||
65 | #define HAVE_SW_POWEROFF | ||
66 | |||
67 | /* The number of bytes reserved for loadable plugins */ | ||
68 | #define PLUGIN_BUFFER_SIZE 0x8000 | ||
69 | |||
70 | #define AB_REPEAT_ENABLE | ||
71 | |||
72 | /* Define this if you have a MAS3587F */ | ||
73 | #define CONFIG_CODEC MAS3587F | ||
74 | |||
75 | /* define this if you have a disk storage, i.e. something | ||
76 | that needs spinups and can cause skips when shaked */ | ||
77 | #define HAVE_DISK_STORAGE | ||
78 | |||
79 | /* Define this for LCD backlight available */ | ||
80 | #define HAVE_BACKLIGHT | ||
81 | |||
82 | #define CONFIG_I2C I2C_PLAYREC | ||
83 | |||
84 | #define BATTERY_CAPACITY_DEFAULT 2200 /* default battery capacity */ | ||
85 | #define BATTERY_CAPACITY_MIN 2200 /* min. capacity selectable */ | ||
86 | #define BATTERY_CAPACITY_MAX 3200 /* max. capacity selectable */ | ||
87 | #define BATTERY_CAPACITY_INC 50 /* capacity increment */ | ||
88 | #define BATTERY_TYPES_COUNT 1 /* only one type */ | ||
89 | |||
90 | #define CONFIG_BATTERY_MEASURE VOLTAGE_MEASURE | ||
91 | |||
92 | #define CURRENT_NORMAL 145 /* usual current in mA */ | ||
93 | #define CURRENT_RECORD 35 /* additional recording current */ | ||
94 | #define CURRENT_USB 500 /* usual current in mA in USB mode */ | ||
95 | |||
96 | /* Hardware controlled charging with monitoring */ | ||
97 | #define CONFIG_CHARGING CHARGING_MONITOR | ||
98 | |||
99 | /* define this if the unit can be powered or charged via USB */ | ||
100 | #define HAVE_USB_POWER | ||
101 | |||
102 | /* Define this if you have a SH7034 */ | ||
103 | #define CONFIG_CPU SH7034 | ||
104 | |||
105 | /* Define this if you have a FM Recorder key system */ | ||
106 | #define HAVE_FMADC | ||
107 | |||
108 | /* Define this if battery voltage can only be measured with ATA powered */ | ||
109 | #define NEED_ATA_POWER_BATT_MEASURE | ||
110 | |||
111 | /* Define this to the CPU frequency */ | ||
112 | #define CPU_FREQ 11059200 | ||
113 | |||
114 | /* Offset ( in the firmware file's header ) to the file length */ | ||
115 | #define FIRMWARE_OFFSET_FILE_LENGTH 20 | ||
116 | |||
117 | /* Offset ( in the firmware file's header ) to the file CRC */ | ||
118 | #define FIRMWARE_OFFSET_FILE_CRC 6 | ||
119 | |||
120 | /* Offset ( in the firmware file's header ) to the real data */ | ||
121 | #define FIRMWARE_OFFSET_FILE_DATA 24 | ||
122 | |||
123 | #ifndef BOOTLOADER | ||
124 | /* Define this if you have an FM Radio */ | ||
125 | #define CONFIG_TUNER S1A0903X01 | ||
126 | #endif | ||
127 | |||
128 | /* The start address index for ROM builds */ | ||
129 | /* #define ROM_START 0x12010 for behind original Archos */ | ||
130 | #define ROM_START 0x7010 /* for behind BootBox */ | ||
131 | |||
132 | /* Software controlled LED */ | ||
133 | #define CONFIG_LED LED_REAL | ||
134 | |||
135 | #define CONFIG_LCD LCD_SSD1815 | ||
136 | |||
137 | #define BOOTFILE_EXT "ajz" | ||
138 | #define BOOTFILE "ajbrec." BOOTFILE_EXT | ||
139 | #define BOOTDIR "/" | ||
140 | |||
141 | #define HAVE_LCD_CONTRAST | ||
142 | |||
143 | #define MIN_CONTRAST_SETTING 5 | ||
144 | #define MAX_CONTRAST_SETTING 63 | ||
145 | |||
146 | /* Define this if a programmable hotkey is mapped */ | ||
147 | #define HAVE_HOTKEY | ||