nuttx-apps/examples/s2opc/Kconfig
raiden00pl 5a7ab4200d examples/s2opc: add OPC UA server example
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>
2026-09-07 15:01:21 -03:00

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