mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-23 08:15:30 +03:00
Fix vtail mixer defaults. Closes #988
Previously the vtail mixer was a copy of the atail mixer which was incorrect. The new defaults cater for frames like the Armattan Morphling Vtail.
This commit is contained in:
parent
df92691410
commit
28aad588cb
1 changed files with 4 additions and 4 deletions
|
@ -174,10 +174,10 @@ static const motorMixer_t mixerOctoFlatX[] = {
|
|||
};
|
||||
|
||||
static const motorMixer_t mixerVtail4[] = {
|
||||
{ 1.0f, 0.0f, 1.0f, 1.0f }, // REAR_R
|
||||
{ 1.0f, -1.0f, -1.0f, 0.0f }, // FRONT_R
|
||||
{ 1.0f, 0.0f, 1.0f, -1.0f }, // REAR_L
|
||||
{ 1.0f, 1.0f, -1.0f, -0.0f }, // FRONT_L
|
||||
{ 1.0f, -0.58f, 0.58f, 1.0f }, // REAR_R
|
||||
{ 1.0f, -0.46f, -0.39f, -0.5f }, // FRONT_R
|
||||
{ 1.0f, 0.58f, 0.58f, -1.0f }, // REAR_L
|
||||
{ 1.0f, 0.46f, -0.39f, 0.5f }, // FRONT_L
|
||||
};
|
||||
|
||||
static const motorMixer_t mixerAtail4[] = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue