fix: bugfix burstenable and burstdisalbe
This commit is contained in:
parent
a620e6cf50
commit
f3866a29e9
@ -188,7 +188,7 @@ class DelayGeneratorDG645(Device):
|
|||||||
# Validate inputs
|
# Validate inputs
|
||||||
count = int(count)
|
count = int(count)
|
||||||
assert count > 0, "Number of bursts must be positive"
|
assert count > 0, "Number of bursts must be positive"
|
||||||
assert delay > 0, "Burst delay must be positive"
|
assert delay >= 0, "Burst delay must be larger than 0"
|
||||||
assert period > 0, "Burst period must be positive"
|
assert period > 0, "Burst period must be positive"
|
||||||
assert config in ["all", "first"], "Supported bust configs are 'all' and 'first'"
|
assert config in ["all", "first"], "Supported bust configs are 'all' and 'first'"
|
||||||
|
|
||||||
@ -202,7 +202,7 @@ class DelayGeneratorDG645(Device):
|
|||||||
elif config == "first":
|
elif config == "first":
|
||||||
self.burstConfig.set(1).wait()
|
self.burstConfig.set(1).wait()
|
||||||
|
|
||||||
def busrtDisable(self):
|
def burstDisable(self):
|
||||||
"""Disable the burst mode"""
|
"""Disable the burst mode"""
|
||||||
self.burstMode.set(0).wait()
|
self.burstMode.set(0).wait()
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user