socan 1.2.1
Linux SocketCAN higher level library
Loading...
Searching...
No Matches
sci.h File Reference

c header file for the simple CAN interface (sci) More...

#include <limits.h>

Go to the source code of this file.

Macros

#define SCI_MAJOR_VERSION   3
 
#define SCI_MINOR_VERSION   0
 
#define SCI_VER   (SCI_MAJOR_VERSION*100+SCI_MINOR_VERSION)
 
#define SCI_IDENTIFIER   "LINUX,SOCAN"
 
#define SCI_PLUGPORT_START   128
 
#define SCI_MAX_PLUGPORTS   16
 
#define sci_object_type   sci_Object_Type
 
#define sci_return   sci_Return
 
#define sci_bitrate   sci_Bitrate
 
#define sci_errcode   sci_Errcode
 
#define sci_object   sci_Object
 
#define sci_struc   sci_Struc
 
#define SCI_M(err, str)
 
#define SCI_ERRS
 
#define SCI_NUM_ERRCODES   (SCI_ERR_GENERAL+1)
 
#define SCI_ERRCODE(sci_ret)
 
#define SCI_ERR(errcode)
 

Typedefs

typedef enum sci_Object_Type sci_Object_Type
 
typedef int sci_Return
 
typedef enum sci_Bitrate_Constants sci_Bitrate
 
typedef enum sci_Errcode_Constants sci_Errcode
 
typedef struct sci_object_s sci_Object
 
typedef void(* sci_Plug_Func) (int l_len, char *l_data, int h_len, char *h_data)
 
typedef int(* sci_Plug_Lencalc) (int h_len, int *l_len)
 
typedef struct sci_struc_s sci_Struc
 

Enumerations

enum  sci_Object_Type { SCI_READ , SCI_WRITE , SCI_REMOTE_READ , SCI_REMOTE_WRITE }
 
enum  sci_Return_Constants {
  SCI_NOTHING =0 , SCI_OLD_DATA =1 , SCI_LOST =2 , SCI_TMOUT =4 ,
  SCI_RESETTED =8 , SCI_INCONSISTENT =16 , SCI_EXISTS =32 , SCI_WAIT =64 ,
  SCI_ERROR =INT_MIN
}
 
enum  sci_Bitrate_Constants {
  SCI_1000KB , SCI_500KB , SCI_250KB , SCI_125KB ,
  SCI_100KB , SCI_66KB , SCI_50KB , SCI_20KB
}
 
enum  sci_Errcode_Constants {
  SCI_NO_ERR , SCI_PORT_ERR , SCI_ID_ERR , SCI_TYPE_ERR ,
  SCI_BITRATE_ERR , SCI_SET_CALLB_ERR , SCI_MODE_ERR , SCI_LENGTH_ERR ,
  SCI_ACCESS_ERR , SCI_TIMEOUT_ERR , SCI_TIMEOUT_VAL_ERR , SCI_OFF_BUS_ERR ,
  SCI_BUS_ERR , SCI_AUTHORIZE_ERR , SCI_DVR_OPEN_ERR , SCI_DVR_ACCESS_ERR ,
  SCI_HW_INIT_ERR , SCI_RESET_ERR , SCI_CHIP_CONF_ERR , SCI_ENV_ERR ,
  SCI_PLUGPORT_ERR , SCI_PLUG_DEF_ERR , SCI_OBJ_UNDEF_ERR , SCI_ERR_GENERAL
}
 

Functions

char * sci_str_status (sci_Return flag)
 
void sci_print_status (sci_Return flag)
 
char * sci_str_err (sci_Errcode err)
 
void sci_print_err (sci_Errcode err)
 
sci_Return sci_open (sci_Struc **s_struc, const char *app_name, sci_Errcode *err)
 
sci_Return sci_close (sci_Struc **s_struc)
 
sci_Return sci_get_bitrate (sci_Struc *s_struc, unsigned short port, sci_Bitrate *bitrate)
 
sci_Return sci_get_errcode (sci_Struc *s_struc, sci_Errcode *errcode)
 
sci_Return sci_get_object (sci_Struc *s_struc, sci_Object **object, unsigned short port, int id)
 
void * sci_get_user (sci_Object *object)
 
sci_Return sci_get_info (sci_Struc *s_struc, sci_Object *object, unsigned short *port, int *id, int *length, int *timeout, sci_Object_Type *type)
 
sci_Return sci_get_timestamp (sci_Struc *s_struc, sci_Object *object, unsigned long long *pstamp, int *pvalid, unsigned char *mode, unsigned char *irq_cnt)
 
sci_Return sci_obj_dump_buf (char *buf, sci_Struc *s_struc, sci_Object *object)
 
sci_Return sci_init_object (sci_Struc *s_struc, sci_Object **object, unsigned short port, int id, int length, int timeout, sci_Object_Type type, void *userp)
 
sci_Return sci_delete_object (sci_Struc *s_struc, sci_Object **object)
 
sci_Return sci_set_inhibit (sci_Struc *s_struc, sci_Object *object, unsigned long inhibit_time)
 
sci_Return sci_read_now (sci_Struc *s_struc, sci_Object *object, char *data)
 
sci_Return sci_read (sci_Struc *s_struc, sci_Object *object, char *data)
 
sci_Return sci_write (sci_Struc *s_struc, sci_Object *object, char *data)
 
sci_Return sci_write_inhibit (sci_Struc *s_struc, sci_Object *object, char *data, unsigned long *rest_time)
 
sci_Return sci_set_callback (sci_Struc *s_struc, sci_Object *object, void *f)
 
sci_Return sci_queue_read (sci_Struc *s_struc, sci_Object **object, char *data)
 
sci_Return sci_def_plug_in (unsigned short plug_port, unsigned short real_port, sci_Plug_Func h2l, sci_Plug_Func l2h, sci_Plug_Lencalc lcalc, sci_Errcode *err)
 

Detailed Description

c header file for the simple CAN interface (sci)

      socan - SocketCAN higher level library

