1
0
Fork 0
mirror of https://github.com/iNavFlight/inav.git synced 2025-07-24 16:55:29 +03:00

Fix compilation on legacy targets

This commit is contained in:
Pawel Spychalski (DzikuVx) 2019-05-09 08:30:27 +02:00
parent 5de29a3f17
commit b5870f5975

View file

@ -27,6 +27,7 @@
#include "common/axis.h"
#include "common/filter.h"
#include "common/maths.h"
#include "common/utils.h"
#include "config/parameter_group.h"
#include "config/parameter_group_ids.h"
@ -653,7 +654,7 @@ static float applyDBoost(float rateTarget, float gyroRate, flight_dynamics_index
UNUSED(rateTarget);
UNUSED(gyroRate);
UNUSED(axis);
return 1.0f
return 1.0f;
}
#endif