Previous
EPICS Pezca Module
This site contains links for the source code of the software and information on how to install and
use it on your system.
Please email any comments and
bug reports to Goetz Pfeiffer who
is responsible for coordinating development and releases.
| Module Version | uses EPICS Release | Filename | Remarks |
|---|---|---|---|
| 0.1 | 3.13.1 | Pezca-0.1.tar.gz | support for more ezca data-types more ezca functions |
| 0.2 | 3.13.3 | Pezca-0.2.tar.gz | support for Windows NT was added. Notes for the Windows NT-Version: * the port is not yet thoroughly tested * Microsoft C-Compiler is needed * "nmake" is needed |
| 0.3 | 3.13.5 | Pezca-0.3.tar.gz | based on the new EPICS version. Notes for the Windows NT-Version: * the port is not yet thoroughly tested * "UDP" Errors are harmless. They disappear,    when the carepeater program is started * Microsoft C-Compiler is needed * "nmake" is needed |
| 0.3.1 | 3.13.5 | Pezca-0.3.1.tar.gz | based on the new EPICS version. small bugfixes that fix errors on Linux Notes for the Windows NT-Version: * the port is not yet thoroughly tested * "UDP" Errors are harmless. They disappear,    when the carepeater program is started * Microsoft C-Compiler is needed * "nmake" is needed |
| 0.3.2 | 3.13.5 | Pezca-0.3.2.tar.gz | new configuration system, otherwise identical to version 0.3.1 |
| 0.3.3 | newer than 3.13.4 | Pezca-0.3.3.tar.gz | new configuration system. This version requires an installed EPICS Base and an ezca library (usually installed in the EPICS-Extensions directory.). Thanks to Sergey Stepanov for providing the first version of this. |
| 0.4 | newer than 3.13.4 | Pezca-0.4.tar.gz | bugfixes in list functions, stand-alone and on-top. This version combines both, the stand-alone version of Pezca which contains all parts of channel access and ezca and the "on top" version which requires an installed EPICS base and ezca library. The user can select which of the two versions he wants to install (see README file). Several errors in PutList were fixed. |
| 0.5 | newer than 3.13.4 | Pezca-0.5.tar.gz | The functions Perror() and GetErrorString were implemented. They call the corresponding ezca functions. |
Your system should also support the compilation of perl modules, which is usually no problem on a UNIX like systems where perl is installed.
Note that the Pezca module contains all necessary source-files from the EPICS distribution. It can be compiled even when no other parts of EPICS are installed on your system. A possible disadvantage of this is that it does never use any parts of an installed EPICS distribution since it is self-contained.
For a global installation you usually have to be "root" (or "administrator" on Windows NT) on your system. All users on your system can then use Pezca.
For a local installation you do not need to be "root" and your installation goes into an arbitrary directory. If other users want to use Pezca, you have to set access-permissions on files and directories accordingly.
Global Installation:
Local Installation:
Global Installation:
use Pezca;
Local Installation:
export PATH=${PATH}:<perldir>/bin
export PERL5LIB=<perldir>/lib/site_perl
export MANPATH=${MANPATH}:<perldir>/man
and then add near the top of your script
use Pezca;
use lib "<perldir>/lib/site_perl"; use Pezca;
Previous