Skip to content

Commit

Permalink
Merge pull request #1132 from slaclab/xadc-fix
Browse files Browse the repository at this point in the history
Rogue Device fix for XADC and SysMon
  • Loading branch information
bengineerd authored Feb 9, 2024
2 parents eb79be8 + 4839d25 commit f61b744
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/surf/xilinx/_AxiSysMonUltraScale.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def __init__(
**kwargs):
super().__init__(description=description, **kwargs)

self.simpleViewList = simpleViewList
self.simpleViewList = simpleViewList[:]

def addPair(name, offset, bitSize, units, bitOffset, description, function, pollInterval=0):
self.add(pr.RemoteVariable(
Expand Down
2 changes: 1 addition & 1 deletion python/surf/xilinx/_Xadc.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def __init__(self,
if isinstance(auxChannels, int):
auxChannels = list(range(auxChannels))

self.simpleViewList = simpleViewList
self.simpleViewList = simpleViewList[:]
self.simpleViewList.append('enable')

def addPair(name, offset, bitSize, units, bitOffset, description, function, pollInterval=0):
Expand Down

0 comments on commit f61b744

Please sign in to comment.