2 * This file is part of Cleanflight and Betaflight.
4 * Cleanflight and Betaflight are free software. You can redistribute
5 * this software and/or modify this software under the terms of the
6 * GNU General Public License as published by the Free Software
7 * Foundation, either version 3 of the License, or (at your option)
10 * Cleanflight and Betaflight are distributed in the hope that they
11 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
12 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 * See the GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this software.
18 * If not, see <http://www.gnu.org/licenses/>.
25 #include "common/axis.h"
26 #include "common/maths.h"
27 #include "common/sensor_alignment.h"
28 #include "common/time.h"
29 #include "drivers/exti.h"
30 #include "drivers/bus.h"
31 #include "drivers/sensor.h"
32 #include "drivers/accgyro/accgyro_mpu.h"
34 #pragma GCC diagnostic push
35 #if defined(SIMULATOR_BUILD) && defined(SIMULATOR_MULTITHREAD)
39 #define GYRO_SCALE_2000DPS (2000.0f / (1 << 15)) // 16.384 dps/lsb scalefactor for 2000dps sensors
40 #define GYRO_SCALE_4000DPS (4000.0f / (1 << 15)) // 8.192 dps/lsb scalefactor for 4000dps sensors
66 GYRO_HARDWARE_LPF_NORMAL
,
67 GYRO_HARDWARE_LPF_OPTION_1
,
68 GYRO_HARDWARE_LPF_OPTION_2
,
69 #ifdef USE_GYRO_DLPF_EXPERIMENTAL
70 GYRO_HARDWARE_LPF_EXPERIMENTAL
,
72 GYRO_HARDWARE_LPF_COUNT
93 typedef struct gyroDev_s
{
94 #if defined(SIMULATOR_BUILD) && defined(SIMULATOR_MULTITHREAD)
97 sensorGyroInitFuncPtr initFn
; // initialize function
98 sensorGyroReadFuncPtr readFn
; // read 3 axis data function
99 sensorGyroReadDataFuncPtr temperatureFn
; // read temperature if available
100 extiCallbackRec_t exti
;
102 float scale
; // scalefactor
103 float gyroZero
[XYZ_AXIS_COUNT
];
104 float gyroADC
[XYZ_AXIS_COUNT
]; // gyro data after calibration and alignment
105 int32_t gyroADCRawPrevious
[XYZ_AXIS_COUNT
];
106 int16_t gyroADCRaw
[XYZ_AXIS_COUNT
]; // raw data from sensor
108 mpuDetectionResult_t mpuDetectionResult
;
109 sensor_align_e gyroAlign
;
110 gyroRateKHz_e gyroRateKHz
;
111 gyroModeSPI_e gyroModeSPI
;
112 uint32_t detectedEXTI
;
113 uint32_t gyroLastEXTI
;
114 uint32_t gyroSyncEXTI
;
115 int32_t gyroShortPeriod
;
116 int32_t gyroDmaMaxDuration
;
117 busSegment_t segments
[2];
118 volatile bool dataReady
;
120 uint8_t hardware_lpf
;
121 uint8_t hardware_32khz_lpf
;
122 uint8_t mpuDividerDrops
;
123 ioTag_t mpuIntExtiTag
;
124 uint8_t gyroHasOverflowProtection
;
125 gyroHardware_e gyroHardware
;
126 fp_rotationMatrix_t rotationMatrix
;
127 uint16_t gyroSampleRateHz
;
128 uint16_t accSampleRateHz
;
133 typedef struct accDev_s
{
134 #if defined(SIMULATOR_BUILD) && defined(SIMULATOR_MULTITHREAD)
135 pthread_mutex_t lock
;
138 sensorAccInitFuncPtr initFn
; // initialize function
139 sensorAccReadFuncPtr readFn
; // read 3 axis data function
141 int16_t ADCRaw
[XYZ_AXIS_COUNT
];
142 mpuDetectionResult_t mpuDetectionResult
;
143 sensor_align_e accAlign
;
147 char revisionCode
; // a revision code for the sensor, if known
149 fp_rotationMatrix_t rotationMatrix
;
152 static inline void accDevLock(accDev_t
*acc
)
154 #if defined(SIMULATOR_BUILD) && defined(SIMULATOR_MULTITHREAD)
155 pthread_mutex_lock(&acc
->lock
);
161 static inline void accDevUnLock(accDev_t
*acc
)
163 #if defined(SIMULATOR_BUILD) && defined(SIMULATOR_MULTITHREAD)
164 pthread_mutex_unlock(&acc
->lock
);
170 static inline void gyroDevLock(gyroDev_t
*gyro
)
172 #if defined(SIMULATOR_BUILD) && defined(SIMULATOR_MULTITHREAD)
173 pthread_mutex_lock(&gyro
->lock
);
179 static inline void gyroDevUnLock(gyroDev_t
*gyro
)
181 #if defined(SIMULATOR_BUILD) && defined(SIMULATOR_MULTITHREAD)
182 pthread_mutex_unlock(&gyro
->lock
);
187 #pragma GCC diagnostic pop