diff options
Diffstat (limited to 'src/tasks')
| -rw-r--r-- | src/tasks/tasks.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tasks/tasks.cpp b/src/tasks/tasks.cpp index c28f463c..7365813e 100644 --- a/src/tasks/tasks.cpp +++ b/src/tasks/tasks.cpp @@ -45,7 +45,7 @@ auto AllocateStack() -> cpp::span<StackType_t>; // amount of stack space. template <> auto AllocateStack<Type::kAudio>() -> cpp::span<StackType_t> { - std::size_t size = 32 * 1024; + std::size_t size = 48 * 1024; return {static_cast<StackType_t*>(heap_caps_malloc(size, MALLOC_CAP_DEFAULT)), size}; } |
