zephyr/samples/net/sockets/sntp_client/Kconfig
Jordan Yates 1bc795f8ed samples: net: sntp_client: SNTP server lookup
Lookup the address of the SNTP server through DNS instead of requiring
a server to be running locally.

Signed-off-by: Jordan Yates <jordan@embeint.com>
2025-03-07 19:51:40 +01:00

16 lines
317 B
Plaintext

# Copyright (c) 2024 Embeint Inc
config NET_SAMPLE_SNTP_SERVER_ADDRESS
string "SNTP server address"
default "pool.ntp.org"
config NET_SAMPLE_SNTP_SERVER_PORT
int "SNTP server port"
default 123
config NET_SAMPLE_SNTP_SERVER_TIMEOUT_MS
int "Duration to wait for response"
default 2000
source "Kconfig.zephyr"