1
0
mirror of https://github.com/VDR4Arch/vdr.git synced 2023-10-10 13:36:52 +02:00

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:47:41 +02:00
parent ddce16326c
commit cb1498a609
3 changed files with 9 additions and 2 deletions

View File

@ -3177,3 +3177,6 @@ Thomas Maass <mase@setho.org>
Eike Edener <eike@edener.de> Eike Edener <eike@edener.de>
for reporting a bug in writing group separators to channels.conf that contain a comma for reporting a bug in writing group separators to channels.conf that contain a comma
Guido Cordaro <guido.cordaro@tiscali.it>
for adding maximum signal strength value for TechniSat SkyStar 2 DVB-S rev 2.3P

View File

@ -7832,7 +7832,7 @@ Video Disk Recorder Revision History
- Fixed cleaning up old EPG events in case no epg data file is given (reported by - Fixed cleaning up old EPG events in case no epg data file is given (reported by
Dave Pickles). Dave Pickles).
2013-10-12: Version 2.0.4 2013-10-13: Version 2.0.4
- Unified the internal sequence of actions when pressing the Blue and the Back key, - Unified the internal sequence of actions when pressing the Blue and the Back key,
respectively, during replay (reported by Thomas Maass). respectively, during replay (reported by Thomas Maass).
@ -7847,3 +7847,5 @@ Video Disk Recorder Revision History
- Changed cRecorder::Action() to use cTimeMs instead of time() to avoid problems with - Changed cRecorder::Action() to use cTimeMs instead of time() to avoid problems with
unjustified "video data stream broken" errors in case the system time is changed unjustified "video data stream broken" errors in case the system time is changed
while a recording is active (reported by Torsten Lang). while a recording is active (reported by Torsten Lang).
- Added maximum signal strength value for TechniSat SkyStar 2 DVB-S rev 2.3P (thanks
to Guido Cordaro).

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * how to reach the author.
* *
* $Id: dvbdevice.c 2.88.1.2 2013/08/23 09:52:14 kls Exp $ * $Id: dvbdevice.c 2.88.1.3 2013/10/13 14:45:52 kls Exp $
*/ */
#include "dvbdevice.h" #include "dvbdevice.h"
@ -549,6 +549,8 @@ int cDvbTuner::GetSignalStrength(void) const
case 0x13C21019: // TT-budget S2-3200 (DVB-S/DVB-S2) case 0x13C21019: // TT-budget S2-3200 (DVB-S/DVB-S2)
case 0x1AE40001: // TechniSat SkyStar HD2 (DVB-S/DVB-S2) case 0x1AE40001: // TechniSat SkyStar HD2 (DVB-S/DVB-S2)
MaxSignal = 670; break; MaxSignal = 670; break;
case 0x13D02103: // TechniSat SkyStar 2 DVB-S rev 2.3P
MaxSignal = 0x4925; break;
} }
int s = int(Signal) * 100 / MaxSignal; int s = int(Signal) * 100 / MaxSignal;
if (s > 100) if (s > 100)