From c385d5bf0c410a7fa557c50f7f862f2b903c8040 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Fri, 23 Aug 2013 09:47:27 +0200 Subject: All bonded devices (except for the master) now turn off their LNB power completely to avoid problems when receiving vertically polarized transponders --- dvbdevice.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dvbdevice.c') 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)); } -- cgit v1.2.3