Skip to content

Commit

Permalink
Add queue size signal to base AD plugin IO class (#725)
Browse files Browse the repository at this point in the history
  • Loading branch information
jwlodek authored Jan 9, 2025
1 parent 4f4458c commit 7683745
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/ophyd_async/epics/adcore/_core_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ def __init__(self, prefix: str, name: str = "") -> None:
self.nd_array_address = epics_signal_rw_rbv(int, prefix + "NDArrayAddress")
self.array_size0 = epics_signal_r(int, prefix + "ArraySize0_RBV")
self.array_size1 = epics_signal_r(int, prefix + "ArraySize1_RBV")
self.queue_size = epics_signal_rw(int, prefix + "QueueSize")
super().__init__(prefix, name)


Expand Down

0 comments on commit 7683745

Please sign in to comment.