Skip to content

Commit

Permalink
pkg/uwb-core: reduce default stacksize
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
fjmolinas committed Apr 27, 2022
1 parent cdf1d43 commit b028144
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/uwb-core/include/uwb_core.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

/**
Expand Down

0 comments on commit b028144

Please sign in to comment.