From 05de83b617ea5263ed8b9e7e933a01c475b1fb3c Mon Sep 17 00:00:00 2001 From: Julian Oes Date: Fri, 27 Jun 2014 11:01:02 +0200 Subject: [PATCH] JoystickInput: only send 0-1 for throttle channel --- src/input/JoystickInput.cc | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/input/JoystickInput.cc b/src/input/JoystickInput.cc index c4868b0916..dea9a67eeb 100644 --- a/src/input/JoystickInput.cc +++ b/src/input/JoystickInput.cc @@ -480,15 +480,18 @@ void JoystickInput::run() axisValue = 1.0f - axisValue; // For non-throttle axes or if the UAS can reverse, go ahead and convert this into the range [-1:1]. - if (uasCanReverse || throttleAxis != i) + + //if (uasCanReverse || throttleAxis != i) + // don't take into account if UAS can reverse. This means to reverse position but not throttle + // therefore deactivated for now + if (throttleAxis != i) { axisValue = axisValue * 2.0f - 1.0f; } - // Otherwise if this vehicle can only go forward, but the axis is limited to only the positive range, - // scale this so the negative values are ignored for this axis and it's clamped to [0:1]. + // Otherwise if this vehicle can only go forward, scale it to [0:1]. else if (throttleAxis == i && joystickSettings[autopilotType][systemType].axesLimited.value(i)) { - axisValue = axisValue * 2.0f - 1.0f; + axisValue = (axisValue); if (axisValue < 0.0f) { axisValue = 0.0f; -- GitLab