1
0
Fork 0
mirror of https://github.com/iNavFlight/inav.git synced 2025-07-20 23:05:17 +03:00

Allow Angle target overrides

This commit is contained in:
Pawel Spychalski (DzikuVx) 2022-04-12 08:55:36 +02:00
parent 8be0247dec
commit 68c47e7c09
3 changed files with 52 additions and 10 deletions

View file

@ -217,3 +217,7 @@ float getThrottleScale(float globalThrottleScale);
int16_t getRcCommandOverride(int16_t command[], uint8_t axis);
int16_t getRcChannelOverride(uint8_t channel, int16_t originalValue);
uint32_t getLoiterRadius(uint32_t loiterRadius);
float getFlightAxisAngleOverride(uint8_t axis, float angle);
float getFlightAxisRateOverride(uint8_t axis, float rate);
bool isFlightAxisAngleOverrideActive(uint8_t axis);
bool isFlightAxisRateOverrideActive(uint8_t axis);