From aee05d0ac5dae6aae0827210b5ca1d87abbf3cc9 Mon Sep 17 00:00:00 2001 From: Lorenz Meier Date: Fri, 8 Jun 2018 08:39:14 +0200 Subject: [PATCH] FMU: Increase stack space as needed (shown by instrumentation) to retain a 300 bytes buffer. --- src/drivers/px4fmu/fmu.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/drivers/px4fmu/fmu.cpp b/src/drivers/px4fmu/fmu.cpp index eafa09cc7c..de6d5b548c 100644 --- a/src/drivers/px4fmu/fmu.cpp +++ b/src/drivers/px4fmu/fmu.cpp @@ -1,6 +1,6 @@ /**************************************************************************** * - * Copyright (c) 2012-2015, 2017 PX4 Development Team. All rights reserved. + * Copyright (c) 2012-2018 PX4 Development Team. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -1022,7 +1022,7 @@ PX4FMU::task_spawn(int argc, char *argv[]) _task_id = px4_task_spawn_cmd("fmu", SCHED_DEFAULT, SCHED_PRIORITY_ACTUATOR_OUTPUTS, - 1310, + 1340, (px4_main_t)&run_trampoline, nullptr);