Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/changes/newsfragments/7796.improved_driver
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Fixed bug in Lakeshore driver that was causing blocking_t
to periodically hang indefinitely.
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,7 @@ def __init__(
get_parser=float,
set_cmd=f"SETP {output_index}, {{}}",
get_cmd=f"SETP? {output_index}",
post_delay=0.5, # getting setpoint too soon after getting may fetch previous setpoint
)
"""
The value of the setpoint in the preferred units of the control loop sensor
Expand Down
Loading