From d4cce452cf6239bb466347f672e488529a800dc2 Mon Sep 17 00:00:00 2001 From: Ville Juven Date: Wed, 7 Sep 2022 10:24:08 +0300 Subject: [PATCH] modules/dataman: Increase stack size by 100B Fixes: WARN [load_mon] dataman low on stack! (276 bytes left) Seen on px4_fmu-v5_protected target. --- src/modules/dataman/dataman.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/dataman/dataman.cpp b/src/modules/dataman/dataman.cpp index 42d6d41432..ec9a5a8e68 100644 --- a/src/modules/dataman/dataman.cpp +++ b/src/modules/dataman/dataman.cpp @@ -58,7 +58,7 @@ __BEGIN_DECLS __EXPORT int dataman_main(int argc, char *argv[]); __END_DECLS -static constexpr int TASK_STACK_SIZE = 1220; +static constexpr int TASK_STACK_SIZE = 1320; /* Private File based Operations */ static ssize_t _file_write(dm_item_t item, unsigned index, const void *buf, size_t count);