diff --git a/src/input/JoystickInput.cc b/src/input/JoystickInput.cc index c4868b09164783ff2e1f5462108b8bf424a05246..dea9a67eeb632057f974d52620b0cd58989a1c9d 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;