Skip to content
Merged
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
1318 TwinCATStatePositionerResetIndicator
#################

API Breaks
----------
- N/A

Library Features
----------------
- N/A

Device Features
---------------
- N/A

New Devices
-----------
- N/A

Bugfixes
--------
- TwinCATStatePositioner.reset_cmd is now a PytmcSignal with io='io' instead of an EpicsSignal to properly display the RBV readback PV in typhos.

Maintenance
-----------
- N/A

Contributors
------------
- KaushikMalapati
2 changes: 1 addition & 1 deletion pcdsdevices/state.py
Original file line number Diff line number Diff line change
Expand Up @@ -803,7 +803,7 @@ class TwinCATStatePositioner(StatePositioner):
doc='True if we have an ongoing move.')
done = Cpt(PytmcSignal, ':DONE', io='i', kind='normal',
doc='True if we completed the last move.')
reset_cmd = Cpt(EpicsSignal, ':RESET', kind='normal',
reset_cmd = Cpt(PytmcSignal, ':RESET', io='io', kind='normal',
doc='Command to reset an error.')

config = Cpt(
Expand Down