We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 19d2aaa + 6d8eb4c commit 3618f6dCopy full SHA for 3618f6d
python/ofm/ofm/comp/mfb_tools/debug/gen_loop_switch/gen_loop_switch.py
@@ -119,12 +119,12 @@ def gen_start(
119
if max_ch is not None:
120
self.gen.maximum_channel = max_ch
121
122
- self.gen.enable = True
+ self.gen.enabled = True
123
124
def gen_stop(self) -> None:
125
"""Stop generating frames and return MUXes to their default state (both to 0)."""
126
- self.gen.enable = False
127
- while self.gen.enable:
+ self.gen.enabled = False
+ while self.gen.enabled:
128
continue
129
self.input = 0
130
0 commit comments