diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2013-08-23 09:53:47 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2013-08-23 09:53:47 +0200 |
commit | c3a3b70fa04a4c4d73367c4831b8094cc65b4ec6 (patch) | |
tree | f1a1fbdfcb10977c87dee6127ed3240fc4430c9c /dvbdevice.c | |
parent | fc03e021bbba2c664114aa9d6606034d567a7587 (diff) | |
download | vdr-c3a3b70fa04a4c4d73367c4831b8094cc65b4ec6.tar.gz vdr-c3a3b70fa04a4c4d73367c4831b8094cc65b4ec6.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 2e199256..0c9f8ebc 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 2.88.1.1 2013/04/09 13:42:26 kls Exp $ + * $Id: dvbdevice.c 2.88.1.2 2013/08/23 09:52:14 kls Exp $ */ #include "dvbdevice.h" @@ -697,7 +697,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)); } |