2013-09-23 00:32:19 -03:00
|
|
|
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
|
|
|
|
|
|
#ifndef __AP_INERTIAL_SENSOR_FLYMAPLE_H__
|
|
|
|
#define __AP_INERTIAL_SENSOR_FLYMAPLE_H__
|
|
|
|
|
|
|
|
#include <AP_HAL.h>
|
|
|
|
#if CONFIG_HAL_BOARD == HAL_BOARD_FLYMAPLE
|
|
|
|
|
|
|
|
#include "AP_InertialSensor.h"
|
2013-09-27 02:31:28 -03:00
|
|
|
#include <Filter.h>
|
|
|
|
#include <LowPassFilter2p.h>
|
2013-09-23 00:32:19 -03:00
|
|
|
|
2014-10-15 21:24:32 -03:00
|
|
|
class AP_InertialSensor_Flymaple : public AP_InertialSensor_Backend
|
2013-09-23 00:32:19 -03:00
|
|
|
{
|
|
|
|
public:
|
2014-10-15 21:24:32 -03:00
|
|
|
AP_InertialSensor_Flymaple(AP_InertialSensor &imu);
|
2013-09-23 00:32:19 -03:00
|
|
|
|
2014-10-15 21:24:32 -03:00
|
|
|
/* update accel and gyro state */
|
|
|
|
bool update();
|
2013-09-23 00:32:19 -03:00
|
|
|
|
2014-10-15 21:24:32 -03:00
|
|
|
bool gyro_sample_available(void) { _accumulate(); return _have_gyro_sample; }
|
|
|
|
bool accel_sample_available(void) { _accumulate(); return _have_accel_sample; }
|
|
|
|
|
|
|
|
// detect the sensor
|
2014-10-16 17:52:21 -03:00
|
|
|
static AP_InertialSensor_Backend *detect(AP_InertialSensor &imu);
|
2013-09-23 00:32:19 -03:00
|
|
|
|
|
|
|
private:
|
2014-10-16 17:52:21 -03:00
|
|
|
bool _init_sensor(void);
|
2014-10-15 21:24:32 -03:00
|
|
|
void _accumulate(void);
|
|
|
|
Vector3f _accel_filtered;
|
|
|
|
Vector3f _gyro_filtered;
|
|
|
|
bool _have_gyro_sample;
|
|
|
|
bool _have_accel_sample;
|
2013-09-23 00:32:19 -03:00
|
|
|
|
|
|
|
// support for updating filter at runtime
|
|
|
|
uint8_t _last_filter_hz;
|
|
|
|
|
|
|
|
void _set_filter_frequency(uint8_t filter_hz);
|
2013-09-27 02:31:28 -03:00
|
|
|
// Low Pass filters for gyro and accel
|
2015-02-17 18:48:26 -04:00
|
|
|
LowPassFilter2pVector3f _accel_filter;
|
|
|
|
LowPassFilter2pVector3f _gyro_filter;
|
2014-10-15 21:24:32 -03:00
|
|
|
|
|
|
|
uint8_t _gyro_instance;
|
|
|
|
uint8_t _accel_instance;
|
|
|
|
|
|
|
|
uint32_t _last_gyro_timestamp;
|
|
|
|
uint32_t _last_accel_timestamp;
|
2013-09-23 00:32:19 -03:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
#endif // __AP_INERTIAL_SENSOR_FLYMAPLE_H__
|