aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2008-11-12 11:16:02 +0100
committerghost <andreas.monzner@multimedia-labs.de>2008-11-12 11:16:02 +0100
commit25f3da9d9bb07467cd69219d2d2ffda66720ea00 (patch)
treee51b1b7857bdd9a1426732337a555aa2e9985887 /lib
parent6e4252048719916fbe136dbe2a22eea0bbac9a7e (diff)
downloadenigma2-25f3da9d9bb07467cd69219d2d2ffda66720ea00.tar.gz
enigma2-25f3da9d9bb07467cd69219d2d2ffda66720ea00.zip
enable static limiting mode before every sec change
Diffstat (limited to 'lib')
-rw-r--r--lib/dvb/sec.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/dvb/sec.cpp b/lib/dvb/sec.cpp
index 35a8d04a..2a6016e0 100644
--- a/lib/dvb/sec.cpp
+++ b/lib/dvb/sec.cpp
@@ -894,8 +894,8 @@ RESULT eDVBSatelliteEquipmentControl::prepare(iDVBFrontend &frontend, FRONTENDPA
csw = band;
}
- if (sendDiSEqC)
- sec_sequence.push_front( eSecCommand(eSecCommand::SET_POWER_LIMITING_MODE, eSecCommand::modeStatic) );
+// if (sendDiSEqC)
+ sec_sequence.push_front( eSecCommand(eSecCommand::SET_POWER_LIMITING_MODE, eSecCommand::modeStatic) );
sec_fe->setData(eDVBFrontend::NEW_CSW, csw);
sec_fe->setData(eDVBFrontend::NEW_UCSW, ucsw);
@@ -923,8 +923,9 @@ RESULT eDVBSatelliteEquipmentControl::prepare(iDVBFrontend &frontend, FRONTENDPA
sec_sequence.push_back( eSecCommand(eSecCommand::SET_FRONTEND) );
}
- if (sendDiSEqC)
- sec_sequence.push_back( eSecCommand(eSecCommand::SET_POWER_LIMITING_MODE, eSecCommand::modeDynamic) );
+// if (sendDiSEqC)
+ sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 50) );
+ sec_sequence.push_back( eSecCommand(eSecCommand::SET_POWER_LIMITING_MODE, eSecCommand::modeDynamic) );
frontend.setSecSequence(sec_sequence);