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.
This commit is contained in:
Ville Juven 2022-09-07 10:24:08 +03:00 committed by Daniel Agar
parent 2542b1bb26
commit d4cce452cf

View File

@ -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);