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

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.
This commit is contained in:
Francisco Molina 2022-04-27 10:15:35 +02:00
parent cdf1d43e15
commit b028144a64

View File

@ -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
/**