socan and MultiCAN

Note

In order to use socan in the MultiCAN device support, you have to change a configuration file in MultiCAN. See configure MultiCAN how to do this. You must also build socan with a differnt build target, this is also described in the section mentioned above.

MultiCAN is a CAN multi protocol library and EPICS device support.

MultiCAN is open source and available for the operating systems Linux, vxWorks and RTEMS.

MultiCAN protocols

MultiCAN implements higher level CAN Bus protocols like CANOpen and parts of the older CAN Application Layer (CAL) standard.

EPICS support

MultiCAN is also a CAN Bus device support for the Experimental Physics Industrial Control System (EPICS).

EPICS is a software framework for developing distributed control systems. It is mostly used in the science community for controlling research facilities like synchrotron radiation sources. MultiCAN was developed and is used at the Helmholtz-Zentrum Berlin.

The SCI API

The Simple CAN Interface (SCI) is an API that was developed with MultiCAN. The intention was to have a hardware abstraction layer to the CAN Bus device so that higher level parts of MultiCAN could be implemented hardware independent.

MultiCAN operating systems and hardware

MultiCAN has implementations of SCI for VME Bus computer systems with a VME-CAN4 card and the operating systems vxWorks or RTEMS.

More recently, an implementation of SCI for CAN to TCP/IP hat rail modules was added. These modules are connected to the VME Bus system or Linux PC by ethernet.

This was the first time MultiCAN could be compiled and used with Linux. However, the connection via ethernet and TCP/IP worsens the real time properties of the CAN bus interface.

MultiCAN support of Linux and CAN devices on a PC with socan

By using the sci library of the socan package, MultiCAN now supports CAN interface cards with Linux that are directly connected to the PC, e.g. PCI cards or USB adapters. The software only needs a SocketCAN interface for these devices. With the PCAN-PCI Express FD card we not even need an extra driver, since this driver is part of the standard Linux kernel.

With the socan package and MultiCAN we can now run EPICS IOCs on Linux PCs that have directly connected CAN Bus interface.

Configure MultiCAN

For reasons of backwards compatbility, MultiCAN is by default configured to use the “scan” driver when compiled for linux. This is the driver for CAN to TCP/IP hat rail modules mentioned earlier.

In order to compile MultiCAN with socan, change file ‘configure/CONFIG” there. Make sure that the following entries are set:

USE_VCAN_Linux=NO
USE_SCAN_Linux=NO
USE_SOCAN_Linux=YES

This configures MultiCAN to use the socan library instead of scan.

You must also add an entry to file ‘configure/RELEASE’ (insert correct path below):

SOCAN=<PATH-TO-SOCAN-MODULE>

Finally you must not build socan with make, use:

make epics

instead. This creates a library directory with a different name that is needed by EPICS.