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

Rename ref protocol to inav. Tidied function names.

This commit is contained in:
Martin Budden 2016-08-06 22:32:11 +01:00
parent abf10157ca
commit b3d717df55
16 changed files with 161 additions and 126 deletions

View file

@ -21,6 +21,7 @@
#include <stdint.h>
#define ARRAYLEN(x) (sizeof(x) / sizeof((x)[0]))
#define ARRAYEND(x) (&(x)[ARRAYLEN(x)])
#define CONCAT_HELPER(x,y) x ## y
#define CONCAT(x,y) CONCAT_HELPER(x, y)