We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d4535b commit 96b3dd3Copy full SHA for 96b3dd3
labscript/core.py
@@ -73,9 +73,10 @@ def add_device(self, device):
73
self._clock_limit = device.clock_limit
74
# Update minimum clock high time if this new device requires a longer high time.
75
if getattr(device, 'minimum_clock_high_time', None) is not None:
76
- self.minimum_clock_high_time = max(
+ self._minimum_clock_high_time = max(
77
device.minimum_clock_high_time, self.minimum_clock_high_time
78
)
79
+
80
@property
81
def clock_limit(self):
82
"""float: Clock limit for this line, typically set by speed of child Intermediate Devices."""
0 commit comments