1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-12-01 09:24:10 +01:00

OP-1260 Fixed typo in a fairly important comment

This commit is contained in:
Cliff Geerdes 2014-03-20 12:41:48 -04:00
parent 1cb9d9548f
commit 945b60cf99

View File

@ -442,7 +442,7 @@ static void stabilizationTask(__attribute__((unused)) void *parameters)
// when a small number of degrees off of where it should be
// if below the transition angle (still in attitude mode)
// '<=' instead of ',' keeps rattitude_mode_transition_stick_position==1.0 from causing DZ
// '<=' instead of '<' keeps rattitude_mode_transition_stick_position==1.0 from causing DZ
if (magnitude <= rattitude_mode_transition_stick_position) {
magnitude *= STICK_VALUE_AT_MODE_TRANSITION / rattitude_mode_transition_stick_position;
} else {