1# Config options for OCPP sample application
2
3# Copyright (c) 2025 Linumiz GmbH
4# SPDX-License-Identifier: Apache-2.0
5
6mainmenu "OCPP sample application"
7config NET_SAMPLE_OCPP_SERVER
8	string "OCPP server ip"
9	help
10	  OCPP central system server ip address
11
12config NET_SAMPLE_OCPP_PORT
13	int "OCPP server port"
14	help
15	  OCPP central system server port
16
17config NET_SAMPLE_OCPP_WS_PATH
18	string "OCPP websocket path"
19	default "/steve/websocket/CentralSystemService/zephyr"
20	help
21	  WebSocket URL path (excluding IP address and port) for OCPP connection to the central
22	  system server.
23
24config NET_SAMPLE_SNTP_SERVER
25	string "SNTP server ip"
26	help
27	  SNTP server ip to get the time from network
28
29config NET_SAMPLE_SNTP_SERVER_PORT
30	int "SNTP server port"
31	help
32	  SNTP server port to get the time from network
33
34source "Kconfig.zephyr"
35