Skip to content

Commit

Permalink
Change Yaw limits to ±30° and calibration to 50%
Browse files Browse the repository at this point in the history
  • Loading branch information
pmattila committed Aug 22, 2024
1 parent a465808 commit 3273214
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/main/pg/mixer.c
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,12 @@ void pgResetFn_mixerInputs(mixerInput_t *input)
input[i].max = 1000;
}

input[MIXER_IN_STABILIZED_YAW].rate = 500;
input[MIXER_IN_STABILIZED_YAW].min = -1250;
input[MIXER_IN_STABILIZED_YAW].max = 1250;

input[MIXER_IN_STABILIZED_THROTTLE].rate = 1000;
input[MIXER_IN_STABILIZED_THROTTLE].min = 0;
input[MIXER_IN_STABILIZED_THROTTLE].max = 1000;
}


0 comments on commit 3273214

Please sign in to comment.