summaryrefslogtreecommitdiff
path: root/apps/main.c
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2002-08-12 12:44:18 +0000
committerBjörn Stenberg <bjorn@haxx.se>2002-08-12 12:44:18 +0000
commit18239b831d466e4e3822528462e1a6c00d702e93 (patch)
treea4de386da96b6140bfacae0c70b659332deaaa73 /apps/main.c
parent1cf6fa07d5b336cd82cb0586f47b69cc92a13b7c (diff)
downloadrockbox-18239b831d466e4e3822528462e1a6c00d702e93.tar.gz
rockbox-18239b831d466e4e3822528462e1a6c00d702e93.zip
Remote control support added
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1685 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/main.c')
-rw-r--r--apps/main.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/main.c b/apps/main.c
index 887c85b64e..307dd71e3d 100644
--- a/apps/main.c
+++ b/apps/main.c
@@ -36,6 +36,9 @@
36#ifndef SIMULATOR 36#ifndef SIMULATOR
37#include "dmalloc.h" 37#include "dmalloc.h"
38#include "bmalloc.h" 38#include "bmalloc.h"
39#ifndef DEBUG
40#include "serial.h"
41#endif
39#endif 42#endif
40#include "mpeg.h" 43#include "mpeg.h"
41#include "main_menu.h" 44#include "main_menu.h"
@@ -50,6 +53,7 @@
50#include "unicode.h" 53#include "unicode.h"
51#endif 54#endif
52 55
56
53char appsversion[]=APPSVERSION; 57char appsversion[]=APPSVERSION;
54 58
55void init(void); 59void init(void);
@@ -98,6 +102,8 @@ void init(void)
98 102
99#ifdef DEBUG 103#ifdef DEBUG
100 debug_init(); 104 debug_init();
105#else
106 serial_setup();
101#endif 107#endif
102 set_irq_level(0); 108 set_irq_level(0);
103 109