diff --git a/CONTRIBUTORS b/CONTRIBUTORS index a31bb849..4a8a46fb 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -3197,3 +3197,6 @@ Eike Edener Harald Koenig 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 + 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)