2018-03-28 03:25:40 +08:00
|
|
|
# Kconfig - Private config options for network statistics sample app
|
|
|
|
|
|
|
|
#
|
|
|
|
# Copyright (c) 2018 Intel Corporation
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
#
|
|
|
|
|
|
|
|
mainmenu "Network statistics sample application"
|
|
|
|
|
|
|
|
config SAMPLE_PERIOD
|
|
|
|
int "How often to print statistics (in seconds)"
|
|
|
|
default 30
|
|
|
|
range 1 3600
|
|
|
|
depends on NET_STATISTICS
|
|
|
|
help
|
|
|
|
Print statistics after every n. seconds
|
2018-08-01 01:40:29 +08:00
|
|
|
|
|
|
|
|
2018-09-05 19:10:19 +08:00
|
|
|
source "$(ZEPHYR_BASE)/Kconfig.zephyr"
|