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

New linear mixer (credits to @tylercorleone)

This commit is contained in:
borisbstyle 2020-11-24 21:59:39 +01:00 committed by Michael Keller
parent 7154abc48e
commit 75da17a00e
4 changed files with 48 additions and 26 deletions

View file

@ -50,7 +50,8 @@ PG_RESET_TEMPLATE(mixerConfig_t, mixerConfig,
.mixerMode = DEFAULT_MIXER,
.yaw_motors_reversed = false,
.crashflip_motor_percent = 0,
.crashflip_expo = 35
.crashflip_expo = 35,
.linear_mixer = false,
);
PG_REGISTER_ARRAY(motorMixer_t, MAX_SUPPORTED_MOTORS, customMotorMixer, PG_MOTOR_MIXER, 0);