mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-14 08:21:56 +00:00
As networking libraries and protocols are moving to socket based implementation, reworked SNTP client library to use sockets. Signed-off-by: Ravi kumar Veeramally <ravikumar.veeramally@linux.intel.com>
22 lines
368 B
Plaintext
22 lines
368 B
Plaintext
#
|
|
# Copyright (c) 2017 Linaro Limited
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
menuconfig SNTP
|
|
bool "SNTP"
|
|
select NET_SOCKETS
|
|
help
|
|
Enable SNTP client library
|
|
|
|
if SNTP
|
|
|
|
module = SNTP
|
|
module-dep = NET_LOG
|
|
module-str = Log level for SNTP
|
|
module-help = Enable debug message of SNTP client library.
|
|
source "subsys/net/Kconfig.template.log_config.net"
|
|
|
|
endif # SNTP
|