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

This commit is contained in:
Klaus Schmidinger
2013-10-13 14:48:56 +02:00
parent 8bc6bcf86e
commit 9bd415d58e
3 changed files with 9 additions and 2 deletions

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.3 2013/08/23 09:19:43 kls Exp $
* $Id: dvbdevice.c 3.4 2013/10/13 14:41:57 kls Exp $
*/
#include "dvbdevice.h"
@@ -558,6 +558,8 @@ 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)