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

Moved function declarations out of main. Tidied drivers.

This commit is contained in:
Martin Budden 2016-08-02 15:11:35 +01:00
parent c50efe6352
commit 1c997abaaf
31 changed files with 112 additions and 96 deletions

View file

@ -21,6 +21,9 @@
#include <math.h>
#include "platform.h"
#ifdef USE_MAG_HMC5883
#include "debug.h"
#include "common/axis.h"
@ -271,3 +274,4 @@ bool hmc5883lRead(int16_t *magData)
return true;
}
#endif