We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0c5ebd commit 8101f15Copy full SHA for 8101f15
src/main/flight/mixer.c
@@ -817,7 +817,8 @@ void mixGraphOutput(timeUs_t currentTimeUs, float *graph_output)
817
float throttle_output = throttle * (1.0f - (outputMax));
818
819
for (uint32_t i = 0; i < motorCount; i++) {
820
- float motorOutput = motorOutputMin + (motorOutputRange * (motorOutputMixSign * graph_output[i] + throttle_output * currentMixer[i].throttle));
+ //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));
822
motor[i] = motorOutput;
823
}
824
// Disarmed mode
0 commit comments