From 7b28794ee6a3d2965b534ef3595c751a3e333d6c Mon Sep 17 00:00:00 2001 From: Martine Lenders Date: Fri, 7 Oct 2022 15:50:45 +0200 Subject: [PATCH] gnrc_udp: use small stack-size --- sys/include/net/gnrc/udp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/include/net/gnrc/udp.h b/sys/include/net/gnrc/udp.h index 37528d87e8..b3f59ee8e4 100644 --- a/sys/include/net/gnrc/udp.h +++ b/sys/include/net/gnrc/udp.h @@ -59,7 +59,7 @@ extern "C" { * @brief Default stack size to use for the UDP thread */ #ifndef GNRC_UDP_STACK_SIZE -#define GNRC_UDP_STACK_SIZE (THREAD_STACKSIZE_DEFAULT) +#define GNRC_UDP_STACK_SIZE (THREAD_STACKSIZE_SMALL) #endif /** @} */