1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Jörg Hohensohn 2003-07-01 07:03:27 +00:00
parent 7b03153c0e
commit 3a36a57005

View file

@ -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