Revoked "Added maximum signal strength value for TechniSat SkyStar 2 DVB-S rev 2.3P"

This commit is contained in:
Klaus Schmidinger 2013-10-21 08:59:59 +02:00
parent 94ced5845a
commit 4312dfcf41
2 changed files with 3 additions and 3 deletions

View File

@ -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.

View File

@ -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)