1
0
Fork 0
mirror of https://github.com/iNavFlight/inav.git synced 2025-07-25 09:16:01 +03:00

Updated for Pawel's request

Made function static.

Hope to test in flight today.
This commit is contained in:
Darren Lines 2021-09-15 09:31:05 +01:00
parent 1aec34b823
commit 8dd8a477bf
2 changed files with 1 additions and 2 deletions

View file

@ -459,7 +459,7 @@ void osdFormatVelocityStr(char* buff, int32_t vel, bool _3D, bool _max)
/**
* Returns the average velocity. This always uses stats, so can be called as an OSD element later if wanted, to show a real time average
*/
void osdGenerateAverageVelocityStr(char* buff) {
static void osdGenerateAverageVelocityStr(char* buff) {
uint32_t cmPerSec = getTotalTravelDistance() / getFlightTime();
osdFormatVelocityStr(buff, cmPerSec, false, false);
}

View file

@ -416,7 +416,6 @@ void osdCrosshairPosition(uint8_t *x, uint8_t *y);
bool osdFormatCentiNumber(char *buff, int32_t centivalue, uint32_t scale, int maxDecimals, int maxScaledDecimals, int length);
void osdFormatAltitudeSymbol(char *buff, int32_t alt);
void osdFormatVelocityStr(char* buff, int32_t vel, bool _3D, bool _max);
void osdGenerateAverageVelocityStr(char* buff);
// Returns a heading angle in degrees normalized to [0, 360).
int osdGetHeadingAngle(int angle);