mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
All bonded devices (except for the master) now turn off their LNB power completely to avoid problems when receiving vertically polarized transponders
This commit is contained in:
parent
fc03e021bb
commit
c3a3b70fa0
@ -700,6 +700,8 @@ Oliver Endriss <o.endriss@gmx.de>
|
||||
for helping to debug a problem with reduced number of retries in Transfer Mode on
|
||||
SD-FF cards
|
||||
for reporting a problem with resuming replay of PES recordings
|
||||
for suggesting to make all bonded devices (except for the master) turn off their LNB
|
||||
power completely to avoid problems when receiving vertically polarized transponders
|
||||
|
||||
Reinhard Walter Buchner <rw.buchner@freenet.de>
|
||||
for adding some satellites to 'sources.conf'
|
||||
@ -3156,3 +3158,7 @@ Jochen Dolze <vdr@dolze.de>
|
||||
|
||||
Dominique Dumont <domi.dumont@free.fr>
|
||||
for reporting a crash in the LCARS skin's main menu in case there is no current channel
|
||||
|
||||
Manfred Völkel <mvoelkel@digitaldevices.de>
|
||||
for suggesting to make all bonded devices (except for the master) turn off their LNB
|
||||
power completely to avoid problems when receiving vertically polarized transponders
|
||||
|
5
HISTORY
5
HISTORY
@ -7813,7 +7813,7 @@ Video Disk Recorder Revision History
|
||||
- Fixed a crash in the LCARS skin's main menu in case there is no current channel
|
||||
(reported by Dominique Dumont).
|
||||
|
||||
2013-08-22: Version 2.0.3
|
||||
2013-08-23: Version 2.0.3
|
||||
|
||||
- Fixed asserting free disk space in the cutter.
|
||||
- No longer trying to delete old recordings in AssertFreeDiskSpace() if the given
|
||||
@ -7826,3 +7826,6 @@ Video Disk Recorder Revision History
|
||||
systems that are only used as a receiver and don't actually display anything.
|
||||
- Increased the value of MAXRETRIES to 20 to reduce the probability of disturbances
|
||||
in transfer mode.
|
||||
- All bonded devices (except for the master) now turn off their LNB power completely
|
||||
to avoid problems when receiving vertically polarized transponders (suggested by
|
||||
Manfred Völkel and Oliver Endriss).
|
||||
|
@ -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));
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user