750ms wait time after enable voltage is to much..
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>
Thu, 12 Jul 2007 21:04:32 +0000 (21:04 +0000)
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>
Thu, 12 Jul 2007 21:04:32 +0000 (21:04 +0000)
DiSEqC Spec says 100ms is enough.. so we use 200ms here

lib/python/Components/NimManager.py

index 00f34c6b0f3e87dfce970ce8bdf75b66f2707909..00f9c18b631ee6ddde06c1a63f21d1a5330ecbd0 100644 (file)
@@ -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