-
Notifications
You must be signed in to change notification settings - Fork 82
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: ScalerCH.select_channels() selects channel with no name text #869
Comments
Further investigation with ophyd 1.5.1 test program
output
Summary, when the first channel name is blank in EPICS, then |
Note if the second channel name is also blank, it is removed each time. Only the first channel name has this problem. |
Since Line 145 in 09cc0c5
replace it with: |
In BCDA-APS/use_bluesky#56, the name field of the first channel of the scaler was left blank in EPICS. The
select_channels()
code failed to handle this properly. Even when that name was set after the bluesky session started,select_channels()
code still failed to handle this properly. If the channel had a name before bluesky connected to the scaler, thenselect_channels()
code works properly.Also, now is a good time to make the
chan_names
argument into a kwarg with default ofNone
or[]
. Do that enhancement in a separate issue (#870).The text was updated successfully, but these errors were encountered: