##// END OF EJS Templates
Version 2.2.5
Miguel Valdez -
r827:7c8bc1e62102
parent child
Show More
@@ -76,4 +76,9 properly but the next days did not.
76 2.2.4.1:
76 2.2.4.1:
77 -jroIO_usrp.py is update to read Sandra's data
77 -jroIO_usrp.py is update to read Sandra's data
78 -decimation in Spectra and RTI plots is always enabled.
78 -decimation in Spectra and RTI plots is always enabled.
79 -time-window option added to GUI No newline at end of file
79 -time-window option added to GUI
80
81 2.2.5:
82 -splitProfiles and combineProfiles modules were added to VoltageProc and Signal Chain GUI.
83 -nProfiles of USRP data (hdf5) is the number of profiles thera are in one second.
84 -jroPlotter works directly with data objects instead of dictionaries No newline at end of file
@@ -4,4 +4,4 Created on Feb 7, 2012
4 @author $Author$
4 @author $Author$
5 @version $Id$
5 @version $Id$
6 '''
6 '''
7 __version__ = "2.2.4.1" No newline at end of file
7 __version__ = "2.2.5" No newline at end of file
@@ -1,5 +1,5
1 import threading
1 import threading
2 import Queue
2 from Queue import Queue
3
3
4 from schainpy.controller import Project
4 from schainpy.controller import Project
5 from schainpy.model.graphics.jroplotter import PlotManager
5 from schainpy.model.graphics.jroplotter import PlotManager
@@ -102,7 +102,7 class ControllerThread(threading.Thread, Project):
102
102
103 def useExternalPlotter(self):
103 def useExternalPlotter(self):
104
104
105 self.plotterQueue = Queue.Queue(10)
105 self.plotterQueue = Queue(10)
106 self.setPlotters()
106 self.setPlotters()
107
107
108 plotManagerObj = PlotManager(self.plotterQueue)
108 plotManagerObj = PlotManager(self.plotterQueue)
General Comments 0
You need to be logged in to leave comments. Login now