1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-26 01:35:41 +03:00

Removed not needed fwd declaraions and includes.

This commit is contained in:
Anders Hoglund 2016-10-02 13:49:00 +02:00
parent 44abc8f2e4
commit 15e24e2015
3 changed files with 0 additions and 8 deletions

View file

@ -22,12 +22,6 @@
#include "sensors/acceleration.h"
extern int16_t throttleAngleCorrection;
extern uint32_t accTimeSum;
extern int accSumCount;
extern float accVelScale;
extern int32_t accSum[XYZ_AXIS_COUNT];
#define DEGREES_TO_DECIDEGREES(angle) (angle * 10)
#define DECIDEGREES_TO_DEGREES(angle) (angle / 10)
#define DECIDEGREES_TO_RADIANS(angle) ((angle / 10.0f) * 0.0174532925f)