We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0797fe commit adfa697Copy full SHA for adfa697
labscript_devices/AD9959DDSSweeper/blacs_workers.py
@@ -59,17 +59,10 @@ def __init__(
59
}
60
61
self.sys_clk_freq = ref_clock_frequency * pll_mult
62
-
63
- # self.SI_to_tuning_words = {
64
- # 'freq' : (2**32 - 1) / self.sys_clk_freq,
65
- # 'amp' : 1023.0,
66
- # 'phase' : 360.0 / 16384.0
67
- # }
68
69
self.tuning_words_to_SI = {
70
- 'freq' : self.sys_clk_freq / (2**32 - 1) * 10.0,
+ 'freq' : self.sys_clk_freq / (2**32 - 1),
71
'amp' : 1/1023.0,
72
- # 'phase' : 360 / 16384.0 * 10.0
73
'phase' : 360 / 16384.0
74
75
0 commit comments