Paparazzi UAS  v6.2.0_stable
Paparazzi is a free software Unmanned Aircraft System.
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
imu_aspirin_2_spi.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2013 Felix Ruess <felix.ruess@gmail.com>
3  *
4  * This file is part of paparazzi.
5  *
6  * paparazzi is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2, or (at your option)
9  * any later version.
10  *
11  * paparazzi is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with paparazzi; see the file COPYING. If not, write to
18  * the Free Software Foundation, 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  */
21 
28 #include "modules/imu/imu.h"
29 #include "modules/core/abi.h"
30 #include "mcu_periph/sys_time.h"
31 #include "mcu_periph/spi.h"
33 
34 /* defaults suitable for Lisa */
35 #ifndef ASPIRIN_2_SPI_SLAVE_IDX
36 #define ASPIRIN_2_SPI_SLAVE_IDX SPI_SLAVE2
37 #endif
38 PRINT_CONFIG_VAR(ASPIRIN_2_SPI_SLAVE_IDX)
39 
40 #ifndef ASPIRIN_2_SPI_DEV
41 #define ASPIRIN_2_SPI_DEV spi2
42 #endif
43 PRINT_CONFIG_VAR(ASPIRIN_2_SPI_DEV)
44 
45 /* MPU60x0 gyro/accel internal lowpass frequency */
46 #if !defined ASPIRIN_2_LOWPASS_FILTER && !defined ASPIRIN_2_SMPLRT_DIV
47 #if (PERIODIC_FREQUENCY == 60) || (PERIODIC_FREQUENCY == 120)
48 /* Accelerometer: Bandwidth 44Hz, Delay 4.9ms
49  * Gyroscope: Bandwidth 42Hz, Delay 4.8ms sampling 1kHz
50  */
51 #define ASPIRIN_2_LOWPASS_FILTER MPU60X0_DLPF_42HZ
52 #define ASPIRIN_2_SMPLRT_DIV 9
53 PRINT_CONFIG_MSG("Gyro/Accel output rate is 100Hz at 1kHz internal sampling")
54 #elif PERIODIC_FREQUENCY == 512
55 /* Accelerometer: Bandwidth 260Hz, Delay 0ms
56  * Gyroscope: Bandwidth 256Hz, Delay 0.98ms sampling 8kHz
57  */
58 #define ASPIRIN_2_LOWPASS_FILTER MPU60X0_DLPF_256HZ
59 #define ASPIRIN_2_SMPLRT_DIV 3
60 PRINT_CONFIG_MSG("Gyro/Accel output rate is 2kHz at 8kHz internal sampling")
61 #else
62 #error Non-default PERIODIC_FREQUENCY: please define ASPIRIN_2_LOWPASS_FILTER and ASPIRIN_2_SMPLRT_DIV.
63 #endif
64 #endif
65 PRINT_CONFIG_VAR(ASPIRIN_2_LOWPASS_FILTER)
66 PRINT_CONFIG_VAR(ASPIRIN_2_SMPLRT_DIV)
67 
68 PRINT_CONFIG_VAR(ASPIRIN_2_GYRO_RANGE)
69 PRINT_CONFIG_VAR(ASPIRIN_2_ACCEL_RANGE)
70 
71 
72 /* HMC58XX default conf */
73 #ifndef HMC58XX_DO
74 #define HMC58XX_DO 0x6 // Data Output Rate (6 -> 75Hz with HMC5883)
75 #endif
76 #ifndef HMC58XX_MS
77 #define HMC58XX_MS 0x0 // Measurement configuration
78 #endif
79 #ifndef HMC58XX_GN
80 #define HMC58XX_GN 0x1 // Gain configuration (1 -> +- 1 Gauss)
81 #endif
82 #ifndef HMC58XX_MD
83 #define HMC58XX_MD 0x0 // Continious measurement mode
84 #endif
85 
86 #define HMC58XX_CRA ((HMC58XX_DO<<2)|(HMC58XX_MS))
87 #define HMC58XX_CRB (HMC58XX_GN<<5)
88 
90 #ifndef ASPIRIN_2_MAG_STARTUP_DELAY
91 #define ASPIRIN_2_MAG_STARTUP_DELAY 1.5
92 #endif
93 
95 
96 void mpu_wait_slave4_ready(void);
99 
101 {
103  // change the default configuration
104  imu_aspirin2.mpu.config.smplrt_div = ASPIRIN_2_SMPLRT_DIV;
105  imu_aspirin2.mpu.config.dlpf_cfg = ASPIRIN_2_LOWPASS_FILTER;
108 
109  // Set the default scaling
112 
113  /* read 15 bytes for status, accel, gyro + 6 bytes for mag slave */
115 
116  /* use mag if not disabled */
117 #if !ASPIRIN_2_DISABLE_MAG
118  /* HMC5883 magnetometer as I2C slave */
120 
121  /* set function to configure mag */
123 
124  /* Set MPU I2C master clock */
126  /* Enable I2C slave0 delayed sample rate */
128 
129 
130  /* configure spi transaction for wait_slave4 */
136 
145 
147  imu_aspirin2.slave4_ready = false;
148 #endif
149 }
150 
151 
153 {
155 }
156 
157 #define Int16FromBuf(_buf,_idx) ((int16_t)((_buf[_idx]<<8) | _buf[_idx+1]))
158 
160 {
161  uint32_t now_ts = get_sys_time_usec();
162 
165 #if !ASPIRIN_2_DISABLE_MAG
166  /* HMC5883 has xzy order of axes in returned data */
167  struct Int32Vect3 mag, mag_rot;
171 #endif
172 
173  /* Handle axis assignement for Lisa/S integrated Aspirin like IMU. */
174  struct Int32Rates gyro;
175  struct Int32Vect3 accel;
176 #ifdef LISA_S
177 #ifdef LISA_S_UPSIDE_DOWN
178  RATES_ASSIGN(gyro,
179  imu_aspirin2.mpu.data_rates.rates.p,
180  -imu_aspirin2.mpu.data_rates.rates.q,
181  -imu_aspirin2.mpu.data_rates.rates.r);
182  VECT3_ASSIGN(accel,
183  imu_aspirin2.mpu.data_accel.vect.x,
184  -imu_aspirin2.mpu.data_accel.vect.y,
185  -imu_aspirin2.mpu.data_accel.vect.z);
186 #if !ASPIRIN_2_DISABLE_MAG
187  VECT3_ASSIGN(mag_rot, mag.x, -mag.y, -mag.z);
188 #endif
189 #else
190  RATES_COPY(gyro, imu_aspirin2.mpu.data_rates.rates);
191  VECT3_COPY(accel, imu_aspirin2.mpu.data_accel.vect);
192 #if !ASPIRIN_2_DISABLE_MAG
193  VECT3_COPY(mag_rot, mag);
194 #endif
195 #endif
196 #else
197 
198  /* Handle axis assignement for Lisa/M or Lisa/MX V2.1 integrated Aspirin like
199  * IMU.
200  */
201 #ifdef LISA_M_OR_MX_21
202  RATES_ASSIGN(gyro,
203  -imu_aspirin2.mpu.data_rates.rates.q,
204  imu_aspirin2.mpu.data_rates.rates.p,
205  imu_aspirin2.mpu.data_rates.rates.r);
206  VECT3_ASSIGN(accel,
207  -imu_aspirin2.mpu.data_accel.vect.y,
208  imu_aspirin2.mpu.data_accel.vect.x,
209  imu_aspirin2.mpu.data_accel.vect.z);
210 #if !ASPIRIN_2_DISABLE_MAG
211  VECT3_ASSIGN(mag_rot, -mag.y, mag.x, mag.z);
212 #endif
213 #else
214 
215  /* Handle real Aspirin IMU axis assignement. */
216 #ifdef LISA_M_LONGITUDINAL_X
217  RATES_ASSIGN(gyro,
218  imu_aspirin2.mpu.data_rates.rates.q,
219  -imu_aspirin2.mpu.data_rates.rates.p,
220  imu_aspirin2.mpu.data_rates.rates.r);
221  VECT3_ASSIGN(accel,
222  imu_aspirin2.mpu.data_accel.vect.y,
223  -imu_aspirin2.mpu.data_accel.vect.x,
224  imu_aspirin2.mpu.data_accel.vect.z);
225 #if !ASPIRIN_2_DISABLE_MAG
226  VECT3_ASSIGN(mag_rot, -mag.x, -mag.y, mag.z);
227 #endif
228 #else
229  RATES_COPY(gyro, imu_aspirin2.mpu.data_rates.rates);
230  VECT3_COPY(accel, imu_aspirin2.mpu.data_accel.vect);
231 #if !ASPIRIN_2_DISABLE_MAG
232  VECT3_ASSIGN(mag_rot, mag.y, -mag.x, mag.z)
233 #endif
234 #endif
235 #endif
236 #endif
237 
239 
240  AbiSendMsgIMU_GYRO_RAW(IMU_ASPIRIN2_ID, now_ts, &gyro, 1, imu_aspirin2.mpu.temp);
241  AbiSendMsgIMU_ACCEL_RAW(IMU_ASPIRIN2_ID, now_ts, &accel, 1, imu_aspirin2.mpu.temp);
242 #if !ASPIRIN_2_DISABLE_MAG
243  AbiSendMsgIMU_MAG_RAW(IMU_ASPIRIN2_ID, now_ts, &mag_rot);
244 #endif
245  }
246 }
247 
248 // hack with waiting to avoid creating another event loop to check the mag config status
249 static inline void mpu_set_and_wait(Mpu60x0ConfigSet mpu_set, void *mpu, uint8_t _reg, uint8_t _val)
250 {
251  mpu_set(mpu, _reg, _val);
253 }
254 
259 {
260  // wait before starting the configuration of the HMC58xx mag
261  // doing to early may void the mode configuration
263  return false;
264  }
265 
269  mpu_set_and_wait(mpu_set, mpu, MPU60X0_REG_I2C_SLV4_CTRL, (1 << 7)); // Slave 4 enable
270 
272 
276  mpu_set_and_wait(mpu_set, mpu, MPU60X0_REG_I2C_SLV4_CTRL, (1 << 7)); // Slave 4 enable
277 
279 
283  mpu_set_and_wait(mpu_set, mpu, MPU60X0_REG_I2C_SLV4_CTRL, (1 << 7)); // Slave 4 enable
284 
287  // Put the enable command as last.
289  (1 << 7) | // Slave 0 enable
290  (6 << 0)); // Read 6 bytes
291 
292  return true;
293 }
294 
296 {
297  while (!imu_aspirin2.slave4_ready) {
301  }
302  }
303 }
304 
306 {
307  if (bit_is_set(t->input_buf[1], MPU60X0_I2C_SLV4_DONE)) {
308  imu_aspirin2.slave4_ready = true;
309  } else {
310  imu_aspirin2.slave4_ready = false;
311  }
312  t->status = SPITransDone;
313 }
Main include for ABI (AirBorneInterface).
#define IMU_ASPIRIN2_ID
uint32_t get_sys_time_usec(void)
Get the time in microseconds since startup.
Definition: sys_time_arch.c:75
#define RATES_COPY(_a, _b)
Definition: pprz_algebra.h:337
#define RATES_ASSIGN(_ra, _p, _q, _r)
Definition: pprz_algebra.h:330
#define VECT3_ASSIGN(_a, _x, _y, _z)
Definition: pprz_algebra.h:125
#define VECT3_COPY(_a, _b)
Definition: pprz_algebra.h:140
angular rates
enum SPIClockPolarity cpol
clock polarity control
Definition: spi.h:155
enum SPIClockPhase cpha
clock phase control
Definition: spi.h:156
enum SPISlaveSelect select
slave selection behavior
Definition: spi.h:154
SPICallback before_cb
NULL or function called before the transaction.
Definition: spi.h:160
SPICallback after_cb
NULL or function called after the transaction.
Definition: spi.h:161
enum SPIDataSizeSelect dss
data transfer word size
Definition: spi.h:157
volatile uint8_t * output_buf
pointer to transmit buffer for DMA
Definition: spi.h:150
uint16_t input_length
number of data words to read
Definition: spi.h:151
enum SPIClockDiv cdiv
prescaler of main clock to use as SPI clock
Definition: spi.h:159
volatile uint8_t * input_buf
pointer to receive buffer for DMA
Definition: spi.h:149
uint8_t slave_idx
slave id: SPI_SLAVE0 to SPI_SLAVE4
Definition: spi.h:153
enum SPIBitOrder bitorder
MSB/LSB order.
Definition: spi.h:158
uint16_t output_length
number of data words to write
Definition: spi.h:152
enum SPITransactionStatus status
Definition: spi.h:162
bool spi_submit(struct spi_periph *p, struct spi_transaction *t)
Submit SPI transaction.
Definition: spi_arch.c:508
@ SPICphaEdge2
CPHA = 1.
Definition: spi.h:75
@ SPITransSuccess
Definition: spi.h:99
@ SPITransDone
Definition: spi.h:101
@ SPICpolIdleHigh
CPOL = 1.
Definition: spi.h:84
@ SPISelectUnselect
slave is selected before transaction and unselected after
Definition: spi.h:63
@ SPIMSBFirst
Definition: spi.h:112
@ SPIDiv64
Definition: spi.h:125
@ SPIDss8bit
Definition: spi.h:90
SPI transaction structure.
Definition: spi.h:148
Register defs for Honeywell HMC5843 and HMC5883 magnetometers.
#define HMC58XX_REG_CFGB
Definition: hmc58xx_regs.h:35
#define HMC58XX_REG_CFGA
Definition: hmc58xx_regs.h:34
#define HMC58XX_REG_MODE
Definition: hmc58xx_regs.h:36
#define HMC58XX_ADDR
Definition: hmc58xx_regs.h:31
#define HMC58XX_REG_DATXM
Definition: hmc58xx_regs.h:37
void imu_set_defaults_accel(uint8_t abi_id, const struct Int32RMat *imu_to_sensor, const struct Int32Vect3 *neutral, const struct Int32Vect3 *scale)
Set the defaults for a accel sensor WARNING: Should be called before sensor is publishing messages to...
Definition: imu.c:440
void imu_set_defaults_gyro(uint8_t abi_id, const struct Int32RMat *imu_to_sensor, const struct Int32Rates *neutral, const struct Int32Rates *scale)
Set the defaults for a gyro sensor WARNING: Should be called before sensor is publishing messages to ...
Definition: imu.c:410
Inertial Measurement Unit interface.
#define ASPIRIN_2_SPI_DEV
void imu_aspirin2_event(void)
#define ASPIRIN_2_MAG_STARTUP_DELAY
delay in seconds before starting to configure HMC58xx mag slave
struct ImuAspirin2Spi imu_aspirin2
#define HMC58XX_CRA
#define HMC58XX_CRB
void mpu_wait_slave4_ready_cb(struct spi_transaction *t)
#define ASPIRIN_2_SPI_SLAVE_IDX
#define HMC58XX_MD
void imu_aspirin2_periodic(void)
void mpu_wait_slave4_ready(void)
void imu_aspirin2_init(void)
bool imu_aspirin2_configure_mag_slave(Mpu60x0ConfigSet mpu_set, void *mpu)
function to configure hmc5883 mag
#define Int16FromBuf(_buf, _idx)
static void mpu_set_and_wait(Mpu60x0ConfigSet mpu_set, void *mpu, uint8_t _reg, uint8_t _val)
Driver for the Aspirin v2.x IMU using SPI for the MPU6000.
volatile bool slave4_ready
#define ASPIRIN_2_GYRO_RANGE
volatile uint8_t wait_slave4_rx_buf[2]
struct Mpu60x0_Spi mpu
#define ASPIRIN_2_ACCEL_RANGE
volatile uint8_t wait_slave4_tx_buf[1]
struct spi_transaction wait_slave4_trans
PRINT_CONFIG_MSG("USE_INS_NAV_INIT defaulting to TRUE")
const struct Int32Rates MPU60X0_GYRO_SENS_FRAC[4][2]
Definition: mpu60x0.c:38
const struct Int32Vect3 MPU60X0_ACCEL_SENS_FRAC[4][2]
Definition: mpu60x0.c:56
Mpu60x0I2cSlaveConfigure configure
Definition: mpu60x0.h:135
uint8_t i2c_mst_delay
MPU I2C slaves delayed sample rate.
Definition: mpu60x0.h:160
enum Mpu60x0MstClk i2c_mst_clk
MPU I2C master clock speed.
Definition: mpu60x0.h:159
uint8_t nb_bytes
number of bytes to read starting with MPU60X0_REG_INT_STATUS
Definition: mpu60x0.h:147
uint8_t smplrt_div
Sample rate divider.
Definition: mpu60x0.h:140
uint8_t nb_slaves
number of used I2C slaves
Definition: mpu60x0.h:156
struct Mpu60x0I2cSlave slaves[MPU60X0_I2C_NB_SLAVES]
I2C slaves.
Definition: mpu60x0.h:158
enum Mpu60x0DLPF dlpf_cfg
Digital Low Pass Filter.
Definition: mpu60x0.h:141
enum Mpu60x0AccelRanges accel_range
g Range
Definition: mpu60x0.h:144
void(* Mpu60x0ConfigSet)(void *mpu, uint8_t _reg, uint8_t _val)
Configuration function prototype.
Definition: mpu60x0.h:129
enum Mpu60x0GyroRanges gyro_range
deg/s Range
Definition: mpu60x0.h:143
#define MPU60X0_I2C_SLV4_DONE
Definition: mpu60x0_regs.h:137
#define MPU60X0_REG_I2C_SLV0_ADDR
Definition: mpu60x0_regs.h:62
#define MPU60X0_REG_I2C_SLV4_REG
Definition: mpu60x0_regs.h:83
#define MPU60X0_REG_I2C_SLV4_CTRL
Definition: mpu60x0_regs.h:85
#define MPU60X0_REG_I2C_MST_STATUS
Definition: mpu60x0_regs.h:59
#define MPU60X0_REG_I2C_SLV0_REG
Definition: mpu60x0_regs.h:63
#define MPU60X0_REG_I2C_SLV0_CTRL
Definition: mpu60x0_regs.h:64
#define MPU60X0_SPI_READ
Definition: mpu60x0_regs.h:35
#define MPU60X0_REG_I2C_SLV4_ADDR
Definition: mpu60x0_regs.h:82
@ MPU60X0_MST_CLK_400KHZ
Definition: mpu60x0_regs.h:195
#define MPU60X0_REG_I2C_SLV4_DO
Definition: mpu60x0_regs.h:84
void mpu60x0_spi_event(struct Mpu60x0_Spi *mpu)
Definition: mpu60x0_spi.c:128
void mpu60x0_spi_init(struct Mpu60x0_Spi *mpu, struct spi_periph *spi_p, uint8_t slave_idx)
Definition: mpu60x0_spi.c:31
volatile bool data_available
data ready flag
Definition: mpu60x0_spi.h:56
union Mpu60x0_Spi::@326 data_accel
uint8_t data_ext[MPU60X0_BUFFER_EXT_LEN]
Definition: mpu60x0_spi.h:66
struct Mpu60x0Config config
Definition: mpu60x0_spi.h:67
struct spi_transaction spi_trans
Definition: mpu60x0_spi.h:53
float temp
temperature in degrees Celcius
Definition: mpu60x0_spi.h:65
struct spi_periph * spi_p
Definition: mpu60x0_spi.h:52
static void mpu60x0_spi_periodic(struct Mpu60x0_Spi *mpu)
convenience function: read or start configuration if not already initialized
Definition: mpu60x0_spi.h:78
union Mpu60x0_Spi::@327 data_rates
Architecture independent SPI (Serial Peripheral Interface) API.
Architecture independent timing functions.
static float get_sys_time_float(void)
Get the time in seconds since startup.
Definition: sys_time.h:138
unsigned int uint32_t
Typedef defining 32 bit unsigned int type.
Definition: vl53l1_types.h:78
unsigned char uint8_t
Typedef defining 8 bit unsigned char type.
Definition: vl53l1_types.h:98