Bump up the ui task stack size

custom
jacqueline 8 months ago
parent 2ad83cb210
commit 4fd15f148a
  1. 2
      src/tasks/tasks.cpp

@ -47,7 +47,7 @@ auto AllocateStack<Type::kAudioDecoder>() -> std::span<StackType_t> {
// separately. // separately.
template <> template <>
auto AllocateStack<Type::kUi>() -> std::span<StackType_t> { auto AllocateStack<Type::kUi>() -> std::span<StackType_t> {
constexpr std::size_t size = 14 * 1024; constexpr std::size_t size = 20 * 1024;
static StackType_t sStack[size]; static StackType_t sStack[size];
return {sStack, size}; return {sStack, size};
} }

Loading…
Cancel
Save