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

sys/net/gcoap: adapt to in-tree nanocoap

This commit is contained in:
Kaspar Schleiser 2017-11-22 13:30:30 +01:00
parent 729cda62bf
commit 7a636cb8e8
2 changed files with 4 additions and 2 deletions

View File

@ -652,7 +652,7 @@ ifneq (,$(filter l2filter_%,$(USEMODULE)))
endif
ifneq (,$(filter gcoap,$(USEMODULE)))
USEPKG += nanocoap
USEMODULE += nanocoap
USEMODULE += gnrc_sock_udp
endif

View File

@ -212,9 +212,11 @@
#include <stdint.h>
#include <stdatomic.h>
#include "net/ipv6/addr.h"
#include "net/sock/udp.h"
#include "mutex.h"
#include "nanocoap.h"
#include "net/nanocoap.h"
#include "xtimer.h"
#ifdef __cplusplus