aboutsummaryrefslogtreecommitdiff
path: root/lib/dvb/sec.cpp
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2008-11-13 13:32:15 +0100
committerghost <andreas.monzner@multimedia-labs.de>2008-11-13 13:32:15 +0100
commit58163e18dce8d07d32500c8b24e616518e40710b (patch)
treee8aa0355115a1ac3eb66b98c4aa295fc6891e0f2 /lib/dvb/sec.cpp
parent549ebaf137cabfbe9b9c3c346011c7d6241e7655 (diff)
downloadenigma2-58163e18dce8d07d32500c8b24e616518e40710b.tar.gz
enigma2-58163e18dce8d07d32500c8b24e616518e40710b.zip
add possibility to change delay after diseqc reset command and delay after diseqc peripherial poweron command via satellite equipment control plugin
Diffstat (limited to 'lib/dvb/sec.cpp')
-rw-r--r--lib/dvb/sec.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/dvb/sec.cpp b/lib/dvb/sec.cpp
index 2a6016e0..2b7f717b 100644
--- a/lib/dvb/sec.cpp
+++ b/lib/dvb/sec.cpp
@@ -637,11 +637,11 @@ RESULT eDVBSatelliteEquipmentControl::prepare(iDVBFrontend &frontend, FRONTENDPA
diseqc.data[2] = 0;
// diseqc reset
sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
- sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 50) );
+ sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_DISEQC_RESET_CMD]) );
diseqc.data[2] = 3;
// diseqc peripherial powersupply on
sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
- sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 150) );
+ sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_DISEQC_PERIPHERIAL_POWERON_CMD]) );
}
for (int seq_repeat = 0; seq_repeat < (di_param.m_seq_repeat?2:1); ++seq_repeat)