Commit 755b3fe8 authored by Arnaud WATLET's avatar Arnaud WATLET
Browse files

Change fulldata in full_waveform

Showing with 1 addition and 1 deletion
+1 -1
...@@ -190,7 +190,7 @@ class OhmPi(object): ...@@ -190,7 +190,7 @@ class OhmPi(object):
f.write('A,B,M,N,t,pulse,polarity,current,voltage\n') f.write('A,B,M,N,t,pulse,polarity,current,voltage\n')
# write full data # write full data
with open(fw_filename, 'a') as f: with open(fw_filename, 'a') as f:
dd = last_measurement['fulldata'] dd = last_measurement['full_waveform']
aa = np.repeat(last_measurement['A'], dd.shape[0]) aa = np.repeat(last_measurement['A'], dd.shape[0])
bb = np.repeat(last_measurement['B'], dd.shape[0]) bb = np.repeat(last_measurement['B'], dd.shape[0])
mm = np.repeat(last_measurement['M'], dd.shape[0]) mm = np.repeat(last_measurement['M'], dd.shape[0])
......
Supports Markdown
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