summaryrefslogtreecommitdiff
path: root/dvbdevice.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2013-10-13 14:48:56 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2013-10-13 14:48:56 +0200
commit9bd415d58e89c07104c6523a8a19e259edf25eb5 (patch)
tree575415995e9b95e92483c9cd20201b67a81110e2 /dvbdevice.c
parent8bc6bcf86e8c526bddd1a5d870c879c552fa82f6 (diff)
downloadvdr-9bd415d58e89c07104c6523a8a19e259edf25eb5.tar.gz
vdr-9bd415d58e89c07104c6523a8a19e259edf25eb5.tar.bz2
Added maximum signal strength value for TechniSat SkyStar 2 DVB-S rev 2.3P
Diffstat (limited to 'dvbdevice.c')
-rw-r--r--dvbdevice.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/dvbdevice.c b/dvbdevice.c
index c61fb172..3d01a5ab 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.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)