Only send async updates for exported params
Change-Id: I466d99bf0234529ed58fa8045af83a0da44f96f7
This commit is contained in:
@ -390,6 +390,8 @@ class Dispatcher(object):
|
||||
# easy approach: poll all values...
|
||||
for modulename, moduleobj in self._modules.items():
|
||||
for pname, pobj in moduleobj.PARAMS.items():
|
||||
if not pobj.export:
|
||||
continue
|
||||
# WARNING: THIS READS ALL PARAMS FROM HW!
|
||||
# XXX: should we send the cached values instead? (pbj.value)
|
||||
# also: ignore errors here.
|
||||
|
Reference in New Issue
Block a user