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

Remove volatile from gyroADC

This commit is contained in:
borisbstyle 2017-01-06 12:53:11 +01:00
parent 45c4341442
commit c5922d2422
2 changed files with 1 additions and 5 deletions

View file

@ -66,11 +66,7 @@
gyro_t gyro; // gyro access functions
#if defined(GYRO_USES_SPI) && defined(USE_MPU_DATA_READY_SIGNAL)
static volatile int32_t gyroADC[XYZ_AXIS_COUNT];
#else
static int32_t gyroADC[XYZ_AXIS_COUNT];
#endif
static int32_t gyroZero[XYZ_AXIS_COUNT] = { 0, 0, 0 };
static const gyroConfig_t *gyroConfig;