mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
4092eda744
Due to all the changes, this is basically a new version for this example. The main benefit is the use of sock_udp but also the client side is now more robust and reliable. The parameters required for the PSK and ECC (e.g. keys) modes are moved to an unique header.
11 lines
218 B
Makefile
11 lines
218 B
Makefile
ifneq (,$(filter tinydtls,$(USEPKG)))
|
|
USEMODULE += tinydtls
|
|
endif
|
|
|
|
ifneq (,$(filter tinydtls,$(USEMODULE)))
|
|
USEMODULE += memarray
|
|
USEMODULE += hashes
|
|
USEMODULE += tinydtls_aes
|
|
USEMODULE += tinydtls_ecc
|
|
endif
|