Skip to content
Snippets Groups Projects
Commit 3a9bff45 authored by Michael DM Dryden's avatar Michael DM Dryden
Browse files

Fixes #2. OCP experiment saved separately to not overwrite last experiment to...

Fixes #2. OCP experiment saved separately to not overwrite last experiment to make data saving possible.
parent 1f776185
Branches
Tags
No related merge requests found
......@@ -184,9 +184,9 @@ class Main(object):
"""Start OCP measurements."""
if self.version[0] >= 1 and self.version[1] >= 2:
self.recv_p, self.send_p = multiprocessing.Pipe(duplex=True)
self.current_exp = comm.OCPExp(self.send_p)
self.ocp_exp = comm.OCPExp(self.send_p)
self.current_exp.run_wrapper(self.serial_liststore.get_value(
self.ocp_exp.run_wrapper(self.serial_liststore.get_value(
self.serial_combobox.get_active_iter(), 0))
self.send_p.close() # need for EOF signal to work
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment