1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/sys/net/ble/skald/Kconfig
Akshai M a23dfb7ab9 net/skald : Update kconfig
Co-authored-by: Leandro Lanzieri <leandro.lanzieri@haw-hamburg.de>
2021-01-26 16:17:18 +01:00

30 lines
904 B
Plaintext

# Copyright (c) 2020 Freie Universitaet Berlin
#
# This file is subject to the terms and conditions of the GNU Lesser
# General Public License v2.1. See the file LICENSE in the top level
# directory for more details.
#
menuconfig KCONFIG_USEMODULE_SKALD
bool "Configure SKALD"
depends on USEMODULE_SKALD
help
Configure Skald, BLE advertising stack, using Kconfig.
if KCONFIG_USEMODULE_SKALD
config SKALD_INTERVAL_MS
int "Advertising interval in microseconds"
default 1000
help
Configure advertising interval in milliseconds. Default value is 1
second which is 1000 milliseconds.
config SKALD_ADV_CHANNELS
string "Advertising channels"
default "37, 38, 39"
help
Configure advertising channels. Default advertising channels are 37, 38
and 39 which can be customised to upto 40 (0-39) channels.
endif # KCONFIG_USEMODULE_SKALD