Files
sics/site_ansto/instrument/config/plc/plc_common_1.tcl
Ferdi Franceschini ade5216ea9 Merged Release 1.2
r1897 | ffr | 2007-04-20 11:53:31 +1000 (Fri, 20 Apr 2007) | 2 lines
2012-11-15 13:15:32 +11:00

14 lines
351 B
Tcl

namespace eval plc {
proc status_hpath_setup {parent} {
set plcPath $parent/plc
hmake $plcPath spy none;
hsetprop $plcPath type part;
set objlist [sicslist match plc_*];
foreach v $objlist {
if { [SplitReply [sicslist $v type]]== "SicsVariable"} {
hattach $plcPath $v [string replace $v 0 3];
}
}
}
}