Skip to content

Commit b0797fe

Browse files
committed
Don't need to do unit conversions for set output
1 parent 5377b59 commit b0797fe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

labscript_devices/AD9959DDSSweeper/blacs_workers.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -371,9 +371,9 @@ def transition_to_buffered(self, device_name, h5file, initial_values, fresh):
371371
self.logger.debug(f'Setting fresh outputs on chan: {chan}')
372372
self.intf.set_output(chan, freq, amp, phase)
373373
self.final_values[f'channel {chan}'] = {
374-
'freq' : freq * self.intf.tuning_words_to_SI['freq'],
375-
'amp' : amp * self.intf.tuning_words_to_SI['amp'],
376-
'phase' : phase * self.intf.tuning_words_to_SI['phase']
374+
'freq' : freq,
375+
'amp' : amp,
376+
'phase' : phase,
377377
}
378378

379379
else:

0 commit comments

Comments
 (0)