summaryrefslogtreecommitdiff
path: root/src/tasks
diff options
context:
space:
mode:
Diffstat (limited to 'src/tasks')
-rw-r--r--src/tasks/tasks.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tasks/tasks.cpp b/src/tasks/tasks.cpp
index fccdfd8b..0d9169a5 100644
--- a/src/tasks/tasks.cpp
+++ b/src/tasks/tasks.cpp
@@ -86,7 +86,7 @@ auto AllocateStack<Type::kDatabaseBackground>() -> cpp::span<StackType_t> {
}
template <>
auto AllocateStack<Type::kNvsWriter>() -> cpp::span<StackType_t> {
- std::size_t size = 2 * 1024;
+ std::size_t size = 4 * 1024;
return {static_cast<StackType_t*>(
heap_caps_malloc(size, MALLOC_CAP_INTERNAL | MALLOC_CAP_8BIT)),
size};