X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/b6ad75135e8a2a3f8731e53a00f62a139251b805..b41d5f967712c1ef48b63a00052f61275fc8e737:/lib/python/Components/NimManager.py diff --git a/lib/python/Components/NimManager.py b/lib/python/Components/NimManager.py index d6d9d786..04ea2889 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=1) + x.addNotifier(lambda configElement: secClass.setParam(secClass.MOTOR_COMMAND_RETRIES, configElement.value)) + config.sec.motor_command_retries = x + + def InitNimManager(nimmgr): InitSecParams()