blob: 83539a41cdb4e3522a12007eac719eb7ccef1e2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
menu "Configuration"
depends on PACKAGE_libopen62541
config LIBOPEN62541_UA_ENABLE_SUBSCRIPTIONS
bool "Enable subscriptions support"
default y
config LIBOPEN62541_UA_ENABLE_SUBSCRIPTIONS_EVENTS
bool "Use events for subscriptions (EXPERIMENTAL)"
depends on LIBOPEN62541_UA_ENABLE_SUBSCRIPTIONS && (LIBOPEN62541_NAMESPACEZERO_FULL || LIBOPEN62541_NAMESPACEZERO_REDUCED)
config LIBOPEN62541_UA_ENABLE_SUBSCRIPTIONS_ALARMS_CONDITIONS
bool "Use alarms and conditions for subscriptions (EXPERIMENTAL)"
depends on LIBOPEN62541_UA_ENABLE_SUBSCRIPTIONS_EVENTS && LIBOPEN62541_NAMESPACEZERO_FULL
config LIBOPEN62541_UA_ENABLE_METHODCALLS
bool "Enable the Method service set"
default y
config LIBOPEN62541_UA_ENABLE_PARSING
bool "Enable parsing human readable formats of builtin data types"
default y
config LIBOPEN62541_UA_ENABLE_NODEMANAGEMENT
bool "Enable dynamic addition and removal of nodes at runtime"
default y
config LIBOPEN62541_UA_ENABLE_IMMUTABLE_NODES
bool "Enable immutable nodes"
default y
config LIBOPEN62541_UA_ENABLE_DISCOVERY
bool "Enable Discovery Service (LDS)"
default y
config LIBOPEN62541_UA_ENABLE_DISCOVERY_MULTICAST
bool "Enable Discovery Service with multicast support (LDS-ME)"
default y
depends on LIBOPEN62541_UA_ENABLE_DISCOVERY
config LIBOPEN62541_UA_ENABLE_DISCOVERY_SEMAPHORE
bool "Enable Discovery Semaphore support"
default y
depends on LIBOPEN62541_UA_ENABLE_DISCOVERY
choice
prompt "Encryption library"
default LIBOPEN62541_NOENCRYPTION
config LIBOPEN62541_NOENCRYPTION
bool "No encryption"
config LIBOPEN62541_MBDEDTLS
bool "Encryption support using mbed TLS"
config LIBOPEN62541_OPENSSL
bool "Encryption support using OpenSSL"
endchoice
config LIBOPEN62541_UA_ENABLE_ENCRYPTION_TPM2
bool "Enable TPM support"
depends on LIBOPEN62541_UA_ENABLE_PUBSUB_ENCRYPTION
choice
prompt "Namespace zero definition"
default LIBOPEN62541_NAMESPACEZERO_FULL
config LIBOPEN62541_NAMESPACEZERO_FULL
bool "Full namespace zero"
config LIBOPEN62541_NAMESPACEZERO_REDUCED
bool "Small namespace zero still passing CTT"
config LIBOPEN62541_NAMESPACEZERO_MINIMAL
bool "Barebones namespace zero"
endchoice
config LIBOPEN62541_UA_ENABLE_TYPEDESCRIPTION
bool "Add the type and member names to the UA_DataType structure"
default y
config LIBOPEN62541_UA_ENABLE_STATUSCODE_DESCRIPTIONS
bool "Compile the human-readable name of the StatusCodes into the binary"
default y
config LIBOPEN62541_UA_ENABLE_HISTORIZING
bool "Enable historical access"
config LIBOPEN62541_UA_ENABLE_PUBSUB
bool "Enable OPC UA PubSub support (EXPERIMENTAL)"
config LIBOPEN62541_UA_ENABLE_PUBSUB_DELTAFRAMES
bool "PubSub messages differentiate between keyframe and deltaframe messages"
depends on LIBOPEN62541_UA_ENABLE_PUBSUB
config LIBOPEN62541_UA_ENABLE_PUBSUB_FILE_CONFIG
bool "Enable loading OPC UA PubSub configuration from File/ByteString"
depends on LIBOPEN62541_UA_ENABLE_PUBSUB
config LIBOPEN62541_UA_ENABLE_PUBSUB_INFORMATIONMODEL
bool "Enable the information model representation of the PubSub configuration"
depends on LIBOPEN62541_UA_ENABLE_PUBSUB && (LIBOPEN62541_NAMESPACEZERO_FULL || LIBOPEN62541_NAMESPACEZERO_REDUCED)
config LIBOPEN62541_UA_ENABLE_PUBSUB_MONITORING
bool "Enable the experimental PubSub monitoring"
depends on LIBOPEN62541_UA_ENABLE_PUBSUB
config LIBOPEN62541_UA_ENABLE_PUBSUB_ETH_UADP
bool "Enable the OPC UA Ethernet PubSub support to transport UADP NetworkMessages as payload of Ethernet II frame without IP or UDP headers"
depends on LIBOPEN62541_UA_ENABLE_PUBSUB
config LIBOPEN62541_UA_ENABLE_PUBSUB_ENCRYPTION
bool "Enable PubSub encryption"
depends on LIBOPEN62541_UA_ENABLE_PUBSUB
endmenu
|