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 b95d8e16..2477d8b9 100644 --- a/src/tasks/tasks.cpp +++ b/src/tasks/tasks.cpp @@ -39,7 +39,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}; } |
