aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/NimManager.py
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-02-14 11:20:56 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-02-14 11:20:56 +0000
commitad1e1a62302f33cf428da8141ae2a731bb3137de (patch)
treeb8aceee37d4c98d6d66dc52514134b76a5f00046 /lib/python/Components/NimManager.py
parentb6ad75135e8a2a3f8731e53a00f62a139251b805 (diff)
downloadenigma2-ad1e1a62302f33cf428da8141ae2a731bb3137de.tar.gz
enigma2-ad1e1a62302f33cf428da8141ae2a731bb3137de.zip
make retransmit rotor diseqc command retries changable
Diffstat (limited to 'lib/python/Components/NimManager.py')
-rw-r--r--lib/python/Components/NimManager.py5
1 files changed, 5 insertions, 0 deletions
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()