Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BUG: Change declaration of SynAxis components such that describe() works properly. #1154

Merged
merged 1 commit into from
Jan 9, 2024
Merged
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
6 changes: 3 additions & 3 deletions ophyd/sim.py
Original file line number Diff line number Diff line change
Expand Up @@ -413,8 +413,8 @@ class SynAxis(Device):
Default is 1.
"""

readback = Cpt(_ReadbackSignal, value=0, kind="hinted")
setpoint = Cpt(_SetpointSignal, value=0, kind="normal")
readback = Cpt(_ReadbackSignal, value=0.0, kind="hinted")
setpoint = Cpt(_SetpointSignal, value=0.0, kind="normal")

velocity = Cpt(Signal, value=1, kind="config")
acceleration = Cpt(Signal, value=1, kind="config")
Expand Down Expand Up @@ -529,7 +529,7 @@ def hints(self):


class SynAxisNoHints(SynAxis):
readback = Cpt(_ReadbackSignal, value=0, kind="omitted")
readback = Cpt(_ReadbackSignal, value=0.0, kind="omitted")

@property
def hints(self):
Expand Down
Loading