Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
osie
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
osie
Commits
39144fab
Commit
39144fab
authored
Apr 07, 2022
by
Ivan Tyagov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove amalgamation
parent
873dcbce
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
13 additions
and
10 deletions
+13
-10
coupler/opc-ua-server/Makefile
coupler/opc-ua-server/Makefile
+1
-1
coupler/opc-ua-server/common.h
coupler/opc-ua-server/common.h
+1
-2
coupler/opc-ua-server/mod_io_opc_ua.h
coupler/opc-ua-server/mod_io_opc_ua.h
+2
-0
coupler/opc-ua-server/server.c
coupler/opc-ua-server/server.c
+6
-2
slapos/software/osie-coupler/software-opc-ua-virtual.cfg
slapos/software/osie-coupler/software-opc-ua-virtual.cfg
+1
-2
slapos/software/osie-coupler/software-opc-ua.cfg
slapos/software/osie-coupler/software-opc-ua.cfg
+2
-3
No files found.
coupler/opc-ua-server/Makefile
View file @
39144fab
...
...
@@ -5,7 +5,7 @@ EXTRA_FLAGS=$(C_COMPILER_EXTRA_FLAGS)
OUT_DIR
=
$(BINARY_OUT_DIR)
server
:
server.c
$(CC)
-o
$@
$^
$(CFLAGS)
$(LDFLAGS)
-std
=
c99
$(
OPEN62541_SOURCE_HOME)
/open62541.c
$(
EXTRA_FLAGS)
$(CC)
-o
$@
$^
$(CFLAGS)
$(LDFLAGS)
-std
=
c99
$(EXTRA_FLAGS)
install
:
@
cp
server
$(OUT_DIR)
...
...
coupler/opc-ua-server/common.h
View file @
39144fab
/* This work is licensed under a Creative Commons CCZero 1.0 Universal License.
* See http://creativecommons.org/publicdomain/zero/1.0/for more information. */
#include "open62541.h"
#include <open62541/server.h>
/* loadFile parses the certificate file.
*
...
...
coupler/opc-ua-server/mod_io_opc_ua.h
View file @
39144fab
...
...
@@ -2,6 +2,8 @@
* OPC-UA code representation of MOD-IOs connected to a Lime2
*/
#include <open62541/server.h>
void
addIntegerVariableNode
(
UA_Server
*
server
,
char
*
node_id
,
char
*
node_description
)
{
UA_Int32
myInteger
=
0
;
...
...
coupler/opc-ua-server/server.c
View file @
39144fab
...
...
@@ -20,14 +20,18 @@
#include <sys/ioctl.h>
#include <unistd.h>
#include <signal.h>
#include "open62541.h"
#include <argp.h>
#include <string.h>
#include "common.h"
#include "mod_io_i2c.h"
#include "mod_io_opc_ua.h"
#include <time.h>
#include <open62541/plugin/log_stdout.h>
#include <open62541/server.h>
#include <open62541/server_config_default.h>
#include <open62541/plugin/accesscontrol_default.h>
#include <open62541/plugin/pubsub_ethernet.h>
#include <open62541/plugin/pubsub_udp.h>
// The default port of OPC-UA server
const
int
DEFAULT_OPC_UA_PORT
=
4840
;
...
...
slapos/software/osie-coupler/software-opc-ua-virtual.cfg
View file @
39144fab
...
...
@@ -12,12 +12,11 @@ environment =
OPEN62541_HOME = ${open62541:location}
OPEN62541_SOURCE_HOME = ${open62541-source:location}
BINARY_OUT_DIR = ${buildout:directory}/bin
C_COMPILER_EXTRA_FLAGS = -L ${mbedtls:location}/lib -lmbedtls -lmbedx509 -lmbedcrypto
C_COMPILER_EXTRA_FLAGS = -L ${mbedtls:location}/lib -lmbedtls -lmbedx509 -lmbedcrypto
-l:libopen62541.so -L${open62541:location}/lib
# actually configure-command is useless here but needed by convention
configure-command =
${cmake:location}/bin/cmake
# XXX: add own instance which is able to expose an environmental variable (I2C_VIRTUAL_MODE=1)
[instance-profile]
recipe = slapos.recipe.template:jinja2
template = ${:_profile_base_location_}/instance-opc-ua-virtual.cfg.in
...
...
slapos/software/osie-coupler/software-opc-ua.cfg
View file @
39144fab
...
...
@@ -33,13 +33,12 @@ configure-command =
${git:location}/bin/git submodule update --init --recursive
${cmake:location}/bin/cmake
configure-options =
-DBUILD_SHARED_LIBS=O
FF
-DBUILD_SHARED_LIBS=O
N
-DCMAKE_BUILD_TYPE=RelWithDebInfo
-DCMAKE_INSTALL_PREFIX=@@LOCATION@@
-DUA_ENABLE_PUBSUB=ON
-DUA_ENABLE_PUBSUB_MONITORING=ON
-DUA_NAMESPACE_ZERO=REDUCED
-DUA_ENABLE_AMALGAMATION=ON
-DUA_ENABLE_ENCRYPTION=MBEDTLS
-DUA_ENABLE_ENCRYPTION_MBEDTLS=ON
...
...
@@ -58,7 +57,7 @@ environment =
OPEN62541_HOME = ${open62541:location}
OPEN62541_SOURCE_HOME = ${open62541-source:location}
BINARY_OUT_DIR = ${buildout:directory}/bin
C_COMPILER_EXTRA_FLAGS = -L ${mbedtls:location}/lib -lmbedtls -lmbedx509 -lmbedcrypto
C_COMPILER_EXTRA_FLAGS = -L ${mbedtls:location}/lib -lmbedtls -lmbedx509 -lmbedcrypto
-l:libopen62541.so -L${open62541:location}/lib
# actually configure-command is useless here but needed by convention
configure-command =
${cmake:location}/bin/cmake
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment