mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
8af82305a0
The RIOT integration makes no use of ztimer64, so drop it.
17 lines
362 B
Makefile
17 lines
362 B
Makefile
USEMODULE += tinydtls
|
|
|
|
USEMODULE += memarray
|
|
USEMODULE += hashes
|
|
USEMODULE += random
|
|
USEMODULE += tinydtls_aes
|
|
USEMODULE += tinydtls_ecc
|
|
USEMODULE += ztimer_msec
|
|
|
|
# TinyDTLS only has support for 32-bit architectures ATM
|
|
FEATURES_REQUIRED += arch_32bit
|
|
|
|
ifneq (,$(filter sock_dtls,$(USEMODULE)))
|
|
USEMODULE += tinydtls_sock_dtls
|
|
USEMODULE += ztimer_usec
|
|
endif
|