summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafaël Carré <rafael.carre@gmail.com>2010-07-18 18:13:53 +0000
committerRafaël Carré <rafael.carre@gmail.com>2010-07-18 18:13:53 +0000
commit7d4414ebd8ba8bb79359a72ccd7d0b71fdb0fd36 (patch)
tree23f93ba12642249730c9c78b554bb5b313574d06
parentbff5e3d7ab853b01f56a83c15b49faed720f2386 (diff)
downloadrockbox-7d4414ebd8ba8bb79359a72ccd7d0b71fdb0fd36.tar.gz
rockbox-7d4414ebd8ba8bb79359a72ccd7d0b71fdb0fd36.zip
AB_REPEAT_ENABLE was never defined to 2
There's only 2 possibilities: defined or undefined git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27483 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/abrepeat.h6
-rw-r--r--apps/gui/statusbar.c2
-rw-r--r--apps/gui/wps.c8
-rw-r--r--firmware/export/config/application.h2
-rw-r--r--firmware/export/config/archosfmrecorder.h2
-rw-r--r--firmware/export/config/archosondiofm.h2
-rw-r--r--firmware/export/config/archosondiosp.h2
-rw-r--r--firmware/export/config/archosplayer.h2
-rw-r--r--firmware/export/config/archosrecorder.h2
-rw-r--r--firmware/export/config/archosrecorderv2.h2
-rw-r--r--firmware/export/config/cowond2.h2
-rw-r--r--firmware/export/config/gigabeatfx.h2
-rw-r--r--firmware/export/config/gogearhdd1630.h2
-rw-r--r--firmware/export/config/gogearhdd6330.h2
-rw-r--r--firmware/export/config/gogearsa9200.h2
-rw-r--r--firmware/export/config/iaudio7.h2
-rw-r--r--firmware/export/config/iaudiom3.h2
-rw-r--r--firmware/export/config/iaudiom5.h2
-rw-r--r--firmware/export/config/iaudiox5.h2
-rw-r--r--firmware/export/config/ipod4g.h2
-rw-r--r--firmware/export/config/ipodcolor.h2
-rw-r--r--firmware/export/config/ipodmini1g.h2
-rw-r--r--firmware/export/config/ipodmini2g.h2
-rw-r--r--firmware/export/config/ipodnano1g.h2
-rw-r--r--firmware/export/config/ipodnano2g.h2
-rw-r--r--firmware/export/config/ipodvideo.h2
-rw-r--r--firmware/export/config/iriverh10.h4
-rw-r--r--firmware/export/config/iriverh100.h2
-rw-r--r--firmware/export/config/iriverh10_5gb.h4
-rw-r--r--firmware/export/config/iriverh120.h2
-rw-r--r--firmware/export/config/iriverh300.h2
-rw-r--r--firmware/export/config/logikdax.h2
-rw-r--r--firmware/export/config/meizum3.h2
-rw-r--r--firmware/export/config/meizum6sl.h2
-rw-r--r--firmware/export/config/meizum6sp.h2
-rw-r--r--firmware/export/config/mrobe100.h2
-rw-r--r--firmware/export/config/samsungyh820.h2
-rw-r--r--firmware/export/config/samsungyh920.h2
-rw-r--r--firmware/export/config/samsungyh925.h2
-rw-r--r--firmware/export/config/samsungyps3.h2
-rw-r--r--firmware/export/config/sansac100.h2
-rw-r--r--firmware/export/config/sansac200.h2
-rw-r--r--firmware/export/config/sansac200v2.h2
-rw-r--r--firmware/export/config/sansaclip.h2
-rw-r--r--firmware/export/config/sansaclipplus.h2
-rw-r--r--firmware/export/config/sansaclipv2.h2
-rw-r--r--firmware/export/config/sansae200.h2
-rw-r--r--firmware/export/config/sansae200v2.h2
-rw-r--r--firmware/export/config/sansafuze.h2
-rw-r--r--firmware/export/config/sansafuzev2.h2
-rw-r--r--firmware/export/config/sansam200.h2
-rw-r--r--firmware/export/config/sansam200v4.h2
-rw-r--r--firmware/export/config/sansaview.h2
-rw-r--r--firmware/export/config/tatungtpj1022.h2
-rw-r--r--firmware/export/config/vibe500.h2
55 files changed, 55 insertions, 69 deletions
diff --git a/apps/abrepeat.h b/apps/abrepeat.h
index 3c9853f2c5..8d5ea9dd66 100644
--- a/apps/abrepeat.h
+++ b/apps/abrepeat.h
@@ -28,9 +28,7 @@
28 28
29#define AB_MARKER_NONE 0 29#define AB_MARKER_NONE 0
30 30
31#if (AB_REPEAT_ENABLE == 1)
32#include "settings.h" 31#include "settings.h"
33#endif
34 32
35void ab_repeat_init(void); 33void ab_repeat_init(void);
36#if 0 /* Currently unused */ 34#if 0 /* Currently unused */
@@ -68,11 +66,7 @@ static inline bool ab_B_marker_set(void)
68 66
69static inline bool ab_repeat_mode_enabled(void) 67static inline bool ab_repeat_mode_enabled(void)
70{ 68{
71#if (AB_REPEAT_ENABLE == 2)
72 return ab_A_marker_set() || ab_B_marker_set();
73#else
74 return global_settings.repeat_mode == REPEAT_AB; 69 return global_settings.repeat_mode == REPEAT_AB;
75#endif
76} 70}
77 71
78static inline bool ab_reached_B_marker(unsigned int song_position) 72static inline bool ab_reached_B_marker(unsigned int song_position)
diff --git a/apps/gui/statusbar.c b/apps/gui/statusbar.c
index 2194b2fca0..73ccfa7762 100644
--- a/apps/gui/statusbar.c
+++ b/apps/gui/statusbar.c
@@ -325,7 +325,7 @@ void gui_statusbar_draw(struct gui_statusbar * bar, bool force_redraw, struct vi
325 case REPEAT_AB: 325 case REPEAT_AB:
326 gui_statusbar_icon_play_mode(display, Icon_RepeatAB); 326 gui_statusbar_icon_play_mode(display, Icon_RepeatAB);
327 break; 327 break;
328#endif /* AB_REPEAT_ENABLE == 1 */ 328#endif /* AB_REPEAT_ENABLE */
329 329
330 case REPEAT_ONE: 330 case REPEAT_ONE:
331 gui_statusbar_icon_play_mode(display, Icon_RepeatOne); 331 gui_statusbar_icon_play_mode(display, Icon_RepeatOne);
diff --git a/apps/gui/wps.c b/apps/gui/wps.c
index 6b5270eb7e..a582afa76b 100644
--- a/apps/gui/wps.c
+++ b/apps/gui/wps.c
@@ -888,10 +888,6 @@ long gui_wps_show(void)
888 { 888 {
889 ab_jump_to_A_marker(); 889 ab_jump_to_A_marker();
890 break; 890 break;
891#if (AB_REPEAT_ENABLE == 2)
892 } else {
893 ab_reset_markers();
894#endif
895 } 891 }
896 } 892 }
897 else 893 else
@@ -915,10 +911,6 @@ long gui_wps_show(void)
915 { 911 {
916 ab_jump_to_A_marker(); 912 ab_jump_to_A_marker();
917 break; 913 break;
918#if (AB_REPEAT_ENABLE == 2)
919 } else {
920 ab_reset_markers();
921#endif
922 } 914 }
923 } 915 }
924 else 916 else
diff --git a/firmware/export/config/application.h b/firmware/export/config/application.h
index 48c384d1a6..a5583ded75 100644
--- a/firmware/export/config/application.h
+++ b/firmware/export/config/application.h
@@ -56,7 +56,7 @@
56/* The number of bytes reserved for loadable plugins */ 56/* The number of bytes reserved for loadable plugins */
57#define PLUGIN_BUFFER_SIZE 0x80000 57#define PLUGIN_BUFFER_SIZE 0x80000
58 58
59#define AB_REPEAT_ENABLE 1 59#define AB_REPEAT_ENABLE
60 60
61/* Define this if you do software codec */ 61/* Define this if you do software codec */
62#define CONFIG_CODEC SWCODEC 62#define CONFIG_CODEC SWCODEC
diff --git a/firmware/export/config/archosfmrecorder.h b/firmware/export/config/archosfmrecorder.h
index b64cc2db01..3e2c7e932e 100644
--- a/firmware/export/config/archosfmrecorder.h
+++ b/firmware/export/config/archosfmrecorder.h
@@ -71,7 +71,7 @@
71#define CONFIG_TUNER S1A0903X01 71#define CONFIG_TUNER S1A0903X01
72#endif 72#endif
73 73
74#define AB_REPEAT_ENABLE 1 74#define AB_REPEAT_ENABLE
75 75
76/* Define this if you have a MAS3587F */ 76/* Define this if you have a MAS3587F */
77#define CONFIG_CODEC MAS3587F 77#define CONFIG_CODEC MAS3587F
diff --git a/firmware/export/config/archosondiofm.h b/firmware/export/config/archosondiofm.h
index 39133ad789..d735f1f0a1 100644
--- a/firmware/export/config/archosondiofm.h
+++ b/firmware/export/config/archosondiofm.h
@@ -41,7 +41,7 @@
41/* Define this to enable morse code input */ 41/* Define this to enable morse code input */
42#define HAVE_MORSE_INPUT 42#define HAVE_MORSE_INPUT
43 43
44#define AB_REPEAT_ENABLE 1 44#define AB_REPEAT_ENABLE
45#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE 45#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE
46 46
47/* define this if you have access to the pitchscreen */ 47/* define this if you have access to the pitchscreen */
diff --git a/firmware/export/config/archosondiosp.h b/firmware/export/config/archosondiosp.h
index 0dac0b2a61..61116033d7 100644
--- a/firmware/export/config/archosondiosp.h
+++ b/firmware/export/config/archosondiosp.h
@@ -34,7 +34,7 @@
34/* Define this to enable morse code input */ 34/* Define this to enable morse code input */
35#define HAVE_MORSE_INPUT 35#define HAVE_MORSE_INPUT
36 36
37#define AB_REPEAT_ENABLE 1 37#define AB_REPEAT_ENABLE
38#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE 38#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE
39 39
40/* define this if you have access to the pitchscreen */ 40/* define this if you have access to the pitchscreen */
diff --git a/firmware/export/config/archosplayer.h b/firmware/export/config/archosplayer.h
index f5e120efef..bc75433950 100644
--- a/firmware/export/config/archosplayer.h
+++ b/firmware/export/config/archosplayer.h
@@ -24,7 +24,7 @@
24/* define this if you have the Player's keyboard */ 24/* define this if you have the Player's keyboard */
25#define CONFIG_KEYPAD PLAYER_PAD 25#define CONFIG_KEYPAD PLAYER_PAD
26 26
27#define AB_REPEAT_ENABLE 1 27#define AB_REPEAT_ENABLE
28#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE 28#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE
29 29
30/* The number of bytes reserved for loadable plugins */ 30/* The number of bytes reserved for loadable plugins */
diff --git a/firmware/export/config/archosrecorder.h b/firmware/export/config/archosrecorder.h
index 38141e3342..f64dd3cf8d 100644
--- a/firmware/export/config/archosrecorder.h
+++ b/firmware/export/config/archosrecorder.h
@@ -60,7 +60,7 @@
60/* The number of bytes reserved for loadable plugins */ 60/* The number of bytes reserved for loadable plugins */
61#define PLUGIN_BUFFER_SIZE 0x8000 61#define PLUGIN_BUFFER_SIZE 0x8000
62 62
63#define AB_REPEAT_ENABLE 1 63#define AB_REPEAT_ENABLE
64 64
65/* Define this if you have a MAS3587F */ 65/* Define this if you have a MAS3587F */
66#define CONFIG_CODEC MAS3587F 66#define CONFIG_CODEC MAS3587F
diff --git a/firmware/export/config/archosrecorderv2.h b/firmware/export/config/archosrecorderv2.h
index 08ee6e83af..e2f3b66a82 100644
--- a/firmware/export/config/archosrecorderv2.h
+++ b/firmware/export/config/archosrecorderv2.h
@@ -66,7 +66,7 @@
66/* The number of bytes reserved for loadable plugins */ 66/* The number of bytes reserved for loadable plugins */
67#define PLUGIN_BUFFER_SIZE 0x8000 67#define PLUGIN_BUFFER_SIZE 0x8000
68 68
69#define AB_REPEAT_ENABLE 1 69#define AB_REPEAT_ENABLE
70 70
71/* Define this if you have a MAS3587F */ 71/* Define this if you have a MAS3587F */
72#define CONFIG_CODEC MAS3587F 72#define CONFIG_CODEC MAS3587F
diff --git a/firmware/export/config/cowond2.h b/firmware/export/config/cowond2.h
index e06e9ea6f8..f9de2768bd 100644
--- a/firmware/export/config/cowond2.h
+++ b/firmware/export/config/cowond2.h
@@ -104,7 +104,7 @@
104/* The number of bytes reserved for loadable plugins */ 104/* The number of bytes reserved for loadable plugins */
105#define PLUGIN_BUFFER_SIZE 0x80000 105#define PLUGIN_BUFFER_SIZE 0x80000
106 106
107#define AB_REPEAT_ENABLE 1 107#define AB_REPEAT_ENABLE
108 108
109/* Define this if you do software codec */ 109/* Define this if you do software codec */
110#define CONFIG_CODEC SWCODEC 110#define CONFIG_CODEC SWCODEC
diff --git a/firmware/export/config/gigabeatfx.h b/firmware/export/config/gigabeatfx.h
index bcb6f73a63..b64f3f5b3b 100644
--- a/firmware/export/config/gigabeatfx.h
+++ b/firmware/export/config/gigabeatfx.h
@@ -104,7 +104,7 @@
104/* The number of bytes reserved for loadable plugins */ 104/* The number of bytes reserved for loadable plugins */
105#define PLUGIN_BUFFER_SIZE 0x80000 105#define PLUGIN_BUFFER_SIZE 0x80000
106 106
107#define AB_REPEAT_ENABLE 1 107#define AB_REPEAT_ENABLE
108 108
109/* Define this if you have the WM8975 audio codec */ 109/* Define this if you have the WM8975 audio codec */
110#define HAVE_WM8751 110#define HAVE_WM8751
diff --git a/firmware/export/config/gogearhdd1630.h b/firmware/export/config/gogearhdd1630.h
index 4ba8d9288b..e4c380f8c6 100644
--- a/firmware/export/config/gogearhdd1630.h
+++ b/firmware/export/config/gogearhdd1630.h
@@ -111,7 +111,7 @@
111/* WM8731 has no tone controls, so we use the software ones */ 111/* WM8731 has no tone controls, so we use the software ones */
112#define HAVE_SW_TONE_CONTROLS 112#define HAVE_SW_TONE_CONTROLS
113 113
114/* TODO: #define AB_REPEAT_ENABLE 1 */ 114/* TODO: #define AB_REPEAT_ENABLE */
115 115
116/* FM Tuner */ 116/* FM Tuner */
117#define CONFIG_TUNER TEA5767 117#define CONFIG_TUNER TEA5767
diff --git a/firmware/export/config/gogearhdd6330.h b/firmware/export/config/gogearhdd6330.h
index 5bcd1c2c1e..2ef8a43227 100644
--- a/firmware/export/config/gogearhdd6330.h
+++ b/firmware/export/config/gogearhdd6330.h
@@ -111,7 +111,7 @@
111/* WM8731 has no tone controls, so we use the software ones */ 111/* WM8731 has no tone controls, so we use the software ones */
112#define HAVE_SW_TONE_CONTROLS 112#define HAVE_SW_TONE_CONTROLS
113 113
114/* TODO: #define AB_REPEAT_ENABLE 1 */ 114/* TODO: #define AB_REPEAT_ENABLE */
115 115
116/* FM Tuner */ 116/* FM Tuner */
117#define CONFIG_TUNER TEA5767 117#define CONFIG_TUNER TEA5767
diff --git a/firmware/export/config/gogearsa9200.h b/firmware/export/config/gogearsa9200.h
index 9de624e454..2d777f1977 100644
--- a/firmware/export/config/gogearsa9200.h
+++ b/firmware/export/config/gogearsa9200.h
@@ -94,7 +94,7 @@
94/* The number of bytes reserved for loadable plugins */ 94/* The number of bytes reserved for loadable plugins */
95#define PLUGIN_BUFFER_SIZE 0x80000 95#define PLUGIN_BUFFER_SIZE 0x80000
96 96
97#define AB_REPEAT_ENABLE 1 97#define AB_REPEAT_ENABLE
98 98
99/* Define this for LCD backlight available */ 99/* Define this for LCD backlight available */
100#define HAVE_BACKLIGHT 100#define HAVE_BACKLIGHT
diff --git a/firmware/export/config/iaudio7.h b/firmware/export/config/iaudio7.h
index 6698e13931..8a04bc06c2 100644
--- a/firmware/export/config/iaudio7.h
+++ b/firmware/export/config/iaudio7.h
@@ -107,7 +107,7 @@
107/* The number of bytes reserved for loadable plugins */ 107/* The number of bytes reserved for loadable plugins */
108#define PLUGIN_BUFFER_SIZE 0x80000 108#define PLUGIN_BUFFER_SIZE 0x80000
109 109
110#define AB_REPEAT_ENABLE 1 110#define AB_REPEAT_ENABLE
111 111
112/* Define this if you do software codec */ 112/* Define this if you do software codec */
113#define CONFIG_CODEC SWCODEC 113#define CONFIG_CODEC SWCODEC
diff --git a/firmware/export/config/iaudiom3.h b/firmware/export/config/iaudiom3.h
index 08d8c39475..6fdf11ca77 100644
--- a/firmware/export/config/iaudiom3.h
+++ b/firmware/export/config/iaudiom3.h
@@ -72,7 +72,7 @@
72 72
73#define CONFIG_KEYPAD IAUDIO_M3_PAD 73#define CONFIG_KEYPAD IAUDIO_M3_PAD
74 74
75#define AB_REPEAT_ENABLE 1 75#define AB_REPEAT_ENABLE
76#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE 76#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE
77 77
78/* Define this if you do software codec */ 78/* Define this if you do software codec */
diff --git a/firmware/export/config/iaudiom5.h b/firmware/export/config/iaudiom5.h
index f3ccbc0622..824744032a 100644
--- a/firmware/export/config/iaudiom5.h
+++ b/firmware/export/config/iaudiom5.h
@@ -89,7 +89,7 @@
89/* Define this to enable morse code input */ 89/* Define this to enable morse code input */
90#define HAVE_MORSE_INPUT 90#define HAVE_MORSE_INPUT
91 91
92#define AB_REPEAT_ENABLE 1 92#define AB_REPEAT_ENABLE
93#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE 93#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE
94 94
95/* Define this if you do software codec */ 95/* Define this if you do software codec */
diff --git a/firmware/export/config/iaudiox5.h b/firmware/export/config/iaudiox5.h
index ea7dfbc87e..998feedb87 100644
--- a/firmware/export/config/iaudiox5.h
+++ b/firmware/export/config/iaudiox5.h
@@ -91,7 +91,7 @@
91/* Define this to enable morse code input */ 91/* Define this to enable morse code input */
92#define HAVE_MORSE_INPUT 92#define HAVE_MORSE_INPUT
93 93
94#define AB_REPEAT_ENABLE 1 94#define AB_REPEAT_ENABLE
95#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE 95#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE
96 96
97/* Define this if you do software codec */ 97/* Define this if you do software codec */
diff --git a/firmware/export/config/ipod4g.h b/firmware/export/config/ipod4g.h
index 2a08a710e7..b0be26d8fc 100644
--- a/firmware/export/config/ipod4g.h
+++ b/firmware/export/config/ipod4g.h
@@ -106,7 +106,7 @@
106/* Define this if you have the WM8975 audio codec */ 106/* Define this if you have the WM8975 audio codec */
107#define HAVE_WM8975 107#define HAVE_WM8975
108 108
109#define AB_REPEAT_ENABLE 1 109#define AB_REPEAT_ENABLE
110#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE 110#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE
111 111
112/* define this if you have a disk storage, i.e. something 112/* define this if you have a disk storage, i.e. something
diff --git a/firmware/export/config/ipodcolor.h b/firmware/export/config/ipodcolor.h
index 2b4276257f..428e1140c7 100644
--- a/firmware/export/config/ipodcolor.h
+++ b/firmware/export/config/ipodcolor.h
@@ -90,7 +90,7 @@
90/* Define this if you have the WM8975 audio codec */ 90/* Define this if you have the WM8975 audio codec */
91#define HAVE_WM8975 91#define HAVE_WM8975
92 92
93#define AB_REPEAT_ENABLE 1 93#define AB_REPEAT_ENABLE
94#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE 94#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE
95 95
96/* define this if you have a disk storage, i.e. something 96/* define this if you have a disk storage, i.e. something
diff --git a/firmware/export/config/ipodmini1g.h b/firmware/export/config/ipodmini1g.h
index 81529a5de5..121a7fc801 100644
--- a/firmware/export/config/ipodmini1g.h
+++ b/firmware/export/config/ipodmini1g.h
@@ -110,7 +110,7 @@
110/* WM8721 has no tone controls, so we use the software ones */ 110/* WM8721 has no tone controls, so we use the software ones */
111#define HAVE_SW_TONE_CONTROLS 111#define HAVE_SW_TONE_CONTROLS
112 112
113#define AB_REPEAT_ENABLE 1 113#define AB_REPEAT_ENABLE
114#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE 114#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE
115 115
116/* define this if you have a disk storage, i.e. something 116/* define this if you have a disk storage, i.e. something
diff --git a/firmware/export/config/ipodmini2g.h b/firmware/export/config/ipodmini2g.h
index 0b6e7636c0..d2be6d1253 100644
--- a/firmware/export/config/ipodmini2g.h
+++ b/firmware/export/config/ipodmini2g.h
@@ -108,7 +108,7 @@
108/* WM8721 has no tone controls, so we use the software ones */ 108/* WM8721 has no tone controls, so we use the software ones */
109#define HAVE_SW_TONE_CONTROLS 109#define HAVE_SW_TONE_CONTROLS
110 110
111#define AB_REPEAT_ENABLE 1 111#define AB_REPEAT_ENABLE
112#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE 112#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE
113 113
114/* define this if you have a disk storage, i.e. something 114/* define this if you have a disk storage, i.e. something
diff --git a/firmware/export/config/ipodnano1g.h b/firmware/export/config/ipodnano1g.h
index f60f3c975a..d843a33dd3 100644
--- a/firmware/export/config/ipodnano1g.h
+++ b/firmware/export/config/ipodnano1g.h
@@ -90,7 +90,7 @@
90/* Define this if you have the WM8975 audio codec */ 90/* Define this if you have the WM8975 audio codec */
91#define HAVE_WM8975 91#define HAVE_WM8975
92 92
93#define AB_REPEAT_ENABLE 1 93#define AB_REPEAT_ENABLE
94#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE 94#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE
95 95
96/* Define this for LCD backlight available */ 96/* Define this for LCD backlight available */
diff --git a/firmware/export/config/ipodnano2g.h b/firmware/export/config/ipodnano2g.h
index 3ce4a2926b..a4189b35f3 100644
--- a/firmware/export/config/ipodnano2g.h
+++ b/firmware/export/config/ipodnano2g.h
@@ -97,7 +97,7 @@
97 97
98#define CONFIG_KEYPAD IPOD_4G_PAD 98#define CONFIG_KEYPAD IPOD_4G_PAD
99 99
100//#define AB_REPEAT_ENABLE 1 100//#define AB_REPEAT_ENABLE
101//#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE 101//#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE
102 102
103/* Define this to enable morse code input */ 103/* Define this to enable morse code input */
diff --git a/firmware/export/config/ipodvideo.h b/firmware/export/config/ipodvideo.h
index 54c604f38a..e0c3bfb68e 100644
--- a/firmware/export/config/ipodvideo.h
+++ b/firmware/export/config/ipodvideo.h
@@ -95,7 +95,7 @@
95/* Define this if you have the WM8758 audio codec */ 95/* Define this if you have the WM8758 audio codec */
96#define HAVE_WM8758 96#define HAVE_WM8758
97 97
98#define AB_REPEAT_ENABLE 1 98#define AB_REPEAT_ENABLE
99#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE 99#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE
100 100
101/* define this if you have a disk storage, i.e. something 101/* define this if you have a disk storage, i.e. something
diff --git a/firmware/export/config/iriverh10.h b/firmware/export/config/iriverh10.h
index 95e643e3d8..83c92651a2 100644
--- a/firmware/export/config/iriverh10.h
+++ b/firmware/export/config/iriverh10.h
@@ -110,7 +110,7 @@
110/* WM8731 has no tone controls, so we use the software ones */ 110/* WM8731 has no tone controls, so we use the software ones */
111#define HAVE_SW_TONE_CONTROLS 111#define HAVE_SW_TONE_CONTROLS
112 112
113#define AB_REPEAT_ENABLE 1 113#define AB_REPEAT_ENABLE
114 114
115/* FM Tuner */ 115/* FM Tuner */
116#define CONFIG_TUNER TEA5767 116#define CONFIG_TUNER TEA5767
@@ -119,7 +119,7 @@
119/* Define this for LCD backlight available */ 119/* Define this for LCD backlight available */
120#define HAVE_BACKLIGHT 120#define HAVE_BACKLIGHT
121 121
122#define AB_REPEAT_ENABLE 1 122#define AB_REPEAT_ENABLE
123 123
124#define BATTERY_CAPACITY_DEFAULT 1550 /* default battery capacity */ 124#define BATTERY_CAPACITY_DEFAULT 1550 /* default battery capacity */
125#define BATTERY_CAPACITY_MIN 1500 /* min. capacity selectable */ 125#define BATTERY_CAPACITY_MIN 1500 /* min. capacity selectable */
diff --git a/firmware/export/config/iriverh100.h b/firmware/export/config/iriverh100.h
index 5e09595b17..4ebbde8ab1 100644
--- a/firmware/export/config/iriverh100.h
+++ b/firmware/export/config/iriverh100.h
@@ -105,7 +105,7 @@
105/* The number of bytes reserved for loadable plugins */ 105/* The number of bytes reserved for loadable plugins */
106#define PLUGIN_BUFFER_SIZE 0x80000 106#define PLUGIN_BUFFER_SIZE 0x80000
107 107
108#define AB_REPEAT_ENABLE 1 108#define AB_REPEAT_ENABLE
109 109
110#define CONFIG_TUNER TEA5767 110#define CONFIG_TUNER TEA5767
111#define CONFIG_TUNER_XTAL 32768 111#define CONFIG_TUNER_XTAL 32768
diff --git a/firmware/export/config/iriverh10_5gb.h b/firmware/export/config/iriverh10_5gb.h
index 4e901cc432..c2cffcf41f 100644
--- a/firmware/export/config/iriverh10_5gb.h
+++ b/firmware/export/config/iriverh10_5gb.h
@@ -89,7 +89,7 @@
89/* WM8731 has no tone controls, so we use the software ones */ 89/* WM8731 has no tone controls, so we use the software ones */
90#define HAVE_SW_TONE_CONTROLS 90#define HAVE_SW_TONE_CONTROLS
91 91
92#define AB_REPEAT_ENABLE 1 92#define AB_REPEAT_ENABLE
93 93
94/* FM Tuner */ 94/* FM Tuner */
95#define CONFIG_TUNER TEA5767 95#define CONFIG_TUNER TEA5767
@@ -102,7 +102,7 @@
102/* Define this for LCD backlight available */ 102/* Define this for LCD backlight available */
103#define HAVE_BACKLIGHT 103#define HAVE_BACKLIGHT
104 104
105#define AB_REPEAT_ENABLE 1 105#define AB_REPEAT_ENABLE
106 106
107#define BATTERY_CAPACITY_DEFAULT 820 /* default battery capacity */ 107#define BATTERY_CAPACITY_DEFAULT 820 /* default battery capacity */
108#define BATTERY_CAPACITY_MIN 700 /* min. capacity selectable */ 108#define BATTERY_CAPACITY_MIN 700 /* min. capacity selectable */
diff --git a/firmware/export/config/iriverh120.h b/firmware/export/config/iriverh120.h
index 24d1a2451e..44b8988a1b 100644
--- a/firmware/export/config/iriverh120.h
+++ b/firmware/export/config/iriverh120.h
@@ -104,7 +104,7 @@
104/* The number of bytes reserved for loadable plugins */ 104/* The number of bytes reserved for loadable plugins */
105#define PLUGIN_BUFFER_SIZE 0x80000 105#define PLUGIN_BUFFER_SIZE 0x80000
106 106
107#define AB_REPEAT_ENABLE 1 107#define AB_REPEAT_ENABLE
108 108
109#define CONFIG_TUNER TEA5767 109#define CONFIG_TUNER TEA5767
110#define CONFIG_TUNER_XTAL 32768 110#define CONFIG_TUNER_XTAL 32768
diff --git a/firmware/export/config/iriverh300.h b/firmware/export/config/iriverh300.h
index d21566f814..c4224d03c6 100644
--- a/firmware/export/config/iriverh300.h
+++ b/firmware/export/config/iriverh300.h
@@ -100,7 +100,7 @@
100/* The number of bytes reserved for loadable plugins */ 100/* The number of bytes reserved for loadable plugins */
101#define PLUGIN_BUFFER_SIZE 0x80000 101#define PLUGIN_BUFFER_SIZE 0x80000
102 102
103#define AB_REPEAT_ENABLE 1 103#define AB_REPEAT_ENABLE
104 104
105#define CONFIG_TUNER TEA5767 105#define CONFIG_TUNER TEA5767
106#define CONFIG_TUNER_XTAL 32768 106#define CONFIG_TUNER_XTAL 32768
diff --git a/firmware/export/config/logikdax.h b/firmware/export/config/logikdax.h
index 7d8a51f872..05f24daed1 100644
--- a/firmware/export/config/logikdax.h
+++ b/firmware/export/config/logikdax.h
@@ -79,7 +79,7 @@
79/* The number of bytes reserved for loadable plugins */ 79/* The number of bytes reserved for loadable plugins */
80#define PLUGIN_BUFFER_SIZE 0x10000 80#define PLUGIN_BUFFER_SIZE 0x10000
81 81
82#define AB_REPEAT_ENABLE 1 82#define AB_REPEAT_ENABLE
83 83
84/* Define this if you do software codec */ 84/* Define this if you do software codec */
85#define CONFIG_CODEC SWCODEC 85#define CONFIG_CODEC SWCODEC
diff --git a/firmware/export/config/meizum3.h b/firmware/export/config/meizum3.h
index 58f141c4cb..7cba1c7e7f 100644
--- a/firmware/export/config/meizum3.h
+++ b/firmware/export/config/meizum3.h
@@ -76,7 +76,7 @@
76 76
77#define CONFIG_KEYPAD MEIZU_M3_PAD 77#define CONFIG_KEYPAD MEIZU_M3_PAD
78 78
79//#define AB_REPEAT_ENABLE 1 79//#define AB_REPEAT_ENABLE
80//#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE 80//#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE
81 81
82/* Define this if you do software codec */ 82/* Define this if you do software codec */
diff --git a/firmware/export/config/meizum6sl.h b/firmware/export/config/meizum6sl.h
index d18a34de1d..28c0fc0286 100644
--- a/firmware/export/config/meizum6sl.h
+++ b/firmware/export/config/meizum6sl.h
@@ -76,7 +76,7 @@
76 76
77#define CONFIG_KEYPAD MEIZU_M6SL_PAD 77#define CONFIG_KEYPAD MEIZU_M6SL_PAD
78 78
79//#define AB_REPEAT_ENABLE 1 79//#define AB_REPEAT_ENABLE
80//#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE 80//#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE
81 81
82/* Define this if you do software codec */ 82/* Define this if you do software codec */
diff --git a/firmware/export/config/meizum6sp.h b/firmware/export/config/meizum6sp.h
index 11716f6ecd..f88be0420c 100644
--- a/firmware/export/config/meizum6sp.h
+++ b/firmware/export/config/meizum6sp.h
@@ -82,7 +82,7 @@
82 82
83#define CONFIG_KEYPAD MEIZU_M6SP_PAD 83#define CONFIG_KEYPAD MEIZU_M6SP_PAD
84 84
85//#define AB_REPEAT_ENABLE 1 85//#define AB_REPEAT_ENABLE
86//#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE 86//#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE
87 87
88/* Define this if you do software codec */ 88/* Define this if you do software codec */
diff --git a/firmware/export/config/mrobe100.h b/firmware/export/config/mrobe100.h
index 8c707b54b3..e490174dd7 100644
--- a/firmware/export/config/mrobe100.h
+++ b/firmware/export/config/mrobe100.h
@@ -91,7 +91,7 @@
91#define HAVE_WM8751 91#define HAVE_WM8751
92#define CODEC_SRCTRL_44100HZ (0x40|(0x11 << 1)|1) 92#define CODEC_SRCTRL_44100HZ (0x40|(0x11 << 1)|1)
93 93
94#define AB_REPEAT_ENABLE 1 94#define AB_REPEAT_ENABLE
95 95
96/* define this if you have a disk storage, i.e. something 96/* define this if you have a disk storage, i.e. something
97 that needs spinups and can cause skips when shaked */ 97 that needs spinups and can cause skips when shaked */
diff --git a/firmware/export/config/samsungyh820.h b/firmware/export/config/samsungyh820.h
index 31e6c89219..d32871cec0 100644
--- a/firmware/export/config/samsungyh820.h
+++ b/firmware/export/config/samsungyh820.h
@@ -126,7 +126,7 @@
126/* AK4537 has no tone controls, so we use the software ones */ 126/* AK4537 has no tone controls, so we use the software ones */
127#define HAVE_SW_TONE_CONTROLS 127#define HAVE_SW_TONE_CONTROLS
128 128
129#define AB_REPEAT_ENABLE 1 129#define AB_REPEAT_ENABLE
130 130
131#define BATTERY_CAPACITY_DEFAULT 1550 /* default battery capacity */ 131#define BATTERY_CAPACITY_DEFAULT 1550 /* default battery capacity */
132#define BATTERY_CAPACITY_MIN 1500 /* min. capacity selectable */ 132#define BATTERY_CAPACITY_MIN 1500 /* min. capacity selectable */
diff --git a/firmware/export/config/samsungyh920.h b/firmware/export/config/samsungyh920.h
index c841b20995..f59c575fe7 100644
--- a/firmware/export/config/samsungyh920.h
+++ b/firmware/export/config/samsungyh920.h
@@ -133,7 +133,7 @@
133/* AK4537 has no tone controls, so we use the software ones */ 133/* AK4537 has no tone controls, so we use the software ones */
134#define HAVE_SW_TONE_CONTROLS 134#define HAVE_SW_TONE_CONTROLS
135 135
136#define AB_REPEAT_ENABLE 1 136#define AB_REPEAT_ENABLE
137 137
138#define BATTERY_CAPACITY_DEFAULT 1550 /* default battery capacity */ 138#define BATTERY_CAPACITY_DEFAULT 1550 /* default battery capacity */
139#define BATTERY_CAPACITY_MIN 1500 /* min. capacity selectable */ 139#define BATTERY_CAPACITY_MIN 1500 /* min. capacity selectable */
diff --git a/firmware/export/config/samsungyh925.h b/firmware/export/config/samsungyh925.h
index e962172af8..71377488aa 100644
--- a/firmware/export/config/samsungyh925.h
+++ b/firmware/export/config/samsungyh925.h
@@ -130,7 +130,7 @@
130/* AK4537 has no tone controls, so we use the software ones */ 130/* AK4537 has no tone controls, so we use the software ones */
131#define HAVE_SW_TONE_CONTROLS 131#define HAVE_SW_TONE_CONTROLS
132 132
133#define AB_REPEAT_ENABLE 1 133#define AB_REPEAT_ENABLE
134 134
135#define BATTERY_CAPACITY_DEFAULT 900 /* default battery capacity */ 135#define BATTERY_CAPACITY_DEFAULT 900 /* default battery capacity */
136#define BATTERY_CAPACITY_MIN 500 /* min. capacity selectable */ 136#define BATTERY_CAPACITY_MIN 500 /* min. capacity selectable */
diff --git a/firmware/export/config/samsungyps3.h b/firmware/export/config/samsungyps3.h
index 0eba4a27d5..3062d5c58e 100644
--- a/firmware/export/config/samsungyps3.h
+++ b/firmware/export/config/samsungyps3.h
@@ -80,7 +80,7 @@
80/* We have headphone detection */ 80/* We have headphone detection */
81#define HAVE_HEADPHONE_DETECTION 81#define HAVE_HEADPHONE_DETECTION
82 82
83//#define AB_REPEAT_ENABLE 1 83//#define AB_REPEAT_ENABLE
84//#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE 84//#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE
85 85
86/* Define this if you do software codec */ 86/* Define this if you do software codec */
diff --git a/firmware/export/config/sansac100.h b/firmware/export/config/sansac100.h
index fc298b01d8..e61e42639c 100644
--- a/firmware/export/config/sansac100.h
+++ b/firmware/export/config/sansac100.h
@@ -68,7 +68,7 @@
68/* The number of bytes reserved for loadable plugins */ 68/* The number of bytes reserved for loadable plugins */
69#define PLUGIN_BUFFER_SIZE 0x50000 69#define PLUGIN_BUFFER_SIZE 0x50000
70 70
71#define AB_REPEAT_ENABLE 1 71#define AB_REPEAT_ENABLE
72 72
73/* Define this if you do software codec */ 73/* Define this if you do software codec */
74#define CONFIG_CODEC SWCODEC 74#define CONFIG_CODEC SWCODEC
diff --git a/firmware/export/config/sansac200.h b/firmware/export/config/sansac200.h
index 3240af43f2..18456203bb 100644
--- a/firmware/export/config/sansac200.h
+++ b/firmware/export/config/sansac200.h
@@ -112,7 +112,7 @@
112/* The number of bytes reserved for loadable plugins */ 112/* The number of bytes reserved for loadable plugins */
113#define PLUGIN_BUFFER_SIZE 0x80000 113#define PLUGIN_BUFFER_SIZE 0x80000
114 114
115#define AB_REPEAT_ENABLE 1 115#define AB_REPEAT_ENABLE
116 116
117/* FM Tuner */ 117/* FM Tuner */
118#define CONFIG_TUNER LV24020LP 118#define CONFIG_TUNER LV24020LP
diff --git a/firmware/export/config/sansac200v2.h b/firmware/export/config/sansac200v2.h
index 5115e91915..aa9ccbe6b3 100644
--- a/firmware/export/config/sansac200v2.h
+++ b/firmware/export/config/sansac200v2.h
@@ -109,7 +109,7 @@
109/* The number of bytes reserved for loadable plugins */ 109/* The number of bytes reserved for loadable plugins */
110#define PLUGIN_BUFFER_SIZE 0x14000 110#define PLUGIN_BUFFER_SIZE 0x14000
111 111
112#define AB_REPEAT_ENABLE 1 112#define AB_REPEAT_ENABLE
113 113
114/* FM Tuner - suspected to be the SI4702 */ 114/* FM Tuner - suspected to be the SI4702 */
115#define CONFIG_TUNER SI4700 115#define CONFIG_TUNER SI4700
diff --git a/firmware/export/config/sansaclip.h b/firmware/export/config/sansaclip.h
index e0f1e2bd4e..3ef6e2649d 100644
--- a/firmware/export/config/sansaclip.h
+++ b/firmware/export/config/sansaclip.h
@@ -113,7 +113,7 @@
113/* The number of bytes reserved for loadable plugins */ 113/* The number of bytes reserved for loadable plugins */
114#define PLUGIN_BUFFER_SIZE 0x10000 114#define PLUGIN_BUFFER_SIZE 0x10000
115 115
116#define AB_REPEAT_ENABLE 1 116#define AB_REPEAT_ENABLE
117 117
118/* FM Tuner */ 118/* FM Tuner */
119#define CONFIG_TUNER SI4700 /* in fact SI4702 but let's hope it's compatible */ 119#define CONFIG_TUNER SI4700 /* in fact SI4702 but let's hope it's compatible */
diff --git a/firmware/export/config/sansaclipplus.h b/firmware/export/config/sansaclipplus.h
index c52d803402..8d6ffac9b5 100644
--- a/firmware/export/config/sansaclipplus.h
+++ b/firmware/export/config/sansaclipplus.h
@@ -120,7 +120,7 @@
120/* The number of bytes reserved for loadable plugins */ 120/* The number of bytes reserved for loadable plugins */
121#define PLUGIN_BUFFER_SIZE 0x80000 121#define PLUGIN_BUFFER_SIZE 0x80000
122 122
123#define AB_REPEAT_ENABLE 1 123#define AB_REPEAT_ENABLE
124 124
125/* FM Tuner */ 125/* FM Tuner */
126#define CONFIG_TUNER (SI4700|RDA5802) /* in fact SI4702 */ 126#define CONFIG_TUNER (SI4700|RDA5802) /* in fact SI4702 */
diff --git a/firmware/export/config/sansaclipv2.h b/firmware/export/config/sansaclipv2.h
index eb6fb6c737..ad960c3051 100644
--- a/firmware/export/config/sansaclipv2.h
+++ b/firmware/export/config/sansaclipv2.h
@@ -116,7 +116,7 @@
116/* The number of bytes reserved for loadable plugins */ 116/* The number of bytes reserved for loadable plugins */
117#define PLUGIN_BUFFER_SIZE 0x80000 117#define PLUGIN_BUFFER_SIZE 0x80000
118 118
119#define AB_REPEAT_ENABLE 1 119#define AB_REPEAT_ENABLE
120 120
121/* FM Tuner */ 121/* FM Tuner */
122#define CONFIG_TUNER SI4700 /* in fact SI4702 */ 122#define CONFIG_TUNER SI4700 /* in fact SI4702 */
diff --git a/firmware/export/config/sansae200.h b/firmware/export/config/sansae200.h
index 501e9eac37..94e9e5b690 100644
--- a/firmware/export/config/sansae200.h
+++ b/firmware/export/config/sansae200.h
@@ -105,7 +105,7 @@
105/* The number of bytes reserved for loadable plugins */ 105/* The number of bytes reserved for loadable plugins */
106#define PLUGIN_BUFFER_SIZE 0x80000 106#define PLUGIN_BUFFER_SIZE 0x80000
107 107
108#define AB_REPEAT_ENABLE 1 108#define AB_REPEAT_ENABLE
109 109
110/* FM Tuner */ 110/* FM Tuner */
111#define CONFIG_TUNER LV24020LP 111#define CONFIG_TUNER LV24020LP
diff --git a/firmware/export/config/sansae200v2.h b/firmware/export/config/sansae200v2.h
index f8a66ee05e..ef9c007a58 100644
--- a/firmware/export/config/sansae200v2.h
+++ b/firmware/export/config/sansae200v2.h
@@ -103,7 +103,7 @@
103/* The number of bytes reserved for loadable plugins */ 103/* The number of bytes reserved for loadable plugins */
104#define PLUGIN_BUFFER_SIZE 0x80000 104#define PLUGIN_BUFFER_SIZE 0x80000
105 105
106#define AB_REPEAT_ENABLE 1 106#define AB_REPEAT_ENABLE
107 107
108/* FM Tuner - suspected to be the SI4702 */ 108/* FM Tuner - suspected to be the SI4702 */
109#define CONFIG_TUNER SI4700 109#define CONFIG_TUNER SI4700
diff --git a/firmware/export/config/sansafuze.h b/firmware/export/config/sansafuze.h
index 7b7cdb0284..3e1e6c5a66 100644
--- a/firmware/export/config/sansafuze.h
+++ b/firmware/export/config/sansafuze.h
@@ -109,7 +109,7 @@
109/* The number of bytes reserved for loadable plugins */ 109/* The number of bytes reserved for loadable plugins */
110#define PLUGIN_BUFFER_SIZE 0x80000 110#define PLUGIN_BUFFER_SIZE 0x80000
111 111
112#define AB_REPEAT_ENABLE 1 112#define AB_REPEAT_ENABLE
113 113
114/* FM Tuner - suspected to be the SI4702 */ 114/* FM Tuner - suspected to be the SI4702 */
115#define CONFIG_TUNER SI4700 115#define CONFIG_TUNER SI4700
diff --git a/firmware/export/config/sansafuzev2.h b/firmware/export/config/sansafuzev2.h
index b56c8a57e1..78d5b3b33e 100644
--- a/firmware/export/config/sansafuzev2.h
+++ b/firmware/export/config/sansafuzev2.h
@@ -118,7 +118,7 @@
118/* The number of bytes reserved for loadable plugins */ 118/* The number of bytes reserved for loadable plugins */
119#define PLUGIN_BUFFER_SIZE 0x80000 119#define PLUGIN_BUFFER_SIZE 0x80000
120 120
121#define AB_REPEAT_ENABLE 1 121#define AB_REPEAT_ENABLE
122 122
123/* FM Tuner - suspected to be the SI4702 */ 123/* FM Tuner - suspected to be the SI4702 */
124#define CONFIG_TUNER SI4700 124#define CONFIG_TUNER SI4700
diff --git a/firmware/export/config/sansam200.h b/firmware/export/config/sansam200.h
index 25b56a8115..c5eade88e9 100644
--- a/firmware/export/config/sansam200.h
+++ b/firmware/export/config/sansam200.h
@@ -76,7 +76,7 @@
76/* The number of bytes reserved for loadable plugins */ 76/* The number of bytes reserved for loadable plugins */
77#define PLUGIN_BUFFER_SIZE 0x10000 77#define PLUGIN_BUFFER_SIZE 0x10000
78 78
79#define AB_REPEAT_ENABLE 1 79#define AB_REPEAT_ENABLE
80 80
81/* Define this if you do software codec */ 81/* Define this if you do software codec */
82#define CONFIG_CODEC SWCODEC 82#define CONFIG_CODEC SWCODEC
diff --git a/firmware/export/config/sansam200v4.h b/firmware/export/config/sansam200v4.h
index c25a9046ee..88679c1a78 100644
--- a/firmware/export/config/sansam200v4.h
+++ b/firmware/export/config/sansam200v4.h
@@ -81,7 +81,7 @@
81/* The number of bytes reserved for loadable plugins */ 81/* The number of bytes reserved for loadable plugins */
82#define PLUGIN_BUFFER_SIZE 0x10000 82#define PLUGIN_BUFFER_SIZE 0x10000
83 83
84#define AB_REPEAT_ENABLE 1 84#define AB_REPEAT_ENABLE
85 85
86#define CONFIG_TUNER TEA5767 86#define CONFIG_TUNER TEA5767
87#define CONFIG_TUNER_XTAL 32768 87#define CONFIG_TUNER_XTAL 32768
diff --git a/firmware/export/config/sansaview.h b/firmware/export/config/sansaview.h
index 0752b6c61d..b0317f3e0d 100644
--- a/firmware/export/config/sansaview.h
+++ b/firmware/export/config/sansaview.h
@@ -99,7 +99,7 @@
99/* The number of bytes reserved for loadable plugins */ 99/* The number of bytes reserved for loadable plugins */
100#define PLUGIN_BUFFER_SIZE 0x80000 100#define PLUGIN_BUFFER_SIZE 0x80000
101 101
102#define AB_REPEAT_ENABLE 1 102#define AB_REPEAT_ENABLE
103 103
104/* Define this for LCD backlight available */ 104/* Define this for LCD backlight available */
105#define HAVE_BACKLIGHT 105#define HAVE_BACKLIGHT
diff --git a/firmware/export/config/tatungtpj1022.h b/firmware/export/config/tatungtpj1022.h
index bda08c8a3e..355c5ed5cf 100644
--- a/firmware/export/config/tatungtpj1022.h
+++ b/firmware/export/config/tatungtpj1022.h
@@ -68,7 +68,7 @@
68/* Define this if you have the WM8731 audio codec */ 68/* Define this if you have the WM8731 audio codec */
69#define HAVE_WM8731 69#define HAVE_WM8731
70 70
71#define AB_REPEAT_ENABLE 1 71#define AB_REPEAT_ENABLE
72 72
73/* define this if you have a disk storage, i.e. something 73/* define this if you have a disk storage, i.e. something
74 that needs spinups and can cause skips when shaked */ 74 that needs spinups and can cause skips when shaked */
diff --git a/firmware/export/config/vibe500.h b/firmware/export/config/vibe500.h
index 4475908487..50ffde135b 100644
--- a/firmware/export/config/vibe500.h
+++ b/firmware/export/config/vibe500.h
@@ -104,7 +104,7 @@
104/* WM8731 has no tone controls, so we use the software ones */ 104/* WM8731 has no tone controls, so we use the software ones */
105#define HAVE_SW_TONE_CONTROLS 105#define HAVE_SW_TONE_CONTROLS
106 106
107#define AB_REPEAT_ENABLE 1 107#define AB_REPEAT_ENABLE
108#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE 108#define ACTION_WPSAB_SINGLE ACTION_WPS_BROWSE
109 109
110/* Define this for LCD backlight available */ 110/* Define this for LCD backlight available */