Lakeshore controllers will be connected to the ca5-[instrument] moxa box Default config parameters are now available via a tc_dfltPar array IP and socket number are now mandatory when creating an ls340 object hrpd/.../lakeshore340.tcl Multiple lakeshores can now be added to the hdb tree echidna_configuration.tcl Provide example for configuring two lakeshores SICS-134 reflectometer/../commands.tcl First draft of beam/attenuator command, currently sends POS=xx (this won't work) reflectometer/../motor_configuration.tcl Add bat position feedback via action sans/../motor_configuration.tcl Renamed action parameter (aoid) to "action" server_config.tcl Initialise motor movecount to 500 to reduce number of position updates by a factor of 50 SICS-134 action.c Update the beam/attenuator command feedback variable when POS changes. SICS-134 motor_dmc2280.c Added PLP:BAT:POS status response handler for platypus bat position updates Only send IDLE state position updates if position change is greater than the precision. Rename action parameter (aoid) to "action" r2679 | ffr | 2008-08-19 15:11:55 +1000 (Tue, 19 Aug 2008) | 31 lines
40 lines
1.3 KiB
Tcl
40 lines
1.3 KiB
Tcl
namespace eval ::environment::temperature {
|
|
# Default temperature controller parameters
|
|
array set tc_dfltPar {
|
|
tolerance 1
|
|
settle 30
|
|
range 2
|
|
upperlimit 500
|
|
lowerlimit 4
|
|
}
|
|
set tc_dfltURL ca5-[instname]
|
|
array set moxaPortMap {1 4001 2 4002 3 4003 4 4004}
|
|
}
|
|
|
|
# @brief Make a simulated temperature controller object.
|
|
#
|
|
# @param temp_sobj, name for temperature controller object.
|
|
proc ::environment::temperature::mkls340sim {temp_sobj} {
|
|
EvFactory new $temp_sobj sim
|
|
sicslist setatt $temp_sobj numsensors 4
|
|
sicslist setatt $temp_sobj controlsensor sensora
|
|
sicslist setatt $temp_sobj sensorlist sensora,sensorb,sensorc,sensord
|
|
sicslist setatt $temp_sobj heateron 1
|
|
sicslist setatt $temp_sobj range 2
|
|
sicslist setatt $temp_sobj units kelvin
|
|
sicslist setatt $temp_sobj klass @none
|
|
}
|
|
|
|
# @brief Make a lakeshore340 temperature controller object.
|
|
#
|
|
# @param temp_sobj, name for temperature controller object
|
|
# @param IP, (optional) IP address for temperature controller.
|
|
# @param port, (optional) port number for temperature controller.
|
|
proc ::environment::temperature::mkls340 {temp_sobj IP port} {
|
|
Makeasyncqueue sertemp1 LS340 $IP $port
|
|
sertemp1 timeout 2000
|
|
EvFactory new $temp_sobj ls340 sertemp1 1 D ABCD
|
|
sicslist setatt $temp_sobj units kelvin
|
|
sicslist setatt $temp_sobj klass @none
|
|
}
|