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

Removed inflight adjustment of rate profile

This commit is contained in:
Martin Budden 2017-01-23 07:55:06 +00:00
parent 5a1e390a1c
commit 0ca01635a6
5 changed files with 63 additions and 71 deletions

View file

@ -23,6 +23,8 @@
#define ARRAYLEN(x) (sizeof(x) / sizeof((x)[0]))
#define ARRAYEND(x) (&(x)[ARRAYLEN(x)])
#define CONST_CAST(type, value) ((type)(value))
#define CONCAT_HELPER(x,y) x ## y
#define CONCAT(x,y) CONCAT_HELPER(x, y)