Introduction

SCI is an abbreviation for Simple CAN Interface. This is a library to access the CAN bus in a hardware-independent way.

Currently SCI is implemented for these platforms:

  • vxWorks on a mvme-162 CPU with VME-CAN2 or VME-CAN4 card

  • RTEMS on a mvme-2100 or mvme5500 CPU with VME-CAN2 or VME-CAN4 card

  • the embedded controller CPU that was developed at the Helmholtz-Zentrum Berlin

SCI is essentially a library written in C and provides a way to access the CAN bus in a hardware-independent way. It is intentionally held simple and largely represents the data-link layer of the OSI-model.

The simple CAN interface is prepared to handle more than one CAN port. Each port is distinguished by a port-number. The CAN ports may be realized by one or more CAN interface cards, not necessarily from the same vendor. The interface-cards may have to be accessed by different drivers but these differences are hidden by the simple CAN interface. From the users’s point of view, the CAN-interfaces are logically equivalent and are accessed in the same way.

Each CAN object is characterized by a pointer to a sci_Object structure. This structure contains a user part, that can be used to store user-defined data up to 16 bytes. The structure also contains internal data, but that data cannot be read or written to. Due to this unspecified internal data, whose size is unknown to the user, memory for sci-objects is only allocated by the library. A user program should only use pointers to sci-objects but should never create variables of the type sci_Object itself. The data type sci_Object is in it’s function similar to the FILE - structure that is used in C to handle files.

Additionally, it is possible to define several sci-objects that use the same CAN object-id. These special sci-objects are also called duplicated objects in this documentation.

SCI is thread-safe, when implemented in multi-tasking environments. The sci_Struc pointer, that is created with sci_open() is used to distinguish between different processes that access the library. These processes are well protected against each other, it is impossible for a process to use CAN objects that are already in use by another process. In this documentation, the term ‘thread’ is used instead of the more general word ‘process’.

SCI from version 2.3 on supports plug-ins. A plug-in is a set of 3 functions that perform arbitrary format-conversions of the data-bytes of a single CAN data frame. The 0 to 8 raw-data bytes from the CAN bus are converted to 0 to 8 data-bytes for the sci-application and vice versa. One example for the application of this feature is the big-endian to little endian conversion. Plug-ins are currently not implemented in SCI for DOS, which is only available in version 2.2. However, there is an add-on, sciplug, that makes SCI for DOS also plug-in capable with some small restrictions. It consists of a header-file, sciplug.h, that must be included in the application’s source and an object file, sciplug.obj, that must be linked to the applications executable.

SCI from version 2.5 on has a new function, sci_get_bitrate. This function is currently not available in SCI for DOS. Additionally an inconsistency concerning the port data-type has been removed. Now the port-parameter of an sci-function is always of the type unsigned short.