From ad1e1a62302f33cf428da8141ae2a731bb3137de Mon Sep 17 00:00:00 2001 From: Andreas Monzner Date: Wed, 14 Feb 2007 11:20:56 +0000 Subject: make retransmit rotor diseqc command retries changable --- lib/python/Components/NimManager.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'lib/python') diff --git a/lib/python/Components/NimManager.py b/lib/python/Components/NimManager.py index d6d9d786..818a443e 100644 --- a/lib/python/Components/NimManager.py +++ b/lib/python/Components/NimManager.py @@ -691,6 +691,11 @@ def InitSecParams(): x.addNotifier(lambda configElement: secClass.setParam(secClass.MOTOR_RUNNING_TIMEOUT, configElement.value)) config.sec.motor_running_timeout = x + x = ConfigInteger(default=2) + x.addNotifier(lambda configElement: secClass.setParam(secClass.MOTOR_COMMAND_RETRIES, configElement.value)) + config.sec.motor_command_retries = x + + def InitNimManager(nimmgr): InitSecParams() -- cgit v1.2.3