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/>.
28 #if defined(USE_MAG_HMC5883) || defined(USE_MAG_SPI_HMC5883)
30 #include "build/debug.h"
32 #include "common/axis.h"
33 #include "common/maths.h"
35 #include "drivers/bus.h"
36 #include "drivers/bus_i2c.h"
37 #include "drivers/bus_i2c_busdev.h"
38 #include "drivers/bus_spi.h"
39 #include "drivers/exti.h"
40 #include "drivers/io.h"
41 #include "drivers/light_led.h"
42 #include "drivers/nvic.h"
43 #include "drivers/sensor.h"
44 #include "drivers/time.h"
48 #include "compass_hmc5883l.h"
50 //#define DEBUG_MAG_DATA_READY_INTERRUPT
52 // 10 MHz max SPI frequency
53 #define HMC5883_MAX_SPI_CLK_HZ 10000000
55 // HMC5883L, default address 0x1E
56 // NAZE Target connections
57 // PB12 connected to MAG_DRDY on rev4 hardware
58 // PC14 connected to MAG_DRDY on rev5 hardware
60 /* CTRL_REGA: Control Register A
63 * 7:5 0 These bits must be cleared for correct operation.
64 * 4:2 DO2-DO0: Data Output Rate Bits
65 * DO2 | DO1 | DO0 | Minimum Data Output Rate (Hz)
66 * ------------------------------------------------------
71 * 1 | 0 | 0 | 15 (default)
74 * 1 | 1 | 1 | Not Used
75 * 1:0 MS1-MS0: Measurement Configuration Bits
77 * ------------------------------
79 * 0 | 1 | Positive Bias
80 * 1 | 0 | Negative Bias
83 * CTRL_REGB: Control RegisterB
86 * 7:5 GN2-GN0: Gain Configuration Bits.
87 * GN2 | GN1 | GN0 | Mag Input | Gain | Output Range
88 * | | | Range[Ga] | [LSB/mGa] |
89 * ------------------------------------------------------
90 * 0 | 0 | 0 | �0.88Ga | 1370 | 0xF800?0x07FF (-2048:2047)
91 * 0 | 0 | 1 | �1.3Ga (def) | 1090 | 0xF800?0x07FF (-2048:2047)
92 * 0 | 1 | 0 | �1.9Ga | 820 | 0xF800?0x07FF (-2048:2047)
93 * 0 | 1 | 1 | �2.5Ga | 660 | 0xF800?0x07FF (-2048:2047)
94 * 1 | 0 | 0 | �4.0Ga | 440 | 0xF800?0x07FF (-2048:2047)
95 * 1 | 0 | 1 | �4.7Ga | 390 | 0xF800?0x07FF (-2048:2047)
96 * 1 | 1 | 0 | �5.6Ga | 330 | 0xF800?0x07FF (-2048:2047)
97 * 1 | 1 | 1 | �8.1Ga | 230 | 0xF800?0x07FF (-2048:2047)
100 * 4:0 CRB4-CRB: 0 This bit must be cleared for correct operation.
102 * _MODE_REG: Mode Register
104 * Default value: 0x02
105 * 7:2 0 These bits must be cleared for correct operation.
106 * 1:0 MD1-MD0: Mode Select Bits
108 * ------------------------------
109 * 0 | 0 | Continuous-Conversion Mode.
110 * 0 | 1 | Single-Conversion Mode
111 * 1 | 0 | Negative Bias
115 #define HMC5883_MAG_I2C_ADDRESS 0x1E
116 #define HMC5883_DEVICE_ID 0x48
118 #define HMC58X3_REG_CONFA 0x00
119 #define HMC58X3_REG_CONFB 0x01
120 #define HMC58X3_REG_MODE 0x02
121 #define HMC58X3_REG_DATA 0x03
122 #define HMC58X3_REG_IDA 0x0A
124 #define HMC_CONFA_NORMAL 0x00
125 #define HMC_CONFA_POS_BIAS 0x01
126 #define HMC_CONFA_NEG_BIAS 0x02
127 #define HMC_CONFA_DOR_15HZ 0X10
128 #define HMC_CONFA_8_SAMLES 0X60
129 #define HMC_CONFB_GAIN_2_5GA 0X60
130 #define HMC_CONFB_GAIN_1_3GA 0X20
131 #define HMC_MODE_CONTINOUS 0X00
132 #define HMC_MODE_SINGLE 0X01
134 #define HMC58X3_X_SELF_TEST_GAUSS (+1.16f) // X axis level when bias current is applied.
135 #define HMC58X3_Y_SELF_TEST_GAUSS (+1.16f) // Y axis level when bias current is applied.
136 #define HMC58X3_Z_SELF_TEST_GAUSS (+1.08f) // Z axis level when bias current is applied.
137 #define SELF_TEST_LOW_LIMIT (243.0f / 390.0f) // Low limit when gain is 5.
138 #define SELF_TEST_HIGH_LIMIT (575.0f / 390.0f) // High limit when gain is 5.
140 #ifdef USE_MAG_DATA_READY_SIGNAL
142 static void hmc5883_extiHandler(extiCallbackRec_t
* cb
)
145 #ifdef DEBUG_MAG_DATA_READY_INTERRUPT
146 // Measure the delta between calls to the interrupt handler
147 // currently should be around 65/66 milli seconds / 15hz output rate
148 static uint32_t lastCalledAt
= 0;
149 static int32_t callDelta
= 0;
151 uint32_t now
= millis();
152 callDelta
= now
- lastCalledAt
;
155 debug
[0] = callDelta
;
162 static void hmc5883lConfigureDataReadyInterruptHandling(magDev_t
* mag
)
164 #ifdef USE_MAG_DATA_READY_SIGNAL
165 if (mag
->magIntExtiTag
== IO_TAG_NONE
) {
169 const IO_t magIntIO
= IOGetByTag(mag
->magIntExtiTag
);
171 #ifdef ENSURE_MAG_DATA_READY_IS_HIGH
172 uint8_t status
= IORead(magIntIO
);
178 IOInit(magIntIO
, OWNER_COMPASS_EXTI
, 0);
179 EXTIHandlerInit(&mag
->exti
, hmc5883_extiHandler
);
180 EXTIConfig(magIntIO
, &mag
->exti
, NVIC_PRIO_MPU_INT_EXTI
, IOCFG_IN_FLOATING
, BETAFLIGHT_EXTI_TRIGGER_RISING
);
181 EXTIEnable(magIntIO
);
182 EXTIEnable(magIntIO
);
188 #ifdef USE_MAG_SPI_HMC5883
189 static void hmc5883SpiInit(const extDevice_t
*dev
)
191 busDeviceRegister(dev
);
193 IOHi(dev
->busType_u
.spi
.csnPin
); // Disable
195 IOInit(dev
->busType_u
.spi
.csnPin
, OWNER_COMPASS_CS
, 0);
196 IOConfigGPIO(dev
->busType_u
.spi
.csnPin
, IOCFG_OUT_PP
);
197 spiSetClkDivisor(dev
, spiCalculateDivider(HMC5883_MAX_SPI_CLK_HZ
));
201 static bool hmc5883lRead(magDev_t
*mag
, int16_t *magData
)
203 static uint8_t buf
[6];
204 static bool pendingRead
= true;
206 extDevice_t
*dev
= &mag
->dev
;
209 busReadRegisterBufferStart(dev
, HMC58X3_REG_DATA
, buf
, sizeof(buf
));
215 magData
[X
] = (int16_t)(buf
[0] << 8 | buf
[1]);
216 magData
[Z
] = (int16_t)(buf
[2] << 8 | buf
[3]);
217 magData
[Y
] = (int16_t)(buf
[4] << 8 | buf
[5]);
224 static bool hmc5883lInit(magDev_t
*mag
)
227 extDevice_t
*dev
= &mag
->dev
;
230 busWriteRegister(dev
, HMC58X3_REG_CONFA
, HMC_CONFA_8_SAMLES
| HMC_CONFA_DOR_15HZ
| HMC_CONFA_NORMAL
); // Configuration Register A -- 0 11 100 00 num samples: 8 ; output rate: 15Hz ; normal measurement mode
231 busWriteRegister(dev
, HMC58X3_REG_CONFB
, HMC_CONFB_GAIN_1_3GA
); // Configuration Register B -- 001 00000 configuration gain 1.3Ga
232 busWriteRegister(dev
, HMC58X3_REG_MODE
, HMC_MODE_CONTINOUS
); // Mode register -- 000000 00 continuous Conversion Mode
236 hmc5883lConfigureDataReadyInterruptHandling(mag
);
240 bool hmc5883lDetect(magDev_t
* mag
)
242 extDevice_t
*dev
= &mag
->dev
;
246 #ifdef USE_MAG_SPI_HMC5883
247 if (dev
->bus
->busType
== BUS_TYPE_SPI
) {
252 #ifdef USE_MAG_HMC5883
253 if (dev
->bus
->busType
== BUS_TYPE_I2C
&& dev
->busType_u
.i2c
.address
== 0) {
254 dev
->busType_u
.i2c
.address
= HMC5883_MAG_I2C_ADDRESS
;
258 bool ack
= busReadRegisterBuffer(&mag
->dev
, HMC58X3_REG_IDA
, &sig
, 1);
260 if (!ack
|| sig
!= HMC5883_DEVICE_ID
) {
264 mag
->init
= hmc5883lInit
;
265 mag
->read
= hmc5883lRead
;