1
0
Fork 0
mirror of https://github.com/iNavFlight/inav.git synced 2025-07-14 11:59:56 +03:00

Fixed typos

This commit is contained in:
Darren Lines 2022-05-24 08:35:30 +01:00
parent cee90edce5
commit eda26f085f
7 changed files with 30 additions and 30 deletions

View file

@ -366,7 +366,7 @@ static int logicConditionCompute(
return true;
break;
case LOGIC_CONDITION_FLIGTH_AXIS_ANGLE_OVERRIDE:
case LOGIC_CONDITION_FLIGHT_AXIS_ANGLE_OVERRIDE:
if (operandA >= 0 && operandA <= 2) {
flightAxisOverride[operandA].angleTargetActive = true;
@ -390,7 +390,7 @@ static int logicConditionCompute(
}
break;
case LOGIC_CONDITION_FLIGTH_AXIS_RATE_OVERRIDE:
case LOGIC_CONDITION_FLIGHT_AXIS_RATE_OVERRIDE:
if (operandA >= 0 && operandA <= 2) {
flightAxisOverride[operandA].rateTargetActive = true;
flightAxisOverride[operandA].rateTarget = constrain(operandB, -2000, 2000);