From fa197ee490297b39c6ccff47233ffa515306785d Mon Sep 17 00:00:00 2001 From: Lorenz Meier Date: Sun, 29 Nov 2015 14:55:25 +0100 Subject: [PATCH] FMU driver: Run slightly faster to accomodate S.BUS --- 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 42f4fbf433..a5997f861c 100644 --- a/src/drivers/px4fmu/fmu.cpp +++ b/src/drivers/px4fmu/fmu.cpp @@ -94,7 +94,7 @@ * This is the analog to FMU_INPUT_DROP_LIMIT_US on the IO side */ -#define CONTROL_INPUT_DROP_LIMIT_MS 2 +#define CONTROL_INPUT_DROP_LIMIT_US 1500 #define NAN_VALUE (0.0f/0.0f) class PX4FMU : public device::CDev @@ -887,7 +887,7 @@ PX4FMU::cycle() } } - work_queue(HPWORK, &_work, (worker_t)&PX4FMU::cycle_trampoline, this, USEC2TICK(CONTROL_INPUT_DROP_LIMIT_MS * 1000)); + work_queue(HPWORK, &_work, (worker_t)&PX4FMU::cycle_trampoline, this, USEC2TICK(CONTROL_INPUT_DROP_LIMIT_US)); } void PX4FMU::work_stop()