diff --git a/firmware/python/cameralink_gateway/_ClinkDevRoot.py b/firmware/python/cameralink_gateway/_ClinkDevRoot.py index 6ff63c6..a4a91c9 100644 --- a/firmware/python/cameralink_gateway/_ClinkDevRoot.py +++ b/firmware/python/cameralink_gateway/_ClinkDevRoot.py @@ -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 diff --git a/software/scripts/devGui.py b/software/scripts/devGui.py index 1e3172f..b946b87 100755 --- a/software/scripts/devGui.py +++ b/software/scripts/devGui.py @@ -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, )