Skip to content

Commit

Permalink
two changes to support rogue6
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisvam committed Jan 5, 2024
1 parent fb5211f commit f5c9077
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions firmware/python/cameralink_gateway/_ClinkDevRoot.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,10 @@ def __init__(self,
initRead = initRead,
**kwargs)

# added for rogue6
self.zmqServer = pr.interfaces.ZmqServer(root=self, addr='*', port=0)
self.addInterface(self.zmqServer)

# Unhide the RemoteVariableDump command
self.RemoteVariableDump.hidden = False

Expand Down
2 changes: 1 addition & 1 deletion software/scripts/devGui.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ def __call__( self , parser, namespace,values, option_string = None):
if (args.guiType == 'PyDM'):
import pyrogue.pydm
pyrogue.pydm.runPyDM(
root = root,
serverList = root.zmqServer.address,
sizeX = 800,
sizeY = 1000,
)
Expand Down

0 comments on commit f5c9077

Please sign in to comment.