From 119d2212d4ee135e5ec78cc6bbd3890a0e08514e Mon Sep 17 00:00:00 2001 From: Andreas Monzner Date: Thu, 12 Jul 2007 21:04:32 +0000 Subject: [PATCH] 750ms wait time after enable voltage is to much.. DiSEqC Spec says 100ms is enough.. so we use 200ms here --- lib/python/Components/NimManager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.30.2