Skip to content

Commit 2f990e5

Browse files
authored
Merge pull request #10664 from breadoven/abo_mc_althold_fix
Multirotor Althold altitude adjustment fix
2 parents 4c6b7f6 + 28e1b23 commit 2f990e5

File tree

1 file changed

+6
-11
lines changed

1 file changed

+6
-11
lines changed

src/main/navigation/navigation_multicopter.c

+6-11
Original file line numberDiff line numberDiff line change
@@ -140,19 +140,14 @@ bool adjustMulticopterAltitudeFromRCInput(void)
140140
const int16_t rcThrottleAdjustment = applyDeadbandRescaled(rcCommand[THROTTLE] - altHoldThrottleRCZero, rcControlsConfig()->alt_hold_deadband, -500, 500);
141141

142142
if (rcThrottleAdjustment) {
143-
// set velocity proportional to stick movement
144-
float rcClimbRate;
143+
/* Set velocity proportional to stick movement
144+
* Scale from altHoldThrottleRCZero to maxthrottle or minthrottle to altHoldThrottleRCZero */
145145

146-
// Make sure we can satisfy max_manual_climb_rate in both up and down directions
147-
if (rcThrottleAdjustment > 0) {
148-
// Scaling from altHoldThrottleRCZero to maxthrottle
149-
rcClimbRate = rcThrottleAdjustment * navConfig()->mc.max_manual_climb_rate / (float)(getMaxThrottle() - altHoldThrottleRCZero - rcControlsConfig()->alt_hold_deadband);
150-
}
151-
else {
152-
// Scaling from minthrottle to altHoldThrottleRCZero
153-
rcClimbRate = rcThrottleAdjustment * navConfig()->mc.max_manual_climb_rate / (float)(altHoldThrottleRCZero - getThrottleIdleValue() - rcControlsConfig()->alt_hold_deadband);
154-
}
146+
// Calculate max up or min down limit value scaled for deadband
147+
int16_t limitValue = rcThrottleAdjustment > 0 ? getMaxThrottle() : getThrottleIdleValue();
148+
limitValue = applyDeadbandRescaled(limitValue - altHoldThrottleRCZero, rcControlsConfig()->alt_hold_deadband, -500, 500);
155149

150+
int16_t rcClimbRate = ABS(rcThrottleAdjustment) * navConfig()->mc.max_manual_climb_rate / limitValue;
156151
updateClimbRateToAltitudeController(rcClimbRate, 0, ROC_TO_ALT_CONSTANT);
157152

158153
return true;

0 commit comments

Comments
 (0)