diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2009-12-22 14:18:00 +0100 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2009-12-22 15:56:11 +0100 |
| commit | 41b99d4a2d737817b75c93c8331f038326d13862 (patch) | |
| tree | eaa9820d34ac18bef44ef6db853bb16bfa1bc31d | |
| parent | 37b6491b12090e02c5a7ad9ea2d161c528c8788b (diff) | |
| download | enigma2-41b99d4a2d737817b75c93c8331f038326d13862.tar.gz enigma2-41b99d4a2d737817b75c93c8331f038326d13862.zip | |
NimManager.py: increased delay after enable voltage before send motor diseqc command... this fixes bug #261
| -rw-r--r-- | lib/python/Components/NimManager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/NimManager.py b/lib/python/Components/NimManager.py index 78e17bb7..d374f7e7 100644 --- a/lib/python/Components/NimManager.py +++ b/lib/python/Components/NimManager.py @@ -899,7 +899,7 @@ def InitSecParams(): x.addNotifier(lambda configElement: secClass.setParam(secClass.DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_MEASURE_IDLE_INPUTPOWER, configElement.value)) config.sec.delay_after_voltage_change_before_measure_idle_inputpower = x - x = ConfigInteger(default=750, limits = (0, 9999)) + x = ConfigInteger(default=900, limits = (0, 9999)) x.addNotifier(lambda configElement: secClass.setParam(secClass.DELAY_AFTER_ENABLE_VOLTAGE_BEFORE_MOTOR_CMD, configElement.value)) config.sec.delay_after_enable_voltage_before_motor_command = x |
