You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
129 lines
6.5 KiB
Markdown
129 lines
6.5 KiB
Markdown
![]()
9 years ago
|
# README libIEC61850
|
||
![]()
11 years ago
|
|
||
![]()
9 years ago
|
This file is part of the documentation of **libIEC61850**. More documentation can be found online at http://libiec61850.com or in the provided doxygen documentation. Also consider to review the examples to understand how to use the library
|
||
![]()
11 years ago
|
|
||
|
Content:
|
||
|
|
||
![]()
9 years ago
|
* Overview
|
||
|
* Building and running the examples
|
||
|
* Installing the library and the API headers
|
||
|
* Building on Windows with GOOSE support
|
||
|
* Building with the cmake build script
|
||
|
* Using the log service with sqlite
|
||
|
* C# API
|
||
|
* Licensing
|
||
|
* Contributing
|
||
|
* Third-party contributions
|
||
![]()
11 years ago
|
|
||
|
|
||
![]()
9 years ago
|
## Overview
|
||
|
|
||
|
|
||
|
libiec61850 is an open-source (GPLv3) implementation of an IEC 61850 client and server library implementing the protocols MMS, GOOSE and SV. It is implemented in C (according to the C99 standard) to provide maximum portability. It can be used to implement IEC 61850 compliant client and server applications on embedded systems and PCs running Linux, Windows, and MacOS. Included is a set of simple example applications that can be used as a starting point to implement own IEC 61850 compliant devices or to communicate with IEC 61850 devices. The library has been successfully used in many commercial software products and devices.
|
||
![]()
11 years ago
|
|
||
![]()
10 years ago
|
For commercial projects licenses and support is provided by MZ Automation GmbH. Please contact info@mz-automation.de for more details on licensing options.
|
||
![]()
11 years ago
|
|
||
![]()
9 years ago
|
## Building and running the examples with the provided makefiles
|
||
![]()
11 years ago
|
|
||
|
In the project root directoy type
|
||
|
|
||
![]()
9 years ago
|
```
|
||
|
make examples
|
||
|
```
|
||
![]()
11 years ago
|
|
||
|
If the build succeeds you can find a few binary files in the projects root directory. You can also find a binary version of the library ("libiec61850.a") in the "build" directory.
|
||
|
|
||
|
Run the sample applications in the example folders. E.g.:
|
||
|
|
||
![]()
9 years ago
|
```
|
||
|
cd examples/server_example1
|
||
|
sudo ./server_example1
|
||
|
```
|
||
![]()
11 years ago
|
|
||
|
on the Linux command line.
|
||
|
|
||
|
You can test the server examples by using a generic client or the provided client example applications.
|
||
|
|
||
|
|
||
![]()
9 years ago
|
## Installing the library and the API headers
|
||
![]()
11 years ago
|
|
||
|
The make and cmake build scripts provide an install target. This target copies the API header files and the static library to a single directory for the headers (INSTALL_PREFIX/include) and the static library (INSTALL_PREFIX/lib). With this feature it is more easy to integrate libiec61850 in an external application since you only have to add a simple include directory to the build tool of your choice.
|
||
|
|
||
|
This can be invoked with
|
||
|
|
||
![]()
9 years ago
|
`make install`
|
||
![]()
11 years ago
|
|
||
|
The default install directory for the make build script is ".install".
|
||
|
|
||
|
You can modify this by setting the INSTALL_PREFIX environment variable (e.g.):
|
||
|
|
||
![]()
9 years ago
|
`make INSTALL_PREFIX=/usr/local install`
|
||
![]()
11 years ago
|
|
||
|
For the cmake build script you have to provide the CMAKE_INSTALL_PREFIX variable
|
||
|
|
||
|
|
||
![]()
9 years ago
|
## Building on windows with GOOSE support
|
||
![]()
11 years ago
|
|
||
![]()
9 years ago
|
To build the library and run libiec61850 applications with GOOSE support on Windows (7/8/10) the use of a third-party library (winpcap) is required. This is necessary because current versions of Windows have no working support for raw sockets. You can download winpcap here (http://www.winpcap.org).
|
||
![]()
11 years ago
|
|
||
|
1. Download and install winpcap. Make sure that the winpcap driver is loaded at boot time (you can choose this option at the last screen of the winpcap installer).
|
||
|
2. Reboot the system (you can do this also later, but you need to reboot or load the winpcap driver before running any llibiec61850 applications that use GOOSE).
|
||
|
3. Download the winpcap developers pack from here (http://www.winpcap.org/install/bin/WpdPack_4_1_2.zip)
|
||
|
4. Unpack the zip file. Copy the folders Lib and Include from the WpdPack directory in the third_party/winpcap directory of libiec61850
|
||
|
|
||
![]()
9 years ago
|
## Building with the cmake build script
|
||
![]()
11 years ago
|
|
||
|
With the help of the cmake build script it is possible to create platform independet project descriptions and let cmake create specific project or build files for other tools like Make or Visual Studio.
|
||
|
|
||
![]()
9 years ago
|
If you have cmake installed fire up a command line (cmd.exe) and create a new subdirectory in the libiec61850 folder. Change to this subdirectory. Then you can invoke cmake. As an command line argument you have to supply a "generator" that is used by cmake to create the project file for the actual build tool (in our case Visual Studio).
|
||
![]()
11 years ago
|
|
||
![]()
9 years ago
|
`cmake -G "Visual Studio 11" ..`
|
||
![]()
11 years ago
|
|
||
|
will instruct cmake to create a "solution" for Visual Studio 2012. To do the same thing for Visual Studio 2010 type
|
||
|
|
||
![]()
9 years ago
|
`cmake -G "Visual Studio 10" ..`
|
||
![]()
11 years ago
|
|
||
![]()
9 years ago
|
Note: The ".." at the end of the command line tells cmake where to find the main build script file (called CMakeLists.txt). This should point to the folder libiec61850 which is in our case the parent directory (..).
|
||
|
|
||
|
Depending on the system you don't have to provide a generator to the cmake command.
|
||
![]()
11 years ago
|
|
||
|
To select some configuration options you can use ccmake or cmake-gui.
|
||
|
|
||
![]()
9 years ago
|
|
||
![]()
9 years ago
|
## Using the log service with sqlite
|
||
|
|
||
|
The library provides support for the IEC 61850 log service. It provides an abstract interface for a logging database. Included is a driver for using sqlite for logging. This driver can be seen as an example on how to use the abstract logging interface.
|
||
![]()
9 years ago
|
|
||
|
You can use the driver by including the src/logging/drivers/sqlite/log_storage_sqlite.c file into your application build.
|
||
|
|
||
|
On Ubuntu Linux (and simpilar Linux distributions) it is enough to install the sqlite dev packages from the standard repository. For other OSes (e.g. Windows) and cross-compiling it is recomended to download the amalagation source code (from https://www.sqlite.org/download.html) of sqlite and copy them to the third_party/sqlite folder.
|
||
|
|
||
|
On windows the cmake skript will detect the sqlite source code and also creates the example project for logging.
|
||
|
|
||
|
|
||
![]()
9 years ago
|
## C# API
|
||
![]()
11 years ago
|
|
||
|
A C#/.NET wrapper and examples and Visual Studio/MonoDevelop project files can be found in the dotnet folder. The examples and the C# wrapper API can be build and run on .NET or Mono.
|
||
|
|
||
![]()
9 years ago
|
## Experimental Python bindings
|
||
![]()
9 years ago
|
|
||
|
The experimental Python binding can be created using SWIG with cmake.
|
||
|
|
||
|
To enable the bindings you have to select the phyton configuration option with ccmake of cmake-gui.
|
||
![]()
11 years ago
|
|
||
![]()
9 years ago
|
## Commercial licenses and support
|
||
|
|
||
|
Support and commercial license options are provided by MZ Automation GmbH. Please contact info@mz-automation.de for more details.
|
||
|
|
||
|
## Contributing
|
||
|
|
||
|
If you want to contribute to the improvement and development of the library please send me comments, feature requests, bug reports, or patches. For more than trivial contributions I require you to sign a Contributor License Agreement. Please contact info@libiec61850.com.
|
||
|
|
||
![]()
11 years ago
|
|
||
![]()
9 years ago
|
## Third-party contributions
|
||
![]()
11 years ago
|
|
||
|
- The Mac OS X socket and ethernet layer has been kindly contributed by Michael Clausen, HES-SO Valais-Wallis, http://www.hevs.ch
|
||
|
|
||
|
|
||
|
|