2023-01-02 23:20:35 +08:00
|
|
|
#ifndef __BMI088_H__
|
|
|
|
#define __BMI088_H__
|
|
|
|
|
2022-12-30 23:39:04 +08:00
|
|
|
#include "bsp_spi.h"
|
2023-01-02 23:20:35 +08:00
|
|
|
#include "controller.h"
|
|
|
|
#include "bsp_pwm.h"
|
|
|
|
#include "stdint.h"
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
BMI088_CALIBRATE_MODE = 0, // 初始化时进行标定
|
|
|
|
BMI088_LOAD_PRE_CALI_MODE, // 使用预设标定参数
|
|
|
|
} BMI088_Work_Mode_e;
|
2022-12-30 23:39:04 +08:00
|
|
|
|
|
|
|
/* BMI088实例结构体定义 */
|
|
|
|
typedef struct
|
|
|
|
{
|
2023-01-02 23:20:35 +08:00
|
|
|
// 传输模式和工作模式控制
|
|
|
|
SPIInstance *spi_gyro;
|
2022-12-30 23:39:04 +08:00
|
|
|
SPIInstance *spi_acc;
|
2023-01-02 23:20:35 +08:00
|
|
|
// 温度控制
|
|
|
|
PIDInstance *heat_pid; // 恒温PID
|
|
|
|
PWMInstance *heat_pwm; // 加热PWM
|
|
|
|
// IMU数据
|
|
|
|
float gyro[3]; // 陀螺仪数据,xyz
|
|
|
|
float acc[3]; // 加速度计数据,xyz
|
|
|
|
float temperature; // 温度
|
|
|
|
// 标定数据
|
|
|
|
float gyro_offset[3]; // 陀螺仪零偏
|
|
|
|
float gNorm; // 重力加速度模长,从标定获取
|
|
|
|
float acc_coef; // 加速度计原始数据转换系数
|
|
|
|
// 用于计算两次采样的时间间隔
|
|
|
|
uint32_t bias_dwt_cnt;
|
2022-12-30 23:39:04 +08:00
|
|
|
} BMI088Instance;
|
|
|
|
|
|
|
|
/* BMI088初始化配置 */
|
|
|
|
typedef struct
|
|
|
|
{
|
2023-01-02 23:20:35 +08:00
|
|
|
SPI_Init_Config_s spi_gyro_config;
|
|
|
|
SPI_Init_Config_s spi_acc_config;
|
|
|
|
BMI088_Work_Mode_e mode;
|
|
|
|
PID_Init_Config_s heat_pid_config;
|
|
|
|
PWM_Init_Config_s heat_pwm_config;
|
|
|
|
} BMI088_Init_Config_s;
|
|
|
|
|
2022-12-30 23:39:04 +08:00
|
|
|
|
|
|
|
|
2023-01-02 23:20:35 +08:00
|
|
|
#endif // !__BMI088_H__
|