From: Andreas Monzner Date: Thu, 12 Jul 2007 21:04:32 +0000 (+0000) Subject: 750ms wait time after enable voltage is to much.. X-Git-Tag: 2.6.0~2103 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/119d2212d4ee135e5ec78cc6bbd3890a0e08514e 750ms wait time after enable voltage is to much.. DiSEqC Spec says 100ms is enough.. so we use 200ms here --- 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