1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #16874 from leandrolanzieri/pkg/tinydtls/fix_kconfig_detection

pkg/tinydtls: fix detection of Kconfig usage
This commit is contained in:
Martine Lenders 2021-09-21 13:07:23 +02:00 committed by GitHub
commit fb05da46e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,7 +28,7 @@ ifeq (,$(filter posix_sockets,$(USEMODULE)))
endif
# Default cipher suite when not using Kconfig
ifeq (,$(CONFIG_KCONFIG_PKG_TINYDTLS))
ifeq (,$(CONFIG_KCONFIG_USEPKG_TINYDTLS))
# NOTE: PSK should be enabled by default BUT if the user define any other cipher
# suite(s) it should not be enabled.
# TODO: Create the flag DTLS_CIPHERS with keywords PSK, ECC (and future)