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

pkg/tinydtls: depends on xtimer

This commit is contained in:
Karl Fessel 2021-12-13 18:44:11 +01:00
parent 427df6d59d
commit af4381db07
2 changed files with 2 additions and 0 deletions

View File

@ -5,6 +5,7 @@ USEMODULE += hashes
USEMODULE += random
USEMODULE += tinydtls_aes
USEMODULE += tinydtls_ecc
USEMODULE += xtimer
# TinyDTLS only has support for 32-bit architectures ATM
FEATURES_REQUIRED += arch_32bit

View File

@ -22,6 +22,7 @@
#include "log.h"
#include "net/sock/dtls.h"
#include "net/credman.h"
#include "xtimer.h"
#if SOCK_HAS_ASYNC
#include "net/sock/async.h"