diff --git a/src/AutoPilotPlugins/APM/APMSubMotorComponent.qml b/src/AutoPilotPlugins/APM/APMSubMotorComponent.qml index 609e0c345cee2e9239d3bffc8c952b112a82f84b..f824487ff3e5020471478ea87eae79fac12b20ed 100644 --- a/src/AutoPilotPlugins/APM/APMSubMotorComponent.qml +++ b/src/AutoPilotPlugins/APM/APMSubMotorComponent.qml @@ -212,9 +212,9 @@ SetupPage { var reversed = controller.getParameterFact(-1, "MOT_" + (_lastIndex + 1) + "_DIRECTION").value == -1 if (reversed) { - controller.vehicle.motorTest(_lastIndex, 100 - slider.motorSlider.value) + controller.vehicle.motorTest(_lastIndex, 100 - slider.motorSlider.value, 0) } else { - controller.vehicle.motorTest(_lastIndex, slider.motorSlider.value) + controller.vehicle.motorTest(_lastIndex, slider.motorSlider.value, 0) } } }