Copyright 2025 Helmholtz-Zentrum Berlin für Materialien und Energie GmbH https://www.helmholtz-berlin.de

Author: Goetz Pfeiffer Goetz.nosp@m..Pfe.nosp@m.iffer.nosp@m.@hel.nosp@m.mholt.nosp@m.z-be.nosp@m.rlin..nosp@m.de

socan is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

socan is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with socan. If not, see https://www.gnu.org/licenses/.

This header, sci.h, contains all data types and functions of the simple CAN interface.

The library is based on socan, described at socan.h.

Definition in file sci.h.

Macro Definition Documentation

◆ sci_bitrate

#define sci_bitrate   sci_Bitrate

Alternative naming convention for sci_Bitrate

Definition at line 123 of file sci.h.

◆ SCI_ERR

#define SCI_ERR ( errcode)
Value:
(SCI_ERROR | ((errcode)<<16))
@ SCI_ERROR
Definition sci.h:278

Embed an sci_Errcode error code in a return code.

This creates a return code that contains the given error code. This macro is usually only used internally by sci.

Definition at line 362 of file sci.h.

◆ SCI_ERRCODE

#define SCI_ERRCODE ( sci_ret)
Value:
(((sci_ret) & ~SCI_ERROR) >> 16)

Extract an error code from a return code.

Applied to a return code of type sci_Return, this returns the embedded sci_Errcode error code.

Definition at line 354 of file sci.h.

◆ sci_errcode

#define sci_errcode   sci_Errcode

Alternative naming convention for sci_Errcode

Definition at line 126 of file sci.h.

◆ SCI_ERRS

#define SCI_ERRS

Macro that creates a data structure to convert error codes to strings.

Definition at line 138 of file sci.h.

◆ SCI_IDENTIFIER

#define SCI_IDENTIFIER   "LINUX,SOCAN"

String describing the implementation of sci.

Although the interface the library provides is hardware-independent, the library itself contains hardware dependent code. In fact, the implementation of the library depends on the used computer-hardware, the operating system and on one or more drivers for CAN-interface cards. The SCI_IDENTIFIER-string provides information about the underlying hardware the library is adapted to. The identifier-string contains of sections, that are separated by commas. It has two sections, the first contains a string that describes the operating system, the following section describes the used CAN-card drivers.

"LINUX,SOCAN" means that this is a Linux platform and SCI is based on the socan object layer library.

Definition at line 91 of file sci.h.

◆ SCI_M

