aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-07-12 21:04:32 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-07-12 21:04:32 +0000
commit119d2212d4ee135e5ec78cc6bbd3890a0e08514e (patch)
treeb56638f816e2d1474b2c9bcbd26ab132b0bfba88 /lib/python
parent1faa7be4df1726873b4af5ff82ea06404977d065 (diff)
downloadenigma2-119d2212d4ee135e5ec78cc6bbd3890a0e08514e.tar.gz
enigma2-119d2212d4ee135e5ec78cc6bbd3890a0e08514e.zip
750ms wait time after enable voltage is to much..
DiSEqC Spec says 100ms is enough.. so we use 200ms here
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Components/NimManager.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/NimManager.py b/lib/python/Components/NimManager.py
index 00f34c6b..00f9c18b 100644
--- a/lib/python/Components/NimManager.py
+++ b/lib/python/Components/NimManager.py
@@ -720,7 +720,7 @@ def InitSecParams():
x.addNotifier(lambda configElement: secClass.setParam(secClass.DELAY_AFTER_TONEBURST, configElement.value))
config.sec.delay_after_toneburst = x
- x = ConfigInteger(default=750, limits = (0, 9999))
+ x = ConfigInteger(default=200, limits = (0, 9999))
x.addNotifier(lambda configElement: secClass.setParam(secClass.DELAY_AFTER_ENABLE_VOLTAGE_BEFORE_SWITCH_CMDS, configElement.value))
config.sec.delay_after_enable_voltage_before_switch_command = x