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

Review changes

This commit is contained in:
Pawel Spychalski (DzikuVx) 2019-04-23 11:42:08 +02:00
parent 4ca1f0fdf9
commit 34bd2ea557
3 changed files with 3 additions and 3 deletions

View file

@ -139,7 +139,7 @@ int32_t applyDeadband(int32_t value, int32_t deadband)
return value;
}
float fapplyDeadband(const float value, const float deadband)
float fapplyDeadbandf(float value, float deadband)
{
if (fabsf(value) < deadband) {
return 0;