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/>.
27 #ifdef USE_GYRO_SPI_ICM20649
29 #include "common/axis.h"
30 #include "common/maths.h"
32 #include "drivers/accgyro/accgyro.h"
33 #include "drivers/accgyro/accgyro_mpu.h"
34 #include "drivers/accgyro/accgyro_spi_icm20649.h"
35 #include "drivers/bus_spi.h"
36 #include "drivers/exti.h"
37 #include "drivers/io.h"
38 #include "drivers/sensor.h"
39 #include "drivers/time.h"
41 // 8 MHz max SPI frequency
42 #define ICM20649_MAX_SPI_CLK_HZ 8000000
44 uint8_t icm20649SpiDetect(const extDevice_t
*dev
)
46 spiWriteReg(dev
, ICM20649_RA_REG_BANK_SEL
, 0 << 4); // select bank 0 just to be safe
49 spiWriteReg(dev
, ICM20649_RA_PWR_MGMT_1
, ICM20649_BIT_RESET
);
51 uint8_t icmDetected
= MPU_NONE
;
52 uint8_t attemptsRemaining
= 20;
55 const uint8_t whoAmI
= spiReadRegMsk(dev
, ICM20649_RA_WHO_AM_I
);
56 if (whoAmI
== ICM20649_WHO_AM_I_CONST
) {
57 icmDetected
= ICM_20649_SPI
;
59 icmDetected
= MPU_NONE
;
61 if (icmDetected
!= MPU_NONE
) {
64 if (!attemptsRemaining
) {
67 } while (attemptsRemaining
--);
73 void icm20649AccInit(accDev_t
*acc
)
77 acc
->acc_1G
= acc
->acc_high_fsr
? 1024 : 2048;
79 spiWriteReg(&acc
->gyro
->dev
, ICM20649_RA_REG_BANK_SEL
, 2 << 4); // config in bank 2
81 const uint8_t acc_fsr
= acc
->acc_high_fsr
? ICM20649_FSR_30G
: ICM20649_FSR_16G
;
82 spiWriteReg(&acc
->gyro
->dev
, ICM20649_RA_ACCEL_CONFIG
, acc_fsr
<< 1);
84 spiWriteReg(&acc
->gyro
->dev
, ICM20649_RA_REG_BANK_SEL
, 0 << 4); // back to bank 0
88 bool icm20649SpiAccDetect(accDev_t
*acc
)
90 if (acc
->mpuDetectionResult
.sensor
!= ICM_20649_SPI
) {
94 acc
->initFn
= icm20649AccInit
;
95 acc
->readFn
= icm20649AccRead
;
100 void icm20649GyroInit(gyroDev_t
*gyro
)
104 spiSetClkDivisor(&gyro
->dev
, spiCalculateDivider(ICM20649_MAX_SPI_CLK_HZ
)); // ensure proper speed
106 spiWriteReg(&gyro
->dev
, ICM20649_RA_REG_BANK_SEL
, 0 << 4); // select bank 0 just to be safe
108 spiWriteReg(&gyro
->dev
, ICM20649_RA_PWR_MGMT_1
, ICM20649_BIT_RESET
);
110 spiWriteReg(&gyro
->dev
, ICM20649_RA_PWR_MGMT_1
, INV_CLK_PLL
);
112 spiWriteReg(&gyro
->dev
, ICM20649_RA_REG_BANK_SEL
, 2 << 4); // config in bank 2
114 const uint8_t gyro_fsr
= gyro
->gyro_high_fsr
? ICM20649_FSR_4000DPS
: ICM20649_FSR_2000DPS
;
116 // If hardware_lpf is either GYRO_HARDWARE_LPF_NORMAL or GYRO_HARDWARE_LPF_EXPERIMENTAL then the
117 // gyro is running in 9KHz sample mode and GYRO_FCHOICE should be 0, otherwise we're in 1.1KHz sample
118 // mode and GYRO_FCHOICE = 1. When in 1.1KHz mode select the 196.6Hz DLPF (GYRO_DLPFCFG = 0)
119 // Unfortunately we can't configure any difference in DLPF based on NORMAL vs. EXPERIMENTAL because
120 // the ICM20649 only has a single 9KHz DLPF cutoff.
121 uint8_t raGyroConfigData
= gyro
->gyroRateKHz
> GYRO_RATE_1100_Hz
? 0 : 1; // deactivate GYRO_FCHOICE for sample rates over 1kHz (opposite of other invensense chips)
122 raGyroConfigData
|= gyro_fsr
<< 1;
123 spiWriteReg(&gyro
->dev
, ICM20649_RA_GYRO_CONFIG_1
, raGyroConfigData
);
125 spiWriteReg(&gyro
->dev
, ICM20649_RA_GYRO_SMPLRT_DIV
, gyro
->mpuDividerDrops
); // Get Divider Drops
128 // Data ready interrupt configuration
130 spiWriteReg(&gyro
->dev
, ICM20649_RA_REG_BANK_SEL
, 0 << 4);
132 spiWriteReg(&gyro
->dev
, ICM20649_RA_INT_PIN_CFG
, 0x11); // INT_ANYRD_2CLEAR, BYPASS_EN
135 spiWriteReg(&gyro
->dev
, ICM20649_RA_INT_ENABLE_1
, 0x01);
138 bool icm20649SpiGyroDetect(gyroDev_t
*gyro
)
140 if (gyro
->mpuDetectionResult
.sensor
!= ICM_20649_SPI
)
143 gyro
->initFn
= icm20649GyroInit
;
144 gyro
->readFn
= icm20649GyroReadSPI
;
146 // 16.384 dps/lsb scalefactor for 2000dps sensors
147 // 8.192 dps/lsb scalefactor for 4000dps sensors
148 gyro
->scale
= (gyro
->gyro_high_fsr
? GYRO_SCALE_4000DPS
: GYRO_SCALE_2000DPS
);
153 bool icm20649GyroReadSPI(gyroDev_t
*gyro
)
155 uint8_t dataToSend
[7] = {ICM20649_RA_GYRO_XOUT_H
| 0x80, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF};
158 const bool ack
= spiReadWriteBufRB(&gyro
->dev
, dataToSend
, data
, 7);
163 gyro
->gyroADCRaw
[X
] = (int16_t)((data
[1] << 8) | data
[2]);
164 gyro
->gyroADCRaw
[Y
] = (int16_t)((data
[3] << 8) | data
[4]);
165 gyro
->gyroADCRaw
[Z
] = (int16_t)((data
[5] << 8) | data
[6]);
170 bool icm20649AccRead(accDev_t
*acc
)
174 const bool ack
= spiReadRegMskBufRB(&acc
->gyro
->dev
, ICM20649_RA_ACCEL_XOUT_H
, data
, 6);
179 acc
->ADCRaw
[X
] = (int16_t)((data
[0] << 8) | data
[1]);
180 acc
->ADCRaw
[Y
] = (int16_t)((data
[2] << 8) | data
[3]);
181 acc
->ADCRaw
[Z
] = (int16_t)((data
[4] << 8) | data
[5]);