Skip to content
Snippets Groups Projects
Commit 2e513087 authored by Milan Prica's avatar Milan Prica :skier:
Browse files

As currently deployed at FERMI.

parents
No related branches found
No related tags found
No related merge requests found
Makefile 0 → 100644
NAME = smaractmcs2-srv
MAIN = Smaract_mcs2.py
DIRNAME = $(NAME:-srv=)
MODNAME = $(MAIN:.py=)
PY_FILES += $(wildcard src/*.py)
default: bin ${PY_FILES}
@cp ${PY_FILES} bin/${DIRNAME}
@echo "#!/usr/bin/env python\nimport sys\nsys.path.append(sys.path[0]+'/${DIRNAME}')\nfrom ${MODNAME} import main\nif __name__ == '__main__':\n main()\n" > bin/${NAME}
@chmod +x bin/${NAME} bin/${DIRNAME}/${MAIN}
bin:
@test -d $@ || mkdir -p $@/${DIRNAME}
clean:
@rm -fr bin/ src/*~
.PHONY: clean
# SmarAct MCS2 Tango device server.
The device server controls both the positioners with an encoder (sensor)
and those without an encoder (sensorless). Various device attributes
are enabled/disabled accordingly.
A MCS2 controller can control simultaneously positioners of both types.
Typical installation consists of a socket-srv device server connected to the
controller and an instance of the Smaract device server per positioner.
Symbolic link to the Python file should be created in the deployment
directory named smaractmcs2-srv.
File added
File added
This diff is collapsed.
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment