123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- #pragma once
- #include <AP_HAL/AP_HAL.h>
- #include "AP_InertialSensor.h"
- #include "AP_InertialSensor_Backend.h"
- class AP_InertialSensor_BMI088 : public AP_InertialSensor_Backend {
- public:
- static AP_InertialSensor_Backend *probe(AP_InertialSensor &imu,
- AP_HAL::OwnPtr<AP_HAL::Device> dev_accel,
- AP_HAL::OwnPtr<AP_HAL::Device> dev_gyro,
- enum Rotation rotation);
-
- void start() override;
- bool update() override;
- private:
- AP_InertialSensor_BMI088(AP_InertialSensor &imu,
- AP_HAL::OwnPtr<AP_HAL::Device> dev_accel,
- AP_HAL::OwnPtr<AP_HAL::Device> dev_gyro,
- enum Rotation rotation);
-
- bool accel_init();
- bool gyro_init();
-
- bool init();
-
- void read_fifo_accel();
- void read_fifo_gyro();
-
- bool read_accel_registers(uint8_t reg, uint8_t *data, uint8_t len);
-
- bool write_accel_register(uint8_t reg, uint8_t v);
-
- bool setup_accel_config(void);
- AP_HAL::OwnPtr<AP_HAL::Device> dev_accel;
- AP_HAL::OwnPtr<AP_HAL::Device> dev_gyro;
- uint8_t accel_instance;
- uint8_t gyro_instance;
- enum Rotation rotation;
- uint8_t temperature_counter;
- bool done_accel_config;
- uint32_t accel_config_count;
- };
|