From b028144a6480a169c0f236ff5f8dae15ade0884c Mon Sep 17 00:00:00 2001 From: Francisco Molina Date: Wed, 27 Apr 2022 10:15:35 +0200 Subject: [PATCH] pkg/uwb-core: reduce default stacksize When support for this package was introduced printf calls inside the uwb-core where bloating stack usage, but this is no longer the case, so prefere lower stack usage. --- pkg/uwb-core/include/uwb_core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/uwb-core/include/uwb_core.h b/pkg/uwb-core/include/uwb_core.h index a3a4ada1b3..48c3b636b2 100644 --- a/pkg/uwb-core/include/uwb_core.h +++ b/pkg/uwb-core/include/uwb_core.h @@ -47,7 +47,7 @@ extern "C" { * @brief Stacksize used for uwb-core event queue */ #ifndef UWB_CORE_STACKSIZE -#define UWB_CORE_STACKSIZE (THREAD_STACKSIZE_LARGE) +#define UWB_CORE_STACKSIZE (THREAD_STACKSIZE_DEFAULT) #endif /**