From 912f83b1690d4ea032fd012eb391f8f9eeacb54d Mon Sep 17 00:00:00 2001 From: Carl Philipp Klemm <philipp@uvos.xyz> Date: Mon, 19 Jun 2023 16:29:16 +0200 Subject: [PATCH] add README --- README.md | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..1c42740 --- /dev/null +++ b/README.md @@ -0,0 +1,38 @@ +# libeismultiplexer + +libeismultiplexer is a shared library that allows you to control EISmulitplexer devices. + +For questions or comments, please write to klemm@rhd-instruments.de + +Full Online API documentation can be built with the "doc" target and is also avialable [here](http://uvos.xyz/kiss/libeismultiplexer). +A PDF with API documentation can be found [here](http://uvos.xyz/kiss/libeismultiplexer.pdf). + +## Compile/Install + +### Requirements + +* git +* c11 capable compiler (e.g. GCC, CLANG) +* cmake 3.0 or later +* libusb 1.0 or later +* (optional) doxygen 1.8 or later to generate the documentation + +### Procedure + +In a console do: + +* git clone https://git-ce.rwth-aachen.de/carl_philipp.klemm/libeismultiplexer.git +* cd librelaxisloader +* mkdir build +* cd build +* cmake .. +* make +* sudo make install + +to make the documentation: + +* make doc + +### Licence + +librelaxisloader is licenced to you under the Apache License, Version 2.0 -- GitLab