summaryrefslogtreecommitdiff
path: root/apps/status.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/status.c')
-rw-r--r--apps/status.c29
1 files changed, 3 insertions, 26 deletions
diff --git a/apps/status.c b/apps/status.c
index 9bdea15543..92f29c1b83 100644
--- a/apps/status.c
+++ b/apps/status.c
@@ -18,37 +18,14 @@
18 * KIND, either express or implied. 18 * KIND, either express or implied.
19 * 19 *
20 ****************************************************************************/ 20 ****************************************************************************/
21#include "string.h" 21#include <string.h>
22#include "lcd.h" 22#include <stdbool.h>
23#include "debug.h" 23#include "config.h"
24#include "kernel.h"
25#include "power.h"
26#include "thread.h"
27#include "settings.h"
28#include "status.h" 24#include "status.h"
29#include "mp3_playback.h"
30#include "audio.h" 25#include "audio.h"
31#include "gwps.h"
32#if CONFIG_RTC
33#include "timefuncs.h"
34#endif
35#ifdef HAVE_LCD_BITMAP
36#include "icons.h"
37#include "font.h"
38#endif
39#include "powermgmt.h"
40#include "led.h"
41#include "sound.h"
42#if CONFIG_KEYPAD == IRIVER_H100_PAD
43#include "button.h"
44#endif
45#include "usb.h"
46#if CONFIG_TUNER 26#if CONFIG_TUNER
47#include "radio.h" 27#include "radio.h"
48#endif 28#endif
49#if defined(HAVE_RECORDING) && CONFIG_CODEC == SWCODEC
50#include "pcm_record.h"
51#endif
52 29
53static enum playmode ff_mode; 30static enum playmode ff_mode;
54 31