From 56fb17711190354db3359ddfc15b82ba6ab87fe1 Mon Sep 17 00:00:00 2001 From: Linus Nielsen Feltzing Date: Tue, 12 Jul 2005 04:53:14 +0000 Subject: [PATCH] Inverted S/PDIF control on H110 git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7111 a1c6a512-1295-4272-9138-f99709370657 --- firmware/drivers/power.c | 6 +++++- firmware/export/config-h100.h | 1 + 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/firmware/drivers/power.c b/firmware/drivers/power.c index fecc79a465..ce1a9ff377 100644 --- a/firmware/drivers/power.c +++ b/firmware/drivers/power.c @@ -141,8 +141,12 @@ void spdif_power_enable(bool on) { GPIO1_FUNCTION |= 0x01000000; GPIO1_ENABLE |= 0x01000000; - + +#ifdef SPDIF_POWER_INVERTED + if(!on) +#else if(on) +#endif GPIO1_OUT &= ~0x01000000; else GPIO1_OUT |= 0x01000000; diff --git a/firmware/export/config-h100.h b/firmware/export/config-h100.h index fc6ae35e58..96efdd2406 100644 --- a/firmware/export/config-h100.h +++ b/firmware/export/config-h100.h @@ -94,3 +94,4 @@ /* Define this if you can control the S/PDIF power */ #define HAVE_SPDIF_POWER +#define SPDIF_POWER_INVERTED