diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-12-01 08:41:25 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-12-01 08:41:25 +0000 |
| commit | c942b1c829bf49d77dcdb2bfda776e6288c99828 (patch) | |
| tree | 2ba7c5b0d12db187ab555776583141e00c7f232d /lib/dvb/sec.cpp | |
| parent | 7663898c2a6f536b59965f8c1978f7d268bdfc13 (diff) | |
| download | enigma2-c942b1c829bf49d77dcdb2bfda776e6288c99828.tar.gz enigma2-c942b1c829bf49d77dcdb2bfda776e6288c99828.zip | |
add blinking dish-picture if positioner is moving (we need a function which returns true when the positioner is moving for it to
work)
Diffstat (limited to 'lib/dvb/sec.cpp')
| -rw-r--r-- | lib/dvb/sec.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/dvb/sec.cpp b/lib/dvb/sec.cpp index 48eb971d..8b7b25db 100644 --- a/lib/dvb/sec.cpp +++ b/lib/dvb/sec.cpp @@ -460,7 +460,7 @@ RESULT eDVBSatelliteEquipmentControl::prepare(iDVBFrontend &frontend, FRONTENDPA RotorCmd=sw_param.m_rotorPosNum; else // we must calc gotoxx cmd { - eDebug("Entry for %d,%d° not in Rotor Table found... i try gotoXX°", sat.orbital_position / 10, sat.orbital_position % 10 ); + eDebug("Entry for %d,%d? not in Rotor Table found... i try gotoXX?", sat.orbital_position / 10, sat.orbital_position % 10 ); useGotoXX = true; int satDir = sat.orbital_position < 0 ? @@ -935,3 +935,8 @@ RESULT eDVBSatelliteEquipmentControl::setTunerLinked(int tu1, int tu2) } return -1; } + +bool eDVBSatelliteEquipmentControl::isRotorMoving() +{ + return false; +} |
