diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2013-08-23 09:47:27 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2013-08-23 09:47:27 +0200 |
commit | c385d5bf0c410a7fa557c50f7f862f2b903c8040 (patch) | |
tree | 005bf20b4b9f9cced8f1fca60bf1a50a537735b3 /dvbdevice.c | |
parent | d377c778a749e6f89d1d2ba46824db9ffab28d02 (diff) | |
download | vdr-c385d5bf0c410a7fa557c50f7f862f2b903c8040.tar.gz vdr-c385d5bf0c410a7fa557c50f7f862f2b903c8040.tar.bz2 |
All bonded devices (except for the master) now turn off their LNB power completely to avoid problems when receiving vertically polarized transponders
Diffstat (limited to 'dvbdevice.c')
-rw-r--r-- | dvbdevice.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dvbdevice.c b/dvbdevice.c index 9504834d..c61fb172 100644 --- a/dvbdevice.c +++ b/dvbdevice.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: dvbdevice.c 3.2 2013/08/17 13:52:05 kls Exp $ + * $Id: dvbdevice.c 3.3 2013/08/23 09:19:43 kls Exp $ */ #include "dvbdevice.h" @@ -739,7 +739,7 @@ void cDvbTuner::ExecuteDiseqc(const cDiseqc *Diseqc, unsigned int *Frequency) void cDvbTuner::ResetToneAndVoltage(void) { - CHECK(ioctl(fd_frontend, FE_SET_VOLTAGE, SEC_VOLTAGE_13)); + CHECK(ioctl(fd_frontend, FE_SET_VOLTAGE, bondedTuner ? SEC_VOLTAGE_OFF : SEC_VOLTAGE_13)); CHECK(ioctl(fd_frontend, FE_SET_TONE, SEC_TONE_OFF)); } |