summaryrefslogtreecommitdiff
path: root/apps/main.c
diff options
context:
space:
mode:
authorMichiel Van Der Kolk <not.valid@email.address>2005-03-28 00:00:24 +0000
committerMichiel Van Der Kolk <not.valid@email.address>2005-03-28 00:00:24 +0000
commit451dd48adc2ef29fd2f900693393cc9b9b4a849b (patch)
treee15d20e602261866617210bde007966ce9b19293 /apps/main.c
parent853bc3dcf85aa1284a0e5b550277c40beb7697a9 (diff)
downloadrockbox-451dd48adc2ef29fd2f900693393cc9b9b4a849b.tar.gz
rockbox-451dd48adc2ef29fd2f900693393cc9b9b4a849b.zip
Sound api improvements, rockboy sound, contributed by xshock.
Playback of sound currently only works in boost mode, needs fixing. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6226 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/main.c')
-rw-r--r--apps/main.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/main.c b/apps/main.c
index c5e5492337..36f26c9154 100644
--- a/apps/main.c
+++ b/apps/main.c
@@ -58,6 +58,10 @@
58#include "power.h" 58#include "power.h"
59#include "talk.h" 59#include "talk.h"
60#include "plugin.h" 60#include "plugin.h"
61
62
63#include "uda1380.h"
64
61#ifdef CONFIG_TUNER 65#ifdef CONFIG_TUNER
62#include "radio.h" 66#include "radio.h"
63#endif 67#endif
@@ -261,6 +265,9 @@ void init(void)
261 } 265 }
262 } 266 }
263#endif /* #ifdef AUTOROCK */ 267#endif /* #ifdef AUTOROCK */
268
269 uda1380_init();
270
264} 271}
265 272
266int main(void) 273int main(void)