mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
d25fc243c4
This changes the prefixes of the symbols generated from USEMODULE and USEPKG variables. The changes are as follow: KCONFIG_MODULE_ => KCONFIG_USEMODULE_ KCONFIG_PKG_ => KCONFIG_USEPKG_ MODULE_ => USEMODULE_ PKG_ => USEPKG_
32 lines
878 B
Plaintext
32 lines
878 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
|
|
int "Advertising interval in microseconds"
|
|
default 1000000
|
|
help
|
|
Configure advertising interval in microseconds. Default value is 1
|
|
second which is 1000000 microseconds.
|
|
|
|
config ADV_CH_37_DISABLE
|
|
bool "Disable advertising on channel 37"
|
|
|
|
config ADV_CH_38_DISABLE
|
|
bool "Disable advertising on channel 38"
|
|
|
|
config ADV_CH_39_DISABLE
|
|
bool "Disable advertising on channel 39"
|
|
|
|
endif # KCONFIG_USEMODULE_SKALD
|