|
open62541 1.4.15
Open source implementation of OPC UA
|
open62541 (http://open62541.org) is an open source implementation of OPC UA (OPC Unified Architecture / IEC 62541) written in the C language. The library is usable with all major compilers and provides the necessary tools to implement dedicated OPC UA clients and servers, or to integrate OPC UA-based communication into existing applications. See the features overview for full details. The open62541 library is platform independent: All platform-specific functionality is implemented via exchangeable plugins for easy porting to different (embedded) targets.
open62541 is licensed under the Mozilla Public License v2.0 (MPLv2). This allows the open62541 library to be combined and distributed with any proprietary software. Only changes to the open62541 library itself need to be licensed under the MPLv2 when copied and distributed. Some plugins and examples are in the public domain (CC0 license) and some are licensed under MPLv2. The CC0 licensed ones can be reused under any license and changes do not have to be published.
The library is available in standard source and binary form. In addition, the single-file source distribution merges the entire library into a single .c and .h file that can be easily added to existing projects. Example server and client implementations can be found in the /examples directory or further down on this page.
A general introduction to OPC UA and the open62541 documentation can be found at http://open62541.org. Past releases of the library can be downloaded at https://github.com/open62541/open62541/releases.
The overall open62541 community handles public support requests on Github and the mailing list. For individual discussion and support, use the following channels:
o6 Automation GmbH employs the core contributors to open62541 and provides commercial support. The project is however open to outside contributions and contributors retain their individual copyright. This prevents future relicensing under different license conditions.
We want to foster an open and welcoming community. Please take our code of conduct into regard.
open62541 is licensed under the MPLv2. That is, changes to files under MPLv2 fall under the same open-source license. But the library can be combined with private development from separate files, also if a static binary is produced, without the license affecting the private files. See the full [license document](LICENSE) for details.
An example server built with open62541 v1.4 was certified for the 'Standard Server 2017 Profile' by the OPC Foundation. See https://open62541.org/certification for more details.
As an open source project, new contributors are encouraged to help improve open62541. The file CONTRIBUTING.md aggregates good practices that we expect for code contributions. The following are good starting points for new contributors:
For custom development that shall eventually become part of the open62541 library, please keep one of the core maintainers in the loop.
On most systems, open62541 requires the C standard library only. For dependencies during the build process, see the following list and the build documentation for details.
Note: Some (optional) features are dependent on third-party libraries. These are all listed under the deps/ folder. Depending on the selected feature set, some of these libraries will be included in the resulting library. More information on the third-party libraries can be found in the corresponding deps/README.md
We emphasize code quality. The following quality metrics are continuously checked and are ensured to hold before an official release is made:
On Debian/Ubuntu systems, a simple apt install libopen62541-1.4-dev installs the library and the development header files. Using the GCC compiler, just run gcc -std=c99 <server.c> -lopen62541 -o server.
A more detailed explanation on how to install the open62541 SDK is given in our documentation. In essence, clone the repository and initialize all the submodules using git submodule update --init --recursive. Then use CMake to configure your build.
A complete list of examples can be found in the examples directory.