From 4312dfcf41e76eb48850be6e696484ec91cc55ea Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Mon, 21 Oct 2013 08:59:59 +0200 Subject: [PATCH] Revoked "Added maximum signal strength value for TechniSat SkyStar 2 DVB-S rev 2.3P" --- HISTORY | 2 ++ dvbdevice.c | 4 +--- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/HISTORY b/HISTORY index 05476d90..09b21a23 100644 --- a/HISTORY +++ b/HISTORY @@ -8020,3 +8020,5 @@ Video Disk Recorder Revision History - When cutting a recording it is now checked whether there is already an edited version of this recording (with the same name, but starting with '%'), and the user is prompted for confirmation to overwrite it (suggested by Rolf Ahrenberg). +- Revoked "Added maximum signal strength value for TechniSat SkyStar 2 DVB-S rev 2.3P" + because it broke things for the "TechniSat AirStar 2" DVB-T card. diff --git a/dvbdevice.c b/dvbdevice.c index 3d01a5ab..84c92654 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.4 2013/10/13 14:41:57 kls Exp $ + * $Id: dvbdevice.c 3.5 2013/10/21 08:59:59 kls Exp $ */ #include "dvbdevice.h" @@ -558,8 +558,6 @@ int cDvbTuner::GetSignalStrength(void) const case 0x13C21019: // TT-budget S2-3200 (DVB-S/DVB-S2) case 0x1AE40001: // TechniSat SkyStar HD2 (DVB-S/DVB-S2) MaxSignal = 670; break; - case 0x13D02103: // TechniSat SkyStar 2 DVB-S rev 2.3P - MaxSignal = 0x4925; break; } int s = int(Signal) * 100 / MaxSignal; if (s > 100)