summaryrefslogtreecommitdiff
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
parent8bc6bcf86e8c526bddd1a5d870c879c552fa82f6 (diff)
downloadvdr-9bd415d58e89c07104c6523a8a19e259edf25eb5.tar.gz
vdr-9bd415d58e89c07104c6523a8a19e259edf25eb5.tar.bz2
Added maximum signal strength value for TechniSat SkyStar 2 DVB-S rev 2.3P
-rw-r--r--CONTRIBUTORS3
-rw-r--r--HISTORY4
-rw-r--r--dvbdevice.c4
3 files changed, 9 insertions, 2 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index a31bb849..4a8a46fb 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -3197,3 +3197,6 @@ Eike Edener <eike@edener.de>
Harald Koenig <koenig@tat.physik.uni-tuebingen.de>
for making the function cRecordings::MBperMinute() only take into account recordings
with less than 5 seconds per megabyte, to filter out radio recordings
+
+Guido Cordaro <guido.cordaro@tiscali.it>
+ for adding maximum signal strength value for TechniSat SkyStar 2 DVB-S rev 2.3P
diff --git a/HISTORY b/HISTORY
index 70f19a58..2b342eee 100644
--- a/HISTORY
+++ b/HISTORY
@@ -7920,7 +7920,7 @@ Video Disk Recorder Revision History
- Fixed cleaning up old EPG events in case no epg data file is given (reported by
Dave Pickles).
-2013-10-12: Version 2.1.2
+2013-10-13: Version 2.1.2
- Updated the Finnish OSD texts (thanks to Rolf Ahrenberg).
- Fixed displaying DVB subtitles (thanks to Rolf Ahrenberg for helping to debug and
@@ -8001,3 +8001,5 @@ Video Disk Recorder Revision History
less than 5 seconds per megabyte, in an attempt to filter out radio recordings
(thanks to Harald Koenig). The result of this function was way off any realistic
value in case there are many radio recordings in the video directory.
+- Added maximum signal strength value for TechniSat SkyStar 2 DVB-S rev 2.3P (thanks
+ to Guido Cordaro).
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)