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"
30 #include "drivers/accgyro/accgyro_mpu.h"
31 #include "drivers/bus.h"
32 #include "drivers/exti.h"
33 #include "drivers/sensor.h"
35 #pragma GCC diagnostic push
36 #if defined(SIMULATOR_BUILD) && defined(SIMULATOR_MULTITHREAD)
40 #define GYRO_SCALE_2000DPS (2000.0f / (1 << 15)) // 16.384 dps/lsb scalefactor for 2000dps sensors
41 #define GYRO_SCALE_4000DPS (4000.0f / (1 << 15)) // 8.192 dps/lsb scalefactor for 4000dps sensors
68 GYRO_HARDWARE_LPF_NORMAL
,
69 GYRO_HARDWARE_LPF_OPTION_1
,
70 GYRO_HARDWARE_LPF_OPTION_2
,
71 #ifdef USE_GYRO_DLPF_EXPERIMENTAL
72 GYRO_HARDWARE_LPF_EXPERIMENTAL
,
74 GYRO_HARDWARE_LPF_COUNT
95 typedef struct gyroDev_s
{
96 #if defined(SIMULATOR_BUILD) && defined(SIMULATOR_MULTITHREAD)
99 sensorGyroInitFuncPtr initFn
; // initialize function
100 sensorGyroReadFuncPtr readFn
; // read 3 axis data function
101 sensorGyroReadDataFuncPtr temperatureFn
; // read temperature if available
102 extiCallbackRec_t exti
;
104 float scale
; // scalefactor
105 float gyroZero
[XYZ_AXIS_COUNT
];
106 float gyroADC
[XYZ_AXIS_COUNT
]; // gyro data after calibration and alignment
107 int32_t gyroADCRawPrevious
[XYZ_AXIS_COUNT
];
108 int16_t gyroADCRaw
[XYZ_AXIS_COUNT
]; // raw data from sensor
110 mpuDetectionResult_t mpuDetectionResult
;
111 sensor_align_e gyroAlign
;
112 gyroRateKHz_e gyroRateKHz
;
113 gyroModeSPI_e gyroModeSPI
;
114 uint32_t detectedEXTI
;
115 uint32_t gyroLastEXTI
;
116 uint32_t gyroSyncEXTI
;
117 int32_t gyroShortPeriod
;
118 int32_t gyroDmaMaxDuration
;
119 busSegment_t segments
[2];
120 volatile bool dataReady
;
122 uint8_t hardware_lpf
;
123 uint8_t hardware_32khz_lpf
;
124 uint8_t mpuDividerDrops
;
125 ioTag_t mpuIntExtiTag
;
126 uint8_t gyroHasOverflowProtection
;
127 gyroHardware_e gyroHardware
;
128 fp_rotationMatrix_t rotationMatrix
;
129 uint16_t gyroSampleRateHz
;
130 uint16_t accSampleRateHz
;
135 typedef struct accDev_s
{
136 #if defined(SIMULATOR_BUILD) && defined(SIMULATOR_MULTITHREAD)
137 pthread_mutex_t lock
;
140 sensorAccInitFuncPtr initFn
; // initialize function
141 sensorAccReadFuncPtr readFn
; // read 3 axis data function
143 int16_t ADCRaw
[XYZ_AXIS_COUNT
];
144 mpuDetectionResult_t mpuDetectionResult
;
145 sensor_align_e accAlign
;
149 char revisionCode
; // a revision code for the sensor, if known
151 fp_rotationMatrix_t rotationMatrix
;
154 static inline void accDevLock(accDev_t
*acc
)
156 #if defined(SIMULATOR_BUILD) && defined(SIMULATOR_MULTITHREAD)
157 pthread_mutex_lock(&acc
->lock
);
163 static inline void accDevUnLock(accDev_t
*acc
)
165 #if defined(SIMULATOR_BUILD) && defined(SIMULATOR_MULTITHREAD)
166 pthread_mutex_unlock(&acc
->lock
);
172 static inline void gyroDevLock(gyroDev_t
*gyro
)
174 #if defined(SIMULATOR_BUILD) && defined(SIMULATOR_MULTITHREAD)
175 pthread_mutex_lock(&gyro
->lock
);
181 static inline void gyroDevUnLock(gyroDev_t
*gyro
)
183 #if defined(SIMULATOR_BUILD) && defined(SIMULATOR_MULTITHREAD)
184 pthread_mutex_unlock(&gyro
->lock
);
189 #pragma GCC diagnostic pop