Skip to content

Commit 8101f15

Browse files
committed
Remove min output to make idling easier
1 parent a0c5ebd commit 8101f15

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/flight/mixer.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -817,7 +817,8 @@ void mixGraphOutput(timeUs_t currentTimeUs, float *graph_output)
817817
float throttle_output = throttle * (1.0f - (outputMax));
818818

819819
for (uint32_t i = 0; i < motorCount; i++) {
820-
float motorOutput = motorOutputMin + (motorOutputRange * (motorOutputMixSign * graph_output[i] + throttle_output * currentMixer[i].throttle));
820+
//float motorOutput = motorOutputMin + (motorOutputRange * (motorOutputMixSign * graph_output[i] + throttle_output * currentMixer[i].throttle));
821+
float motorOutput = (motorOutputRange * (motorOutputMixSign * graph_output[i] + throttle_output * currentMixer[i].throttle));
821822
motor[i] = motorOutput;
822823
}
823824
// Disarmed mode

0 commit comments

Comments
 (0)