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__
|
|
|
|
|
2015-08-11 03:28:43 -03:00
|
|
|
#include <AP_HAL/AP_HAL.h>
|
2013-09-23 00:32:19 -03:00
|
|
|
#if CONFIG_HAL_BOARD == HAL_BOARD_FLYMAPLE
|
|
|
|
|
|
|
|
#include "AP_InertialSensor.h"
|
2015-08-11 03:28:43 -03:00
|
|
|
#include <Filter/Filter.h>
|
|
|
|
#include <Filter/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
|
|
|
|
2015-11-15 20:38:43 -04:00
|
|
|
// accumulate samples
|
|
|
|
void accumulate(void) override;
|
2014-10-15 21:24:32 -03:00
|
|
|
|
|
|
|
// 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);
|
2013-09-23 00:32:19 -03:00
|
|
|
|
2014-10-15 21:24:32 -03:00
|
|
|
uint8_t _gyro_instance;
|
|
|
|
uint8_t _accel_instance;
|
2015-11-15 20:58:08 -04:00
|
|
|
|
2015-11-16 17:52:49 -04:00
|
|
|
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__
|