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_SNTP_SERVER
18	string "SNTP server ip"
19	help
20	  SNTP server ip to get the time from network
21
22source "Kconfig.zephyr"
23