From 75e290c3b464a082901ea3213fb6dc6e56d628c2 Mon Sep 17 00:00:00 2001 From: Andreas Monzner Date: Mon, 8 Sep 2008 11:09:35 +0000 Subject: [PATCH] replace eFatal (which can occour during servicescan at some conditions) with a debug message --- lib/dvb/sec.cpp | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/lib/dvb/sec.cpp b/lib/dvb/sec.cpp index b1f421c0..d56024e1 100644 --- a/lib/dvb/sec.cpp +++ b/lib/dvb/sec.cpp @@ -851,10 +851,16 @@ RESULT eDVBSatelliteEquipmentControl::prepare(iDVBFrontend &frontend, FRONTENDPA return 0; } } - else - eFatal("canTune failed in sec prepare!!! this should never ever happen!"); - - eDebug("found no useable satellite configuration for orbital position (%d)", sat.orbital_position ); + eDebug("found no useable satellite configuration for %s freq %d%s %s on orbital position (%d)", + sat.system ? "DVB-S2" : "DVB-S", + sat.frequency, + sat.polarisation == eDVBFrontendParametersSatellite::Polarisation::Horizontal ? "H" : + eDVBFrontendParametersSatellite::Polarisation::Vertical ? "V" : + eDVBFrontendParametersSatellite::Polarisation::CircularLeft ? "CL" : "CR", + sat.modulation == eDVBFrontendParametersSatellite::Modulation::Auto ? "AUTO" : + eDVBFrontendParametersSatellite::Modulation::QPSK ? "QPSK" : + eDVBFrontendParametersSatellite::Modulation::M8PSK ? "8PSK" : "QAM16", + sat.orbital_position ); return -1; } -- 2.30.2