From 3a36a570057b2756760211cba72d3b3e15908912 Mon Sep 17 00:00:00 2001 From: Jörg Hohensohn Date: Tue, 1 Jul 2003 07:03:27 +0000 Subject: Another port init fixes the silent play problem, Rockbox is now ready for FLASH! git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3793 a1c6a512-1295-4272-9138-f99709370657 --- firmware/mpeg.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/firmware/mpeg.c b/firmware/mpeg.c index 4517e1edf5..3bdfac5a8c 100644 --- a/firmware/mpeg.c +++ b/firmware/mpeg.c @@ -2014,8 +2014,8 @@ static void mpeg_thread(void) static void setup_sci0(void) { - /* PB15 is I/O, PB14 is IRQ6, PB12 is SCK0 */ - PBCR1 = (PBCR1 & 0x0cff) | 0x1200; + /* PB15 is I/O, PB14 is IRQ6, PB12 is SCK0, PB9 is TxD0 */ + PBCR1 = (PBCR1 & 0x0cff) | 0x1208; /* Set PB12 to output */ PBIOR |= 0x1000; @@ -2973,7 +2973,7 @@ void mpeg_init(int volume, int bass, int treble, int balance, int loudness, loudness = bass_boost = avc; #endif - PAIOR |= 0x0800; /* output for /PR */ + PAIOR |= 0x0800; /* output for /PR */ setup_sci0(); #ifdef HAVE_MAS3587F -- cgit v1.2.3