#define SCI_M ( err,
str )
Value:
{err,#err}

Helper macro to convert SCI error code to string.

Definition at line 135 of file sci.h.

◆ SCI_MAJOR_VERSION

#define SCI_MAJOR_VERSION   3

The major version number of SCI.

This is the major version-number of the SCI-library. The version of the library is composed of a major- and a minor-version number. Together, they form the complete version number e.g a major-number of 3 and a minor-number of 0 represent version 3.0 of the library.

Definition at line 58 of file sci.h.

◆ SCI_MAX_PLUGPORTS

#define SCI_MAX_PLUGPORTS   16

The maximum number of plugins.

This is a the maximum number plug-ports that can be defined. See also the description of SCI_PLUGPORT_START.

Definition at line 114 of file sci.h.

◆ SCI_MINOR_VERSION

#define SCI_MINOR_VERSION   0

The minor version number of SCI.

This is the minor version-number of the SCI-library. The version of the library is composed of a major- and a minor-version number. Together, they form the complete version number e.g a major-number of 3 and a minor-number of 0 represent version 3.0 of the library.

Definition at line 67 of file sci.h.

◆ SCI_NUM_ERRCODES

#define SCI_NUM_ERRCODES   (SCI_ERR_GENERAL+1)

Number of sci error codes.

Definition at line 346 of file sci.h.

◆ sci_object

#define sci_object   sci_Object

Alternative naming convention for sci_Object

Definition at line 129 of file sci.h.

◆ sci_object_type

#define sci_object_type   sci_Object_Type

Alternative naming convention for sci_Object_Type

Definition at line 117 of file sci.h.

◆ SCI_PLUGPORT_START

#define SCI_PLUGPORT_START   128

The CAN port where plugins start.

This is the number of the first port that can be used as plug-port. A plug-port is comparable to real existing CAN ports but all data is converted by data-conversion functions (plug-ins) that are defined for that specific port. Once a plug-in has been defined, a new plug-port* is defined too. That plug-port can be used like any other (real-) port. An application that uses sci with that plug-port will not notice that all data-bytes are converted by the plug-in. Up to SCI_MAX_PLUGPORTS can be defined, the first plug-port is SCI_PLUGPORT_START. Plug-ins can be defined with the function sci_def_plug_in().

Definition at line 106 of file sci.h.

◆ sci_return

#define sci_return   sci_Return

Alternative naming convention for sci_Return

Definition at line 120 of file sci.h.

◆ sci_struc

#define sci_struc   sci_Struc

Alternative naming convention for sci_Struc

Definition at line 132 of file sci.h.

◆ SCI_VER

#define SCI_VER   (SCI_MAJOR_VERSION*100+SCI_MINOR_VERSION)

The complete version number as an integer.

It is calculated as SCI_MAJOR_VERSION*100+SCI_MINOR_VERSION.

Definition at line 73 of file sci.h.

Typedef Documentation

◆ sci_Bitrate

Constants for CAN bitrates.

◆ sci_Errcode

Error codes for functions.

If an error occurs, sci function set one of these error codes. The error is returned in the sci_Return return code and also in a variable associated with the sci_Struc handle which can be retrieved with function sci_get_errcode().

◆ sci_Object

typedef struct sci_object_s sci_Object

Abstract data type of a CAN object.

It contains a user part, that can be used to store a user-defined pointer. 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.

sci-objects are created with the sci_init_object() function; CAN-id, port, length and object-type are specified when the object is created. These properties cannot be modified later, if the CAN-id on that port shall have new properties, the existing sci-object has to be deleted with the sci_delete_object() function and created again with sci_init_object().

Definition at line 384 of file sci.h.

◆ sci_Object_Type

Type of a CAN object.

There are four possible types of a CAN object

  • read: This is the data type of a read-object, data is read from the CAN-bus with an object of this type. IO-functions for an object of this type are sci_read(), sci_read_now() and sci_queue_read().
  • write: This is the data type of a write-object, data is written to the CAN-bus with an object of this type. The only IO-function for an object of this type is sci_write().
  • remote read: This is the data type for remote-read objects. These objects use the remote-transmission mechanism, that is defined in the CAN-specification. A remote-read object reads data by sending a CAN remote-request and waiting for a reply from another CAN device. This reply contains the data that is read from the other device. Although a remote-request sent, from a higher point of view, data is read from the CAN bus and from the other CAN device. IO-functions for an object of this type are sci_read() and sci_read_now(). sci_read() performs a complete request-cycle by sending the remote-request and waiting for the answer, while sci_read_now() just reads the local buffer.
  • remote write: This is the data type for remote-write objects. These objects use the remote-transmission mechanism, that is defined in the CAN-specification. sci_write() does not actually write to the CAN bus but only stores the data in a local buffer. The internal reader thread will answer incoming remote requests on that CAN object.

◆ sci_Plug_Func

typedef void(* sci_Plug_Func) (int l_len, char *l_data, int h_len, char *h_data)

Type of a plugin data conversion function

This is the prototype of a plug-in data-conversion function. 2 functions of that type are part of a plug-in. They perform data-conversion between the low-level format (raw-data from the CAN bus) and the high-level format (data that is passed to or from the application). Each data-conversion function gets a pointer to the low-level data, l_data, the length of the low-level data, l_len, a pointer to the high-level data, h_data, and a the length of the high-level data, h_len. The first conversion function, usually called h2l, should convert high-level to low-level data, the second function, usually called l2h, should convert low-level to high-level data.

Definition at line 399 of file sci.h.

◆ sci_Plug_Lencalc

typedef int(* sci_Plug_Lencalc) (int h_len, int *l_len)

Type of a plugin length conversion function

This function converts the length for a plug-in from high level data to low level data.

Definition at line 407 of file sci.h.

◆ sci_Return

typedef int sci_Return

Definition at line 284 of file sci.h.

◆ sci_Struc

typedef struct sci_struc_s sci_Struc

Abstract data type for sci handle.

This is the abstract type of the CAN resources. A pointer to a variable of this type is returned, when sci_open() is called. This pointer must be given for all other functions of this library. Different processes or threads must use different sci_Struc- parameters in their calls to the SCI-library. For this reason, the library can be called by different threads at a time an is by this, thread safe.

Note that the above definition does not represent the real structure of the sci-structure. All internal data, that this structure contains, is hidden from the user.

Definition at line 422 of file sci.h.

Enumeration Type Documentation

◆ sci_Bitrate_Constants

Constants for CAN bitrates.

Enumerator
SCI_1000KB 

bitrate of 1000KBPS

SCI_500KB 

bitrate of 500KBPS

SCI_250KB 

bitrate of 250KBPS

SCI_125KB 

bitrate of 125KBPS

SCI_100KB 

bitrate of 100KBPS

SCI_66KB 

bitrate of 66KBPS

SCI_50KB 

bitrate of 50KBPS

SCI_20KB 

bitrate of 20KBPS

Definition at line 292 of file sci.h.

◆ sci_Errcode_Constants

Error codes for functions.

If an error occurs, sci function set one of these error codes. The error is returned in the sci_Return return code and also in a variable associated with the sci_Struc handle which can be retrieved with function sci_get_errcode().

Enumerator
SCI_NO_ERR 

no error

SCI_PORT_ERR 

wrong port-parameter

SCI_ID_ERR 

wrong can-object-id

SCI_TYPE_ERR 

unknown object-type, internal error

SCI_BITRATE_ERR 

legacy, not used

SCI_SET_CALLB_ERR 

legacy, not used

SCI_MODE_ERR 

operation on object that has the wrong type (e.g. reading of a write-object etc.)

SCI_LENGTH_ERR 

object read or written with wrong length

SCI_ACCESS_ERR 

tried to access an already owned or unowned object

SCI_TIMEOUT_ERR 

legacy, not used

SCI_TIMEOUT_VAL_ERR 

legacy, not used

SCI_OFF_BUS_ERR 

legacy, not used

SCI_BUS_ERR 

legacy, not used

SCI_AUTHORIZE_ERR 

legacy, not used

SCI_DVR_OPEN_ERR 

CAN-driver (socan) couldn't be opened

SCI_DVR_ACCESS_ERR 

legacy, not used

SCI_HW_INIT_ERR 

legacy, not used

SCI_RESET_ERR 

legacy, not used

SCI_CHIP_CONF_ERR 

legacy, not used

SCI_ENV_ERR 

legacy, not used

SCI_PLUGPORT_ERR 

Wrong plugin port, number must be between SCI_PLUGPORT_START and SCI_PLUGPORT_START+SCI_MAX_PLUGPORTS-1

SCI_PLUG_DEF_ERR 

the plug-port was already defined

SCI_OBJ_UNDEF_ERR 

CAN object is not defined

SCI_ERR_GENERAL 

general error

Definition at line 310 of file sci.h.

◆ sci_Object_Type

Type of a CAN object.

There are four possible types of a CAN object

  • read: This is the data type of a read-object, data is read from the CAN-bus with an object of this type. IO-functions for an object of this type are sci_read(), sci_read_now() and sci_queue_read().
  • write: This is the data type of a write-object, data is written to the CAN-bus with an object of this type. The only IO-function for an object of this type is sci_write().
  • remote read: This is the data type for remote-read objects. These objects use the remote-transmission mechanism, that is defined in the CAN-specification. A remote-read object reads data by sending a CAN remote-request and waiting for a reply from another CAN device. This reply contains the data that is read from the other device. Although a remote-request sent, from a higher point of view, data is read from the CAN bus and from the other CAN device. IO-functions for an object of this type are sci_read() and sci_read_now(). sci_read() performs a complete request-cycle by sending the remote-request and waiting for the answer, while sci_read_now() just reads the local buffer.
  • remote write: This is the data type for remote-write objects. These objects use the remote-transmission mechanism, that is defined in the CAN-specification. sci_write() does not actually write to the CAN bus but only stores the data in a local buffer. The internal reader thread will answer incoming remote requests on that CAN object.
Enumerator
SCI_READ 

read CAN object

SCI_WRITE 

write CAN object

SCI_REMOTE_READ 

remote-read CAN object

SCI_REMOTE_WRITE 

remote-write CAN object

Definition at line 224 of file sci.h.

◆ sci_Return_Constants

Return codes for functions.

Most functions of sci return an integer that contains a combination of one or more of these flags. You have to check with bit-wise and '&' if a flag is set like in this example:

sci_Return rc= sci_read_now(&s_struc, &object, data);
if (rc & SCI_TMOUT)
printf("TIMEOUT!!\n");
@ SCI_TMOUT
Definition sci.h:272

If an error occurred, the highest bit in the return code is set. You can check for an error like this:

sci_Return rc= sci_read_now(&s_struc, &object, data);
if (rc & SCI_ERROR)
printf("Some error occurred\n");

Bits above bit 16 contain the sci error code (see sci_Errcode). You can use the macro SCI_ERRCODE to extract the error code:

sci_Return rc= sci_read_now(&s_struc, &object, data);
if (rc & SCI_ERROR)
{
printf("An error occurred, code %d\n", err);
}
enum sci_Errcode_Constants sci_Errcode
#define SCI_ERRCODE(sci_ret)
Definition sci.h:354

You can get the embedded

Enumerator
SCI_NOTHING 

no flag is set.

SCI_OLD_DATA 

data in CAN buffer is old (was already read)

SCI_LOST 

some CAN data was not read (reading was too slow)

SCI_TMOUT 

timeout

SCI_RESETTED 

legacy, not used

SCI_INCONSISTENT 

legacy, not used

SCI_EXISTS 

CAN object already defined

SCI_WAIT 

writing cannot be done (inhibit time not yet passed)

SCI_ERROR 

generic error

Definition at line 266 of file sci.h.

Function Documentation

◆ sci_close()

sci_Return sci_close ( sci_Struc ** s_struc)
extern

Close the library.

This function is used (by a thread) to close the SCI-library. All CAN objects that were previously defined (by that thread) and the sci-structure, are deleted.

Parameters
[in,out]s_strucThis is the address of a pointer that points to the sci-structure. After successful closing, the internal sci-structure is deleted and the given pointer is changed to a NULL pointer.
Returns
This function returns SCI_NOTHING on success, SCI_ERROR in case of an error. In case of an error, the sci-structure remains defined and the pointer to that structure remains valid.

Definition at line 505 of file sci.c.

◆ sci_def_plug_in()

sci_Return sci_def_plug_in ( unsigned short plug_port,
unsigned short real_port,
sci_Plug_Func h2l,
sci_Plug_Func l2h,
sci_Plug_Lencalc lcalc,
sci_Errcode * err )
extern

Define a plug-in for a CAN object.

This function defines an plug-in. Plug-ins do data-conversions of the data that is transmitted to and from CAN objects. The 2 data-formats between this conversion takes place are also called the low-level- (raw CAN-bus-data) and the high-level (sci-application data) format.

A plug-in consists of 3 functions, 2 of these functions perform the data-conversion in both directions and a third function calculates the length of the low-level data in dependence of the length of the high-level data. See also the description the data-types sci_Plug_Func and sci_Plug_Lencalc.

A plug-in also defines a plug-port. A plug-port can be used like a real CAN-bus port but each access to the plug-port (e.g. reading or writing to CAN objects that are defined for that port) involves the plug-in data-conversion functions. Each plug-port is connected with a real-port that represents the physical CAN-bus connection that is used when that plug-port* is accessed.

Note that this is one of the rare functions that do not have a sci_struc parameter. This function can be called without calling sci_open first. This also means that the plug-ins that one user process defines are valid for all other user processes. Currently, plug-ins cannot be deleted, once they have been defined for one plug-port. They remain valid as long as the sci-library or the program that is linked with the sci-library is loaded.

Parameters
[in]plug_portThis is the plug-port for which the plug-in is defined. A plug-port must be in the range of SCI_PLUGPORT_START and SCI_PLUGPORT_START+SCI_MAX_PLUGPORTS-1. That plug-port can, after successful execution of sci_def_plug_in, used like any other port.
[in]real_portThis is real-port that the plug-port is connected to. Each access of the plug-port will first involve the plug-in* data conversion and then access the real-port.
[in]h2lThis is data-conversion function that converts the high-level data-format to the low-level data format.
[in]l2hThis is data-conversion function that converts the low-level data-format to the high-level data format.
[in]lcalcThis is the length-conversion function that calculates the length of the low-level data in dependence of the length of the high-level data. lcalc may return 0 when a certain high-level data-length cannot be converted by the plug-in functions. Note that each supported high-level data-length must correspond with just one low-level data-length. This low-level data-length is returned by the length-calculation function lcalc.
[out]errThis is a pointer to a variable of the type sci_Errcode that is defined in the user program. If an error is detected, the error code is stored in that user-variable.
Returns
This function returns SCI_NOTHING in case of success, SCI_ERROR in case of an error. If an error occurred, the error code is (see above) stored in the variable that was given by the err-parameter.

Definition at line 431 of file sci.c.

◆ sci_delete_object()

sci_Return sci_delete_object ( sci_Struc * s_struc,
sci_Object ** object )
extern

Delete a sci object.

This function deletes an sci-object. It removes the internal sci_Object- structure and makes the CAN-id on the CAN interface available again. When this function is performed on duplicated objects, the other duplicated objects for the same CAN-object remains unchanged.

Parameters
[in]s_strucThis is the sci-structure, created by sci_open()
[out]objectThis is the address of a pointer to an sci-object. After successful execution of this function the pointer is set to NULL.
Returns
This function always returns SCI_NOTHING on success or an integer where the highest bit is set, so 'rc & SCI_ERROR' is not zero. In this case, you can retrieve the error code with 'SCI_ERRCODE(rc)' or by calling sci_get_errcode(). Possible error codes are:
  • SCI_PORT_ERR
  • SCI_ID_ERR
  • SCI_ACCESS_ERR
  • SCI_ERR_GENERAL

Definition at line 861 of file sci.c.

◆ sci_get_bitrate()

sci_Return sci_get_bitrate ( sci_Struc * s_struc,
unsigned short port,
sci_Bitrate * bitrate )
extern

Get the bit rate of a CAN port.

This function returns the bitrate that was set for a specific port. The port-parameter may be a real-port or a plug-port. The bitrate is returned in the bitrate parameter.

Parameters
[in]s_strucThis is the sci-structure, created by sci_open()
[in]portThis is port that is to be examined. This may also be a plug-port, in this case the bitrate of the corresponding real-port is returned.
[out]bitrateThe current bitrate is returned via this parameter. Note that the type of this variable is not int but sci_Bitrate.
Returns
This function returns SCI_NOTHING on success, SCI_ERROR in case of an error.

Definition at line 539 of file sci.c.

◆ sci_get_errcode()

sci_Return sci_get_errcode ( sci_Struc * s_struc,
sci_Errcode * errcode )
extern

Get error code of the last error.

This function returns the last valid error-code for a thread. It is typically called immediately after another sci-function returned the SCI_ERROR flag. If another sci_function is called after the error but before sci_get_errcode(), the original error code is lost.

Parameters
[in]s_strucThis is the sci-structure, created by sci_open()
[out]errcodeThis is a pointer to a variable of the type sci_Errcode that is defined in the user program. The current error code for the current thread is written to that user-variable.
Returns
This function always returns SCI_NOTHING.

Definition at line 602 of file sci.c.

◆ sci_get_info()

sci_Return sci_get_info ( sci_Struc * s_struc,
sci_Object * object,
unsigned short * port,
int * id,
int * length,
int * timeout,
sci_Object_Type * type )
extern

Gather information on an an sci_Object.

This function returns the properties of a sci-object. With this function it is possible to get all properties of an object, that were specified with the call of sci_init_object, back.

Parameters
[in]s_strucThis is the sci-structure, created by sci_open()
[in]objectThis is a pointer the sci-object that is to be examined.
[out]portThis is a pointer to an integer-variable of the user program. The port-number of the object is written to that variable.
[out]idThis is a pointer to an integer-variable of the user program. The CAN-id of the object is written to that variable.
[out]lengthThis is a pointer to an integer-variable of the user program. The length of the object is written to that variable.
[out]typeThis is a pointer to a variable of the type sci_Object_Type that should be defined in the user program. The type of the sci-object is written to this variable.
Returns
This function always returns SCI_NOTHING on success or an integer where the highest bit is set, so 'rc & SCI_ERROR' is not zero. In this case, you can retrieve the error code with 'SCI_ERRCODE(rc)' or by calling sci_get_errcode(). Possible error codes are:
  • SCI_PORT_ERR
  • SCI_ID_ERR
  • SCI_ACCESS_ERR
  • SCI_ERR_GENERAL

Definition at line 658 of file sci.c.

◆ sci_get_object()

sci_Return sci_get_object ( sci_Struc * s_struc,
sci_Object ** object,
unsigned short port,
int id )
extern

Get sci_Object for a given port and CAN object ID.

This function returns the sci_Object for a given port number and CAN object id.

Parameters
[in]s_strucThis is the sci-structure, created by sci_open()
[out]objectThis is the address of a pointer to an sci-object. After successful execution of this function the pointer points to the sci_Object.
[in]portThis is the port-number of the CAN-object.
[in]idThis is the CAN object ID.
Returns
This function returns SCI_NOTHING in case of successful execution or SCI_ERROR in case of an error.

Definition at line 613 of file sci.c.

◆ sci_get_timestamp()

sci_Return sci_get_timestamp ( sci_Struc * s_struc,
sci_Object * object,
unsigned long long * pstamp,
int * pvalid,
unsigned char * mode,
unsigned char * irq_cnt )
extern

Get time stamp of a CAN object.

For read objects, this is the time when data arrived for this object. For write objects this is the time when data was written to the CAN bus for this object. The time stamp is measured in microseconds. The absolute value of the time stamp is compatible with the function gettimeofday as provided by libc. You would get a compatible time stamp like this:

#include <sys/time.h>
struct timeval now;
unsigned long time stamp;
gettimeofday(&now, NULL);
time stamp= now->tv_sec * 1000 + now->tv_usec / 1000;
Parameters
[in]s_strucThis is the sci-structure, created by sci_open()
[in]objectThis is a pointer the sci-object that is to be examined.
[out]pstampThis is a pointer to an integer-variable of type unsigned long long in the user program. The time stamp is is written to that variable.
[out]pvalidThis implementation always returns 1 in this variable. Some implementations of sci can set this to 0, if the time stamp is invalid.
[out]modeThis implementation always returns 0 here.
[out]irq_cntThis implementation always returns 0 here.
Returns
This function always returns SCI_NOTHING on success or an integer where the highest bit is set, so 'rc & SCI_ERROR' is not zero. In this case, you can retrieve the error code with 'SCI_ERRCODE(rc)' or by calling sci_get_errcode(). Possible error codes are:
  • SCI_PORT_ERR
  • SCI_ID_ERR
  • SCI_ACCESS_ERR
  • SCI_ERR_GENERAL

Definition at line 691 of file sci.c.

◆ sci_get_user()

void * sci_get_user ( sci_Object * object)
extern

Get user part of an sci_Object.

This function returns the user part, a pointer to a data structure managed by the application that uses sci.

Parameters
[in]objectThe sci_Object pointer.
Returns
A void pointer to the user part.

Definition at line 649 of file sci.c.

◆ sci_init_object()

sci_Return sci_init_object ( sci_Struc * s_struc,
sci_Object ** object,
unsigned short port,
int id,
int length,
int timeout,
sci_Object_Type type,
void * userp )
extern

Initialize a CAN object and return an sci_Object.

This function initializes a single CAN-object. A sci-object structure is created that is used by all other sci functions that work on single CAN-objects. Note that each sci-object contains a user part that can be used to store user-defined data for each object. See also the description of the type sci_Object.

If there was already an sci_Object defined for that CAN-id, sci_init_object() either returns an error if the object's properties do not exactly match the already defined object, or it duplicates the already existing object. A SCI_EXISTS-flag signals that an already existing sci-object was found.

A duplicate object has exactly the same properties as the original object. However, the user part of the sci-object structure is duplicated and is independent from the user-part of the original object. Both sci-objects, the old and the new one can then be used to read or to write to a certain CAN-object. There is, from the users point of view, no difference between the original and the duplicated object. Each object can be deleted separately without interference with the other one. There is only one point were a difference is made between duplicated objects, and that is function sci_queue_read(). When it returns a pointer to the sci-object where the data arrived, it always returns the first sci object that was initialized for the port and CAN object id.

Parameters
[in]s_strucThis is the sci-structure, created by sci_open()
[out]objectThis is the address of a pointer to an sci-object. After successful execution of this function the pointer points to the new created sci_Object.
[in]portThis is the port-number of the CAN-object.
[in]idThis is the CAN object ID.
[in]lengthThis is a the length of the CAN-object. The object is defined with a certain length, that can range from 0 to 8 bytes. If data with a different number of bytes is received from the CAN bus, read-functions will return an SCI_LENGTH_ERR.
[in]timeoutThis is the timeout the object. The timeout is specified in milliseconds. The timeout is useful for sci-functions that would otherwise never return in case of an error. An example for such a function is sci_read, this function waits for new data, if no new data arrives, it returns after the given timeout. Note that there are some sci-functions that do not need and do not use timeouts specified for a given object, an example for this is sci_queue_read().
[in]typeThis is the type of the object, there are basically 4 types of objects which can be distinguished as read or write, remote or not-remote objects. These types are described in with the sci_Object_Type in this documentation.
[in]userpThis is an arbitrary pointer that is stored in the sci_Object. If you don't need this, just set this to NULL.
Returns
This function always returns SCI_NOTHING on success or an integer where the highest bit is set, so 'rc & SCI_ERROR' is not zero. In this case, you can retrieve the error code with 'SCI_ERRCODE(rc)' or by calling sci_get_errcode(). Possible error codes are:
  • SCI_PORT_ERR
  • SCI_ID_ERR
  • SCI_LENGTH_ERR
  • SCI_ACCESS_ERR

Definition at line 754 of file sci.c.

◆ sci_obj_dump_buf()

sci_Return sci_obj_dump_buf ( char * buf,
sci_Struc * s_struc,
sci_Object * object )
extern

Dump the CAN object to a string buffer.

Prints information about the object to a string buffer. The information includes the CAN-id, length, timeout, port and object type. The buffer buf must have room for 80 characters.

Parameters
[out]bufThe address of an array of characters, at least 80 characters long. The information about the object is put into that buffer.
[in]s_strucThis is the sci-structure, created by sci_open()
[in]objectThis is a pointer the sci-object that is to be examined.
Returns
This function always returns SCI_NOTHING on success or an integer where the highest bit is set, so 'rc & SCI_ERROR' is not zero. In this case, you can retrieve the error code with 'SCI_ERRCODE(rc)' or by calling sci_get_errcode(). Possible error codes are:
  • SCI_PORT_ERR
  • SCI_ID_ERR
  • SCI_ACCESS_ERR
  • SCI_ERR_GENERAL

Definition at line 717 of file sci.c.

◆ sci_open()

sci_Return sci_open ( sci_Struc ** s_struc,
const char * app_name,
sci_Errcode * err )
extern

Open the sci library and return a sci_Struc.

This is the open-function for the SCI-library. A process or thread can only use the other functions of the library, when it has once called sci_open.

Parameters and return-codes:

@param[out] s_struc This is the pointer to the created sci-structure. The
            calling program gets a pointer to a new created internal
            sci-structure. The user program should not read or write to
            that structure. Since the internal details of this structure
            are hidden and it's size is unknown to user, the user program
            should not define variables of the type sci_Struc but only a
             pointer* to a variable of this type.

@param[in]  app_name This is a legacy parameter and ignored in this
            implementation.

@param[out] err This is the only function in sci, where the error-code is
            returned directly and has not to be requested with
            sci_get_errcode(). The user program should have a variable of
            the type sci_Errcode defined and provide a pointer to that
            variable with the parameter err.

@returns    This function returns either SCI_NOTHING in case of successful
            execution or SCI_ERROR in case of an error. The error- code can
            then be found the user's error-variable, provided by the err
            parameter.

Definition at line 470 of file sci.c.

◆ sci_print_err()

void sci_print_err ( sci_Errcode err)
extern

Print an error code as a string to the console.

Parameters
[in]errThe error code we want to print.

Definition at line 377 of file sci.c.

◆ sci_print_status()

void sci_print_status ( sci_Return flag)
extern

Print a status as a string to the console.

Parameters
[in]flagThe return code we want to print.

Definition at line 342 of file sci.c.

◆ sci_queue_read()

sci_Return sci_queue_read ( sci_Struc * s_struc,
sci_Object ** object,
char * data )
extern

Perform a blocking read on many CAN objects.

sci_queue_read reads data from any event-object. This function waits until an event takes place and returns the corresponding object-pointer and the new data.

Here are some advantages of using sci_queue_read:

  • The objects do not have to be specified when the function is called. They are implicitly known; all event object that have ever been defined for the current thread are used.
  • The number of objects is only limited to the number your hardware supports. Objects on different ports can be used (the port is defined with sci_init_object()).
  • This function can be used on read and remote-read objects. An answer on a remote-request is also an event and is recognized when the remote-read object is also an event-object. Note that sci_queue_read() does not send the remote-request, that has to be done separately (with sci_write().
  • There is, in general, no timeout watch for event-objects. Any timeouts that were specified in the object's initialization, are ignored. sci_queue_read() will always wait for events on all event objects that are defined for the current thread.
  • Event-objects have to be initialized before the call sci_queue_read() by calling sci_set_callback().
Parameters
[in]s_strucThis is the sci-structure, created by sci_open()
[in]objectThe address of an sci_Object pointer.
[out]dataA pointer to the data buffer where the data is returned. The buffer must have a size of 8 bytes.
Returns
The return code may contain a flag or an error code. These are possible return codes:
  • SCI_NOTHING : no error, no flag
  • SCI_LOST : data was lost
  • SCI_ERROR or (rc & SCI_ERROR != 0) : an error occurred Possible error codes are:
  • SCI_OBJ_UNDEF_ERR
  • SCI_LENGTH_ERR

Definition at line 1099 of file sci.c.

◆ sci_read()

sci_Return sci_read ( sci_Struc * s_struc,
sci_Object * object,
char * data )
extern

Perform a blocking read on a CAN object.

This function reads data from a can-object, but it may wait for some time (see also sci_read_now()). This function can be applied to read and remote-read objects. It's function is different for each of the two object-types:

  • For ordinary read objects, this function returns when it finds data in the object's data buffer, that has not yet been read. If the data has already been read, the function waits for new data from the CAN bus. If no new data arrives after the object's timeout-time (specified with sci_init_object()) it returns with a timeout-status. The returned flags indicate whether the data is new (not yet read) or old (already read). Note that a timeout is not an error, but is just signaled by the SCI_TMOUT-flag, in this case the old data from the object's data buffer is returned.
  • For remote-read objects, this function sends a remote-request and waits for the answer from another CAN device. If set up correctly, the other CAN device should send an answer together with new data back, this data is then returned by sci_read(). If no CAN device sends an answer within the object's timeout-time (specified with sci_init_object()), a timeout-error is returned. Note that this is (see above) a real sci-error and not a just a status.
Parameters
[in]s_strucThis is the sci-structure, created by sci_open()
[in]objectThe sci_Object pointer.
[out]dataA pointer to the data buffer where the data is returned. The buffer must have a size of 8 bytes.
Returns
The return code may contain a flag or an error code. These are possible return codes:
  • SCI_NOTHING : no error, no flag
  • SCI_OLD : old data
  • SCI_LOST : data was lost
  • SCI_TMOUT : a timeout occurred
  • SCI_ERROR or (rc & SCI_ERROR != 0) : an error occurred Possible error codes are:
  • SCI_PLUGPORT_ERR
  • SCI_ERR_GENERAL
  • SCI_LENGTH_ERR
  • SCI_MODE_ERR

Definition at line 1089 of file sci.c.

◆ sci_read_now()

sci_Return sci_read_now ( sci_Struc * s_struc,
sci_Object * object,
char * data )
extern

Perform non blocking read on a CAN object.

In general, this function reads data from a can-object without waiting. This function can be applied to read and remote-read objects. It simply returns the data that is in the data buffer of the CAN object. Note that when used with remote-read objects, this function does not send a remote frame ("RTR request"), if you want this, ise sci_read() instead.

Parameters
[in]s_strucThis is the sci-structure, created by sci_open()
[in]objectThe sci_Object pointer.
[out]dataA pointer to the data buffer where the data is returned. The buffer must have a size of 8 bytes.
Returns
The return code may contain a flag or an error code. These are possible return codes:
  • SCI_NOTHING : no error, no flag
  • SCI_OLD : old data
  • SCI_LOST : data was lost
  • SCI_ERROR or (rc & SCI_ERROR != 0) : an error occurred Possible error codes are:
  • SCI_PLUGPORT_ERR
  • SCI_ERR_GENERAL
  • SCI_LENGTH_ERR
  • SCI_MODE_ERR

Definition at line 1078 of file sci.c.

◆ sci_set_callback()

sci_Return sci_set_callback ( sci_Struc * s_struc,
sci_Object * object,
void * f )
extern

Prepare a CAN object for usage by sci_queue_read().

This function defines an event-object. These are needed if you want to use sci_queue_read() which waits until an event takes place and returns the corresponding object-pointer and the new data.

An event-object can only be defined once. This property cannot be removed later. However, event objects can be deleted with sci_delete_object(). Note that for duplicated objects (objects created with sci_dup_object() or sci_init_object(), defining one as event object means that all objects associated with the same CAN-can become an event-object.

Parameters
[in]s_strucThis is the sci-structure, created by sci_open()
[in]objectThe sci_Object pointer.
[in]fThis is a legacy parameter and should be NULL.
Returns
The return code may contain a flag or an error code. These are possible return codes:
  • SCI_NOTHING : no error, no flag
  • SCI_ERROR or (rc & SCI_ERROR != 0) : an error occurred Possible error codes are:
  • SCI_MODE_ERR

Definition at line 969 of file sci.c.

◆ sci_set_inhibit()

sci_Return sci_set_inhibit ( sci_Struc * s_struc,
sci_Object * object,
unsigned long inhibit_time )
extern

Set the inhibit time of an sci object.

This function sets the inhibit-time for a CAN-write object. The main application for inhibit-times is communication with slow CAN devices that are not able to process CAN object's at the maximum possible speed. For example with a 1 MBit/s CAN line, a CAN frame can be physically sent about every 130 microseconds. If the other CAN participant can only process one frame every 1000 microseconds, inhibit-times can be used to limit the rate of transmission. The inhibit-time is the minimal allowed time between two writes to a CAN-write object. This function should only be applied to ordinary CAN-write objects. The inhibit-time has only an effect when sci_write_inhibit() is used instead of sci_write() to write to the CAN object. In current implementations of sci the inhibit-time of a new created CAN object is 0 but an application should not rely on that. See also the description of sci_write_inhibit().

Parameters
[in]s_strucThis is the sci-structure, created by sci_open()
[in]objectThe sci_Object pointer.
[in]inhibit_timeThis is the inhibit-time for the CAN object. Note that the inhibit-time (in opposition to timeout-times) is specified in microseconds.
Returns
This function always returns SCI_NOTHING on success or an integer where the highest bit is set, so 'rc & SCI_ERROR' is not zero. In this case, you can retrieve the error code with 'SCI_ERRCODE(rc)' or by calling sci_get_errcode(). Possible error codes are:
  • SCI_MODE_ERR
  • SCI_ERR_GENERAL

Definition at line 949 of file sci.c.

◆ sci_str_err()

char * sci_str_err ( sci_Errcode err)
extern

Convert an error code to a constant string.

This function converts an error code from a sci_Errcode variable to a string. The string can be used to print an error code in a human readable form.

Parameters
[in]errThe error code we want to print.
Returns
A character pointer that is the address of a string that represents the error code.

Definition at line 347 of file sci.c.

◆ sci_str_status()

char * sci_str_status ( sci_Return flag)
extern

Convert a status to a constant string.

This function converts a status code from a sci_Return variable to a string. The string can be used to print a return code in a human readable form.

Parameters
[in]flagThe return code we want to convert to a string.
Returns
A character pointer that is the address of a string that represents the return code.

Definition at line 327 of file sci.c.

◆ sci_write()

sci_Return sci_write ( sci_Struc * s_struc,
sci_Object * object,
char * data )
extern

Non-blocking write of a CAN object.

This function writes data to a sci-object. This function can be applied to write, remote-write and remote-read objects. It's function however is different for each object-type:

  • For ordinary write objects, this function writes data to the CAN bus. The actual* writing of the data is done after the function returns. This means that errors cannot be detected immediately, but only when sci_write() is called again. In this case a previously failed write will cause sci_write() to return an error.
  • For remote-write objects, data is just written to the object's data buffer. The data will only be sent to the CAN bus when a remote-request is received. This will be done by an internal thread of the library.
  • For remote-read objects, just a remote-request is sent. The data parameter is ignored in this case. In order to receive the answer from another CAN-device for the remote-request you have to call sci_read_now(), sci_read() or sci_queue_read().
Parameters
[in]s_strucThis is the sci-structure, created by sci_open()
[in]objectThe sci_Object pointer.
[in]dataA pointer to the data buffer where the data is read from.
Returns
The return code may contain a flag or an error code. These are possible return codes:
  • SCI_NOTHING : no error, no flag
  • SCI_TMOUT : a timeout occurred
  • SCI_WAIT: the previous write was not yet finished, the caller of the function must wait.
  • SCI_ERROR or (rc & SCI_ERROR != 0) : an error occurred Possible error codes are:
  • SCI_PLUGPORT_ERR
  • SCI_ERR_GENERAL
  • SCI_MODE_ERR

Definition at line 1027 of file sci.c.

◆ sci_write_inhibit()

sci_Return sci_write_inhibit ( sci_Struc * s_struc,
sci_Object * object,
char * data,
unsigned long * rest_time )
extern

Non-blocking write of a CAN object with inhibit time.

This function is similar to sci_write(). It may return an SCI_WAIT status, in this case the user has to wait a time returned in parameter 'rest_time' until it can try again to write to the CAN object. The function takes account of the inhibit time which may have been set with function sci_set_inhibit() for the CAN object. The intention of an inhibit time is to guarantee that the time between two consecutive writes to the same CAN object is never less than the inhibit time.

The details depend on the type of the CAN object:

  • For ordinary write objects, this function writes data to the CAN bus. The actual* writing of the data is done after the function returns. This means that errors cannot be detected immediately, but only when sci_write() is called again. In this case a previously failed write will cause sci_write() to return an error. If the previous write is not yet finished, the function returns SCI_WAIT and the full inhibit time in parameter rest_time. If the time since the last write is smaller than the inhibit time, the function returns SCI_WAIT and the time that the user must wait in parameter rest_time.
  • For remote-write objects, data is just written to the object's data buffer. The data will only be sent to the CAN bus when a remote-request is received. This will be done by an internal thread of the library. The inhibit time is ignored here.
  • For remote-read objects, just a remote-request is sent. The data parameter is ignored in this case. In order to receive the answer from another CAN-device for the remote-request you have to call sci_read_now(), sci_read() or sci_queue_read(). If the previous write is not yet finished, the function returns SCI_WAIT and the full inhibit time in parameter rest_time. If the time since the last write is smaller than the inhibit time, the function returns SCI_WAIT and the time that the user must wait in parameter rest_time.
Parameters
[in]s_strucThis is the sci-structure, created by sci_open()
[in]objectThe sci_Object pointer.
[in]dataA pointer to the data buffer where the data is read from.
[out]rest_timeA pointer to an unsigned long. The function returns the time to wait in this parameter in microseconds when the return code is SCI_WAIT.
Returns
The return code may contain a flag or an error code. These are possible return codes:
  • SCI_NOTHING : no error, no flag
  • SCI_TMOUT : a timeout occurred
  • SCI_WAIT: the previous write was not yet finished or the inhibit time has not yet passed since the last write, the caller of the function must wait.
  • SCI_ERROR or (rc & SCI_ERROR != 0) : an error occurred Possible error codes are:
  • SCI_PLUGPORT_ERR
  • SCI_ERR_GENERAL
  • SCI_MODE_ERR

Definition at line 1033 of file sci.c.