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

More relocation of variables.

This commit is contained in:
Dominic Clifton 2015-02-01 00:03:46 +01:00
parent 53406a7ac7
commit 8cc9e8ca37
13 changed files with 65 additions and 52 deletions

View file

@ -22,6 +22,11 @@ extern uint32_t accTimeSum;
extern int accSumCount;
extern float accVelScale;
extern int16_t accSmooth[XYZ_AXIS_COUNT];
extern int32_t accSum[XYZ_AXIS_COUNT];
extern int16_t gyroData[FLIGHT_DYNAMICS_INDEX_COUNT];
typedef struct rollAndPitchInclination_s {
// absolute angle inclination in multiple of 0.1 degree 180 deg = 1800
int16_t rollDeciDegrees;