ASCII parser library for CAN-Ethernet-Gateway V2  1.0
asciiparse documentation

Introduction

asciiparse is a simple C library offering parsing ASCII messages of the CAN-Ethernet-Gateway V2 starting with firmware v1.2.2 which introduces a fixed message layout. It is written in C and should compile on most platforms without difficulty.

Compiling the library

This library ships a CMake configuration file. But it does not depend on that. Users are free to use them in their corresponding build environment.

The typical CMake build steps are:

$ mkdir build
$ cd build
$ cmake ..
$ make

To use the library, include the the header to your source file:

#include "asciiparse.h"

and link your program with the asciiparse library by e.g. adding -lasciiparse.a to the compile line.

Library reference

The library reference is in the header file:

Authors

Alexander Stein (Systec Electronic GmbH)