Skip to content
Snippets Groups Projects
Commit e1f6a5af authored by Kaspar Schleiser's avatar Kaspar Schleiser
Browse files

net/gcoap: increase stack size by sizeof(coap_pkt_t)

parent a9d51681
No related branches found
No related tags found
No related merge requests found
......@@ -410,7 +410,8 @@ extern "C" {
* @brief Stack size for module thread
*/
#ifndef GCOAP_STACK_SIZE
#define GCOAP_STACK_SIZE (THREAD_STACKSIZE_DEFAULT + DEBUG_EXTRA_STACKSIZE)
#define GCOAP_STACK_SIZE (THREAD_STACKSIZE_DEFAULT + DEBUG_EXTRA_STACKSIZE \
+ sizeof(coap_pkt_t))
#endif
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment