-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* origin/release-3.11: SINQ: Added setup for mobile andor CCD camera and added startup setting polariser REQUIREMENTS: Expanded the bandwith of allowed p4p versions Change-Id: I159c50869ddfbfa33f25c770989610a181c8e5c4
- Loading branch information
Showing
3 changed files
with
56 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
description = 'Setup for the ANDOR CCD camera at AMOR using the CCDWWW server without counter box' | ||
|
||
excludes = ['detector', 'detector_mon'] | ||
|
||
devices = dict( | ||
ccdwww_connector = device('nicos_sinq.boa.devices.ccdwww.CCDWWWConnector', | ||
description = 'Connector for CCDWWW', | ||
baseurl = 'http://mpc2704:8080/ccd', | ||
base64auth = 'xxx', | ||
byteorder = 'big', | ||
comdelay = 1., | ||
comtries = 5, | ||
), | ||
ccdwww = device('nicos_sinq.boa.devices.ccdwww.AndorCCD', | ||
description = 'CCDWWW image channel', | ||
iscontroller = True, | ||
connector = 'ccdwww_connector', | ||
shape = (1024, 1024), | ||
pollinterval = None, | ||
maxage = 30, | ||
), | ||
ccd_cooler = device('nicos_sinq.boa.devices.ccdwww.CCDCooler', | ||
description = 'CCD sensor cooler', | ||
connector = 'ccdwww_connector', | ||
unit = 'state', | ||
pollinterval = None, | ||
maxage = 30, | ||
fmtstr = '%s' | ||
), | ||
cooler_temperature = device('nicos.devices.generic.paramdev.ReadonlyParamDevice', | ||
description = 'Actual temperature reading', | ||
device = 'ccd_cooler', | ||
parameter = 'temperature', | ||
), | ||
andorccd_det = device('nicos.devices.generic.Detector', | ||
description = 'Dummy detector to encapsulate ccdwww', | ||
monitors = [ | ||
'ccdwww', | ||
], | ||
timers = [ | ||
'ccdwww', | ||
], | ||
images = [ | ||
'ccdwww', | ||
], | ||
), | ||
) | ||
|
||
startupcode = ''' | ||
SetDetectors(andorccd_det) | ||
''' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
caproto>=0.8.1;platform_machine!='arm64' | ||
p4p==4.0.0;platform_machine!='arm64' | ||
p4p>=4.0.0,<=4.2.0;platform_machine!='arm64' | ||
pyepics>=3.2.4;platform_machine!='arm64' |