Merge pull request #6423 from jflyper/bfdev-fix-atail-mixer

Fix A-Tail mixer
This commit is contained in:
Michael Keller 2018-07-25 20:47:50 +12:00 committed by GitHub
commit 60c09b8d48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -258,10 +258,10 @@ static const motorMixer_t mixerVtail4[] = {
};
static const motorMixer_t mixerAtail4[] = {
{ 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
};
#if defined(USE_UNCOMMON_MIXERS)