mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-09-09 18:26:34 +00:00
Add a small high-level S2OPC server with an anonymous SecurityPolicy None endpoint and a generated C address space. Assisted-by: OpenAI Codex:gpt-5 Signed-off-by: raiden00pl <raiden00@railab.me>
32 lines
730 B
Text
32 lines
730 B
Text
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
config EXAMPLES_S2OPC
|
|
tristate "S2OPC OPC UA server example"
|
|
default n
|
|
depends on NETUTILS_S2OPC
|
|
---help---
|
|
Build a small S2OPC server with an anonymous SecurityPolicy None
|
|
endpoint and an address space generated as C source.
|
|
|
|
if EXAMPLES_S2OPC
|
|
|
|
config EXAMPLES_S2OPC_PROGNAME
|
|
string "Program name"
|
|
default "s2opc"
|
|
|
|
config EXAMPLES_S2OPC_PRIORITY
|
|
int "Task priority"
|
|
default 100
|
|
|
|
config EXAMPLES_S2OPC_STACKSIZE
|
|
int "Task stack size"
|
|
default 65536
|
|
|
|
config EXAMPLES_S2OPC_ENDPOINT_URL
|
|
string "Default OPC UA endpoint URL"
|
|
default "opc.tcp://127.0.0.1:4841"
|
|
|
|
endif # EXAMPLES_S2OPC
|