1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-18 22:05:17 +03:00

Rename yaw_direction to yaw_motor_direction to avoid confusion

between `yaw_control_direction` and yaw servo configuration.
This commit is contained in:
Dominic Clifton 2015-07-13 01:54:45 +01:00
parent d23dc246d0
commit cc06113c8f
5 changed files with 5 additions and 5 deletions

View file

@ -789,7 +789,7 @@ void mixTable(void)
rcCommand[THROTTLE] * currentMixer[i].throttle +
axisPID[PITCH] * currentMixer[i].pitch +
axisPID[ROLL] * currentMixer[i].roll +
-mixerConfig->yaw_direction * axisPID[YAW] * currentMixer[i].yaw;
-mixerConfig->yaw_motor_direction * axisPID[YAW] * currentMixer[i].yaw;
}
if (ARMING_FLAG(ARMED)) {