summaryrefslogtreecommitdiff
path: root/firmware/mpeg.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/mpeg.c')
-rw-r--r--firmware/mpeg.c6
1 files 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)
2014 2014
2015static void setup_sci0(void) 2015static void setup_sci0(void)
2016{ 2016{
2017 /* PB15 is I/O, PB14 is IRQ6, PB12 is SCK0 */ 2017 /* PB15 is I/O, PB14 is IRQ6, PB12 is SCK0, PB9 is TxD0 */
2018 PBCR1 = (PBCR1 & 0x0cff) | 0x1200; 2018 PBCR1 = (PBCR1 & 0x0cff) | 0x1208;
2019 2019
2020 /* Set PB12 to output */ 2020 /* Set PB12 to output */
2021 PBIOR |= 0x1000; 2021 PBIOR |= 0x1000;
@@ -2973,7 +2973,7 @@ void mpeg_init(int volume, int bass, int treble, int balance, int loudness,
2973 loudness = bass_boost = avc; 2973 loudness = bass_boost = avc;
2974#endif 2974#endif
2975 2975
2976 PAIOR |= 0x0800; /* output for /PR */ 2976 PAIOR |= 0x0800; /* output for /PR */
2977 setup_sci0(); 2977 setup_sci0();
2978 2978
2979#ifdef HAVE_MAS3587F 2979#ifdef HAVE_MAS3587F